diff --git a/.vitepress/config.mts b/.vitepress/config.mts index 4e395244..de7a0610 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -16,7 +16,7 @@ export default defineConfig({ srcExclude: ['tutorial/**/description.md'], title: 'Leaf PHP', - description: 'Simple and elegant PHP', + description: 'Elegant PHP, Built for Makers', themeConfig: { nav, @@ -75,6 +75,10 @@ export default defineConfig({ markdown: { lineNumbers: true, + theme: { + light: 'one-dark-pro', + dark: 'one-dark-pro', + }, config(md) { md.use(groupIconMdPlugin); }, @@ -83,4 +87,8 @@ export default defineConfig({ vite: { plugins: [groupIconVitePlugin()], }, + + rewrites: { + '/api/': '/api/app.html', + } }); diff --git a/.vitepress/config/head.ts b/.vitepress/config/head.ts index 2e2cac12..fce2bd5b 100644 --- a/.vitepress/config/head.ts +++ b/.vitepress/config/head.ts @@ -13,7 +13,7 @@ const head: HeadConfig[] = [ { name: 'description', content: - 'Leaf is a lightweight and user-friendly framework designed for quick and efficient development. It features a zero-config setup and an ecosystem of tools, making it ideal for building scalable apps with ease.', + 'Leaf is a lightweight and elegant PHP framework built for makers. With zero-config setup and an ecosystem of powerful tools, Leaf helps you build and ship scalable apps—fast', }, ], ['meta', { name: 'twitter:site', content: '@leafphp' }], @@ -23,7 +23,7 @@ const head: HeadConfig[] = [ 'meta', { name: 'twitter:title', - content: 'Leaf PHP - Elegant PHP for Modern Development', + content: 'Leaf PHP - Elegant PHP, Built for Makers', }, ], [ @@ -31,7 +31,7 @@ const head: HeadConfig[] = [ { name: 'twitter:description', content: - 'Leaf is a lightweight and user-friendly framework designed for quick and efficient development. It features a zero-config setup and an ecosystem of tools, making it ideal for building scalable apps with ease.', + 'Leaf is a lightweight and elegant PHP framework built for makers. With zero-config setup and an ecosystem of powerful tools, Leaf helps you build and ship scalable apps—fast', }, ], [ @@ -46,7 +46,7 @@ const head: HeadConfig[] = [ 'meta', { name: 'og:title', - content: 'Leaf PHP - Elegant PHP for Modern Development', + content: 'Leaf PHP - Elegant PHP, Built for Makers', }, ], [ @@ -76,7 +76,7 @@ const head: HeadConfig[] = [ { name: 'og:description', content: - 'Leaf is a lightweight and user-friendly framework designed for quick and efficient development. It features a zero-config setup and an ecosystem of tools, making it ideal for building scalable apps with ease.', + 'Leaf is a lightweight and elegant PHP framework built for makers. With zero-config setup and an ecosystem of powerful tools, Leaf helps you build and ship scalable apps—fast', }, ], [ @@ -128,7 +128,22 @@ const head: HeadConfig[] = [ [ 'link', { - href: 'https://fonts.googleapis.com/css?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500|DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700|Inter:300,400,500,600|Open+Sans:400,600;display=swap', + href: 'https://fonts.googleapis.com', + rel: 'preconnect', + }, + ], + [ + 'link', + { + href: 'https://fonts.gstatic.com', + rel: 'preconnect', + crossorigin: '', + }, + ], + [ + 'link', + { + href: 'https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap', rel: 'stylesheet', }, ], diff --git a/.vitepress/config/navbar.ts b/.vitepress/config/navbar.ts index b9c95434..fb4c2f27 100644 --- a/.vitepress/config/navbar.ts +++ b/.vitepress/config/navbar.ts @@ -4,107 +4,28 @@ const nav: DefaultTheme.NavItem[] = [ { text: 'Docs', activeMatch: `^/(docs|examples)/`, - items: [ - { text: 'Guide', link: '/docs/' }, - { text: 'Tutorial', link: '/tutorial/' }, - { - text: 'Leaf + MVC', - link: '/docs/mvc/', - }, - { - text: 'Leaf Modules', - link: '/docs/modules', - }, - { - text: 'Leaf CLI', - link: '/docs/cli/', - }, - { - text: 'MVC Console', - link: '/docs/mvc/console/', - }, - ], + link: '/docs/', }, - { - text: 'Ecosystem', - activeMatch: `^/ecosystem/`, - items: [ - { - text: 'Resources', - items: [ - { text: 'Online Playground', link: 'https://sandbox.leafphp.dev/' }, - { - text: 'Codelabs', - link: '/codelabs/', - }, - // { - // text: 'Leaf UI', - // link: 'https://ui.leafphp.dev/', - // }, - ], - }, - { - text: 'Other', - items: [ - { - text: 'Hana JS', - link: 'https://hana.leafphp.dev', - }, - { - text: 'Naytive', - link: 'https://naytive.netlify.app', - }, - ], - }, - { - text: 'Help', - items: [ - // { - // text: 'Leaf Forum', - // link: 'https://github.com/leafsphp/leaf/discussions/37', - // }, - { - text: 'YouTube', - link: 'https://www.youtube.com/channel/UCllE-GsYy10RkxBUK0HIffw', - }, - { - text: 'Discord', - link: 'https://discord.gg/Pkrm9NJPE3', - }, - { - text: 'GitHub', - link: 'https://github.com/leafsphp/leaf', - }, - ], - }, - ], + text: 'Blog', + link: 'https://blog.leafphp.dev', }, - { text: 'Community', activeMatch: `^/(about|community)/`, items: [ - { - text: 'Leaf Community', - link: '/community/', - }, { text: 'Contribute to Leaf', link: '/community/guide', }, - { - text: 'Changelog', - link: '/community/releases', - }, + // { + // text: 'Changelog', + // link: '/community/releases', + // }, // { // text: 'Project Showcase', // link: '/community/showcase', // }, - { - text: 'Blog', - link: 'https://blog.leafphp.dev', - }, { text: 'Team', link: '/community/team', diff --git a/.vitepress/config/sidebar.ts b/.vitepress/config/sidebar.ts index 8b21e630..1043c50e 100644 --- a/.vitepress/config/sidebar.ts +++ b/.vitepress/config/sidebar.ts @@ -4,23 +4,22 @@ const sidebar = [ // collapsible: true, // collapsed: true, items: [ - { text: 'Introduction', link: '/docs/' }, - { text: 'Installation', link: '/docs/installation' }, + // { text: 'Installation', link: '/docs/installation' }, + { text: 'Leaf CLI', link: '/docs/cli/' }, { text: 'Migration Guide', link: '/docs/migrating' }, // { text: 'Functional Mode', link: '/docs/config/functional-mode' }, { text: 'Modules', link: '/docs/modules' }, ], }, - { - text: 'Leaf CLI', - // collapsible: true, - // collapsed: true, - items: [ - { text: 'CLI Intro', link: '/docs/cli/' }, - { text: 'Creating apps', link: '/docs/cli/creating-an-app' }, - { text: 'Managing apps', link: '/docs/cli/managing-apps' }, - ], - }, + // { + // text: 'Leaf CLI', + // // collapsible: true, + // // collapsed: true, + // items: [ + // { text: 'Creating apps', link: '/docs/cli/creating-an-app' }, + // { text: 'Managing apps', link: '/docs/cli/managing-apps' }, + // ], + // }, { text: 'Routing', // collapsible: true, @@ -30,7 +29,7 @@ const sidebar = [ { text: 'Route Groups', link: '/docs/routing/route-groups' }, { text: 'Dynamic routing', link: '/docs/routing/dynamic' }, { text: 'Middleware', link: '/docs/routing/middleware/' }, - { text: 'Middleware in Leaf MVC', link: '/docs/routing/middleware/mvc' }, + // { text: 'Middleware in Leaf MVC', link: '/docs/routing/middleware/mvc' }, ], }, { @@ -52,7 +51,7 @@ const sidebar = [ // { text: 'Overview', link: '/docs/config/' }, // { text: 'App settings', link: '/docs/config/settings' }, { text: 'Application Env', link: '/docs/config/environment' }, - { text: 'URL Rewriting', link: '/docs/routing/url-rewriting' }, + { text: 'Deployment', link: '/learn/deployment/' }, { text: 'Error Handling', link: '/docs/routing/error-handling' }, { text: 'Dependency Injection', link: '/docs/config/container' }, // { text: 'Logging', link: '/docs/utils/logging' }, @@ -126,7 +125,7 @@ const sidebar = [ { text: 'HTTP Cache', link: '/docs/http/caching' }, { text: 'Leaf Mail', link: '/docs/utils/mail/' }, { text: 'File System', link: '/docs/utils/fs' }, - // { text: 'Queues/Jobs', link: '/docs/utils/queues' }, + { text: 'Queues/Jobs', link: '/docs/utils/queues' }, ], }, { @@ -141,8 +140,24 @@ const sidebar = [ { text: 'Vite JS', link: '/docs/frontend/vite' }, { text: 'Tailwind CSS', link: '/docs/frontend/tailwind' }, { text: 'Inertia JS', link: '/docs/frontend/inertia' }, - // { text: 'Viewi PHP', link: '/docs/frontend/viewi' }, // { text: 'Leaf UI', link: '/docs/frontend/leaf-ui' }, + // { + // text: 'Leaf Zero', + // collapsible: true, + // collapsed: true, + // items: [ + // { text: 'Introduction', link: '/docs/frontend/zero/' }, + // { text: 'Layouts', link: '/docs/frontend/zero/layouts' }, + // { text: 'Forms', link: '/docs/frontend/zero/forms' }, + // { text: 'Modals', link: '/docs/frontend/zero/modals' }, + // { text: 'Alerts', link: '/docs/frontend/zero/alerts' }, + // { text: 'Loading', link: '/docs/frontend/zero/loading' }, + // { text: 'Icons', link: '/docs/frontend/zero/icons' }, + // { text: 'Forms', link: '/docs/frontend/zero/forms' }, + // { text: 'Merketing Sections', link: '/docs/frontend/zero/marketing' }, + // { text: 'Dashboard Sections', link: '/docs/frontend/zero/dashboard' }, + // ], + // }, ], }, { @@ -150,16 +165,16 @@ const sidebar = [ // collapsible: true, // collapsed: true, items: [ - { text: 'Leaf + MVC', link: '/docs/mvc/' }, - { text: 'Leaf MVC v4', link: '/docs/mvc/mvc4' }, + // { text: 'Leaf + MVC', link: '/docs/mvc/' }, + // { text: 'Leaf MVC v4', link: '/docs/mvc/mvc4' }, { text: 'Controllers', link: '/docs/mvc/controllers' }, // { text: 'Views', link: '/docs/frontend/mvc' }, { text: 'Models', link: '/docs/database/models' }, - { text: 'Migrations', link: '/docs/database/migrations' }, - { text: 'JSON Schema', link: '/docs/database/schema' }, + // { text: 'Migrations', link: '/docs/database/migrations' }, + // { text: 'JSON Schema', link: '/docs/database/schema' }, { text: 'Schema Files', link: '/docs/database/files' }, - { text: 'Seeders', link: '/docs/database/seeders' }, - { text: 'Factories', link: '/docs/database/factories' }, + // { text: 'Seeders', link: '/docs/database/seeders' }, + // { text: 'Factories', link: '/docs/database/factories' }, { text: 'Writing Commands', link: '/docs/mvc/commands' }, // { text: 'Mailing', link: '/docs/utils/mail/mvc' }, { text: 'MVC Globals', link: '/docs/mvc/globals' }, @@ -174,8 +189,8 @@ const sidebar = [ // items: [ // { text: 'Intro', link: '/codelabs/' }, // { text: 'Contributing', link: '/codelabs/contributing' }, - // // { text: 'Deployment', link: '/codelabs/experiments/deployment/' }, - // // { text: 'Authentication', link: '/codelabs/experiments/auth/' }, + // // { text: 'Deployment', link: '/learn/deployment/' }, + // // { text: 'Authentication', link: '/learn/auth/' }, // ], // }, ]; diff --git a/.vitepress/theme/components/Community/Blog.vue b/.vitepress/theme/components/Community/Blog.vue index 3a339772..7188d5ca 100644 --- a/.vitepress/theme/components/Community/Blog.vue +++ b/.vitepress/theme/components/Community/Blog.vue @@ -5,32 +5,35 @@ import Button from '../shared/Button.vue'; + + +

Something amazing is coming soon!

+

Sign up to be the first to know when we launch.

+
+ + +
+ + +``` + +Now that we have a simple pre-launch page with a form to collect email addresses, we just need to create a route that will render this view. + +```php [index.php] +get('/', function() { + response()->json(['message' => 'Hello, World!']); +}); + +app()->view('/prelaunch', 'prelaunch'); // [!code ++] + +app()->run(); +``` + +Here's what's happening behind the scenes: + +- `app()` is a helper function that gives you access to the Leaf app instance. You can use it anywhere in your app. +- `view()` is a method for defining a route that renders a Blade view. The first argument is the URL path, and the second is the name of the view file to load. + +Notice we did not have to configure Blade because Leaf does that for you. You can now navigate to `http://localhost:5500/prelaunch` to see your pre-launch page. + +### Handling the form submission + +Now that we have a pre-launch page, we need to handle form submissions. Let’s create a new route to process the form and save the email to a database. + +```php [index.php] +app()->view('/prelaunch', 'prelaunch'); +app()->post('/store', function () { // [!code ++] + // handle the email // [!code ++] +}); // [!code ++] +``` + +We used the `post()` method to ensure only POST requests reach this route. The second argument is a function where we'll handle the email. Leaf makes validation simple—we can call `validate()` on the request and define our validation rules. Let’s validate and store the email. + +```php [index.php] +app()->post('/store', function () { + if (!$data = request()->validate(['email' => 'email'])) { // [!code ++] + // validation failed, redirect back with errors // [!code ++] + return response() // [!code ++] + ->withFlash('errors', request()->errors()) // [!code ++] + ->redirect('/prelaunch'); // [!code ++] + } // [!code ++] + + // save the email +}); +``` + +That’s it for validation! But before we can save the email, we need to connect our database to the application. Let’s set that up next. + +### Setting up our database + +We can set up our database by installing the database module and configuring our credentials. Just like we installed Blade earlier, we’ll install the database module the same way. + +::: code-group + +```bash:no-line-numbers [Leaf CLI] +leaf install db +``` + +```bash:no-line-numbers [Composer] +composer require leafs/db +``` + +::: + +Now we just need to fill out our database information: + +```php [index.php] +connect([ // [!code ++] + 'host' => '127.0.0.1', // [!code ++] + 'username' => 'root', // [!code ++] + 'password' => '', // [!code ++] + 'dbname' => 'Leaf', // [!code ++] +]); // [!code ++] + +app()->get('/', function() { + response()->json(['message' => 'Hello, World!']); +}); + +app()->view('/prelaunch', 'prelaunch'); + +app()->post('/store', function () { + if (!$data = request()->validate(['email' => 'email'])) { + // validation failed, redirect back with errors + return response() + ->withFlash('errors', request()->errors()) + ->redirect('/prelaunch'); + } + + // save the email +}); + +app()->run(); +``` + +::: details Creating your database + +Unlike with Leaf MVC, Leaf as a micro-framework does not come with a database migration system. You will have to create your database manually. You can do this using a tool like [phpMyAdmin](https://www.phpmyadmin.net/), TablePlus or the command line. + +```sql:no-line-numbers +CREATE DATABASE Leaf; +``` + +::: + +Once you have filled out your database information, you can now save the email to the database. + +### Saving the email + +We can now save the email to the database. + +```php [index.php] +connect([ + 'host' => '127.0.0.1', + 'username' => 'root', + 'password' => '', + 'dbname' => 'Leaf', +]); + +app()->get('/', function() { + response()->json(['message' => 'Hello, World!']); +}); + +app()->view('/prelaunch', 'prelaunch'); + +app()->post('/store', function () { + if (!$data = request()->validate(['email' => 'email'])) { + // validation failed, redirect back with errors + return response() + ->withFlash('errors', request()->errors()) + ->redirect('/prelaunch'); + } + + db()->insert('emails')->params($data)->execute(); // [!code ++] + + return response() // [!code ++] + ->withFlash('success', 'You have been added to our list!') // [!code ++] + ->redirect('/prelaunch'); // [!code ++] +}); + +app()->run(); +``` + +You can use the `withFlash()` method to send a message to the next request. This is useful for sending messages to the user after a redirect. We can now test our app by navigating to the `/prelaunch` page and submitting an email. + +### Deploying your app + +We have built a simple pre-launch page using Leaf. You can now deploy your app to a server using a service like [Heroku](/learn/deployment/heroku/), [Fly.io](/learn/deployment/flyio/) a VPS like [DigitalOcean](/learn/deployment/digitalocean/), or even a shared hosting service like [Sevalla](/learn/deployment/sevalla/). + +
+
+
+ + + + + + +
+
+ Are you stuck? + Leaf as a micro-framework is a great way to build simple applications and APIs quickly, but doesn't provide the structure you get with Leaf MVC. If you are stuck at any point, feel free to ask for help in the + Leaf Discord server, or consider building an MVP using Leaf MVC if you prefer a more structured approach. + +
+
+
+ +## What to read next + +Now that you have built a simple pre-launch page, the next step is to get you familiar with the basics of building a full-stack application with Leaf. So you can build and launch your next big idea *fast*. + +
    +
  • +
    +
    +
    +
    +

    + Routing + +

    +

    + Learn more about routing in Leaf MVC, dynamic routes, middleware and more. +

    +
    +
    +
  • +
  • +
    +
    +
    +
    +

    + Handling Requests + +

    +

    + Learn how to process incoming requests, handle form submissions, and more. +

    +
    +
    +
  • +
  • +
    +
    +
    +
    +

    + Using Databases + +

    +

    + Learn how to build queries, build relationships, and interact with your database programmatically. +

    +
    +
    +
  • +
  • +
    +
    +
    +
    +

    + Frontend + +

    +

    + Learn about SSR, SPA, and how to use Leaf with your favorite frontend framework. +

    +
    +
    +
  • +
diff --git a/src/codelabs/contributing.md b/src/learn/contributing.md similarity index 100% rename from src/codelabs/contributing.md rename to src/learn/contributing.md diff --git a/src/codelabs/experiments/deployment/digitalocean/index.md b/src/learn/deployment/digitalocean/index.md similarity index 100% rename from src/codelabs/experiments/deployment/digitalocean/index.md rename to src/learn/deployment/digitalocean/index.md diff --git a/src/codelabs/experiments/deployment/fly.io/index.md b/src/learn/deployment/flyio/index.md similarity index 100% rename from src/codelabs/experiments/deployment/fly.io/index.md rename to src/learn/deployment/flyio/index.md diff --git a/src/codelabs/experiments/deployment/heroku/index.md b/src/learn/deployment/heroku/index.md similarity index 100% rename from src/codelabs/experiments/deployment/heroku/index.md rename to src/learn/deployment/heroku/index.md diff --git a/src/learn/deployment/index.md b/src/learn/deployment/index.md new file mode 100644 index 00000000..92ee8afc --- /dev/null +++ b/src/learn/deployment/index.md @@ -0,0 +1,94 @@ +# Deployment + +Getting your Leaf app live should be as simple as building it. Whether you're deploying to shared hosting, VPS, or platforms like DigitalOcean and Vercel, Leaf makes the process smooth and hassle-free. This guide walks you through setting up your server, configuring URL rewriting, and making sure your app runs efficiently in production. + +## Production Checklist + +Before deploying your app, make sure you’ve covered the following: + +- **[Environment Variables](/docs/config/environment)**: Set up your environment variables for production. +- **[Debug Mode](/docs/config/debugging)**: Turn off debug mode and disable Leaf DevTools. + +These are meant to ensure your app runs smoothly in production, without exposing sensitive information or running unnecessary debugging tools. + +## URL Rewriting + +URL rewriting maps all requests to a single entry point—usually `index.php`—so Leaf’s router can handle them dynamically. Instead of serving files directly, web servers like Apache and Nginx can be configured to route all traffic through your app, so Leaf can handle requests cleanly and efficiently. + +::: code-group + +```nginx:no-line-numbers [Nginx nginx.conf] +try_files $uri /index.php?$query_string; +``` + +```apache:no-line-numbers [Apache .htaccess] +RewriteEngine on +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule . index.php [L] +``` + +::: + +Without this, things like routing, request handling, and error pages won’t work as expected. Make sure to set up URL rewriting correctly on your server to ensure your Leaf app runs smoothly. + +## Deployment Guides + +Okay, now let’s get your app live! 🚀 + +| Provider | Description | +| :-------------------------------------------------------------- | :--------------------------------------------------------- | +| [Digital Ocean](/learn/deployment/digitalocean/) | Deploying LeafMVC projects to a new Digital Ocean droplet | +| [Heroku](/learn/deployment/heroku/) | Deploying a base Leaf project to Heroku using the Leaf CLI | +| [Fly.io](/learn/deployment/flyio/) | Deploying a base Leaf application to Fly.io | + +## Deploying Queues/Workers + +When deploying your application with [queues](/docs/utils/queues), Leaf takes care of setting up the necessary files and commands based on your chosen queue driver. However, once deployed, you’ll need to set up your server to keep your workers running continuously. + +For smaller applications, you can keep the queue worker running in the background with: + +```bash:no-line-numbers +php leaf queue:work & +``` + +This command will set up your queue and start a worker to process jobs. Leaf includes safeguards to prevent excessive memory usage, long-running processes, or crashes from failed jobs. However, for larger applications, this setup may not be enough. In such cases, using a process manager like Supervisor is recommended to ensure your workers run smoothly and restart automatically if needed: + +```bash:no-line-numbers +sudo apt update && sudo apt install supervisor -y +``` + +Create a new configuration file for your Leaf queue worker: + +```bash:no-line-numbers +sudo nano /etc/supervisor/conf.d/leaf-queue.conf +``` + +Add your Supervisor configuration: + +```ini:no-line-numbers +[program:leaf-queue] +process_name=%(program_name)s_%(process_num)02d +command=php leaf queue:work +autostart=true +autorestart=true +numprocs=1 +redirect_stderr=true +stdout_logfile=/var/log/leaf-queue.log +``` + +Save and exit, then update Supervisor and start the worker: + +```bash:no-line-numbers +sudo supervisorctl reread +sudo supervisorctl update +sudo supervisorctl start leaf-queue +``` + +This will start a worker that will process jobs in the queue. You can check the status of the worker using the following command: + +```bash:no-line-numbers +sudo supervisorctl status leaf-queue +``` + +And that's it! Your worker is now running and processing jobs in the queue. diff --git a/src/learn/deployment/sevalla/index.md b/src/learn/deployment/sevalla/index.md new file mode 100644 index 00000000..fb6d4d25 --- /dev/null +++ b/src/learn/deployment/sevalla/index.md @@ -0,0 +1,160 @@ +--- +sidebar: false +editLink: false +prev: false +next: false +lastUpdated: false +--- + +# Deploying a LeafMVC Application to Digital Ocean + +::: warning Version support +Version support. This tutorial assumes use of LeafPHP >= 3.0 and PHP >=7.0. +::: + +## What Are We Building + +This experiment will guide you deploying your first LeafMVC application to Digital Ocean. A majority +of the same steps apply to Leaf v3 core as well. + +::: details (New to Digital Ocean?) +Digital Ocean is a cloud service provider that offers great introductory pricing for virtual private +servers (VPS). Create an account, tether a credit card, and prepare to build. +::: + +## Prerequisites + +Before continuing, it is important to determine if you would like to purhcase or point a domain name +to the VPS you are about to spin up. $DOMAIN will be shown several times throughout this experiment +and should be replaced by either your domain name (example.com) or the Droplet's public IP address. You +can grab the public IP address from the Digital Ocean control panel. + +For instructions on how to setup a domain with Digital Ocean, [click here](https://docs.digitalocean.com/products/networking/dns/how-to/add-domains/). + +## 1. Create a new droplet + +From the control panel, click the green "Create" button and select droplet. We will create a VPS with the +following options selected: + +* Ubuntu: 20.04 (LTS) +* Plan: Basic +* CPU Options: Premium AMD or Regular Intel +* $6/mo package + +::: tip Scaling ⚡️ +Should your application grow in requirements or traffic, you can always come back and increase your package selection. +::: + +### Authentication + +It is highly recommended that your utilize SSH-based authentication. Select an existing key, or [generate a new key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent), then add it. + +## 2. Initial droplet setup + +After your droplet has been created, you will need to login, secure it, and install required software. The first task will +be to create an admin user, then utilie that account for future SSH connections. + +```bash +ssh root@$DOMAIN +adduser username +usermod -aG sudo username +rsync --archive --chown=username:username ~/.ssh /home/username +``` + +Test the admin account: ``su - username``. If the command executes, you can terminal the SSH session and log +back in with your new user account (recommended). + +### Setup firewall + +Next we will setup UFW - Ubuntu Firewall. We will allow communication on ports: 22 (SSH), 80 (HTTP), and 443 (SSL). + +```bash +sudo ufw allow 22 +sudo ufw allow 80 +sudo ufw allow 443 +sudo ufw enable +``` + +After creating the firewall's rules and enabling UFW, you can view firewall status by ``sudo ufw status``. + +### Install required software + +It is now time install all of the needed software to enable LeafPHP to run. First, we need to update all system software: + +```bash +sudo apt update +sudo apt upgrade +``` + +Be sure to respond **Y** when asked to continue. Now we can intall NGINX, PHP, MySQL, and curl. + +```bash +sudo apt install nginx php-fpm php-mysql php-curl +``` + +Once complete, follow the +[NGINX instructions](https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-ubuntu-18-04#step-3-%E2%80%93-installing-php-and-configuring-nginx-to-use-the-php-processor). +Ensure that your directory is set as such: `` root /var/www/$DOMAIN/public;`` Below is an example sites-available file. + +```nginx +server { + server_name itsglint.com www.itsglint.com 147.182.136.153; + root /var/www/itsglint.com/public; + + index index.html index.htm index.php; + + location / { + try_files $uri /index.php?$query_string; + } + + location ~ \.php$ { + include snippets/fastcgi-php.conf; + fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; + } +} +``` + +::: warning Leaf Router and .htaccess support +It is important to mirror the location blocks as-in. Otherwise, LeafRouter will not work properly or at all. +::: + +Next, we will install Mysql. Follow the [install instructions](https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-ubuntu-18-04#step-2-%E2%80%93-installing-mysql-to-manage-site-data). + +```bash +sudo apt install mysql-server +``` + +### Install your Leaf🍁 application + +Next, we will download and install our application with all dependencies. Clone your repository from Github, +or any source, and place your Leaf project in ``/var/www/$DOMAIN``. Afterwards, install required dependencies +and perform initial Leaf tasks: + +```bash +composer install +php leaf db:install +php leaf db:migrate +``` + +You also may seed the database if required: `php leaf db:seed`. + +Congratulations 🎉, you now have a fully working production server, and should be able to reach your application at $DOMAIN. + +::: details Recommended: Complete SSL Setup +If your Leaf applications is more than a hobbyist adventure and serving actual clients or visitors, it is +strongly recommended to complete the SSL setup. SSL encrypts traffic between a browser and server. Replace +example.com with $DOMAIN. + +``` +sudo apt install certbot python3-certbot-nginx +sudo systemctl reload nginx +sudo certbot --nginx -d example.com -d www.example.com +``` + +When prompted for HTTPS redirction, select **Option 2**, forcing HTTPS traffic. + +::: + +
+ +Experiment by **[Matthew Reichardt](https://github.com/matthewjamesr)** diff --git a/src/learn/index.md b/src/learn/index.md new file mode 100644 index 00000000..d07ef6ff --- /dev/null +++ b/src/learn/index.md @@ -0,0 +1,146 @@ +--- +prev: false +next: false +--- + + + +

+ Learn to write
+ Elegant PHP
+ Built for Makers +

+ + + +Welcome to the Makers' Guide to Leaf—your fast track to building with Leaf. This guide walks you through everything you need to start shipping quickly and efficiently, from hello world to deploying your app. + +## Choose your path + +

No application is the same, why should your framework be?

Michael Darko
Creator of Leaf PHP
+ +This is something we live and die by at Leaf. We believe that every application is unique and should be treated as such. That's why we've built Leaf to be as flexible as possible, allowing you to build your applications the way you want to. At the end of the day, we're here to help you build your applications, not to dictate how you should build them. + +With that in mind, we've created a few paths to help you get started with Leaf. Whether you're building a simple app/API, a full-fledged web application, or a massive API, we've got you covered. Choose your path below to get started. + +
+
+
+
+
+

+ Basic Leaf App +

+

+ Use Leaf as a micro-framework to build simple apps and APIs. +

+ +
+ +
+ +
+
+
+
+
+
+

+ Leaf MVC App +

+

+ Add an MVC structure on top of Leaf for more complex apps. +

+ +
+ +
+ +
+
+
+
+
+
+

+ MVC for APIs +

+

+ Build APIs with a structured approach for better organization. +

+ +
+ +
+ +
+
+
+ +## Deploy your app + +After building your app, you'll want to deploy it to the web so that others can access it. We've got you covered with our [deployment guides](/learn/deployment/) that walk you through deploying your app to various platforms. + +## Contributing + +If you've written a tutorial that you think would be a great addition to our Learn section, feel free to submit a PR to our [GitHub repository](https://github.com/leafsphp/docs) with your tutorial. For our readers' benefit, be sure to follow the [contribution guide](/learn/contributing) when submitting your tutorial. Thank you for your contribution! diff --git a/src/learn/mvc.md b/src/learn/mvc.md new file mode 100644 index 00000000..19988934 --- /dev/null +++ b/src/learn/mvc.md @@ -0,0 +1,502 @@ +--- +next: false +prev: false +--- + +# Building full-stack with Leaf MVC + + + + + +
+
+
+
+ +

+ Leaf MVC is a minimalistic PHP framework built for developers who need a simple and elegant toolkit to create full-featured web applications. +

+
+ +
+ +
+
+ +Full-stack applications typically combine both the front-end and back-end in a single, cohesive system. With Leaf MVC, you get all the power of Leaf for handling requests while seamlessly rendering views using [Blade](/docs/frontend/blade) or integrating with modern front-end frameworks like [React, Vue or Svelte](/docs/frontend/inertia). + +## Getting started + +You can create a new MVC app using the `create` command on the Leaf CLI. + +::: code-group + +```bash:no-line-numbers [Leaf CLI] +leaf create my-app --mvc +``` + +```bash:no-line-numbers [Composer] +composer create-project leafs/mvc:v4.0-beta my-app +``` + +::: + +This will create a new Leaf MVC app in the `my-app` directory. You can then navigate to the `my-app` directory and run the app using the `serve` command. + +```bash:no-line-numbers +cd my-app +php leaf serve +``` + +Your app is now running! Open `http://localhost:5500` in your browser. + +## Project Structure + +Leaf MVC, like the rest of Leaf, is built for makers—focused, lightweight, and flexible. It keeps only the essentials, giving you everything you need without the extra baggage. Here’s the basic structure of a Leaf MVC app: + +```bash:no-line-numbers +├───app +│ ├── controllers +│ ├── database +│ ├── models +│ ├── routes +│ └── views +│ └── errors +└───public + └───assets + ├── css + └── img +``` + +Leaf MVC keeps things simple, ensuring you focus on building rather than configuration. Here’s a quick breakdown of the key directories: + +- app/ – This is where all your application logic lives, including controllers, models, views, and routes. Your database files also reside here. +- public/ – Contains publicly accessible files like bundled CSS, JavaScript, and images. This is the only directory exposed to the browser. + +Most of your work will happen in the app directory, with a typical request starting with a route, which calls a controller, which interacts with a model, and finally renders a view—this is the MVC cycle in action. + +Don’t worry if you’re new to MVC! Just remember: every request starts with a route and ends with a response. + +## Building your first app + +As a maker, the easiest way to get started with your app is by building a Coming Soon, Early Access, or Pre-Launch page. This gives you something real to share while you build, helping you gather interest and early users. Let’s create a simple pre-launch page in Leaf MVC! + +### The routing bit + +In Leaf MVC, routes are defined in the `app/routes` directory. You’ll see an index.php file along with some files that start with `_`. These are partials, and Leaf automatically loads them to help you organize routes in a way that fits your project. + +For our pre-launch page, let’s create a new route inside `app/routes/_prelaunch.php`. Open the file and add this: + +```php +view('/prelaunch', 'prelaunch'); +``` + +Okay, looks like some magic is happening here. Let's break it down: + +- `app()` is a helper function that gives you access to the Leaf app instance, it is available from anywhere in your app. +- `view()` is a method that you can use to create a route that renders a Blade view. The first argument is what the user enters in the URL, and the second argument is the name of the view file to render. + +### The view bit + +We’ve set up the route, but if we navigate to `/prelaunch` now, we’ll hit an error—because we haven’t created the prelaunch view yet! + +To fix this, let’s create a new Blade file inside the `app/views` directory. Name it `prelaunch.blade.php`, and this is where we’ll define our pre-launch page. + +```blade [app/views/prelaunch.blade.php] + + + + + + Coming Soon + + + +

Something amazing is coming soon!

+

Sign up to be the first to know when we launch.

+
+ + +
+ + +``` + +The most important part of this page is the form. We’re keeping it simple—it just collects an email address and submits it to a route that will handle the email. We’ll create that route in a moment. Remember how we set up a route earlier? We’ll follow the same approach! + +### Handling the form submission + +This is the final piece of our pre-launch page, but also the most involved. We need to create a route that calls a controller, validates the email, and saves it to a database using a model. This will take us through the full MVC cycle, plus a bit of setup. + +Let’s start by defining the route! + +```php [app/routes/_prelaunch.php] +view('/prelaunch', 'prelaunch'); +app()->post('/store', 'SubscribersController@store'); // [!code ++] +``` + +We used the `post()` method because we only want POST requests to hit this route. The second argument specifies the controller and method that will handle the request. + +To generate the controller, we can use the Leaf CLI: + +```bash:no-line-numbers +php leaf g:controller subscribers +``` + +This will create a new controller in the `app/controllers` directory. Open the `SubscribersController.php` file and add the `store` method. + +```php [app/controllers/SubscribersController.php] +validate(['email' => 'email'])) { // [!code ++] + // validation failed, redirect back with errors // [!code ++] + return response()->with('errors', request()->errors())->redirect('/prelaunch'); // [!code ++] + } // [!code ++] + + // save the email + } +} +``` + +Great job so far! Now, let's save the email to a database using a model. First, we'll generate a Subscriber model: + +```bash:no-line-numbers +php leaf g:model subscriber +``` + +We don’t need to modify the model—Leaf keeps things simple. But before we can store anything, we need to connect our database. Open your .env file and add your database credentials: + +```env +DB_CONNECTION=mysql +DB_HOST=xxx +DB_PORT=xxx +DB_DATABASE=xxx +DB_USERNAME=xxx +DB_PASSWORD=xxx +``` + +After updating your credentials, restart your server with: `php leaf serve`. + +Now, we need to create our database table. Leaf MVC makes this seamless with schema files, a simpler way to define and manage your database structure. Let’s set up our schema next! + +```bash:no-line-numbers +php leaf g:schema subscribers +``` + +The name of the schema file should be the same as your table name. This will create a new schema file in the `app/database` directory. Open the file and add the columns you want in your table. + +```php [app/database/subscribers.yml] +columns: + email: string +``` + +Here, we are telling Leaf to add a column where we can store the email. We can now run the migration to create the table. + +```bash:no-line-numbers +php leaf db:migrate +``` + +### Saving the email + +We can now save the email to the database using our `Subscriber` model. + +```php [app/controllers/SubscribersController.php] +validate(['email' => 'email'])) { + // validation failed, redirect back with errors + return response()->withFlash('errors', request()->errors())->redirect('/prelaunch'); + } + + $subscriber = new Subscriber; // [!code ++] + $subscriber->email = $data['email']; // [!code ++] + $subscriber->save(); // [!code ++] + + return response() // [!code ++] + ->withFlash('success', 'Nice, we will send a mail when we launch!') // [!code ++] + ->redirect('/prelaunch'); // [!code ++] + } +} +``` + +You can use the `withFlash()` method to send a message to the next request. This is useful for sending messages to the user after a redirect. We can now test our app by navigating to the `/prelaunch` page and submitting an email. + +### Deploying your app + +We have built a simple pre-launch page using Leaf MVC. You can now deploy your app to a server using a service like [Heroku](/learn/deployment/heroku/), [Fly.io](/learn/deployment/flyio/) a VPS like [DigitalOcean](/learn/deployment/digitalocean/), or even a shared hosting service like [Sevalla](/learn/deployment/sevalla/). + +
+
+
+ + + + + + +
+
+ Are you stuck? + Working with MVC can be a bit challenging if you are just starting out because of the overly strict separation of concerns. If you are stuck at any point, feel free to ask for help in the + Leaf Discord server, or consider building an MVP using the Basic Leaf setup. While it is not as structured as MVC, it is a great way to get started with Leaf. + +
+
+
+ +## What to read next + +Now that you have built a simple pre-launch page, the next step is to get you familiar with the basics of building a full-stack application with Leaf. So you can build and launch your next big idea *fast*. + +
    +
  • +
    +
    +
    +
    +

    + Routing + +

    +

    + Learn more about routing in Leaf MVC, dynamic routes, middleware and more. +

    +
    +
    +
  • +
  • +
    +
    +
    +
    +

    + Using Controllers + +

    +

    + Controllers are the 'C' in MVC, and separate your logic from your views. +

    +
    +
    +
  • +
  • +
    +
    +
    +
    +

    + Using Models + +

    +

    + Models are the 'M' in MVC, and let you interact with your database programmatically. +

    +
    +
    +
  • +
  • +
    +
    +
    +
    +

    + Frontend + +

    +

    + Learn about SSR, SPA, and how to use Leaf with your favorite frontend framework. +

    +
    +
    +
  • +
diff --git a/src/public/_redirects b/src/public/_redirects index 24594015..787331fe 100644 --- a/src/public/_redirects +++ b/src/public/_redirects @@ -3,15 +3,17 @@ /modules/auth/ /docs/auth/ /modules/auth/* /docs/auth/:splat /modules/mail/ /docs/utils/mail/ -/docs/skeleton/ /docs/ +/docs/skeleton/ /docs/mvc/ /docs/mvc/models /docs/database/models /docs/leafapi/ /docs/mvc/ /docs/leafmvc/ /docs/mvc/ -/docs/mvc/migrations /docs/database/migrations -/docs/mvc/seeders /docs/database/seeders -/docs/mvc/factories /docs/database/factories +/docs/database/migrations /docs/database/files +/docs/database/seeders /docs/database/files +/docs/database/factories /docs/database/files +/docs/database/schema /docs/database/files /docs/mvc/models /docs/database/models -/docs/introduction/url-rewriting /docs/routing/url-rewriting.html +/docs/introduction/url-rewriting /learn/deployment/#url-rewriting +/docs/routing/url-rewriting.html /learn/deployment/#url-rewriting /modules/cors/ /docs/http/cors /modules/views/bareui/ /docs/frontend/bareui /modules/router/ /docs/routing/ @@ -19,4 +21,4 @@ /modules/views/* /docs/frontend/:splat /community/docs-writing-guide /community/guide /community/contribute /community/guide -docs/mvc/schema.html /docs/database/schema +/docs/installation /docs/ diff --git a/src/public/api/classes/Aloe-Command-AppDownCommand.html b/src/public/api/classes/Aloe-Command-AppDownCommand.html new file mode 100644 index 00000000..221b2ad8 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-AppDownCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
+

Leaf PHP

+ + + + + +
+ +
+
+ + + + +
+
+ + +
+

+ AppDownCommand + + + extends Command + + +
+ in package + +
+ + +

+ +
+ + +
+ + + +

Base class for Aloe Commands.

+ + + + + + + + + +

+ Table of Contents + + +

+ + + + + + + +

+ Constants + + +

+
+
+ FAILURE + +  = 1 +
+ +
+ INVALID + +  = 2 +
+ +
+ SUCCESS + +  = 0 +
+ +
+ + +

+ Properties + + +

+
+
+ $description + +  : mixed +
+
Description for command
+ +
+ $help + +  : mixed +
+
Help for command
+ +
+ $defaultDescription + +  : string|null +
+ +
+ $defaultName + +  : string|null +
+ +
+ $input + +  : InputInterface +
+
The input object
+ +
+ $output + +  : OutputInterface +
+
The output object
+ +
+ $aliases + +  : mixed +
+ +
+ $application + +  : mixed +
+ +
+ $code + +  : mixed +
+ +
+ $definition + +  : mixed +
+ +
+ $fullDefinition + +  : mixed +
+ +
+ $helperSet + +  : mixed +
+ +
+ $hidden + +  : mixed +
+ +
+ $ignoreValidationErrors + +  : mixed +
+ +
+ $name + +  : mixed +
+
The name of command to run in console
+ +
+ $processTitle + +  : mixed +
+ +
+ $synopsis + +  : mixed +
+ +
+ $usages + +  : mixed +
+ +
+ +

+ Methods + + +

+
+
+ __construct() + +  : mixed +
+ +
+ addArgument() + +  : $this +
+
Adds an argument.
+ +
+ addOption() + +  : $this +
+
Adds an option.
+ +
+ addUsage() + +  : $this +
+
Add a command usage example, it'll be prefixed with the command name.
+ +
+ argument() + +  : mixed +
+
Returns the argument value for a given argument name.
+ +
+ arguments() + +  : mixed +
+
Returns all the given arguments merged with the default values.
+ +
+ ask() + +  : mixed +
+
Ask a question
+ +
+ askMultiline() + +  : mixed +
+
Ask a question
+ +
+ askRaw() + +  : mixed +
+
Ask a question
+ +
+ autoComplete() + +  : mixed +
+
Ask a question with auto completion
+ +
+ choice() + +  : mixed +
+
Ask a question with possible answers
+ +
+ comment() + +  : mixed +
+
Output some data as a comment
+ +
+ complete() + +  : void +
+
Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
+ +
+ confirm() + +  : mixed +
+
Prompt user for confirmation
+ +
+ error() + +  : mixed +
+
Output some data as a error
+ +
+ getAliases() + +  : array<string|int, mixed> +
+
Returns the aliases for the command.
+ +
+ getApplication() + +  : Application|null +
+
Gets the application instance for this command.
+ +
+ getDefaultDescription() + +  : string|null +
+ +
+ getDefaultName() + +  : string|null +
+ +
+ getDefinition() + +  : InputDefinition +
+
Gets the InputDefinition attached to this Command.
+ +
+ getDescription() + +  : string +
+
Returns the description for the command.
+ +
+ getHelp() + +  : string +
+
Returns the help for the command.
+ +
+ getHelper() + +  : mixed +
+
Gets a helper instance by name.
+ +
+ getHelperSet() + +  : HelperSet|null +
+
Gets the helper set.
+ +
+ getName() + +  : string|null +
+
Returns the command name.
+ +
+ getNativeDefinition() + +  : InputDefinition +
+
Gets the InputDefinition to be used to create representations of this Command.
+ +
+ getProcessedHelp() + +  : string +
+
Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
+ +
+ getSynopsis() + +  : string +
+
Returns the synopsis for the command.
+ +
+ getUsages() + +  : array<string|int, mixed> +
+
Returns alternative usages of the command.
+ +
+ ignoreValidationErrors() + +  : mixed +
+
Ignores validation errors.
+ +
+ info() + +  : mixed +
+
Output some data as a info
+ +
+ input() + +  : mixed +
+
Get an argument or return the input object
+ +
+ isEnabled() + +  : bool +
+
Checks whether the command is enabled or not in the current environment.
+ +
+ isHidden() + +  : bool +
+ +
+ link() + +  : mixed +
+
Output some data as a link
+ +
+ multiChoice() + +  : mixed +
+
Ask a question with possible answers + multiple choice
+ +
+ option() + +  : mixed +
+
Get an input option
+ +
+ options() + +  : mixed +
+
Get all input options
+ +
+ output() + +  : mixed +
+
Output data or return the output object
+ +
+ question() + +  : mixed +
+
Output some data as a question
+ +
+ run() + +  : int +
+
Runs the command.
+ +
+ runProcess() + +  : mixed +
+
Run a new cli process
+ +
+ secret() + +  : mixed +
+
Prompt user for input but hide keystrokes
+ +
+ setAliases() + +  : $this +
+
Sets the aliases for the command.
+ +
+ setApplication() + +  : mixed +
+ +
+ setArgument() + +  : mixed +
+
Add a new argument
+ +
+ setCode() + +  : $this +
+
Sets the code to execute when running this command.
+ +
+ setDefinition() + +  : $this +
+
Sets an array of argument and option instances.
+ +
+ setDescription() + +  : $this +
+
Sets the description for the command.
+ +
+ setHelp() + +  : $this +
+
Sets the help for the command.
+ +
+ setHelperSet() + +  : mixed +
+ +
+ setHidden() + +  : $this +
+ +
+ setName() + +  : $this +
+
Sets the name of the command.
+ +
+ setOption() + +  : mixed +
+
Add a new option
+ +
+ setProcessTitle() + +  : $this +
+
Sets the process title of the command.
+ +
+ write() + +  : mixed +
+
Output some data
+ +
+ writeln() + +  : mixed +
+
Output some data
+ +
+ config() + +  : mixed +
+ +
+ configure() + +  : mixed +
+
Configures the current command.
+ +
+ execute() + +  : int +
+
Executes the current command.
+ +
+ handle() + +  : int +
+
Executes the current command.
+ +
+ initialize() + +  : mixed +
+
Initializes the command after the input has been bound and before the input +is validated.
+ +
+ interact() + +  : mixed +
+
Interacts with the user.
+ +
+ validateName() + +  : mixed +
+
Validates a command name.
+ +
+ + + + +
+

+ Constants + + +

+
+

+ FAILURE + + +

+ + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
+
+

+ INVALID + + +

+ + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
+
+

+ SUCCESS + + +

+ + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
+
+ + +
+

+ Properties + + +

+
+

+ $description + + + + +

+ + +

Description for command

+ + + + public + mixed + $description + = 'Place app in maintainance mode' + + + + + + + +
+
+

+ $help + + + + +

+ + +

Help for command

+ + + + public + mixed + $help + = 'Set app in maintainance mode' + + + + + + + +
+
+

+ $defaultDescription + + + + +

+ + + + + + protected + static string|null + $defaultDescription + + + +

The default command description

+
+ + + + + +
+
+

+ $defaultName + + + + +

+ + + + + + protected + static string|null + $defaultName + = 'app:down' + + +

The default command name

+
+ + + + + +
+
+

+ $input + + + + +

+ + +

The input object

+ + + + protected + InputInterface + $input + + + + + + + + +
+
+

+ $output + + + + +

+ + +

The output object

+ + + + protected + OutputInterface + $output + + + + + + + + +
+
+

+ $aliases + + + + +

+ + + + + + private + mixed + $aliases + = [] + + + + + + + +
+
+

+ $application + + + + +

+ + + + + + private + mixed + $application + + + + + + + + +
+
+

+ $code + + + + +

+ + + + + + private + mixed + $code + + + + + + + + +
+
+

+ $definition + + + + +

+ + + + + + private + mixed + $definition + + + + + + + + +
+
+

+ $fullDefinition + + + + +

+ + + + + + private + mixed + $fullDefinition + + + + + + + + +
+
+

+ $helperSet + + + + +

+ + + + + + private + mixed + $helperSet + + + + + + + + +
+
+

+ $hidden + + + + +

+ + + + + + private + mixed + $hidden + = false + + + + + + + +
+
+

+ $ignoreValidationErrors + + + + +

+ + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
+
+

+ $name + + + + +

+ + +

The name of command to run in console

+ + + + private + mixed + $name + + + + + + + + +
+
+

+ $processTitle + + + + +

+ + + + + + private + mixed + $processTitle + + + + + + + + +
+
+

+ $synopsis + + + + +

+ + + + + + private + mixed + $synopsis + = [] + + + + + + + +
+
+

+ $usages + + + + +

+ + + + + + private + mixed + $usages + = [] + + + + + + + +
+
+ +
+

+ Methods + + +

+
+

+ __construct() + + +

+ + + + + public + __construct([string|null $name = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : string|null + = null
+
+

The name of the command; passing null means it must be set in configure()

+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ LogicException + +

When the command name is empty

+
+ +
+
+ + + + +
+
+

+ addArgument() + + +

+ + +

Adds an argument.

+ + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
+
+ + +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ $mode + : int|null + = null
+
+

The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

+
+ +
+
+ $description + : string + = ''
+
+ +
+
+ $default + : mixed + = null
+
+

The default value (for InputArgument::OPTIONAL mode only)

+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ InvalidArgumentException + +

When argument mode is not valid

+
+ +
+
+ + + +
+
Return values
+ $this +
+ +
+
+

+ addOption() + + +

+ + +

Adds an option.

+ + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
+
+ + +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ $shortcut + : string|array<string|int, mixed>|null + = null
+
+

The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

+
+ +
+
+ $mode + : int|null + = null
+
+

The option mode: One of the InputOption::VALUE_* constants

+
+ +
+
+ $description + : string + = ''
+
+ +
+
+ $default + : mixed + = null
+
+

The default value (must be null for InputOption::VALUE_NONE)

+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ InvalidArgumentException + +

If option mode is invalid or incompatible

+
+ +
+
+ + + +
+
Return values
+ $this +
+ +
+
+

+ addUsage() + + +

+ + +

Add a command usage example, it'll be prefixed with the command name.

+ + + public + addUsage(string $usage) : $this + +
+
+ + +
Parameters
+
+
+ $usage + : string +
+
+ +
+
+ + + + + +
+
Return values
+ $this +
+ +
+
+

+ argument() + + +

+ + +

Returns the argument value for a given argument name.

+ + + public + argument(string $name) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ + + + + + +
+
+

+ arguments() + + +

+ + +

Returns all the given arguments merged with the default values.

+ + + public + arguments() : mixed + +
+
+ + + + + + + + +
+
+

+ ask() + + +

+ + +

Ask a question

+ + + public + ask(string $question[, mixed $default = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ $default + : mixed + = null
+
+ +
+
+ + + + + + +
+
+

+ askMultiline() + + +

+ + +

Ask a question

+ + + public + askMultiline(string $question) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ + + + + + +
+
+

+ askRaw() + + +

+ + +

Ask a question

+ + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ $default + : mixed + = null
+
+ +
+
+ + + + + + +
+
+

+ autoComplete() + + +

+ + +

Ask a question with auto completion

+ + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ $potentialAnswers + : array<string|int, mixed> +
+
+ +
+
+ $default + : mixed + = null
+
+ +
+
+ + + + + + +
+
+

+ choice() + + +

+ + +

Ask a question with possible answers

+ + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ $choices + : array<string|int, mixed> +
+
+ +
+
+ $errorMessage + : string + = 'Invalid choice'
+
+ +
+
+ $default + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ comment() + + +

+ + +

Output some data as a comment

+ + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $messages + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+ +
+

+ confirm() + + +

+ + +

Prompt user for confirmation

+ + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : mixed +
+
+ +
+
+ $param + : mixed + = false
+
+ +
+
+ $regex + : mixed + = '/^y/i'
+
+ +
+
+ + + + + + +
+
+

+ error() + + +

+ + +

Output some data as a error

+ + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $messages + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ getAliases() + + +

+ + +

Returns the aliases for the command.

+ + + public + getAliases() : array<string|int, mixed> + +
+
+ + + + + + + +
+
Return values
+ array<string|int, mixed> +
+ +
+
+

+ getApplication() + + +

+ + +

Gets the application instance for this command.

+ + + public + getApplication() : Application|null + +
+
+ + + + + + + +
+
Return values
+ Application|null +
+ +
+
+

+ getDefaultDescription() + + +

+ + + + + public + static getDefaultDescription() : string|null + +
+
+ + + + + + + +
+
Return values
+ string|null +
+ +
+
+

+ getDefaultName() + + +

+ + + + + public + static getDefaultName() : string|null + +
+
+ + + + + + + +
+
Return values
+ string|null +
+ +
+
+

+ getDefinition() + + +

+ + +

Gets the InputDefinition attached to this Command.

+ + + public + getDefinition() : InputDefinition + +
+
+ + + + + + + +
+
Return values
+ InputDefinition +
+ +
+
+

+ getDescription() + + +

+ + +

Returns the description for the command.

+ + + public + getDescription() : string + +
+
+ + + + + + + +
+
Return values
+ string +
+ +
+
+

+ getHelp() + + +

+ + +

Returns the help for the command.

+ + + public + getHelp() : string + +
+
+ + + + + + + +
+
Return values
+ string +
+ +
+
+

+ getHelper() + + +

+ + +

Gets a helper instance by name.

+ + + public + getHelper(string $name) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ LogicException + +

if no HelperSet is defined

+
+ +
+
+ throws +
+
+ InvalidArgumentException + +

if the helper is not defined

+
+ +
+
+ + + + +
+
+

+ getHelperSet() + + +

+ + +

Gets the helper set.

+ + + public + getHelperSet() : HelperSet|null + +
+
+ + + + + + + +
+
Return values
+ HelperSet|null +
+ +
+
+

+ getName() + + +

+ + +

Returns the command name.

+ + + public + getName() : string|null + +
+
+ + + + + + + +
+
Return values
+ string|null +
+ +
+
+

+ getNativeDefinition() + + +

+ + +

Gets the InputDefinition to be used to create representations of this Command.

+ + + public + getNativeDefinition() : InputDefinition + +
+
+ +

Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

+

This method is not part of public API and should not be used directly.

+
+ + + + + + +
+
Return values
+ InputDefinition +
+ +
+
+

+ getProcessedHelp() + + +

+ + +

Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

+ + + public + getProcessedHelp() : string + +
+
+ + + + + + + +
+
Return values
+ string +
+ +
+
+

+ getSynopsis() + + +

+ + +

Returns the synopsis for the command.

+ + + public + getSynopsis([bool $short = false ]) : string + +
+
+ + +
Parameters
+
+
+ $short + : bool + = false
+
+

Whether to show the short version of the synopsis (with options folded) or not

+
+ +
+
+ + + + + +
+
Return values
+ string +
+ +
+
+

+ getUsages() + + +

+ + +

Returns alternative usages of the command.

+ + + public + getUsages() : array<string|int, mixed> + +
+
+ + + + + + + +
+
Return values
+ array<string|int, mixed> +
+ +
+
+

+ ignoreValidationErrors() + + +

+ + +

Ignores validation errors.

+ + + public + ignoreValidationErrors() : mixed + +
+
+ +

This is mainly useful for the help command.

+
+ + + + + + + +
+
+

+ info() + + +

+ + +

Output some data as a info

+ + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $messages + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ input() + + +

+ + +

Get an argument or return the input object

+ + + public + input([string $data = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $data + : string + = null
+
+

The argument to return

+
+ +
+
+ + + + + + +
+
+

+ isEnabled() + + +

+ + +

Checks whether the command is enabled or not in the current environment.

+ + + public + isEnabled() : bool + +
+
+ +

Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

+
+ + + + + + +
+
Return values
+ bool +
+ +
+
+

+ isHidden() + + +

+ + + + + public + isHidden() : bool + +
+
+ + + + + + + +
+
Return values
+ bool + — +

whether the command should be publicly shown or not

+
+ +
+ +
+
+ + + +

Output some data as a link

+ + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $link + : mixed +
+
+ +
+
+ $display + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ multiChoice() + + +

+ + +

Ask a question with possible answers + multiple choice

+ + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ $choices + : array<string|int, mixed> +
+
+ +
+
+ $errorMessage + : string + = 'Invalid choice'
+
+ +
+
+ $default + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ option() + + +

+ + +

Get an input option

+ + + public + option(string $name) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ + + + + + +
+
+

+ options() + + +

+ + +

Get all input options

+ + + public + options(string $name) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ + + + + + +
+
+

+ output() + + +

+ + +

Output data or return the output object

+ + + public + output([string $data = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $data + : string + = null
+
+

The argument to return

+
+ +
+
+ + + + + + +
+
+

+ question() + + +

+ + +

Output some data as a question

+ + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $messages + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ run() + + +

+ + +

Runs the command.

+ + + public + run(InputInterface $input, OutputInterface $output) : int + +
+
+ +

The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

+
+ +
Parameters
+
+
+ $input + : InputInterface +
+
+ +
+
+ $output + : OutputInterface +
+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ Exception + +

When binding input fails. Bypass this by calling .

+
+ +
+
+ see +
+
+ setCode() + + +
+
+ see +
+
+ execute() + + +
+
+ + + +
+
Return values
+ int + — +

The command exit code

+
+ +
+ +
+
+

+ runProcess() + + +

+ + +

Run a new cli process

+ + + public + runProcess(array<string|int, mixed> $process) : mixed + +
+
+ + +
Parameters
+
+
+ $process + : array<string|int, mixed> +
+
+ +
+
+ + + + + + +
+
+

+ secret() + + +

+ + +

Prompt user for input but hide keystrokes

+ + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
+
+ + +
Parameters
+
+
+ $question + : string +
+
+ +
+
+ $useFallback + : bool + = false
+
+ +
+
+ + + + + + +
+
+

+ setAliases() + + +

+ + +

Sets the aliases for the command.

+ + + public + setAliases(array<string|int, string> $aliases) : $this + +
+
+ + +
Parameters
+
+
+ $aliases + : array<string|int, string> +
+
+

An array of aliases for the command

+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ InvalidArgumentException + +

When an alias is invalid

+
+ +
+
+ + + +
+
Return values
+ $this +
+ +
+
+

+ setApplication() + + +

+ + + + + public + setApplication([Application|null $application = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $application + : Application|null + = null
+
+ +
+
+ + + + + + +
+
+

+ setArgument() + + +

+ + +

Add a new argument

+ + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : mixed +
+
+ +
+
+ $mode + : mixed + = null
+
+ +
+
+ $description + : mixed + = ''
+
+ +
+
+ $default + : mixed + = null
+
+ +
+
+ + + + + + +
+
+

+ setCode() + + +

+ + +

Sets the code to execute when running this command.

+ + + public + setCode(callable $code) : $this + +
+
+ +

If this method is used, it overrides the code defined +in the execute() method.

+
+ +
Parameters
+
+
+ $code + : callable +
+
+

A callable(InputInterface $input, OutputInterface $output)

+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ InvalidArgumentException + + +
+
+ see +
+
+ execute() + + +
+
+ + + +
+
Return values
+ $this +
+ +
+
+

+ setDefinition() + + +

+ + +

Sets an array of argument and option instances.

+ + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
+
+ + +
Parameters
+
+
+ $definition + : array<string|int, mixed>|InputDefinition +
+
+

An array of argument and option instances or a definition instance

+
+ +
+
+ + + + + +
+
Return values
+ $this +
+ +
+
+

+ setDescription() + + +

+ + +

Sets the description for the command.

+ + + public + setDescription(string $description) : $this + +
+
+ + +
Parameters
+
+
+ $description + : string +
+
+ +
+
+ + + + + +
+
Return values
+ $this +
+ +
+
+

+ setHelp() + + +

+ + +

Sets the help for the command.

+ + + public + setHelp(string $help) : $this + +
+
+ + +
Parameters
+
+
+ $help + : string +
+
+ +
+
+ + + + + +
+
Return values
+ $this +
+ +
+
+

+ setHelperSet() + + +

+ + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
+
+ + +
Parameters
+
+
+ $helperSet + : HelperSet +
+
+ +
+
+ + + + + + +
+
+

+ setHidden() + + +

+ + + + + public + setHidden(bool $hidden) : $this + +
+
+ + +
Parameters
+
+
+ $hidden + : bool +
+
+

Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

+
+ +
+
+ + +
+ Tags + + +
+
+
+ final +
+
+ +

since Symfony 5.1

+
+ +
+
+ + + +
+
Return values
+ $this +
+ +
+
+

+ setName() + + +

+ + +

Sets the name of the command.

+ + + public + setName(string $name) : $this + +
+
+ +

This method can set both the namespace and the name if +you separate them by a colon (:)

+
$command->setName('foo:bar');
+
+
+ +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ InvalidArgumentException + +

When the name is invalid

+
+ +
+
+ + + +
+
Return values
+ $this +
+ +
+
+

+ setOption() + + +

+ + +

Add a new option

+ + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
+
+ + +
Parameters
+
+
+ $name + : mixed +
+
+ +
+
+ $shortcut + : mixed + = null
+
+ +
+
+ $mode + : mixed + = null
+
+ +
+
+ $description + : mixed + = ''
+
+ +
+
+ $default + : mixed + = null
+
+ +
+
+ + + + + + +
+
+

+ setProcessTitle() + + +

+ + +

Sets the process title of the command.

+ + + public + setProcessTitle(string $title) : $this + +
+
+ +

This feature should be used only when creating a long process command, +like a daemon.

+
+ +
Parameters
+
+
+ $title + : string +
+
+ +
+
+ + + + + +
+
Return values
+ $this +
+ +
+
+

+ write() + + +

+ + +

Output some data

+ + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $messages + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ writeln() + + +

+ + +

Output some data

+ + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
+
+ + +
Parameters
+
+
+ $messages + : mixed +
+
+ +
+
+ $options + : mixed + = 0
+
+ +
+
+ + + + + + +
+
+

+ config() + + +

+ + + + + protected + config() : mixed + +
+
+ + + + + + + + +
+
+

+ configure() + + +

+ + +

Configures the current command.

+ + + protected + configure() : mixed + +
+
+ + + + + + + + +
+
+

+ execute() + + +

+ + +

Executes the current command.

+ + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
+
+ +

This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

+
+ +
Parameters
+
+
+ $input + : InputInterface +
+
+ +
+
+ $output + : OutputInterface +
+
+ +
+
+ + + + + +
+
Return values
+ int + — +

0 if everything went fine, or an exit code

+
+ +
+ +
+
+

+ handle() + + +

+ + +

Executes the current command.

+ + + protected + handle() : int + +
+
+ +

This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

+
+ + + + + + +
+
Return values
+ int + — +

0 if everything went fine, or an exit code

+
+ +
+ +
+
+

+ initialize() + + +

+ + +

Initializes the command after the input has been bound and before the input +is validated.

+ + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
+
+ +

This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

+
+ +
Parameters
+
+
+ $input + : InputInterface +
+
+ +
+
+ $output + : OutputInterface +
+
+ +
+
+ + +
+ Tags + + +
+
+
+ see +
+
+ InputInterface::bind() + + +
+
+ see +
+
+ InputInterface::validate() + + +
+
+ + + + +
+
+

+ interact() + + +

+ + +

Interacts with the user.

+ + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
+
+ +

This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

+
+ +
Parameters
+
+
+ $input + : InputInterface +
+
+ +
+
+ $output + : OutputInterface +
+
+ +
+
+ + + + + + +
+
+

+ validateName() + + +

+ + +

Validates a command name.

+ + + private + validateName(string $name) : mixed + +
+
+ +

It must be non-empty and parts can optionally be separated by ":".

+
+ +
Parameters
+
+
+ $name + : string +
+
+ +
+
+ + +
+ Tags + + +
+
+
+ throws +
+
+ InvalidArgumentException + +

When the name is invalid

+
+ +
+
+ + + + +
+
+ +
+
+
+
+

+        
+ +
+
+ + + +
+
+
+ +
+ On this page + + +
+ +
+
+
+
+
+

Search results

+ +
+
+
    +
    +
    +
    +
    + + +
    + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-AppUpCommand.html b/src/public/api/classes/Aloe-Command-AppUpCommand.html new file mode 100644 index 00000000..b7bb63b8 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-AppUpCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
    +

    Leaf PHP

    + + + + + +
    + +
    +
    + + + + +
    +
    + + +
    +

    + AppUpCommand + + + extends Command + + +
    + in package + +
    + + +

    + +
    + + +
    + + + +

    Base class for Aloe Commands.

    + + + + + + + + + +

    + Table of Contents + + +

    + + + + + + + +

    + Constants + + +

    +
    +
    + FAILURE + +  = 1 +
    + +
    + INVALID + +  = 2 +
    + +
    + SUCCESS + +  = 0 +
    + +
    + + +

    + Properties + + +

    +
    +
    + $description + +  : mixed +
    +
    Description for command
    + +
    + $help + +  : mixed +
    +
    Help for command
    + +
    + $defaultDescription + +  : string|null +
    + +
    + $defaultName + +  : string|null +
    + +
    + $input + +  : InputInterface +
    +
    The input object
    + +
    + $output + +  : OutputInterface +
    +
    The output object
    + +
    + $aliases + +  : mixed +
    + +
    + $application + +  : mixed +
    + +
    + $code + +  : mixed +
    + +
    + $definition + +  : mixed +
    + +
    + $fullDefinition + +  : mixed +
    + +
    + $helperSet + +  : mixed +
    + +
    + $hidden + +  : mixed +
    + +
    + $ignoreValidationErrors + +  : mixed +
    + +
    + $name + +  : mixed +
    +
    The name of command to run in console
    + +
    + $processTitle + +  : mixed +
    + +
    + $synopsis + +  : mixed +
    + +
    + $usages + +  : mixed +
    + +
    + +

    + Methods + + +

    +
    +
    + __construct() + +  : mixed +
    + +
    + addArgument() + +  : $this +
    +
    Adds an argument.
    + +
    + addOption() + +  : $this +
    +
    Adds an option.
    + +
    + addUsage() + +  : $this +
    +
    Add a command usage example, it'll be prefixed with the command name.
    + +
    + argument() + +  : mixed +
    +
    Returns the argument value for a given argument name.
    + +
    + arguments() + +  : mixed +
    +
    Returns all the given arguments merged with the default values.
    + +
    + ask() + +  : mixed +
    +
    Ask a question
    + +
    + askMultiline() + +  : mixed +
    +
    Ask a question
    + +
    + askRaw() + +  : mixed +
    +
    Ask a question
    + +
    + autoComplete() + +  : mixed +
    +
    Ask a question with auto completion
    + +
    + choice() + +  : mixed +
    +
    Ask a question with possible answers
    + +
    + comment() + +  : mixed +
    +
    Output some data as a comment
    + +
    + complete() + +  : void +
    +
    Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
    + +
    + confirm() + +  : mixed +
    +
    Prompt user for confirmation
    + +
    + error() + +  : mixed +
    +
    Output some data as a error
    + +
    + getAliases() + +  : array<string|int, mixed> +
    +
    Returns the aliases for the command.
    + +
    + getApplication() + +  : Application|null +
    +
    Gets the application instance for this command.
    + +
    + getDefaultDescription() + +  : string|null +
    + +
    + getDefaultName() + +  : string|null +
    + +
    + getDefinition() + +  : InputDefinition +
    +
    Gets the InputDefinition attached to this Command.
    + +
    + getDescription() + +  : string +
    +
    Returns the description for the command.
    + +
    + getHelp() + +  : string +
    +
    Returns the help for the command.
    + +
    + getHelper() + +  : mixed +
    +
    Gets a helper instance by name.
    + +
    + getHelperSet() + +  : HelperSet|null +
    +
    Gets the helper set.
    + +
    + getName() + +  : string|null +
    +
    Returns the command name.
    + +
    + getNativeDefinition() + +  : InputDefinition +
    +
    Gets the InputDefinition to be used to create representations of this Command.
    + +
    + getProcessedHelp() + +  : string +
    +
    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
    + +
    + getSynopsis() + +  : string +
    +
    Returns the synopsis for the command.
    + +
    + getUsages() + +  : array<string|int, mixed> +
    +
    Returns alternative usages of the command.
    + +
    + ignoreValidationErrors() + +  : mixed +
    +
    Ignores validation errors.
    + +
    + info() + +  : mixed +
    +
    Output some data as a info
    + +
    + input() + +  : mixed +
    +
    Get an argument or return the input object
    + +
    + isEnabled() + +  : bool +
    +
    Checks whether the command is enabled or not in the current environment.
    + +
    + isHidden() + +  : bool +
    + +
    + link() + +  : mixed +
    +
    Output some data as a link
    + +
    + multiChoice() + +  : mixed +
    +
    Ask a question with possible answers + multiple choice
    + +
    + option() + +  : mixed +
    +
    Get an input option
    + +
    + options() + +  : mixed +
    +
    Get all input options
    + +
    + output() + +  : mixed +
    +
    Output data or return the output object
    + +
    + question() + +  : mixed +
    +
    Output some data as a question
    + +
    + run() + +  : int +
    +
    Runs the command.
    + +
    + runProcess() + +  : mixed +
    +
    Run a new cli process
    + +
    + secret() + +  : mixed +
    +
    Prompt user for input but hide keystrokes
    + +
    + setAliases() + +  : $this +
    +
    Sets the aliases for the command.
    + +
    + setApplication() + +  : mixed +
    + +
    + setArgument() + +  : mixed +
    +
    Add a new argument
    + +
    + setCode() + +  : $this +
    +
    Sets the code to execute when running this command.
    + +
    + setDefinition() + +  : $this +
    +
    Sets an array of argument and option instances.
    + +
    + setDescription() + +  : $this +
    +
    Sets the description for the command.
    + +
    + setHelp() + +  : $this +
    +
    Sets the help for the command.
    + +
    + setHelperSet() + +  : mixed +
    + +
    + setHidden() + +  : $this +
    + +
    + setName() + +  : $this +
    +
    Sets the name of the command.
    + +
    + setOption() + +  : mixed +
    +
    Add a new option
    + +
    + setProcessTitle() + +  : $this +
    +
    Sets the process title of the command.
    + +
    + write() + +  : mixed +
    +
    Output some data
    + +
    + writeln() + +  : mixed +
    +
    Output some data
    + +
    + config() + +  : mixed +
    + +
    + configure() + +  : mixed +
    +
    Configures the current command.
    + +
    + execute() + +  : int +
    +
    Executes the current command.
    + +
    + handle() + +  : int +
    +
    Executes the current command.
    + +
    + initialize() + +  : mixed +
    +
    Initializes the command after the input has been bound and before the input +is validated.
    + +
    + interact() + +  : mixed +
    +
    Interacts with the user.
    + +
    + validateName() + +  : mixed +
    +
    Validates a command name.
    + +
    + + + + +
    +

    + Constants + + +

    +
    +

    + FAILURE + + +

    + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
    +
    +

    + INVALID + + +

    + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
    +
    +

    + SUCCESS + + +

    + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
    +
    + + +
    +

    + Properties + + +

    +
    +

    + $description + + + + +

    + + +

    Description for command

    + + + + public + mixed + $description + = 'Remove app from maintainance mode' + + + + + + + +
    +
    +

    + $help + + + + +

    + + +

    Help for command

    + + + + public + mixed + $help + = 'Set app in normal mode' + + + + + + + +
    +
    +

    + $defaultDescription + + + + +

    + + + + + + protected + static string|null + $defaultDescription + + + +

    The default command description

    +
    + + + + + +
    +
    +

    + $defaultName + + + + +

    + + + + + + protected + static string|null + $defaultName + = 'app:up' + + +

    The default command name

    +
    + + + + + +
    +
    +

    + $input + + + + +

    + + +

    The input object

    + + + + protected + InputInterface + $input + + + + + + + + +
    +
    +

    + $output + + + + +

    + + +

    The output object

    + + + + protected + OutputInterface + $output + + + + + + + + +
    +
    +

    + $aliases + + + + +

    + + + + + + private + mixed + $aliases + = [] + + + + + + + +
    +
    +

    + $application + + + + +

    + + + + + + private + mixed + $application + + + + + + + + +
    +
    +

    + $code + + + + +

    + + + + + + private + mixed + $code + + + + + + + + +
    +
    +

    + $definition + + + + +

    + + + + + + private + mixed + $definition + + + + + + + + +
    +
    +

    + $fullDefinition + + + + +

    + + + + + + private + mixed + $fullDefinition + + + + + + + + +
    +
    +

    + $helperSet + + + + +

    + + + + + + private + mixed + $helperSet + + + + + + + + +
    +
    +

    + $hidden + + + + +

    + + + + + + private + mixed + $hidden + = false + + + + + + + +
    +
    +

    + $ignoreValidationErrors + + + + +

    + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
    +
    +

    + $name + + + + +

    + + +

    The name of command to run in console

    + + + + private + mixed + $name + + + + + + + + +
    +
    +

    + $processTitle + + + + +

    + + + + + + private + mixed + $processTitle + + + + + + + + +
    +
    +

    + $synopsis + + + + +

    + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
    +
    +

    + $usages + + + + +

    + + + + + + private + mixed + $usages + = [] + + + + + + + +
    +
    + +
    +

    + Methods + + +

    +
    +

    + __construct() + + +

    + + + + + public + __construct([string|null $name = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string|null + = null
    +
    +

    The name of the command; passing null means it must be set in configure()

    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + LogicException + +

    When the command name is empty

    +
    + +
    +
    + + + + +
    +
    +

    + addArgument() + + +

    + + +

    Adds an argument.

    + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + $mode + : int|null + = null
    +
    +

    The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

    +
    + +
    +
    + $description + : string + = ''
    +
    + +
    +
    + $default + : mixed + = null
    +
    +

    The default value (for InputArgument::OPTIONAL mode only)

    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + InvalidArgumentException + +

    When argument mode is not valid

    +
    + +
    +
    + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + addOption() + + +

    + + +

    Adds an option.

    + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + $shortcut + : string|array<string|int, mixed>|null + = null
    +
    +

    The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

    +
    + +
    +
    + $mode + : int|null + = null
    +
    +

    The option mode: One of the InputOption::VALUE_* constants

    +
    + +
    +
    + $description + : string + = ''
    +
    + +
    +
    + $default + : mixed + = null
    +
    +

    The default value (must be null for InputOption::VALUE_NONE)

    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + InvalidArgumentException + +

    If option mode is invalid or incompatible

    +
    + +
    +
    + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + addUsage() + + +

    + + +

    Add a command usage example, it'll be prefixed with the command name.

    + + + public + addUsage(string $usage) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $usage + : string +
    +
    + +
    +
    + + + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + argument() + + +

    + + +

    Returns the argument value for a given argument name.

    + + + public + argument(string $name) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + + + + + + +
    +
    +

    + arguments() + + +

    + + +

    Returns all the given arguments merged with the default values.

    + + + public + arguments() : mixed + +
    +
    + + + + + + + + +
    +
    +

    + ask() + + +

    + + +

    Ask a question

    + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + $default + : mixed + = null
    +
    + +
    +
    + + + + + + +
    +
    +

    + askMultiline() + + +

    + + +

    Ask a question

    + + + public + askMultiline(string $question) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + + + + + + +
    +
    +

    + askRaw() + + +

    + + +

    Ask a question

    + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + $default + : mixed + = null
    +
    + +
    +
    + + + + + + +
    +
    +

    + autoComplete() + + +

    + + +

    Ask a question with auto completion

    + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + $potentialAnswers + : array<string|int, mixed> +
    +
    + +
    +
    + $default + : mixed + = null
    +
    + +
    +
    + + + + + + +
    +
    +

    + choice() + + +

    + + +

    Ask a question with possible answers

    + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + $choices + : array<string|int, mixed> +
    +
    + +
    +
    + $errorMessage + : string + = 'Invalid choice'
    +
    + +
    +
    + $default + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + comment() + + +

    + + +

    Output some data as a comment

    + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $messages + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    + +
    +

    + confirm() + + +

    + + +

    Prompt user for confirmation

    + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : mixed +
    +
    + +
    +
    + $param + : mixed + = false
    +
    + +
    +
    + $regex + : mixed + = '/^y/i'
    +
    + +
    +
    + + + + + + +
    +
    +

    + error() + + +

    + + +

    Output some data as a error

    + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $messages + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + getAliases() + + +

    + + +

    Returns the aliases for the command.

    + + + public + getAliases() : array<string|int, mixed> + +
    +
    + + + + + + + +
    +
    Return values
    + array<string|int, mixed> +
    + +
    +
    +

    + getApplication() + + +

    + + +

    Gets the application instance for this command.

    + + + public + getApplication() : Application|null + +
    +
    + + + + + + + +
    +
    Return values
    + Application|null +
    + +
    +
    +

    + getDefaultDescription() + + +

    + + + + + public + static getDefaultDescription() : string|null + +
    +
    + + + + + + + +
    +
    Return values
    + string|null +
    + +
    +
    +

    + getDefaultName() + + +

    + + + + + public + static getDefaultName() : string|null + +
    +
    + + + + + + + +
    +
    Return values
    + string|null +
    + +
    +
    +

    + getDefinition() + + +

    + + +

    Gets the InputDefinition attached to this Command.

    + + + public + getDefinition() : InputDefinition + +
    +
    + + + + + + + +
    +
    Return values
    + InputDefinition +
    + +
    +
    +

    + getDescription() + + +

    + + +

    Returns the description for the command.

    + + + public + getDescription() : string + +
    +
    + + + + + + + +
    +
    Return values
    + string +
    + +
    +
    +

    + getHelp() + + +

    + + +

    Returns the help for the command.

    + + + public + getHelp() : string + +
    +
    + + + + + + + +
    +
    Return values
    + string +
    + +
    +
    +

    + getHelper() + + +

    + + +

    Gets a helper instance by name.

    + + + public + getHelper(string $name) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + LogicException + +

    if no HelperSet is defined

    +
    + +
    +
    + throws +
    +
    + InvalidArgumentException + +

    if the helper is not defined

    +
    + +
    +
    + + + + +
    +
    +

    + getHelperSet() + + +

    + + +

    Gets the helper set.

    + + + public + getHelperSet() : HelperSet|null + +
    +
    + + + + + + + +
    +
    Return values
    + HelperSet|null +
    + +
    +
    +

    + getName() + + +

    + + +

    Returns the command name.

    + + + public + getName() : string|null + +
    +
    + + + + + + + +
    +
    Return values
    + string|null +
    + +
    +
    +

    + getNativeDefinition() + + +

    + + +

    Gets the InputDefinition to be used to create representations of this Command.

    + + + public + getNativeDefinition() : InputDefinition + +
    +
    + +

    Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

    +

    This method is not part of public API and should not be used directly.

    +
    + + + + + + +
    +
    Return values
    + InputDefinition +
    + +
    +
    +

    + getProcessedHelp() + + +

    + + +

    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

    + + + public + getProcessedHelp() : string + +
    +
    + + + + + + + +
    +
    Return values
    + string +
    + +
    +
    +

    + getSynopsis() + + +

    + + +

    Returns the synopsis for the command.

    + + + public + getSynopsis([bool $short = false ]) : string + +
    +
    + + +
    Parameters
    +
    +
    + $short + : bool + = false
    +
    +

    Whether to show the short version of the synopsis (with options folded) or not

    +
    + +
    +
    + + + + + +
    +
    Return values
    + string +
    + +
    +
    +

    + getUsages() + + +

    + + +

    Returns alternative usages of the command.

    + + + public + getUsages() : array<string|int, mixed> + +
    +
    + + + + + + + +
    +
    Return values
    + array<string|int, mixed> +
    + +
    +
    +

    + ignoreValidationErrors() + + +

    + + +

    Ignores validation errors.

    + + + public + ignoreValidationErrors() : mixed + +
    +
    + +

    This is mainly useful for the help command.

    +
    + + + + + + + +
    +
    +

    + info() + + +

    + + +

    Output some data as a info

    + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $messages + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + input() + + +

    + + +

    Get an argument or return the input object

    + + + public + input([string $data = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $data + : string + = null
    +
    +

    The argument to return

    +
    + +
    +
    + + + + + + +
    +
    +

    + isEnabled() + + +

    + + +

    Checks whether the command is enabled or not in the current environment.

    + + + public + isEnabled() : bool + +
    +
    + +

    Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

    +
    + + + + + + +
    +
    Return values
    + bool +
    + +
    +
    +

    + isHidden() + + +

    + + + + + public + isHidden() : bool + +
    +
    + + + + + + + +
    +
    Return values
    + bool + — +

    whether the command should be publicly shown or not

    +
    + +
    + +
    +
    + + + +

    Output some data as a link

    + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $link + : mixed +
    +
    + +
    +
    + $display + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + multiChoice() + + +

    + + +

    Ask a question with possible answers + multiple choice

    + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + $choices + : array<string|int, mixed> +
    +
    + +
    +
    + $errorMessage + : string + = 'Invalid choice'
    +
    + +
    +
    + $default + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + option() + + +

    + + +

    Get an input option

    + + + public + option(string $name) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + + + + + + +
    +
    +

    + options() + + +

    + + +

    Get all input options

    + + + public + options(string $name) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + + + + + + +
    +
    +

    + output() + + +

    + + +

    Output data or return the output object

    + + + public + output([string $data = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $data + : string + = null
    +
    +

    The argument to return

    +
    + +
    +
    + + + + + + +
    +
    +

    + question() + + +

    + + +

    Output some data as a question

    + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $messages + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + run() + + +

    + + +

    Runs the command.

    + + + public + run(InputInterface $input, OutputInterface $output) : int + +
    +
    + +

    The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

    +
    + +
    Parameters
    +
    +
    + $input + : InputInterface +
    +
    + +
    +
    + $output + : OutputInterface +
    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + Exception + +

    When binding input fails. Bypass this by calling .

    +
    + +
    +
    + see +
    +
    + setCode() + + +
    +
    + see +
    +
    + execute() + + +
    +
    + + + +
    +
    Return values
    + int + — +

    The command exit code

    +
    + +
    + +
    +
    +

    + runProcess() + + +

    + + +

    Run a new cli process

    + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $process + : array<string|int, mixed> +
    +
    + +
    +
    + + + + + + +
    +
    +

    + secret() + + +

    + + +

    Prompt user for input but hide keystrokes

    + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $question + : string +
    +
    + +
    +
    + $useFallback + : bool + = false
    +
    + +
    +
    + + + + + + +
    +
    +

    + setAliases() + + +

    + + +

    Sets the aliases for the command.

    + + + public + setAliases(array<string|int, string> $aliases) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $aliases + : array<string|int, string> +
    +
    +

    An array of aliases for the command

    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + InvalidArgumentException + +

    When an alias is invalid

    +
    + +
    +
    + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setApplication() + + +

    + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $application + : Application|null + = null
    +
    + +
    +
    + + + + + + +
    +
    +

    + setArgument() + + +

    + + +

    Add a new argument

    + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : mixed +
    +
    + +
    +
    + $mode + : mixed + = null
    +
    + +
    +
    + $description + : mixed + = ''
    +
    + +
    +
    + $default + : mixed + = null
    +
    + +
    +
    + + + + + + +
    +
    +

    + setCode() + + +

    + + +

    Sets the code to execute when running this command.

    + + + public + setCode(callable $code) : $this + +
    +
    + +

    If this method is used, it overrides the code defined +in the execute() method.

    +
    + +
    Parameters
    +
    +
    + $code + : callable +
    +
    +

    A callable(InputInterface $input, OutputInterface $output)

    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + InvalidArgumentException + + +
    +
    + see +
    +
    + execute() + + +
    +
    + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setDefinition() + + +

    + + +

    Sets an array of argument and option instances.

    + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $definition + : array<string|int, mixed>|InputDefinition +
    +
    +

    An array of argument and option instances or a definition instance

    +
    + +
    +
    + + + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setDescription() + + +

    + + +

    Sets the description for the command.

    + + + public + setDescription(string $description) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $description + : string +
    +
    + +
    +
    + + + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setHelp() + + +

    + + +

    Sets the help for the command.

    + + + public + setHelp(string $help) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $help + : string +
    +
    + +
    +
    + + + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setHelperSet() + + +

    + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $helperSet + : HelperSet +
    +
    + +
    +
    + + + + + + +
    +
    +

    + setHidden() + + +

    + + + + + public + setHidden(bool $hidden) : $this + +
    +
    + + +
    Parameters
    +
    +
    + $hidden + : bool +
    +
    +

    Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + final +
    +
    + +

    since Symfony 5.1

    +
    + +
    +
    + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setName() + + +

    + + +

    Sets the name of the command.

    + + + public + setName(string $name) : $this + +
    +
    + +

    This method can set both the namespace and the name if +you separate them by a colon (:)

    +
    $command->setName('foo:bar');
    +
    +
    + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + InvalidArgumentException + +

    When the name is invalid

    +
    + +
    +
    + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + setOption() + + +

    + + +

    Add a new option

    + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $name + : mixed +
    +
    + +
    +
    + $shortcut + : mixed + = null
    +
    + +
    +
    + $mode + : mixed + = null
    +
    + +
    +
    + $description + : mixed + = ''
    +
    + +
    +
    + $default + : mixed + = null
    +
    + +
    +
    + + + + + + +
    +
    +

    + setProcessTitle() + + +

    + + +

    Sets the process title of the command.

    + + + public + setProcessTitle(string $title) : $this + +
    +
    + +

    This feature should be used only when creating a long process command, +like a daemon.

    +
    + +
    Parameters
    +
    +
    + $title + : string +
    +
    + +
    +
    + + + + + +
    +
    Return values
    + $this +
    + +
    +
    +

    + write() + + +

    + + +

    Output some data

    + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $messages + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + writeln() + + +

    + + +

    Output some data

    + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
    +
    + + +
    Parameters
    +
    +
    + $messages + : mixed +
    +
    + +
    +
    + $options + : mixed + = 0
    +
    + +
    +
    + + + + + + +
    +
    +

    + config() + + +

    + + + + + protected + config() : mixed + +
    +
    + + + + + + + + +
    +
    +

    + configure() + + +

    + + +

    Configures the current command.

    + + + protected + configure() : mixed + +
    +
    + + + + + + + + +
    +
    +

    + execute() + + +

    + + +

    Executes the current command.

    + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
    +
    + +

    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

    +
    + +
    Parameters
    +
    +
    + $input + : InputInterface +
    +
    + +
    +
    + $output + : OutputInterface +
    +
    + +
    +
    + + + + + +
    +
    Return values
    + int + — +

    0 if everything went fine, or an exit code

    +
    + +
    + +
    +
    +

    + handle() + + +

    + + +

    Executes the current command.

    + + + protected + handle() : int + +
    +
    + +

    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

    +
    + + + + + + +
    +
    Return values
    + int + — +

    0 if everything went fine, or an exit code

    +
    + +
    + +
    +
    +

    + initialize() + + +

    + + +

    Initializes the command after the input has been bound and before the input +is validated.

    + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
    +
    + +

    This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

    +
    + +
    Parameters
    +
    +
    + $input + : InputInterface +
    +
    + +
    +
    + $output + : OutputInterface +
    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + see +
    +
    + InputInterface::bind() + + +
    +
    + see +
    +
    + InputInterface::validate() + + +
    +
    + + + + +
    +
    +

    + interact() + + +

    + + +

    Interacts with the user.

    + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
    +
    + +

    This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

    +
    + +
    Parameters
    +
    +
    + $input + : InputInterface +
    +
    + +
    +
    + $output + : OutputInterface +
    +
    + +
    +
    + + + + + + +
    +
    +

    + validateName() + + +

    + + +

    Validates a command name.

    + + + private + validateName(string $name) : mixed + +
    +
    + +

    It must be non-empty and parts can optionally be separated by ":".

    +
    + +
    Parameters
    +
    +
    + $name + : string +
    +
    + +
    +
    + + +
    + Tags + + +
    +
    +
    + throws +
    +
    + InvalidArgumentException + +

    When the name is invalid

    +
    + +
    +
    + + + + +
    +
    + +
    +
    +
    +
    +
    
    +        
    + +
    +
    + + + +
    +
    +
    + +
    + On this page + + +
    + +
    +
    +
    +
    +
    +

    Search results

    + +
    +
    +
      +
      +
      +
      +
      + + +
      + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-Config.html b/src/public/api/classes/Aloe-Command-Config.html new file mode 100644 index 00000000..afe4dff6 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-Config.html @@ -0,0 +1,721 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
      +

      Leaf PHP

      + + + + + +
      + +
      +
      + + + + +
      +
      + + +
      +

      + Config + + +
      + in package + +
      + + +

      + +
      + + +
      + + + + + + + + + + + + +

      + Table of Contents + + +

      + + + + + + + + + +

      + Properties + + +

      +
      +
      + $configBlueprint + +  : mixed +
      + +
      + $env + +  : mixed +
      + +
      + $pathsConfig + +  : mixed +
      + +
      + $seeder + +  : mixed +
      + +
      + +

      + Methods + + +

      +
      +
      + config() + +  : mixed +
      +
      Get or generate aloe config
      + +
      + paths() + +  : mixed +
      +
      Get or generate aloe paths
      + +
      + rootpath() + +  : mixed +
      +
      Get project rootpath
      + +
      + + + + + + +
      +

      + Properties + + +

      +
      +

      + $configBlueprint + + + + +

      + + + + + + public + static mixed + $configBlueprint + = ['paths' => []] + + + + + + + +
      +
      +

      + $env + + + + +

      + + + + + + public + static mixed + $env + = 'WEB' + + + + + + + +
      +
      +

      + $pathsConfig + + + + +

      + + + + + + public + static mixed + $pathsConfig + = 'config/paths.php' + + + + + + + +
      +
      +

      + $seeder + + + + +

      + + + + + + public + static mixed + $seeder + = \App\Database\Seeds\DatabaseSeeder::class + + + + + + + +
      +
      + +
      +

      + Methods + + +

      +
      +

      + config() + + +

      + + +

      Get or generate aloe config

      + + + public + static config() : mixed + +
      +
      + + + + + + + + +
      +
      +

      + paths() + + +

      + + +

      Get or generate aloe paths

      + + + public + static paths([mixed $path = null ]) : mixed + +
      +
      + + +
      Parameters
      +
      +
      + $path + : mixed + = null
      +
      + +
      +
      + + + + + + +
      +
      +

      + rootpath() + + +

      + + +

      Get project rootpath

      + + + public + static rootpath([mixed $file = null ]) : mixed + +
      +
      + + +
      Parameters
      +
      +
      + $file + : mixed + = null
      +
      + +
      +
      + + + + + + +
      +
      + +
      +
      +
      +
      +
      
      +        
      + +
      +
      + + + +
      +
      +
      + +
      + On this page + + +
      + +
      +
      +
      +
      +
      +

      Search results

      + +
      +
      +
        +
        +
        +
        +
        + + +
        + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ConfigLibCommand.html b/src/public/api/classes/Aloe-Command-ConfigLibCommand.html new file mode 100644 index 00000000..9bd2547a --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ConfigLibCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
        +

        Leaf PHP

        + + + + + +
        + +
        +
        + + + + +
        +
        + + +
        +

        + ConfigLibCommand + + + extends Command + + +
        + in package + +
        + + +

        + +
        + + +
        + + + +

        Base class for Aloe Commands.

        + + + + + + + + + +

        + Table of Contents + + +

        + + + + + + + +

        + Constants + + +

        +
        +
        + FAILURE + +  = 1 +
        + +
        + INVALID + +  = 2 +
        + +
        + SUCCESS + +  = 0 +
        + +
        + + +

        + Properties + + +

        +
        +
        + $description + +  : mixed +
        +
        Description for command
        + +
        + $help + +  : mixed +
        +
        Help for command
        + +
        + $defaultDescription + +  : string|null +
        + +
        + $defaultName + +  : string|null +
        + +
        + $input + +  : InputInterface +
        +
        The input object
        + +
        + $output + +  : OutputInterface +
        +
        The output object
        + +
        + $aliases + +  : mixed +
        + +
        + $application + +  : mixed +
        + +
        + $code + +  : mixed +
        + +
        + $definition + +  : mixed +
        + +
        + $fullDefinition + +  : mixed +
        + +
        + $helperSet + +  : mixed +
        + +
        + $hidden + +  : mixed +
        + +
        + $ignoreValidationErrors + +  : mixed +
        + +
        + $name + +  : mixed +
        +
        The name of command to run in console
        + +
        + $processTitle + +  : mixed +
        + +
        + $synopsis + +  : mixed +
        + +
        + $usages + +  : mixed +
        + +
        + +

        + Methods + + +

        +
        +
        + __construct() + +  : mixed +
        + +
        + addArgument() + +  : $this +
        +
        Adds an argument.
        + +
        + addOption() + +  : $this +
        +
        Adds an option.
        + +
        + addUsage() + +  : $this +
        +
        Add a command usage example, it'll be prefixed with the command name.
        + +
        + argument() + +  : mixed +
        +
        Returns the argument value for a given argument name.
        + +
        + arguments() + +  : mixed +
        +
        Returns all the given arguments merged with the default values.
        + +
        + ask() + +  : mixed +
        +
        Ask a question
        + +
        + askMultiline() + +  : mixed +
        +
        Ask a question
        + +
        + askRaw() + +  : mixed +
        +
        Ask a question
        + +
        + autoComplete() + +  : mixed +
        +
        Ask a question with auto completion
        + +
        + choice() + +  : mixed +
        +
        Ask a question with possible answers
        + +
        + comment() + +  : mixed +
        +
        Output some data as a comment
        + +
        + complete() + +  : void +
        +
        Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
        + +
        + confirm() + +  : mixed +
        +
        Prompt user for confirmation
        + +
        + error() + +  : mixed +
        +
        Output some data as a error
        + +
        + getAliases() + +  : array<string|int, mixed> +
        +
        Returns the aliases for the command.
        + +
        + getApplication() + +  : Application|null +
        +
        Gets the application instance for this command.
        + +
        + getDefaultDescription() + +  : string|null +
        + +
        + getDefaultName() + +  : string|null +
        + +
        + getDefinition() + +  : InputDefinition +
        +
        Gets the InputDefinition attached to this Command.
        + +
        + getDescription() + +  : string +
        +
        Returns the description for the command.
        + +
        + getHelp() + +  : string +
        +
        Returns the help for the command.
        + +
        + getHelper() + +  : mixed +
        +
        Gets a helper instance by name.
        + +
        + getHelperSet() + +  : HelperSet|null +
        +
        Gets the helper set.
        + +
        + getName() + +  : string|null +
        +
        Returns the command name.
        + +
        + getNativeDefinition() + +  : InputDefinition +
        +
        Gets the InputDefinition to be used to create representations of this Command.
        + +
        + getProcessedHelp() + +  : string +
        +
        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
        + +
        + getSynopsis() + +  : string +
        +
        Returns the synopsis for the command.
        + +
        + getUsages() + +  : array<string|int, mixed> +
        +
        Returns alternative usages of the command.
        + +
        + ignoreValidationErrors() + +  : mixed +
        +
        Ignores validation errors.
        + +
        + info() + +  : mixed +
        +
        Output some data as a info
        + +
        + input() + +  : mixed +
        +
        Get an argument or return the input object
        + +
        + isEnabled() + +  : bool +
        +
        Checks whether the command is enabled or not in the current environment.
        + +
        + isHidden() + +  : bool +
        + +
        + link() + +  : mixed +
        +
        Output some data as a link
        + +
        + multiChoice() + +  : mixed +
        +
        Ask a question with possible answers + multiple choice
        + +
        + option() + +  : mixed +
        +
        Get an input option
        + +
        + options() + +  : mixed +
        +
        Get all input options
        + +
        + output() + +  : mixed +
        +
        Output data or return the output object
        + +
        + question() + +  : mixed +
        +
        Output some data as a question
        + +
        + run() + +  : int +
        +
        Runs the command.
        + +
        + runProcess() + +  : mixed +
        +
        Run a new cli process
        + +
        + secret() + +  : mixed +
        +
        Prompt user for input but hide keystrokes
        + +
        + setAliases() + +  : $this +
        +
        Sets the aliases for the command.
        + +
        + setApplication() + +  : mixed +
        + +
        + setArgument() + +  : mixed +
        +
        Add a new argument
        + +
        + setCode() + +  : $this +
        +
        Sets the code to execute when running this command.
        + +
        + setDefinition() + +  : $this +
        +
        Sets an array of argument and option instances.
        + +
        + setDescription() + +  : $this +
        +
        Sets the description for the command.
        + +
        + setHelp() + +  : $this +
        +
        Sets the help for the command.
        + +
        + setHelperSet() + +  : mixed +
        + +
        + setHidden() + +  : $this +
        + +
        + setName() + +  : $this +
        +
        Sets the name of the command.
        + +
        + setOption() + +  : mixed +
        +
        Add a new option
        + +
        + setProcessTitle() + +  : $this +
        +
        Sets the process title of the command.
        + +
        + write() + +  : mixed +
        +
        Output some data
        + +
        + writeln() + +  : mixed +
        +
        Output some data
        + +
        + config() + +  : mixed +
        + +
        + configure() + +  : mixed +
        +
        Configures the current command.
        + +
        + execute() + +  : int +
        +
        Executes the current command.
        + +
        + handle() + +  : int +
        +
        Executes the current command.
        + +
        + initialize() + +  : mixed +
        +
        Initializes the command after the input has been bound and before the input +is validated.
        + +
        + interact() + +  : mixed +
        +
        Interacts with the user.
        + +
        + validateName() + +  : mixed +
        +
        Validates a command name.
        + +
        + + + + +
        +

        + Constants + + +

        +
        +

        + FAILURE + + +

        + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
        +
        +

        + INVALID + + +

        + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
        +
        +

        + SUCCESS + + +

        + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
        +
        + + +
        +

        + Properties + + +

        +
        +

        + $description + + + + +

        + + +

        Description for command

        + + + + public + mixed + $description + = 'Setup Leaf MVC to use external libraries' + + + + + + + +
        +
        +

        + $help + + + + +

        + + +

        Help for command

        + + + + public + mixed + $help + = 'Setup Leaf MVC to use external libraries' + + + + + + + +
        +
        +

        + $defaultDescription + + + + +

        + + + + + + protected + static string|null + $defaultDescription + + + +

        The default command description

        +
        + + + + + +
        +
        +

        + $defaultName + + + + +

        + + + + + + protected + static string|null + $defaultName + = 'config:lib' + + +

        The default command name

        +
        + + + + + +
        +
        +

        + $input + + + + +

        + + +

        The input object

        + + + + protected + InputInterface + $input + + + + + + + + +
        +
        +

        + $output + + + + +

        + + +

        The output object

        + + + + protected + OutputInterface + $output + + + + + + + + +
        +
        +

        + $aliases + + + + +

        + + + + + + private + mixed + $aliases + = [] + + + + + + + +
        +
        +

        + $application + + + + +

        + + + + + + private + mixed + $application + + + + + + + + +
        +
        +

        + $code + + + + +

        + + + + + + private + mixed + $code + + + + + + + + +
        +
        +

        + $definition + + + + +

        + + + + + + private + mixed + $definition + + + + + + + + +
        +
        +

        + $fullDefinition + + + + +

        + + + + + + private + mixed + $fullDefinition + + + + + + + + +
        +
        +

        + $helperSet + + + + +

        + + + + + + private + mixed + $helperSet + + + + + + + + +
        +
        +

        + $hidden + + + + +

        + + + + + + private + mixed + $hidden + = false + + + + + + + +
        +
        +

        + $ignoreValidationErrors + + + + +

        + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
        +
        +

        + $name + + + + +

        + + +

        The name of command to run in console

        + + + + private + mixed + $name + + + + + + + + +
        +
        +

        + $processTitle + + + + +

        + + + + + + private + mixed + $processTitle + + + + + + + + +
        +
        +

        + $synopsis + + + + +

        + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
        +
        +

        + $usages + + + + +

        + + + + + + private + mixed + $usages + = [] + + + + + + + +
        +
        + +
        +

        + Methods + + +

        +
        +

        + __construct() + + +

        + + + + + public + __construct([string|null $name = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string|null + = null
        +
        +

        The name of the command; passing null means it must be set in configure()

        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + LogicException + +

        When the command name is empty

        +
        + +
        +
        + + + + +
        +
        +

        + addArgument() + + +

        + + +

        Adds an argument.

        + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + $mode + : int|null + = null
        +
        +

        The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

        +
        + +
        +
        + $description + : string + = ''
        +
        + +
        +
        + $default + : mixed + = null
        +
        +

        The default value (for InputArgument::OPTIONAL mode only)

        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + InvalidArgumentException + +

        When argument mode is not valid

        +
        + +
        +
        + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + addOption() + + +

        + + +

        Adds an option.

        + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + $shortcut + : string|array<string|int, mixed>|null + = null
        +
        +

        The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

        +
        + +
        +
        + $mode + : int|null + = null
        +
        +

        The option mode: One of the InputOption::VALUE_* constants

        +
        + +
        +
        + $description + : string + = ''
        +
        + +
        +
        + $default + : mixed + = null
        +
        +

        The default value (must be null for InputOption::VALUE_NONE)

        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + InvalidArgumentException + +

        If option mode is invalid or incompatible

        +
        + +
        +
        + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + addUsage() + + +

        + + +

        Add a command usage example, it'll be prefixed with the command name.

        + + + public + addUsage(string $usage) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $usage + : string +
        +
        + +
        +
        + + + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + argument() + + +

        + + +

        Returns the argument value for a given argument name.

        + + + public + argument(string $name) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + + + + + + +
        +
        +

        + arguments() + + +

        + + +

        Returns all the given arguments merged with the default values.

        + + + public + arguments() : mixed + +
        +
        + + + + + + + + +
        +
        +

        + ask() + + +

        + + +

        Ask a question

        + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + $default + : mixed + = null
        +
        + +
        +
        + + + + + + +
        +
        +

        + askMultiline() + + +

        + + +

        Ask a question

        + + + public + askMultiline(string $question) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + + + + + + +
        +
        +

        + askRaw() + + +

        + + +

        Ask a question

        + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + $default + : mixed + = null
        +
        + +
        +
        + + + + + + +
        +
        +

        + autoComplete() + + +

        + + +

        Ask a question with auto completion

        + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + $potentialAnswers + : array<string|int, mixed> +
        +
        + +
        +
        + $default + : mixed + = null
        +
        + +
        +
        + + + + + + +
        +
        +

        + choice() + + +

        + + +

        Ask a question with possible answers

        + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + $choices + : array<string|int, mixed> +
        +
        + +
        +
        + $errorMessage + : string + = 'Invalid choice'
        +
        + +
        +
        + $default + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + comment() + + +

        + + +

        Output some data as a comment

        + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $messages + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        + +
        +

        + confirm() + + +

        + + +

        Prompt user for confirmation

        + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : mixed +
        +
        + +
        +
        + $param + : mixed + = false
        +
        + +
        +
        + $regex + : mixed + = '/^y/i'
        +
        + +
        +
        + + + + + + +
        +
        +

        + error() + + +

        + + +

        Output some data as a error

        + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $messages + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + getAliases() + + +

        + + +

        Returns the aliases for the command.

        + + + public + getAliases() : array<string|int, mixed> + +
        +
        + + + + + + + +
        +
        Return values
        + array<string|int, mixed> +
        + +
        +
        +

        + getApplication() + + +

        + + +

        Gets the application instance for this command.

        + + + public + getApplication() : Application|null + +
        +
        + + + + + + + +
        +
        Return values
        + Application|null +
        + +
        +
        +

        + getDefaultDescription() + + +

        + + + + + public + static getDefaultDescription() : string|null + +
        +
        + + + + + + + +
        +
        Return values
        + string|null +
        + +
        +
        +

        + getDefaultName() + + +

        + + + + + public + static getDefaultName() : string|null + +
        +
        + + + + + + + +
        +
        Return values
        + string|null +
        + +
        +
        +

        + getDefinition() + + +

        + + +

        Gets the InputDefinition attached to this Command.

        + + + public + getDefinition() : InputDefinition + +
        +
        + + + + + + + +
        +
        Return values
        + InputDefinition +
        + +
        +
        +

        + getDescription() + + +

        + + +

        Returns the description for the command.

        + + + public + getDescription() : string + +
        +
        + + + + + + + +
        +
        Return values
        + string +
        + +
        +
        +

        + getHelp() + + +

        + + +

        Returns the help for the command.

        + + + public + getHelp() : string + +
        +
        + + + + + + + +
        +
        Return values
        + string +
        + +
        +
        +

        + getHelper() + + +

        + + +

        Gets a helper instance by name.

        + + + public + getHelper(string $name) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + LogicException + +

        if no HelperSet is defined

        +
        + +
        +
        + throws +
        +
        + InvalidArgumentException + +

        if the helper is not defined

        +
        + +
        +
        + + + + +
        +
        +

        + getHelperSet() + + +

        + + +

        Gets the helper set.

        + + + public + getHelperSet() : HelperSet|null + +
        +
        + + + + + + + +
        +
        Return values
        + HelperSet|null +
        + +
        +
        +

        + getName() + + +

        + + +

        Returns the command name.

        + + + public + getName() : string|null + +
        +
        + + + + + + + +
        +
        Return values
        + string|null +
        + +
        +
        +

        + getNativeDefinition() + + +

        + + +

        Gets the InputDefinition to be used to create representations of this Command.

        + + + public + getNativeDefinition() : InputDefinition + +
        +
        + +

        Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

        +

        This method is not part of public API and should not be used directly.

        +
        + + + + + + +
        +
        Return values
        + InputDefinition +
        + +
        +
        +

        + getProcessedHelp() + + +

        + + +

        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

        + + + public + getProcessedHelp() : string + +
        +
        + + + + + + + +
        +
        Return values
        + string +
        + +
        +
        +

        + getSynopsis() + + +

        + + +

        Returns the synopsis for the command.

        + + + public + getSynopsis([bool $short = false ]) : string + +
        +
        + + +
        Parameters
        +
        +
        + $short + : bool + = false
        +
        +

        Whether to show the short version of the synopsis (with options folded) or not

        +
        + +
        +
        + + + + + +
        +
        Return values
        + string +
        + +
        +
        +

        + getUsages() + + +

        + + +

        Returns alternative usages of the command.

        + + + public + getUsages() : array<string|int, mixed> + +
        +
        + + + + + + + +
        +
        Return values
        + array<string|int, mixed> +
        + +
        +
        +

        + ignoreValidationErrors() + + +

        + + +

        Ignores validation errors.

        + + + public + ignoreValidationErrors() : mixed + +
        +
        + +

        This is mainly useful for the help command.

        +
        + + + + + + + +
        +
        +

        + info() + + +

        + + +

        Output some data as a info

        + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $messages + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + input() + + +

        + + +

        Get an argument or return the input object

        + + + public + input([string $data = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $data + : string + = null
        +
        +

        The argument to return

        +
        + +
        +
        + + + + + + +
        +
        +

        + isEnabled() + + +

        + + +

        Checks whether the command is enabled or not in the current environment.

        + + + public + isEnabled() : bool + +
        +
        + +

        Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

        +
        + + + + + + +
        +
        Return values
        + bool +
        + +
        +
        +

        + isHidden() + + +

        + + + + + public + isHidden() : bool + +
        +
        + + + + + + + +
        +
        Return values
        + bool + — +

        whether the command should be publicly shown or not

        +
        + +
        + +
        +
        + + + +

        Output some data as a link

        + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $link + : mixed +
        +
        + +
        +
        + $display + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + multiChoice() + + +

        + + +

        Ask a question with possible answers + multiple choice

        + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + $choices + : array<string|int, mixed> +
        +
        + +
        +
        + $errorMessage + : string + = 'Invalid choice'
        +
        + +
        +
        + $default + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + option() + + +

        + + +

        Get an input option

        + + + public + option(string $name) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + + + + + + +
        +
        +

        + options() + + +

        + + +

        Get all input options

        + + + public + options(string $name) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + + + + + + +
        +
        +

        + output() + + +

        + + +

        Output data or return the output object

        + + + public + output([string $data = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $data + : string + = null
        +
        +

        The argument to return

        +
        + +
        +
        + + + + + + +
        +
        +

        + question() + + +

        + + +

        Output some data as a question

        + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $messages + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + run() + + +

        + + +

        Runs the command.

        + + + public + run(InputInterface $input, OutputInterface $output) : int + +
        +
        + +

        The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

        +
        + +
        Parameters
        +
        +
        + $input + : InputInterface +
        +
        + +
        +
        + $output + : OutputInterface +
        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + Exception + +

        When binding input fails. Bypass this by calling .

        +
        + +
        +
        + see +
        +
        + setCode() + + +
        +
        + see +
        +
        + execute() + + +
        +
        + + + +
        +
        Return values
        + int + — +

        The command exit code

        +
        + +
        + +
        +
        +

        + runProcess() + + +

        + + +

        Run a new cli process

        + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $process + : array<string|int, mixed> +
        +
        + +
        +
        + + + + + + +
        +
        +

        + secret() + + +

        + + +

        Prompt user for input but hide keystrokes

        + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $question + : string +
        +
        + +
        +
        + $useFallback + : bool + = false
        +
        + +
        +
        + + + + + + +
        +
        +

        + setAliases() + + +

        + + +

        Sets the aliases for the command.

        + + + public + setAliases(array<string|int, string> $aliases) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $aliases + : array<string|int, string> +
        +
        +

        An array of aliases for the command

        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + InvalidArgumentException + +

        When an alias is invalid

        +
        + +
        +
        + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setApplication() + + +

        + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $application + : Application|null + = null
        +
        + +
        +
        + + + + + + +
        +
        +

        + setArgument() + + +

        + + +

        Add a new argument

        + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : mixed +
        +
        + +
        +
        + $mode + : mixed + = null
        +
        + +
        +
        + $description + : mixed + = ''
        +
        + +
        +
        + $default + : mixed + = null
        +
        + +
        +
        + + + + + + +
        +
        +

        + setCode() + + +

        + + +

        Sets the code to execute when running this command.

        + + + public + setCode(callable $code) : $this + +
        +
        + +

        If this method is used, it overrides the code defined +in the execute() method.

        +
        + +
        Parameters
        +
        +
        + $code + : callable +
        +
        +

        A callable(InputInterface $input, OutputInterface $output)

        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + InvalidArgumentException + + +
        +
        + see +
        +
        + execute() + + +
        +
        + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setDefinition() + + +

        + + +

        Sets an array of argument and option instances.

        + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $definition + : array<string|int, mixed>|InputDefinition +
        +
        +

        An array of argument and option instances or a definition instance

        +
        + +
        +
        + + + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setDescription() + + +

        + + +

        Sets the description for the command.

        + + + public + setDescription(string $description) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $description + : string +
        +
        + +
        +
        + + + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setHelp() + + +

        + + +

        Sets the help for the command.

        + + + public + setHelp(string $help) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $help + : string +
        +
        + +
        +
        + + + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setHelperSet() + + +

        + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $helperSet + : HelperSet +
        +
        + +
        +
        + + + + + + +
        +
        +

        + setHidden() + + +

        + + + + + public + setHidden(bool $hidden) : $this + +
        +
        + + +
        Parameters
        +
        +
        + $hidden + : bool +
        +
        +

        Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + final +
        +
        + +

        since Symfony 5.1

        +
        + +
        +
        + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setName() + + +

        + + +

        Sets the name of the command.

        + + + public + setName(string $name) : $this + +
        +
        + +

        This method can set both the namespace and the name if +you separate them by a colon (:)

        +
        $command->setName('foo:bar');
        +
        +
        + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + InvalidArgumentException + +

        When the name is invalid

        +
        + +
        +
        + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + setOption() + + +

        + + +

        Add a new option

        + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $name + : mixed +
        +
        + +
        +
        + $shortcut + : mixed + = null
        +
        + +
        +
        + $mode + : mixed + = null
        +
        + +
        +
        + $description + : mixed + = ''
        +
        + +
        +
        + $default + : mixed + = null
        +
        + +
        +
        + + + + + + +
        +
        +

        + setProcessTitle() + + +

        + + +

        Sets the process title of the command.

        + + + public + setProcessTitle(string $title) : $this + +
        +
        + +

        This feature should be used only when creating a long process command, +like a daemon.

        +
        + +
        Parameters
        +
        +
        + $title + : string +
        +
        + +
        +
        + + + + + +
        +
        Return values
        + $this +
        + +
        +
        +

        + write() + + +

        + + +

        Output some data

        + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $messages + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + writeln() + + +

        + + +

        Output some data

        + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
        +
        + + +
        Parameters
        +
        +
        + $messages + : mixed +
        +
        + +
        +
        + $options + : mixed + = 0
        +
        + +
        +
        + + + + + + +
        +
        +

        + config() + + +

        + + + + + protected + config() : mixed + +
        +
        + + + + + + + + +
        +
        +

        + configure() + + +

        + + +

        Configures the current command.

        + + + protected + configure() : mixed + +
        +
        + + + + + + + + +
        +
        +

        + execute() + + +

        + + +

        Executes the current command.

        + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
        +
        + +

        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

        +
        + +
        Parameters
        +
        +
        + $input + : InputInterface +
        +
        + +
        +
        + $output + : OutputInterface +
        +
        + +
        +
        + + + + + +
        +
        Return values
        + int + — +

        0 if everything went fine, or an exit code

        +
        + +
        + +
        +
        +

        + handle() + + +

        + + +

        Executes the current command.

        + + + protected + handle() : int + +
        +
        + +

        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

        +
        + + + + + + +
        +
        Return values
        + int + — +

        0 if everything went fine, or an exit code

        +
        + +
        + +
        +
        +

        + initialize() + + +

        + + +

        Initializes the command after the input has been bound and before the input +is validated.

        + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
        +
        + +

        This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

        +
        + +
        Parameters
        +
        +
        + $input + : InputInterface +
        +
        + +
        +
        + $output + : OutputInterface +
        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + see +
        +
        + InputInterface::bind() + + +
        +
        + see +
        +
        + InputInterface::validate() + + +
        +
        + + + + +
        +
        +

        + interact() + + +

        + + +

        Interacts with the user.

        + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
        +
        + +

        This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

        +
        + +
        Parameters
        +
        +
        + $input + : InputInterface +
        +
        + +
        +
        + $output + : OutputInterface +
        +
        + +
        +
        + + + + + + +
        +
        +

        + validateName() + + +

        + + +

        Validates a command name.

        + + + private + validateName(string $name) : mixed + +
        +
        + +

        It must be non-empty and parts can optionally be separated by ":".

        +
        + +
        Parameters
        +
        +
        + $name + : string +
        +
        + +
        +
        + + +
        + Tags + + +
        +
        +
        + throws +
        +
        + InvalidArgumentException + +

        When the name is invalid

        +
        + +
        +
        + + + + +
        +
        + +
        +
        +
        +
        +
        
        +        
        + +
        +
        + + + +
        +
        +
        + +
        + On this page + + +
        + +
        +
        +
        +
        +
        +

        Search results

        + +
        +
        +
          +
          +
          +
          +
          + + +
          + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ConfigPublishCommand.html b/src/public/api/classes/Aloe-Command-ConfigPublishCommand.html new file mode 100644 index 00000000..9fb82b14 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ConfigPublishCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
          +

          Leaf PHP

          + + + + + +
          + +
          +
          + + + + +
          +
          + + +
          +

          + ConfigPublishCommand + + + extends Command + + +
          + in package + +
          + + +

          + +
          + + +
          + + + +

          Base class for Aloe Commands.

          + + + + + + + + + +

          + Table of Contents + + +

          + + + + + + + +

          + Constants + + +

          +
          +
          + FAILURE + +  = 1 +
          + +
          + INVALID + +  = 2 +
          + +
          + SUCCESS + +  = 0 +
          + +
          + + +

          + Properties + + +

          +
          +
          + $description + +  : mixed +
          +
          Description for command
          + +
          + $help + +  : mixed +
          +
          Help for command
          + +
          + $defaultDescription + +  : string|null +
          + +
          + $defaultName + +  : string|null +
          + +
          + $input + +  : InputInterface +
          +
          The input object
          + +
          + $output + +  : OutputInterface +
          +
          The output object
          + +
          + $aliases + +  : mixed +
          + +
          + $application + +  : mixed +
          + +
          + $code + +  : mixed +
          + +
          + $definition + +  : mixed +
          + +
          + $fullDefinition + +  : mixed +
          + +
          + $helperSet + +  : mixed +
          + +
          + $hidden + +  : mixed +
          + +
          + $ignoreValidationErrors + +  : mixed +
          + +
          + $name + +  : mixed +
          +
          The name of command to run in console
          + +
          + $processTitle + +  : mixed +
          + +
          + $synopsis + +  : mixed +
          + +
          + $usages + +  : mixed +
          + +
          + +

          + Methods + + +

          +
          +
          + __construct() + +  : mixed +
          + +
          + addArgument() + +  : $this +
          +
          Adds an argument.
          + +
          + addOption() + +  : $this +
          +
          Adds an option.
          + +
          + addUsage() + +  : $this +
          +
          Add a command usage example, it'll be prefixed with the command name.
          + +
          + argument() + +  : mixed +
          +
          Returns the argument value for a given argument name.
          + +
          + arguments() + +  : mixed +
          +
          Returns all the given arguments merged with the default values.
          + +
          + ask() + +  : mixed +
          +
          Ask a question
          + +
          + askMultiline() + +  : mixed +
          +
          Ask a question
          + +
          + askRaw() + +  : mixed +
          +
          Ask a question
          + +
          + autoComplete() + +  : mixed +
          +
          Ask a question with auto completion
          + +
          + choice() + +  : mixed +
          +
          Ask a question with possible answers
          + +
          + comment() + +  : mixed +
          +
          Output some data as a comment
          + +
          + complete() + +  : void +
          +
          Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
          + +
          + confirm() + +  : mixed +
          +
          Prompt user for confirmation
          + +
          + error() + +  : mixed +
          +
          Output some data as a error
          + +
          + getAliases() + +  : array<string|int, mixed> +
          +
          Returns the aliases for the command.
          + +
          + getApplication() + +  : Application|null +
          +
          Gets the application instance for this command.
          + +
          + getDefaultDescription() + +  : string|null +
          + +
          + getDefaultName() + +  : string|null +
          + +
          + getDefinition() + +  : InputDefinition +
          +
          Gets the InputDefinition attached to this Command.
          + +
          + getDescription() + +  : string +
          +
          Returns the description for the command.
          + +
          + getHelp() + +  : string +
          +
          Returns the help for the command.
          + +
          + getHelper() + +  : mixed +
          +
          Gets a helper instance by name.
          + +
          + getHelperSet() + +  : HelperSet|null +
          +
          Gets the helper set.
          + +
          + getName() + +  : string|null +
          +
          Returns the command name.
          + +
          + getNativeDefinition() + +  : InputDefinition +
          +
          Gets the InputDefinition to be used to create representations of this Command.
          + +
          + getProcessedHelp() + +  : string +
          +
          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
          + +
          + getSynopsis() + +  : string +
          +
          Returns the synopsis for the command.
          + +
          + getUsages() + +  : array<string|int, mixed> +
          +
          Returns alternative usages of the command.
          + +
          + ignoreValidationErrors() + +  : mixed +
          +
          Ignores validation errors.
          + +
          + info() + +  : mixed +
          +
          Output some data as a info
          + +
          + input() + +  : mixed +
          +
          Get an argument or return the input object
          + +
          + isEnabled() + +  : bool +
          +
          Checks whether the command is enabled or not in the current environment.
          + +
          + isHidden() + +  : bool +
          + +
          + link() + +  : mixed +
          +
          Output some data as a link
          + +
          + multiChoice() + +  : mixed +
          +
          Ask a question with possible answers + multiple choice
          + +
          + option() + +  : mixed +
          +
          Get an input option
          + +
          + options() + +  : mixed +
          +
          Get all input options
          + +
          + output() + +  : mixed +
          +
          Output data or return the output object
          + +
          + question() + +  : mixed +
          +
          Output some data as a question
          + +
          + run() + +  : int +
          +
          Runs the command.
          + +
          + runProcess() + +  : mixed +
          +
          Run a new cli process
          + +
          + secret() + +  : mixed +
          +
          Prompt user for input but hide keystrokes
          + +
          + setAliases() + +  : $this +
          +
          Sets the aliases for the command.
          + +
          + setApplication() + +  : mixed +
          + +
          + setArgument() + +  : mixed +
          +
          Add a new argument
          + +
          + setCode() + +  : $this +
          +
          Sets the code to execute when running this command.
          + +
          + setDefinition() + +  : $this +
          +
          Sets an array of argument and option instances.
          + +
          + setDescription() + +  : $this +
          +
          Sets the description for the command.
          + +
          + setHelp() + +  : $this +
          +
          Sets the help for the command.
          + +
          + setHelperSet() + +  : mixed +
          + +
          + setHidden() + +  : $this +
          + +
          + setName() + +  : $this +
          +
          Sets the name of the command.
          + +
          + setOption() + +  : mixed +
          +
          Add a new option
          + +
          + setProcessTitle() + +  : $this +
          +
          Sets the process title of the command.
          + +
          + write() + +  : mixed +
          +
          Output some data
          + +
          + writeln() + +  : mixed +
          +
          Output some data
          + +
          + config() + +  : mixed +
          + +
          + configure() + +  : mixed +
          +
          Configures the current command.
          + +
          + execute() + +  : int +
          +
          Executes the current command.
          + +
          + handle() + +  : int +
          +
          Executes the current command.
          + +
          + initialize() + +  : mixed +
          +
          Initializes the command after the input has been bound and before the input +is validated.
          + +
          + interact() + +  : mixed +
          +
          Interacts with the user.
          + +
          + validateName() + +  : mixed +
          +
          Validates a command name.
          + +
          + + + + +
          +

          + Constants + + +

          +
          +

          + FAILURE + + +

          + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
          +
          +

          + INVALID + + +

          + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
          +
          +

          + SUCCESS + + +

          + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
          +
          + + +
          +

          + Properties + + +

          +
          +

          + $description + + + + +

          + + +

          Description for command

          + + + + public + mixed + $description + = 'Publish config files to your project' + + + + + + + +
          +
          +

          + $help + + + + +

          + + +

          Help for command

          + + + + public + mixed + $help + = 'Publish config files to your project' + + + + + + + +
          +
          +

          + $defaultDescription + + + + +

          + + + + + + protected + static string|null + $defaultDescription + + + +

          The default command description

          +
          + + + + + +
          +
          +

          + $defaultName + + + + +

          + + + + + + protected + static string|null + $defaultName + = 'config:publish' + + +

          The default command name

          +
          + + + + + +
          +
          +

          + $input + + + + +

          + + +

          The input object

          + + + + protected + InputInterface + $input + + + + + + + + +
          +
          +

          + $output + + + + +

          + + +

          The output object

          + + + + protected + OutputInterface + $output + + + + + + + + +
          +
          +

          + $aliases + + + + +

          + + + + + + private + mixed + $aliases + = [] + + + + + + + +
          +
          +

          + $application + + + + +

          + + + + + + private + mixed + $application + + + + + + + + +
          +
          +

          + $code + + + + +

          + + + + + + private + mixed + $code + + + + + + + + +
          +
          +

          + $definition + + + + +

          + + + + + + private + mixed + $definition + + + + + + + + +
          +
          +

          + $fullDefinition + + + + +

          + + + + + + private + mixed + $fullDefinition + + + + + + + + +
          +
          +

          + $helperSet + + + + +

          + + + + + + private + mixed + $helperSet + + + + + + + + +
          +
          +

          + $hidden + + + + +

          + + + + + + private + mixed + $hidden + = false + + + + + + + +
          +
          +

          + $ignoreValidationErrors + + + + +

          + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
          +
          +

          + $name + + + + +

          + + +

          The name of command to run in console

          + + + + private + mixed + $name + + + + + + + + +
          +
          +

          + $processTitle + + + + +

          + + + + + + private + mixed + $processTitle + + + + + + + + +
          +
          +

          + $synopsis + + + + +

          + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
          +
          +

          + $usages + + + + +

          + + + + + + private + mixed + $usages + = [] + + + + + + + +
          +
          + +
          +

          + Methods + + +

          +
          +

          + __construct() + + +

          + + + + + public + __construct([string|null $name = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string|null + = null
          +
          +

          The name of the command; passing null means it must be set in configure()

          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + LogicException + +

          When the command name is empty

          +
          + +
          +
          + + + + +
          +
          +

          + addArgument() + + +

          + + +

          Adds an argument.

          + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + $mode + : int|null + = null
          +
          +

          The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

          +
          + +
          +
          + $description + : string + = ''
          +
          + +
          +
          + $default + : mixed + = null
          +
          +

          The default value (for InputArgument::OPTIONAL mode only)

          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + InvalidArgumentException + +

          When argument mode is not valid

          +
          + +
          +
          + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + addOption() + + +

          + + +

          Adds an option.

          + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + $shortcut + : string|array<string|int, mixed>|null + = null
          +
          +

          The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

          +
          + +
          +
          + $mode + : int|null + = null
          +
          +

          The option mode: One of the InputOption::VALUE_* constants

          +
          + +
          +
          + $description + : string + = ''
          +
          + +
          +
          + $default + : mixed + = null
          +
          +

          The default value (must be null for InputOption::VALUE_NONE)

          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + InvalidArgumentException + +

          If option mode is invalid or incompatible

          +
          + +
          +
          + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + addUsage() + + +

          + + +

          Add a command usage example, it'll be prefixed with the command name.

          + + + public + addUsage(string $usage) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $usage + : string +
          +
          + +
          +
          + + + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + argument() + + +

          + + +

          Returns the argument value for a given argument name.

          + + + public + argument(string $name) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + + + + + + +
          +
          +

          + arguments() + + +

          + + +

          Returns all the given arguments merged with the default values.

          + + + public + arguments() : mixed + +
          +
          + + + + + + + + +
          +
          +

          + ask() + + +

          + + +

          Ask a question

          + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + $default + : mixed + = null
          +
          + +
          +
          + + + + + + +
          +
          +

          + askMultiline() + + +

          + + +

          Ask a question

          + + + public + askMultiline(string $question) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + + + + + + +
          +
          +

          + askRaw() + + +

          + + +

          Ask a question

          + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + $default + : mixed + = null
          +
          + +
          +
          + + + + + + +
          +
          +

          + autoComplete() + + +

          + + +

          Ask a question with auto completion

          + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + $potentialAnswers + : array<string|int, mixed> +
          +
          + +
          +
          + $default + : mixed + = null
          +
          + +
          +
          + + + + + + +
          +
          +

          + choice() + + +

          + + +

          Ask a question with possible answers

          + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + $choices + : array<string|int, mixed> +
          +
          + +
          +
          + $errorMessage + : string + = 'Invalid choice'
          +
          + +
          +
          + $default + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + comment() + + +

          + + +

          Output some data as a comment

          + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $messages + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          + +
          +

          + confirm() + + +

          + + +

          Prompt user for confirmation

          + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : mixed +
          +
          + +
          +
          + $param + : mixed + = false
          +
          + +
          +
          + $regex + : mixed + = '/^y/i'
          +
          + +
          +
          + + + + + + +
          +
          +

          + error() + + +

          + + +

          Output some data as a error

          + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $messages + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + getAliases() + + +

          + + +

          Returns the aliases for the command.

          + + + public + getAliases() : array<string|int, mixed> + +
          +
          + + + + + + + +
          +
          Return values
          + array<string|int, mixed> +
          + +
          +
          +

          + getApplication() + + +

          + + +

          Gets the application instance for this command.

          + + + public + getApplication() : Application|null + +
          +
          + + + + + + + +
          +
          Return values
          + Application|null +
          + +
          +
          +

          + getDefaultDescription() + + +

          + + + + + public + static getDefaultDescription() : string|null + +
          +
          + + + + + + + +
          +
          Return values
          + string|null +
          + +
          +
          +

          + getDefaultName() + + +

          + + + + + public + static getDefaultName() : string|null + +
          +
          + + + + + + + +
          +
          Return values
          + string|null +
          + +
          +
          +

          + getDefinition() + + +

          + + +

          Gets the InputDefinition attached to this Command.

          + + + public + getDefinition() : InputDefinition + +
          +
          + + + + + + + +
          +
          Return values
          + InputDefinition +
          + +
          +
          +

          + getDescription() + + +

          + + +

          Returns the description for the command.

          + + + public + getDescription() : string + +
          +
          + + + + + + + +
          +
          Return values
          + string +
          + +
          +
          +

          + getHelp() + + +

          + + +

          Returns the help for the command.

          + + + public + getHelp() : string + +
          +
          + + + + + + + +
          +
          Return values
          + string +
          + +
          +
          +

          + getHelper() + + +

          + + +

          Gets a helper instance by name.

          + + + public + getHelper(string $name) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + LogicException + +

          if no HelperSet is defined

          +
          + +
          +
          + throws +
          +
          + InvalidArgumentException + +

          if the helper is not defined

          +
          + +
          +
          + + + + +
          +
          +

          + getHelperSet() + + +

          + + +

          Gets the helper set.

          + + + public + getHelperSet() : HelperSet|null + +
          +
          + + + + + + + +
          +
          Return values
          + HelperSet|null +
          + +
          +
          +

          + getName() + + +

          + + +

          Returns the command name.

          + + + public + getName() : string|null + +
          +
          + + + + + + + +
          +
          Return values
          + string|null +
          + +
          +
          +

          + getNativeDefinition() + + +

          + + +

          Gets the InputDefinition to be used to create representations of this Command.

          + + + public + getNativeDefinition() : InputDefinition + +
          +
          + +

          Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

          +

          This method is not part of public API and should not be used directly.

          +
          + + + + + + +
          +
          Return values
          + InputDefinition +
          + +
          +
          +

          + getProcessedHelp() + + +

          + + +

          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

          + + + public + getProcessedHelp() : string + +
          +
          + + + + + + + +
          +
          Return values
          + string +
          + +
          +
          +

          + getSynopsis() + + +

          + + +

          Returns the synopsis for the command.

          + + + public + getSynopsis([bool $short = false ]) : string + +
          +
          + + +
          Parameters
          +
          +
          + $short + : bool + = false
          +
          +

          Whether to show the short version of the synopsis (with options folded) or not

          +
          + +
          +
          + + + + + +
          +
          Return values
          + string +
          + +
          +
          +

          + getUsages() + + +

          + + +

          Returns alternative usages of the command.

          + + + public + getUsages() : array<string|int, mixed> + +
          +
          + + + + + + + +
          +
          Return values
          + array<string|int, mixed> +
          + +
          +
          +

          + ignoreValidationErrors() + + +

          + + +

          Ignores validation errors.

          + + + public + ignoreValidationErrors() : mixed + +
          +
          + +

          This is mainly useful for the help command.

          +
          + + + + + + + +
          +
          +

          + info() + + +

          + + +

          Output some data as a info

          + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $messages + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + input() + + +

          + + +

          Get an argument or return the input object

          + + + public + input([string $data = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $data + : string + = null
          +
          +

          The argument to return

          +
          + +
          +
          + + + + + + +
          +
          +

          + isEnabled() + + +

          + + +

          Checks whether the command is enabled or not in the current environment.

          + + + public + isEnabled() : bool + +
          +
          + +

          Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

          +
          + + + + + + +
          +
          Return values
          + bool +
          + +
          +
          +

          + isHidden() + + +

          + + + + + public + isHidden() : bool + +
          +
          + + + + + + + +
          +
          Return values
          + bool + — +

          whether the command should be publicly shown or not

          +
          + +
          + +
          +
          + + + +

          Output some data as a link

          + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $link + : mixed +
          +
          + +
          +
          + $display + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + multiChoice() + + +

          + + +

          Ask a question with possible answers + multiple choice

          + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + $choices + : array<string|int, mixed> +
          +
          + +
          +
          + $errorMessage + : string + = 'Invalid choice'
          +
          + +
          +
          + $default + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + option() + + +

          + + +

          Get an input option

          + + + public + option(string $name) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + + + + + + +
          +
          +

          + options() + + +

          + + +

          Get all input options

          + + + public + options(string $name) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + + + + + + +
          +
          +

          + output() + + +

          + + +

          Output data or return the output object

          + + + public + output([string $data = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $data + : string + = null
          +
          +

          The argument to return

          +
          + +
          +
          + + + + + + +
          +
          +

          + question() + + +

          + + +

          Output some data as a question

          + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $messages + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + run() + + +

          + + +

          Runs the command.

          + + + public + run(InputInterface $input, OutputInterface $output) : int + +
          +
          + +

          The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

          +
          + +
          Parameters
          +
          +
          + $input + : InputInterface +
          +
          + +
          +
          + $output + : OutputInterface +
          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + Exception + +

          When binding input fails. Bypass this by calling .

          +
          + +
          +
          + see +
          +
          + setCode() + + +
          +
          + see +
          +
          + execute() + + +
          +
          + + + +
          +
          Return values
          + int + — +

          The command exit code

          +
          + +
          + +
          +
          +

          + runProcess() + + +

          + + +

          Run a new cli process

          + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $process + : array<string|int, mixed> +
          +
          + +
          +
          + + + + + + +
          +
          +

          + secret() + + +

          + + +

          Prompt user for input but hide keystrokes

          + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $question + : string +
          +
          + +
          +
          + $useFallback + : bool + = false
          +
          + +
          +
          + + + + + + +
          +
          +

          + setAliases() + + +

          + + +

          Sets the aliases for the command.

          + + + public + setAliases(array<string|int, string> $aliases) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $aliases + : array<string|int, string> +
          +
          +

          An array of aliases for the command

          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + InvalidArgumentException + +

          When an alias is invalid

          +
          + +
          +
          + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setApplication() + + +

          + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $application + : Application|null + = null
          +
          + +
          +
          + + + + + + +
          +
          +

          + setArgument() + + +

          + + +

          Add a new argument

          + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : mixed +
          +
          + +
          +
          + $mode + : mixed + = null
          +
          + +
          +
          + $description + : mixed + = ''
          +
          + +
          +
          + $default + : mixed + = null
          +
          + +
          +
          + + + + + + +
          +
          +

          + setCode() + + +

          + + +

          Sets the code to execute when running this command.

          + + + public + setCode(callable $code) : $this + +
          +
          + +

          If this method is used, it overrides the code defined +in the execute() method.

          +
          + +
          Parameters
          +
          +
          + $code + : callable +
          +
          +

          A callable(InputInterface $input, OutputInterface $output)

          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + InvalidArgumentException + + +
          +
          + see +
          +
          + execute() + + +
          +
          + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setDefinition() + + +

          + + +

          Sets an array of argument and option instances.

          + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $definition + : array<string|int, mixed>|InputDefinition +
          +
          +

          An array of argument and option instances or a definition instance

          +
          + +
          +
          + + + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setDescription() + + +

          + + +

          Sets the description for the command.

          + + + public + setDescription(string $description) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $description + : string +
          +
          + +
          +
          + + + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setHelp() + + +

          + + +

          Sets the help for the command.

          + + + public + setHelp(string $help) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $help + : string +
          +
          + +
          +
          + + + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setHelperSet() + + +

          + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $helperSet + : HelperSet +
          +
          + +
          +
          + + + + + + +
          +
          +

          + setHidden() + + +

          + + + + + public + setHidden(bool $hidden) : $this + +
          +
          + + +
          Parameters
          +
          +
          + $hidden + : bool +
          +
          +

          Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + final +
          +
          + +

          since Symfony 5.1

          +
          + +
          +
          + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setName() + + +

          + + +

          Sets the name of the command.

          + + + public + setName(string $name) : $this + +
          +
          + +

          This method can set both the namespace and the name if +you separate them by a colon (:)

          +
          $command->setName('foo:bar');
          +
          +
          + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + InvalidArgumentException + +

          When the name is invalid

          +
          + +
          +
          + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + setOption() + + +

          + + +

          Add a new option

          + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $name + : mixed +
          +
          + +
          +
          + $shortcut + : mixed + = null
          +
          + +
          +
          + $mode + : mixed + = null
          +
          + +
          +
          + $description + : mixed + = ''
          +
          + +
          +
          + $default + : mixed + = null
          +
          + +
          +
          + + + + + + +
          +
          +

          + setProcessTitle() + + +

          + + +

          Sets the process title of the command.

          + + + public + setProcessTitle(string $title) : $this + +
          +
          + +

          This feature should be used only when creating a long process command, +like a daemon.

          +
          + +
          Parameters
          +
          +
          + $title + : string +
          +
          + +
          +
          + + + + + +
          +
          Return values
          + $this +
          + +
          +
          +

          + write() + + +

          + + +

          Output some data

          + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $messages + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + writeln() + + +

          + + +

          Output some data

          + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
          +
          + + +
          Parameters
          +
          +
          + $messages + : mixed +
          +
          + +
          +
          + $options + : mixed + = 0
          +
          + +
          +
          + + + + + + +
          +
          +

          + config() + + +

          + + + + + protected + config() : mixed + +
          +
          + + + + + + + + +
          +
          +

          + configure() + + +

          + + +

          Configures the current command.

          + + + protected + configure() : mixed + +
          +
          + + + + + + + + +
          +
          +

          + execute() + + +

          + + +

          Executes the current command.

          + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
          +
          + +

          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

          +
          + +
          Parameters
          +
          +
          + $input + : InputInterface +
          +
          + +
          +
          + $output + : OutputInterface +
          +
          + +
          +
          + + + + + +
          +
          Return values
          + int + — +

          0 if everything went fine, or an exit code

          +
          + +
          + +
          +
          +

          + handle() + + +

          + + +

          Executes the current command.

          + + + protected + handle() : int + +
          +
          + +

          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

          +
          + + + + + + +
          +
          Return values
          + int + — +

          0 if everything went fine, or an exit code

          +
          + +
          + +
          +
          +

          + initialize() + + +

          + + +

          Initializes the command after the input has been bound and before the input +is validated.

          + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
          +
          + +

          This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

          +
          + +
          Parameters
          +
          +
          + $input + : InputInterface +
          +
          + +
          +
          + $output + : OutputInterface +
          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + see +
          +
          + InputInterface::bind() + + +
          +
          + see +
          +
          + InputInterface::validate() + + +
          +
          + + + + +
          +
          +

          + interact() + + +

          + + +

          Interacts with the user.

          + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
          +
          + +

          This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

          +
          + +
          Parameters
          +
          +
          + $input + : InputInterface +
          +
          + +
          +
          + $output + : OutputInterface +
          +
          + +
          +
          + + + + + + +
          +
          +

          + validateName() + + +

          + + +

          Validates a command name.

          + + + private + validateName(string $name) : mixed + +
          +
          + +

          It must be non-empty and parts can optionally be separated by ":".

          +
          + +
          Parameters
          +
          +
          + $name + : string +
          +
          + +
          +
          + + +
          + Tags + + +
          +
          +
          + throws +
          +
          + InvalidArgumentException + +

          When the name is invalid

          +
          + +
          +
          + + + + +
          +
          + +
          +
          +
          +
          +
          
          +        
          + +
          +
          + + + +
          +
          +
          + +
          + On this page + + +
          + +
          +
          +
          +
          +
          +

          Search results

          + +
          +
          +
            +
            +
            +
            +
            + + +
            + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DatabaseMigrationCommand.html b/src/public/api/classes/Aloe-Command-DatabaseMigrationCommand.html new file mode 100644 index 00000000..c9867134 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DatabaseMigrationCommand.html @@ -0,0 +1,5263 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
            +

            Leaf PHP

            + + + + + +
            + +
            +
            + + + + +
            +
            + + +
            +

            + DatabaseMigrationCommand + + + extends Command + + +
            + in package + +
            + + +

            + +
            + + +
            + + + +

            Base class for Aloe Commands.

            + + + + + + + + + +

            + Table of Contents + + +

            + + + + + + + +

            + Constants + + +

            +
            +
            + FAILURE + +  = 1 +
            + +
            + INVALID + +  = 2 +
            + +
            + SUCCESS + +  = 0 +
            + +
            + + +

            + Properties + + +

            +
            +
            + $description + +  : mixed +
            +
            Description for command
            + +
            + $help + +  : mixed +
            +
            Help for command
            + +
            + $defaultDescription + +  : string|null +
            + +
            + $defaultName + +  : string|null +
            + +
            + $input + +  : InputInterface +
            +
            The input object
            + +
            + $output + +  : OutputInterface +
            +
            The output object
            + +
            + $aliases + +  : mixed +
            + +
            + $application + +  : mixed +
            + +
            + $code + +  : mixed +
            + +
            + $definition + +  : mixed +
            + +
            + $fullDefinition + +  : mixed +
            + +
            + $helperSet + +  : mixed +
            + +
            + $hidden + +  : mixed +
            + +
            + $ignoreValidationErrors + +  : mixed +
            + +
            + $name + +  : mixed +
            +
            The name of command to run in console
            + +
            + $processTitle + +  : mixed +
            + +
            + $synopsis + +  : mixed +
            + +
            + $usages + +  : mixed +
            + +
            + +

            + Methods + + +

            +
            +
            + __construct() + +  : mixed +
            + +
            + addArgument() + +  : $this +
            +
            Adds an argument.
            + +
            + addOption() + +  : $this +
            +
            Adds an option.
            + +
            + addUsage() + +  : $this +
            +
            Add a command usage example, it'll be prefixed with the command name.
            + +
            + argument() + +  : mixed +
            +
            Returns the argument value for a given argument name.
            + +
            + arguments() + +  : mixed +
            +
            Returns all the given arguments merged with the default values.
            + +
            + ask() + +  : mixed +
            +
            Ask a question
            + +
            + askMultiline() + +  : mixed +
            +
            Ask a question
            + +
            + askRaw() + +  : mixed +
            +
            Ask a question
            + +
            + autoComplete() + +  : mixed +
            +
            Ask a question with auto completion
            + +
            + choice() + +  : mixed +
            +
            Ask a question with possible answers
            + +
            + comment() + +  : mixed +
            +
            Output some data as a comment
            + +
            + complete() + +  : void +
            +
            Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
            + +
            + confirm() + +  : mixed +
            +
            Prompt user for confirmation
            + +
            + createDatabase() + +  : mixed +
            + +
            + error() + +  : mixed +
            +
            Output some data as a error
            + +
            + getAliases() + +  : array<string|int, mixed> +
            +
            Returns the aliases for the command.
            + +
            + getApplication() + +  : Application|null +
            +
            Gets the application instance for this command.
            + +
            + getDefaultDescription() + +  : string|null +
            + +
            + getDefaultName() + +  : string|null +
            + +
            + getDefinition() + +  : InputDefinition +
            +
            Gets the InputDefinition attached to this Command.
            + +
            + getDescription() + +  : string +
            +
            Returns the description for the command.
            + +
            + getHelp() + +  : string +
            +
            Returns the help for the command.
            + +
            + getHelper() + +  : mixed +
            +
            Gets a helper instance by name.
            + +
            + getHelperSet() + +  : HelperSet|null +
            +
            Gets the helper set.
            + +
            + getName() + +  : string|null +
            +
            Returns the command name.
            + +
            + getNativeDefinition() + +  : InputDefinition +
            +
            Gets the InputDefinition to be used to create representations of this Command.
            + +
            + getProcessedHelp() + +  : string +
            +
            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
            + +
            + getSynopsis() + +  : string +
            +
            Returns the synopsis for the command.
            + +
            + getUsages() + +  : array<string|int, mixed> +
            +
            Returns alternative usages of the command.
            + +
            + ignoreValidationErrors() + +  : mixed +
            +
            Ignores validation errors.
            + +
            + info() + +  : mixed +
            +
            Output some data as a info
            + +
            + input() + +  : mixed +
            +
            Get an argument or return the input object
            + +
            + isEnabled() + +  : bool +
            +
            Checks whether the command is enabled or not in the current environment.
            + +
            + isHidden() + +  : bool +
            + +
            + link() + +  : mixed +
            +
            Output some data as a link
            + +
            + multiChoice() + +  : mixed +
            +
            Ask a question with possible answers + multiple choice
            + +
            + option() + +  : mixed +
            +
            Get an input option
            + +
            + options() + +  : mixed +
            +
            Get all input options
            + +
            + output() + +  : mixed +
            +
            Output data or return the output object
            + +
            + question() + +  : mixed +
            +
            Output some data as a question
            + +
            + run() + +  : int +
            +
            Runs the command.
            + +
            + runProcess() + +  : mixed +
            +
            Run a new cli process
            + +
            + secret() + +  : mixed +
            +
            Prompt user for input but hide keystrokes
            + +
            + setAliases() + +  : $this +
            +
            Sets the aliases for the command.
            + +
            + setApplication() + +  : mixed +
            + +
            + setArgument() + +  : mixed +
            +
            Add a new argument
            + +
            + setCode() + +  : $this +
            +
            Sets the code to execute when running this command.
            + +
            + setDefinition() + +  : $this +
            +
            Sets an array of argument and option instances.
            + +
            + setDescription() + +  : $this +
            +
            Sets the description for the command.
            + +
            + setHelp() + +  : $this +
            +
            Sets the help for the command.
            + +
            + setHelperSet() + +  : mixed +
            + +
            + setHidden() + +  : $this +
            + +
            + setName() + +  : $this +
            +
            Sets the name of the command.
            + +
            + setOption() + +  : mixed +
            +
            Add a new option
            + +
            + setProcessTitle() + +  : $this +
            +
            Sets the process title of the command.
            + +
            + write() + +  : mixed +
            +
            Output some data
            + +
            + writeln() + +  : mixed +
            +
            Output some data
            + +
            + config() + +  : mixed +
            + +
            + configure() + +  : mixed +
            +
            Configures the current command.
            + +
            + execute() + +  : int +
            +
            Executes the current command.
            + +
            + handle() + +  : int +
            +
            Executes the current command.
            + +
            + initialize() + +  : mixed +
            +
            Initializes the command after the input has been bound and before the input +is validated.
            + +
            + interact() + +  : mixed +
            +
            Interacts with the user.
            + +
            + validateName() + +  : mixed +
            +
            Validates a command name.
            + +
            + + + + +
            +

            + Constants + + +

            +
            +

            + FAILURE + + +

            + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
            +
            +

            + INVALID + + +

            + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
            +
            +

            + SUCCESS + + +

            + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
            +
            + + +
            +

            + Properties + + +

            +
            +

            + $description + + + + +

            + + +

            Description for command

            + + + + public + mixed + $description + = 'Migrate your db schema files' + + + + + + + +
            +
            +

            + $help + + + + +

            + + +

            Help for command

            + + + + public + mixed + $help + = "Run the migrations defined in the migrations directory\n" + + + + + + + +
            +
            +

            + $defaultDescription + + + + +

            + + + + + + protected + static string|null + $defaultDescription + + + +

            The default command description

            +
            + + + + + +
            +
            +

            + $defaultName + + + + +

            + + + + + + protected + static string|null + $defaultName + = 'db:migrate' + + +

            The default command name

            +
            + + + + + +
            +
            +

            + $input + + + + +

            + + +

            The input object

            + + + + protected + InputInterface + $input + + + + + + + + +
            +
            +

            + $output + + + + +

            + + +

            The output object

            + + + + protected + OutputInterface + $output + + + + + + + + +
            +
            +

            + $aliases + + + + +

            + + + + + + private + mixed + $aliases + = [] + + + + + + + +
            +
            +

            + $application + + + + +

            + + + + + + private + mixed + $application + + + + + + + + +
            +
            +

            + $code + + + + +

            + + + + + + private + mixed + $code + + + + + + + + +
            +
            +

            + $definition + + + + +

            + + + + + + private + mixed + $definition + + + + + + + + +
            +
            +

            + $fullDefinition + + + + +

            + + + + + + private + mixed + $fullDefinition + + + + + + + + +
            +
            +

            + $helperSet + + + + +

            + + + + + + private + mixed + $helperSet + + + + + + + + +
            +
            +

            + $hidden + + + + +

            + + + + + + private + mixed + $hidden + = false + + + + + + + +
            +
            +

            + $ignoreValidationErrors + + + + +

            + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
            +
            +

            + $name + + + + +

            + + +

            The name of command to run in console

            + + + + private + mixed + $name + + + + + + + + +
            +
            +

            + $processTitle + + + + +

            + + + + + + private + mixed + $processTitle + + + + + + + + +
            +
            +

            + $synopsis + + + + +

            + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
            +
            +

            + $usages + + + + +

            + + + + + + private + mixed + $usages + = [] + + + + + + + +
            +
            + +
            +

            + Methods + + +

            +
            +

            + __construct() + + +

            + + + + + public + __construct([string|null $name = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string|null + = null
            +
            +

            The name of the command; passing null means it must be set in configure()

            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + LogicException + +

            When the command name is empty

            +
            + +
            +
            + + + + +
            +
            +

            + addArgument() + + +

            + + +

            Adds an argument.

            + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + $mode + : int|null + = null
            +
            +

            The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

            +
            + +
            +
            + $description + : string + = ''
            +
            + +
            +
            + $default + : mixed + = null
            +
            +

            The default value (for InputArgument::OPTIONAL mode only)

            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + InvalidArgumentException + +

            When argument mode is not valid

            +
            + +
            +
            + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + addOption() + + +

            + + +

            Adds an option.

            + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + $shortcut + : string|array<string|int, mixed>|null + = null
            +
            +

            The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

            +
            + +
            +
            + $mode + : int|null + = null
            +
            +

            The option mode: One of the InputOption::VALUE_* constants

            +
            + +
            +
            + $description + : string + = ''
            +
            + +
            +
            + $default + : mixed + = null
            +
            +

            The default value (must be null for InputOption::VALUE_NONE)

            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + InvalidArgumentException + +

            If option mode is invalid or incompatible

            +
            + +
            +
            + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + addUsage() + + +

            + + +

            Add a command usage example, it'll be prefixed with the command name.

            + + + public + addUsage(string $usage) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $usage + : string +
            +
            + +
            +
            + + + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + argument() + + +

            + + +

            Returns the argument value for a given argument name.

            + + + public + argument(string $name) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + + + + + + +
            +
            +

            + arguments() + + +

            + + +

            Returns all the given arguments merged with the default values.

            + + + public + arguments() : mixed + +
            +
            + + + + + + + + +
            +
            +

            + ask() + + +

            + + +

            Ask a question

            + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + $default + : mixed + = null
            +
            + +
            +
            + + + + + + +
            +
            +

            + askMultiline() + + +

            + + +

            Ask a question

            + + + public + askMultiline(string $question) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + + + + + + +
            +
            +

            + askRaw() + + +

            + + +

            Ask a question

            + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + $default + : mixed + = null
            +
            + +
            +
            + + + + + + +
            +
            +

            + autoComplete() + + +

            + + +

            Ask a question with auto completion

            + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + $potentialAnswers + : array<string|int, mixed> +
            +
            + +
            +
            + $default + : mixed + = null
            +
            + +
            +
            + + + + + + +
            +
            +

            + choice() + + +

            + + +

            Ask a question with possible answers

            + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + $choices + : array<string|int, mixed> +
            +
            + +
            +
            + $errorMessage + : string + = 'Invalid choice'
            +
            + +
            +
            + $default + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + comment() + + +

            + + +

            Output some data as a comment

            + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $messages + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            + +
            +

            + confirm() + + +

            + + +

            Prompt user for confirmation

            + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : mixed +
            +
            + +
            +
            + $param + : mixed + = false
            +
            + +
            +
            + $regex + : mixed + = '/^y/i'
            +
            + +
            +
            + + + + + + +
            + +
            +

            + error() + + +

            + + +

            Output some data as a error

            + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $messages + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + getAliases() + + +

            + + +

            Returns the aliases for the command.

            + + + public + getAliases() : array<string|int, mixed> + +
            +
            + + + + + + + +
            +
            Return values
            + array<string|int, mixed> +
            + +
            +
            +

            + getApplication() + + +

            + + +

            Gets the application instance for this command.

            + + + public + getApplication() : Application|null + +
            +
            + + + + + + + +
            +
            Return values
            + Application|null +
            + +
            +
            +

            + getDefaultDescription() + + +

            + + + + + public + static getDefaultDescription() : string|null + +
            +
            + + + + + + + +
            +
            Return values
            + string|null +
            + +
            +
            +

            + getDefaultName() + + +

            + + + + + public + static getDefaultName() : string|null + +
            +
            + + + + + + + +
            +
            Return values
            + string|null +
            + +
            +
            +

            + getDefinition() + + +

            + + +

            Gets the InputDefinition attached to this Command.

            + + + public + getDefinition() : InputDefinition + +
            +
            + + + + + + + +
            +
            Return values
            + InputDefinition +
            + +
            +
            +

            + getDescription() + + +

            + + +

            Returns the description for the command.

            + + + public + getDescription() : string + +
            +
            + + + + + + + +
            +
            Return values
            + string +
            + +
            +
            +

            + getHelp() + + +

            + + +

            Returns the help for the command.

            + + + public + getHelp() : string + +
            +
            + + + + + + + +
            +
            Return values
            + string +
            + +
            +
            +

            + getHelper() + + +

            + + +

            Gets a helper instance by name.

            + + + public + getHelper(string $name) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + LogicException + +

            if no HelperSet is defined

            +
            + +
            +
            + throws +
            +
            + InvalidArgumentException + +

            if the helper is not defined

            +
            + +
            +
            + + + + +
            +
            +

            + getHelperSet() + + +

            + + +

            Gets the helper set.

            + + + public + getHelperSet() : HelperSet|null + +
            +
            + + + + + + + +
            +
            Return values
            + HelperSet|null +
            + +
            +
            +

            + getName() + + +

            + + +

            Returns the command name.

            + + + public + getName() : string|null + +
            +
            + + + + + + + +
            +
            Return values
            + string|null +
            + +
            +
            +

            + getNativeDefinition() + + +

            + + +

            Gets the InputDefinition to be used to create representations of this Command.

            + + + public + getNativeDefinition() : InputDefinition + +
            +
            + +

            Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

            +

            This method is not part of public API and should not be used directly.

            +
            + + + + + + +
            +
            Return values
            + InputDefinition +
            + +
            +
            +

            + getProcessedHelp() + + +

            + + +

            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

            + + + public + getProcessedHelp() : string + +
            +
            + + + + + + + +
            +
            Return values
            + string +
            + +
            +
            +

            + getSynopsis() + + +

            + + +

            Returns the synopsis for the command.

            + + + public + getSynopsis([bool $short = false ]) : string + +
            +
            + + +
            Parameters
            +
            +
            + $short + : bool + = false
            +
            +

            Whether to show the short version of the synopsis (with options folded) or not

            +
            + +
            +
            + + + + + +
            +
            Return values
            + string +
            + +
            +
            +

            + getUsages() + + +

            + + +

            Returns alternative usages of the command.

            + + + public + getUsages() : array<string|int, mixed> + +
            +
            + + + + + + + +
            +
            Return values
            + array<string|int, mixed> +
            + +
            +
            +

            + ignoreValidationErrors() + + +

            + + +

            Ignores validation errors.

            + + + public + ignoreValidationErrors() : mixed + +
            +
            + +

            This is mainly useful for the help command.

            +
            + + + + + + + +
            +
            +

            + info() + + +

            + + +

            Output some data as a info

            + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $messages + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + input() + + +

            + + +

            Get an argument or return the input object

            + + + public + input([string $data = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $data + : string + = null
            +
            +

            The argument to return

            +
            + +
            +
            + + + + + + +
            +
            +

            + isEnabled() + + +

            + + +

            Checks whether the command is enabled or not in the current environment.

            + + + public + isEnabled() : bool + +
            +
            + +

            Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

            +
            + + + + + + +
            +
            Return values
            + bool +
            + +
            +
            +

            + isHidden() + + +

            + + + + + public + isHidden() : bool + +
            +
            + + + + + + + +
            +
            Return values
            + bool + — +

            whether the command should be publicly shown or not

            +
            + +
            + +
            +
            + + + +

            Output some data as a link

            + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $link + : mixed +
            +
            + +
            +
            + $display + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + multiChoice() + + +

            + + +

            Ask a question with possible answers + multiple choice

            + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + $choices + : array<string|int, mixed> +
            +
            + +
            +
            + $errorMessage + : string + = 'Invalid choice'
            +
            + +
            +
            + $default + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + option() + + +

            + + +

            Get an input option

            + + + public + option(string $name) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + + + + + + +
            +
            +

            + options() + + +

            + + +

            Get all input options

            + + + public + options(string $name) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + + + + + + +
            +
            +

            + output() + + +

            + + +

            Output data or return the output object

            + + + public + output([string $data = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $data + : string + = null
            +
            +

            The argument to return

            +
            + +
            +
            + + + + + + +
            +
            +

            + question() + + +

            + + +

            Output some data as a question

            + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $messages + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + run() + + +

            + + +

            Runs the command.

            + + + public + run(InputInterface $input, OutputInterface $output) : int + +
            +
            + +

            The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

            +
            + +
            Parameters
            +
            +
            + $input + : InputInterface +
            +
            + +
            +
            + $output + : OutputInterface +
            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + Exception + +

            When binding input fails. Bypass this by calling .

            +
            + +
            +
            + see +
            +
            + setCode() + + +
            +
            + see +
            +
            + execute() + + +
            +
            + + + +
            +
            Return values
            + int + — +

            The command exit code

            +
            + +
            + +
            +
            +

            + runProcess() + + +

            + + +

            Run a new cli process

            + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $process + : array<string|int, mixed> +
            +
            + +
            +
            + + + + + + +
            +
            +

            + secret() + + +

            + + +

            Prompt user for input but hide keystrokes

            + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $question + : string +
            +
            + +
            +
            + $useFallback + : bool + = false
            +
            + +
            +
            + + + + + + +
            +
            +

            + setAliases() + + +

            + + +

            Sets the aliases for the command.

            + + + public + setAliases(array<string|int, string> $aliases) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $aliases + : array<string|int, string> +
            +
            +

            An array of aliases for the command

            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + InvalidArgumentException + +

            When an alias is invalid

            +
            + +
            +
            + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setApplication() + + +

            + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $application + : Application|null + = null
            +
            + +
            +
            + + + + + + +
            +
            +

            + setArgument() + + +

            + + +

            Add a new argument

            + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : mixed +
            +
            + +
            +
            + $mode + : mixed + = null
            +
            + +
            +
            + $description + : mixed + = ''
            +
            + +
            +
            + $default + : mixed + = null
            +
            + +
            +
            + + + + + + +
            +
            +

            + setCode() + + +

            + + +

            Sets the code to execute when running this command.

            + + + public + setCode(callable $code) : $this + +
            +
            + +

            If this method is used, it overrides the code defined +in the execute() method.

            +
            + +
            Parameters
            +
            +
            + $code + : callable +
            +
            +

            A callable(InputInterface $input, OutputInterface $output)

            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + InvalidArgumentException + + +
            +
            + see +
            +
            + execute() + + +
            +
            + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setDefinition() + + +

            + + +

            Sets an array of argument and option instances.

            + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $definition + : array<string|int, mixed>|InputDefinition +
            +
            +

            An array of argument and option instances or a definition instance

            +
            + +
            +
            + + + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setDescription() + + +

            + + +

            Sets the description for the command.

            + + + public + setDescription(string $description) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $description + : string +
            +
            + +
            +
            + + + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setHelp() + + +

            + + +

            Sets the help for the command.

            + + + public + setHelp(string $help) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $help + : string +
            +
            + +
            +
            + + + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setHelperSet() + + +

            + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $helperSet + : HelperSet +
            +
            + +
            +
            + + + + + + +
            +
            +

            + setHidden() + + +

            + + + + + public + setHidden(bool $hidden) : $this + +
            +
            + + +
            Parameters
            +
            +
            + $hidden + : bool +
            +
            +

            Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + final +
            +
            + +

            since Symfony 5.1

            +
            + +
            +
            + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setName() + + +

            + + +

            Sets the name of the command.

            + + + public + setName(string $name) : $this + +
            +
            + +

            This method can set both the namespace and the name if +you separate them by a colon (:)

            +
            $command->setName('foo:bar');
            +
            +
            + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + InvalidArgumentException + +

            When the name is invalid

            +
            + +
            +
            + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + setOption() + + +

            + + +

            Add a new option

            + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $name + : mixed +
            +
            + +
            +
            + $shortcut + : mixed + = null
            +
            + +
            +
            + $mode + : mixed + = null
            +
            + +
            +
            + $description + : mixed + = ''
            +
            + +
            +
            + $default + : mixed + = null
            +
            + +
            +
            + + + + + + +
            +
            +

            + setProcessTitle() + + +

            + + +

            Sets the process title of the command.

            + + + public + setProcessTitle(string $title) : $this + +
            +
            + +

            This feature should be used only when creating a long process command, +like a daemon.

            +
            + +
            Parameters
            +
            +
            + $title + : string +
            +
            + +
            +
            + + + + + +
            +
            Return values
            + $this +
            + +
            +
            +

            + write() + + +

            + + +

            Output some data

            + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $messages + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            +
            +

            + writeln() + + +

            + + +

            Output some data

            + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
            +
            + + +
            Parameters
            +
            +
            + $messages + : mixed +
            +
            + +
            +
            + $options + : mixed + = 0
            +
            + +
            +
            + + + + + + +
            + +
            +

            + configure() + + +

            + + +

            Configures the current command.

            + + + protected + configure() : mixed + +
            +
            + + + + + + + + +
            +
            +

            + execute() + + +

            + + +

            Executes the current command.

            + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
            +
            + +

            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

            +
            + +
            Parameters
            +
            +
            + $input + : InputInterface +
            +
            + +
            +
            + $output + : OutputInterface +
            +
            + +
            +
            + + + + + +
            +
            Return values
            + int + — +

            0 if everything went fine, or an exit code

            +
            + +
            + +
            +
            +

            + handle() + + +

            + + +

            Executes the current command.

            + + + protected + handle() : int + +
            +
            + +

            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

            +
            + + + + + + +
            +
            Return values
            + int + — +

            0 if everything went fine, or an exit code

            +
            + +
            + +
            +
            +

            + initialize() + + +

            + + +

            Initializes the command after the input has been bound and before the input +is validated.

            + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
            +
            + +

            This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

            +
            + +
            Parameters
            +
            +
            + $input + : InputInterface +
            +
            + +
            +
            + $output + : OutputInterface +
            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + see +
            +
            + InputInterface::bind() + + +
            +
            + see +
            +
            + InputInterface::validate() + + +
            +
            + + + + +
            +
            +

            + interact() + + +

            + + +

            Interacts with the user.

            + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
            +
            + +

            This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

            +
            + +
            Parameters
            +
            +
            + $input + : InputInterface +
            +
            + +
            +
            + $output + : OutputInterface +
            +
            + +
            +
            + + + + + + +
            +
            +

            + validateName() + + +

            + + +

            Validates a command name.

            + + + private + validateName(string $name) : mixed + +
            +
            + +

            It must be non-empty and parts can optionally be separated by ":".

            +
            + +
            Parameters
            +
            +
            + $name + : string +
            +
            + +
            +
            + + +
            + Tags + + +
            +
            +
            + throws +
            +
            + InvalidArgumentException + +

            When the name is invalid

            +
            + +
            +
            + + + + +
            +
            + +
            +
            +
            +
            +
            
            +        
            + +
            +
            + + + +
            +
            +
            + +
            + On this page + + +
            + +
            +
            +
            +
            +
            +

            Search results

            + +
            +
            +
              +
              +
              +
              +
              + + +
              + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DatabaseResetCommand.html b/src/public/api/classes/Aloe-Command-DatabaseResetCommand.html new file mode 100644 index 00000000..e50fd697 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DatabaseResetCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
              +

              Leaf PHP

              + + + + + +
              + +
              +
              + + + + +
              +
              + + +
              +

              + DatabaseResetCommand + + + extends Command + + +
              + in package + +
              + + +

              + +
              + + +
              + + + +

              Base class for Aloe Commands.

              + + + + + + + + + +

              + Table of Contents + + +

              + + + + + + + +

              + Constants + + +

              +
              +
              + FAILURE + +  = 1 +
              + +
              + INVALID + +  = 2 +
              + +
              + SUCCESS + +  = 0 +
              + +
              + + +

              + Properties + + +

              +
              +
              + $description + +  : mixed +
              +
              Description for command
              + +
              + $help + +  : mixed +
              +
              Help for command
              + +
              + $defaultDescription + +  : string|null +
              + +
              + $defaultName + +  : string|null +
              + +
              + $input + +  : InputInterface +
              +
              The input object
              + +
              + $output + +  : OutputInterface +
              +
              The output object
              + +
              + $aliases + +  : mixed +
              + +
              + $application + +  : mixed +
              + +
              + $code + +  : mixed +
              + +
              + $definition + +  : mixed +
              + +
              + $fullDefinition + +  : mixed +
              + +
              + $helperSet + +  : mixed +
              + +
              + $hidden + +  : mixed +
              + +
              + $ignoreValidationErrors + +  : mixed +
              + +
              + $name + +  : mixed +
              +
              The name of command to run in console
              + +
              + $processTitle + +  : mixed +
              + +
              + $synopsis + +  : mixed +
              + +
              + $usages + +  : mixed +
              + +
              + +

              + Methods + + +

              +
              +
              + __construct() + +  : mixed +
              + +
              + addArgument() + +  : $this +
              +
              Adds an argument.
              + +
              + addOption() + +  : $this +
              +
              Adds an option.
              + +
              + addUsage() + +  : $this +
              +
              Add a command usage example, it'll be prefixed with the command name.
              + +
              + argument() + +  : mixed +
              +
              Returns the argument value for a given argument name.
              + +
              + arguments() + +  : mixed +
              +
              Returns all the given arguments merged with the default values.
              + +
              + ask() + +  : mixed +
              +
              Ask a question
              + +
              + askMultiline() + +  : mixed +
              +
              Ask a question
              + +
              + askRaw() + +  : mixed +
              +
              Ask a question
              + +
              + autoComplete() + +  : mixed +
              +
              Ask a question with auto completion
              + +
              + choice() + +  : mixed +
              +
              Ask a question with possible answers
              + +
              + comment() + +  : mixed +
              +
              Output some data as a comment
              + +
              + complete() + +  : void +
              +
              Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
              + +
              + confirm() + +  : mixed +
              +
              Prompt user for confirmation
              + +
              + error() + +  : mixed +
              +
              Output some data as a error
              + +
              + getAliases() + +  : array<string|int, mixed> +
              +
              Returns the aliases for the command.
              + +
              + getApplication() + +  : Application|null +
              +
              Gets the application instance for this command.
              + +
              + getDefaultDescription() + +  : string|null +
              + +
              + getDefaultName() + +  : string|null +
              + +
              + getDefinition() + +  : InputDefinition +
              +
              Gets the InputDefinition attached to this Command.
              + +
              + getDescription() + +  : string +
              +
              Returns the description for the command.
              + +
              + getHelp() + +  : string +
              +
              Returns the help for the command.
              + +
              + getHelper() + +  : mixed +
              +
              Gets a helper instance by name.
              + +
              + getHelperSet() + +  : HelperSet|null +
              +
              Gets the helper set.
              + +
              + getName() + +  : string|null +
              +
              Returns the command name.
              + +
              + getNativeDefinition() + +  : InputDefinition +
              +
              Gets the InputDefinition to be used to create representations of this Command.
              + +
              + getProcessedHelp() + +  : string +
              +
              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
              + +
              + getSynopsis() + +  : string +
              +
              Returns the synopsis for the command.
              + +
              + getUsages() + +  : array<string|int, mixed> +
              +
              Returns alternative usages of the command.
              + +
              + ignoreValidationErrors() + +  : mixed +
              +
              Ignores validation errors.
              + +
              + info() + +  : mixed +
              +
              Output some data as a info
              + +
              + input() + +  : mixed +
              +
              Get an argument or return the input object
              + +
              + isEnabled() + +  : bool +
              +
              Checks whether the command is enabled or not in the current environment.
              + +
              + isHidden() + +  : bool +
              + +
              + link() + +  : mixed +
              +
              Output some data as a link
              + +
              + multiChoice() + +  : mixed +
              +
              Ask a question with possible answers + multiple choice
              + +
              + option() + +  : mixed +
              +
              Get an input option
              + +
              + options() + +  : mixed +
              +
              Get all input options
              + +
              + output() + +  : mixed +
              +
              Output data or return the output object
              + +
              + question() + +  : mixed +
              +
              Output some data as a question
              + +
              + run() + +  : int +
              +
              Runs the command.
              + +
              + runProcess() + +  : mixed +
              +
              Run a new cli process
              + +
              + secret() + +  : mixed +
              +
              Prompt user for input but hide keystrokes
              + +
              + setAliases() + +  : $this +
              +
              Sets the aliases for the command.
              + +
              + setApplication() + +  : mixed +
              + +
              + setArgument() + +  : mixed +
              +
              Add a new argument
              + +
              + setCode() + +  : $this +
              +
              Sets the code to execute when running this command.
              + +
              + setDefinition() + +  : $this +
              +
              Sets an array of argument and option instances.
              + +
              + setDescription() + +  : $this +
              +
              Sets the description for the command.
              + +
              + setHelp() + +  : $this +
              +
              Sets the help for the command.
              + +
              + setHelperSet() + +  : mixed +
              + +
              + setHidden() + +  : $this +
              + +
              + setName() + +  : $this +
              +
              Sets the name of the command.
              + +
              + setOption() + +  : mixed +
              +
              Add a new option
              + +
              + setProcessTitle() + +  : $this +
              +
              Sets the process title of the command.
              + +
              + write() + +  : mixed +
              +
              Output some data
              + +
              + writeln() + +  : mixed +
              +
              Output some data
              + +
              + config() + +  : mixed +
              + +
              + configure() + +  : mixed +
              +
              Configures the current command.
              + +
              + execute() + +  : int +
              +
              Executes the current command.
              + +
              + handle() + +  : int +
              +
              Executes the current command.
              + +
              + initialize() + +  : mixed +
              +
              Initializes the command after the input has been bound and before the input +is validated.
              + +
              + interact() + +  : mixed +
              +
              Interacts with the user.
              + +
              + validateName() + +  : mixed +
              +
              Validates a command name.
              + +
              + + + + +
              +

              + Constants + + +

              +
              +

              + FAILURE + + +

              + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
              +
              +

              + INVALID + + +

              + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
              +
              +

              + SUCCESS + + +

              + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
              +
              + + +
              +

              + Properties + + +

              +
              +

              + $description + + + + +

              + + +

              Description for command

              + + + + public + mixed + $description + = 'Reset migration history + db tables' + + + + + + + +
              +
              +

              + $help + + + + +

              + + +

              Help for command

              + + + + public + mixed + $help + = "Clear all database tables, and migrate afresh. Add --seed to seed db\n" + + + + + + + +
              +
              +

              + $defaultDescription + + + + +

              + + + + + + protected + static string|null + $defaultDescription + + + +

              The default command description

              +
              + + + + + +
              +
              +

              + $defaultName + + + + +

              + + + + + + protected + static string|null + $defaultName + = 'db:reset' + + +

              The default command name

              +
              + + + + + +
              +
              +

              + $input + + + + +

              + + +

              The input object

              + + + + protected + InputInterface + $input + + + + + + + + +
              +
              +

              + $output + + + + +

              + + +

              The output object

              + + + + protected + OutputInterface + $output + + + + + + + + +
              +
              +

              + $aliases + + + + +

              + + + + + + private + mixed + $aliases + = [] + + + + + + + +
              +
              +

              + $application + + + + +

              + + + + + + private + mixed + $application + + + + + + + + +
              +
              +

              + $code + + + + +

              + + + + + + private + mixed + $code + + + + + + + + +
              +
              +

              + $definition + + + + +

              + + + + + + private + mixed + $definition + + + + + + + + +
              +
              +

              + $fullDefinition + + + + +

              + + + + + + private + mixed + $fullDefinition + + + + + + + + +
              +
              +

              + $helperSet + + + + +

              + + + + + + private + mixed + $helperSet + + + + + + + + +
              +
              +

              + $hidden + + + + +

              + + + + + + private + mixed + $hidden + = false + + + + + + + +
              +
              +

              + $ignoreValidationErrors + + + + +

              + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
              +
              +

              + $name + + + + +

              + + +

              The name of command to run in console

              + + + + private + mixed + $name + + + + + + + + +
              +
              +

              + $processTitle + + + + +

              + + + + + + private + mixed + $processTitle + + + + + + + + +
              +
              +

              + $synopsis + + + + +

              + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
              +
              +

              + $usages + + + + +

              + + + + + + private + mixed + $usages + = [] + + + + + + + +
              +
              + +
              +

              + Methods + + +

              +
              +

              + __construct() + + +

              + + + + + public + __construct([string|null $name = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string|null + = null
              +
              +

              The name of the command; passing null means it must be set in configure()

              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + LogicException + +

              When the command name is empty

              +
              + +
              +
              + + + + +
              +
              +

              + addArgument() + + +

              + + +

              Adds an argument.

              + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + $mode + : int|null + = null
              +
              +

              The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

              +
              + +
              +
              + $description + : string + = ''
              +
              + +
              +
              + $default + : mixed + = null
              +
              +

              The default value (for InputArgument::OPTIONAL mode only)

              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + InvalidArgumentException + +

              When argument mode is not valid

              +
              + +
              +
              + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + addOption() + + +

              + + +

              Adds an option.

              + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + $shortcut + : string|array<string|int, mixed>|null + = null
              +
              +

              The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

              +
              + +
              +
              + $mode + : int|null + = null
              +
              +

              The option mode: One of the InputOption::VALUE_* constants

              +
              + +
              +
              + $description + : string + = ''
              +
              + +
              +
              + $default + : mixed + = null
              +
              +

              The default value (must be null for InputOption::VALUE_NONE)

              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + InvalidArgumentException + +

              If option mode is invalid or incompatible

              +
              + +
              +
              + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + addUsage() + + +

              + + +

              Add a command usage example, it'll be prefixed with the command name.

              + + + public + addUsage(string $usage) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $usage + : string +
              +
              + +
              +
              + + + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + argument() + + +

              + + +

              Returns the argument value for a given argument name.

              + + + public + argument(string $name) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + + + + + + +
              +
              +

              + arguments() + + +

              + + +

              Returns all the given arguments merged with the default values.

              + + + public + arguments() : mixed + +
              +
              + + + + + + + + +
              +
              +

              + ask() + + +

              + + +

              Ask a question

              + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + $default + : mixed + = null
              +
              + +
              +
              + + + + + + +
              +
              +

              + askMultiline() + + +

              + + +

              Ask a question

              + + + public + askMultiline(string $question) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + + + + + + +
              +
              +

              + askRaw() + + +

              + + +

              Ask a question

              + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + $default + : mixed + = null
              +
              + +
              +
              + + + + + + +
              +
              +

              + autoComplete() + + +

              + + +

              Ask a question with auto completion

              + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + $potentialAnswers + : array<string|int, mixed> +
              +
              + +
              +
              + $default + : mixed + = null
              +
              + +
              +
              + + + + + + +
              +
              +

              + choice() + + +

              + + +

              Ask a question with possible answers

              + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + $choices + : array<string|int, mixed> +
              +
              + +
              +
              + $errorMessage + : string + = 'Invalid choice'
              +
              + +
              +
              + $default + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + comment() + + +

              + + +

              Output some data as a comment

              + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $messages + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              + +
              +

              + confirm() + + +

              + + +

              Prompt user for confirmation

              + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : mixed +
              +
              + +
              +
              + $param + : mixed + = false
              +
              + +
              +
              + $regex + : mixed + = '/^y/i'
              +
              + +
              +
              + + + + + + +
              +
              +

              + error() + + +

              + + +

              Output some data as a error

              + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $messages + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + getAliases() + + +

              + + +

              Returns the aliases for the command.

              + + + public + getAliases() : array<string|int, mixed> + +
              +
              + + + + + + + +
              +
              Return values
              + array<string|int, mixed> +
              + +
              +
              +

              + getApplication() + + +

              + + +

              Gets the application instance for this command.

              + + + public + getApplication() : Application|null + +
              +
              + + + + + + + +
              +
              Return values
              + Application|null +
              + +
              +
              +

              + getDefaultDescription() + + +

              + + + + + public + static getDefaultDescription() : string|null + +
              +
              + + + + + + + +
              +
              Return values
              + string|null +
              + +
              +
              +

              + getDefaultName() + + +

              + + + + + public + static getDefaultName() : string|null + +
              +
              + + + + + + + +
              +
              Return values
              + string|null +
              + +
              +
              +

              + getDefinition() + + +

              + + +

              Gets the InputDefinition attached to this Command.

              + + + public + getDefinition() : InputDefinition + +
              +
              + + + + + + + +
              +
              Return values
              + InputDefinition +
              + +
              +
              +

              + getDescription() + + +

              + + +

              Returns the description for the command.

              + + + public + getDescription() : string + +
              +
              + + + + + + + +
              +
              Return values
              + string +
              + +
              +
              +

              + getHelp() + + +

              + + +

              Returns the help for the command.

              + + + public + getHelp() : string + +
              +
              + + + + + + + +
              +
              Return values
              + string +
              + +
              +
              +

              + getHelper() + + +

              + + +

              Gets a helper instance by name.

              + + + public + getHelper(string $name) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + LogicException + +

              if no HelperSet is defined

              +
              + +
              +
              + throws +
              +
              + InvalidArgumentException + +

              if the helper is not defined

              +
              + +
              +
              + + + + +
              +
              +

              + getHelperSet() + + +

              + + +

              Gets the helper set.

              + + + public + getHelperSet() : HelperSet|null + +
              +
              + + + + + + + +
              +
              Return values
              + HelperSet|null +
              + +
              +
              +

              + getName() + + +

              + + +

              Returns the command name.

              + + + public + getName() : string|null + +
              +
              + + + + + + + +
              +
              Return values
              + string|null +
              + +
              +
              +

              + getNativeDefinition() + + +

              + + +

              Gets the InputDefinition to be used to create representations of this Command.

              + + + public + getNativeDefinition() : InputDefinition + +
              +
              + +

              Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

              +

              This method is not part of public API and should not be used directly.

              +
              + + + + + + +
              +
              Return values
              + InputDefinition +
              + +
              +
              +

              + getProcessedHelp() + + +

              + + +

              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

              + + + public + getProcessedHelp() : string + +
              +
              + + + + + + + +
              +
              Return values
              + string +
              + +
              +
              +

              + getSynopsis() + + +

              + + +

              Returns the synopsis for the command.

              + + + public + getSynopsis([bool $short = false ]) : string + +
              +
              + + +
              Parameters
              +
              +
              + $short + : bool + = false
              +
              +

              Whether to show the short version of the synopsis (with options folded) or not

              +
              + +
              +
              + + + + + +
              +
              Return values
              + string +
              + +
              +
              +

              + getUsages() + + +

              + + +

              Returns alternative usages of the command.

              + + + public + getUsages() : array<string|int, mixed> + +
              +
              + + + + + + + +
              +
              Return values
              + array<string|int, mixed> +
              + +
              +
              +

              + ignoreValidationErrors() + + +

              + + +

              Ignores validation errors.

              + + + public + ignoreValidationErrors() : mixed + +
              +
              + +

              This is mainly useful for the help command.

              +
              + + + + + + + +
              +
              +

              + info() + + +

              + + +

              Output some data as a info

              + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $messages + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + input() + + +

              + + +

              Get an argument or return the input object

              + + + public + input([string $data = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $data + : string + = null
              +
              +

              The argument to return

              +
              + +
              +
              + + + + + + +
              +
              +

              + isEnabled() + + +

              + + +

              Checks whether the command is enabled or not in the current environment.

              + + + public + isEnabled() : bool + +
              +
              + +

              Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

              +
              + + + + + + +
              +
              Return values
              + bool +
              + +
              +
              +

              + isHidden() + + +

              + + + + + public + isHidden() : bool + +
              +
              + + + + + + + +
              +
              Return values
              + bool + — +

              whether the command should be publicly shown or not

              +
              + +
              + +
              +
              + + + +

              Output some data as a link

              + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $link + : mixed +
              +
              + +
              +
              + $display + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + multiChoice() + + +

              + + +

              Ask a question with possible answers + multiple choice

              + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + $choices + : array<string|int, mixed> +
              +
              + +
              +
              + $errorMessage + : string + = 'Invalid choice'
              +
              + +
              +
              + $default + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + option() + + +

              + + +

              Get an input option

              + + + public + option(string $name) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + + + + + + +
              +
              +

              + options() + + +

              + + +

              Get all input options

              + + + public + options(string $name) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + + + + + + +
              +
              +

              + output() + + +

              + + +

              Output data or return the output object

              + + + public + output([string $data = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $data + : string + = null
              +
              +

              The argument to return

              +
              + +
              +
              + + + + + + +
              +
              +

              + question() + + +

              + + +

              Output some data as a question

              + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $messages + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + run() + + +

              + + +

              Runs the command.

              + + + public + run(InputInterface $input, OutputInterface $output) : int + +
              +
              + +

              The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

              +
              + +
              Parameters
              +
              +
              + $input + : InputInterface +
              +
              + +
              +
              + $output + : OutputInterface +
              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + Exception + +

              When binding input fails. Bypass this by calling .

              +
              + +
              +
              + see +
              +
              + setCode() + + +
              +
              + see +
              +
              + execute() + + +
              +
              + + + +
              +
              Return values
              + int + — +

              The command exit code

              +
              + +
              + +
              +
              +

              + runProcess() + + +

              + + +

              Run a new cli process

              + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $process + : array<string|int, mixed> +
              +
              + +
              +
              + + + + + + +
              +
              +

              + secret() + + +

              + + +

              Prompt user for input but hide keystrokes

              + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $question + : string +
              +
              + +
              +
              + $useFallback + : bool + = false
              +
              + +
              +
              + + + + + + +
              +
              +

              + setAliases() + + +

              + + +

              Sets the aliases for the command.

              + + + public + setAliases(array<string|int, string> $aliases) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $aliases + : array<string|int, string> +
              +
              +

              An array of aliases for the command

              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + InvalidArgumentException + +

              When an alias is invalid

              +
              + +
              +
              + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setApplication() + + +

              + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $application + : Application|null + = null
              +
              + +
              +
              + + + + + + +
              +
              +

              + setArgument() + + +

              + + +

              Add a new argument

              + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : mixed +
              +
              + +
              +
              + $mode + : mixed + = null
              +
              + +
              +
              + $description + : mixed + = ''
              +
              + +
              +
              + $default + : mixed + = null
              +
              + +
              +
              + + + + + + +
              +
              +

              + setCode() + + +

              + + +

              Sets the code to execute when running this command.

              + + + public + setCode(callable $code) : $this + +
              +
              + +

              If this method is used, it overrides the code defined +in the execute() method.

              +
              + +
              Parameters
              +
              +
              + $code + : callable +
              +
              +

              A callable(InputInterface $input, OutputInterface $output)

              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + InvalidArgumentException + + +
              +
              + see +
              +
              + execute() + + +
              +
              + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setDefinition() + + +

              + + +

              Sets an array of argument and option instances.

              + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $definition + : array<string|int, mixed>|InputDefinition +
              +
              +

              An array of argument and option instances or a definition instance

              +
              + +
              +
              + + + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setDescription() + + +

              + + +

              Sets the description for the command.

              + + + public + setDescription(string $description) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $description + : string +
              +
              + +
              +
              + + + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setHelp() + + +

              + + +

              Sets the help for the command.

              + + + public + setHelp(string $help) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $help + : string +
              +
              + +
              +
              + + + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setHelperSet() + + +

              + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $helperSet + : HelperSet +
              +
              + +
              +
              + + + + + + +
              +
              +

              + setHidden() + + +

              + + + + + public + setHidden(bool $hidden) : $this + +
              +
              + + +
              Parameters
              +
              +
              + $hidden + : bool +
              +
              +

              Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + final +
              +
              + +

              since Symfony 5.1

              +
              + +
              +
              + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setName() + + +

              + + +

              Sets the name of the command.

              + + + public + setName(string $name) : $this + +
              +
              + +

              This method can set both the namespace and the name if +you separate them by a colon (:)

              +
              $command->setName('foo:bar');
              +
              +
              + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + InvalidArgumentException + +

              When the name is invalid

              +
              + +
              +
              + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + setOption() + + +

              + + +

              Add a new option

              + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $name + : mixed +
              +
              + +
              +
              + $shortcut + : mixed + = null
              +
              + +
              +
              + $mode + : mixed + = null
              +
              + +
              +
              + $description + : mixed + = ''
              +
              + +
              +
              + $default + : mixed + = null
              +
              + +
              +
              + + + + + + +
              +
              +

              + setProcessTitle() + + +

              + + +

              Sets the process title of the command.

              + + + public + setProcessTitle(string $title) : $this + +
              +
              + +

              This feature should be used only when creating a long process command, +like a daemon.

              +
              + +
              Parameters
              +
              +
              + $title + : string +
              +
              + +
              +
              + + + + + +
              +
              Return values
              + $this +
              + +
              +
              +

              + write() + + +

              + + +

              Output some data

              + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $messages + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + writeln() + + +

              + + +

              Output some data

              + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
              +
              + + +
              Parameters
              +
              +
              + $messages + : mixed +
              +
              + +
              +
              + $options + : mixed + = 0
              +
              + +
              +
              + + + + + + +
              +
              +

              + config() + + +

              + + + + + protected + config() : mixed + +
              +
              + + + + + + + + +
              +
              +

              + configure() + + +

              + + +

              Configures the current command.

              + + + protected + configure() : mixed + +
              +
              + + + + + + + + +
              +
              +

              + execute() + + +

              + + +

              Executes the current command.

              + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
              +
              + +

              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

              +
              + +
              Parameters
              +
              +
              + $input + : InputInterface +
              +
              + +
              +
              + $output + : OutputInterface +
              +
              + +
              +
              + + + + + +
              +
              Return values
              + int + — +

              0 if everything went fine, or an exit code

              +
              + +
              + +
              +
              +

              + handle() + + +

              + + +

              Executes the current command.

              + + + protected + handle() : int + +
              +
              + +

              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

              +
              + + + + + + +
              +
              Return values
              + int + — +

              0 if everything went fine, or an exit code

              +
              + +
              + +
              +
              +

              + initialize() + + +

              + + +

              Initializes the command after the input has been bound and before the input +is validated.

              + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
              +
              + +

              This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

              +
              + +
              Parameters
              +
              +
              + $input + : InputInterface +
              +
              + +
              +
              + $output + : OutputInterface +
              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + see +
              +
              + InputInterface::bind() + + +
              +
              + see +
              +
              + InputInterface::validate() + + +
              +
              + + + + +
              +
              +

              + interact() + + +

              + + +

              Interacts with the user.

              + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
              +
              + +

              This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

              +
              + +
              Parameters
              +
              +
              + $input + : InputInterface +
              +
              + +
              +
              + $output + : OutputInterface +
              +
              + +
              +
              + + + + + + +
              +
              +

              + validateName() + + +

              + + +

              Validates a command name.

              + + + private + validateName(string $name) : mixed + +
              +
              + +

              It must be non-empty and parts can optionally be separated by ":".

              +
              + +
              Parameters
              +
              +
              + $name + : string +
              +
              + +
              +
              + + +
              + Tags + + +
              +
              +
              + throws +
              +
              + InvalidArgumentException + +

              When the name is invalid

              +
              + +
              +
              + + + + +
              +
              + +
              +
              +
              +
              +
              
              +        
              + +
              +
              + + + +
              +
              +
              + +
              + On this page + + +
              + +
              +
              +
              +
              +
              +

              Search results

              + +
              +
              +
                +
                +
                +
                +
                + + +
                + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DatabaseRollbackCommand.html b/src/public/api/classes/Aloe-Command-DatabaseRollbackCommand.html new file mode 100644 index 00000000..f136448d --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DatabaseRollbackCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                +

                Leaf PHP

                + + + + + +
                + +
                +
                + + + + +
                +
                + + +
                +

                + DatabaseRollbackCommand + + + extends Command + + +
                + in package + +
                + + +

                + +
                + + +
                + + + +

                Base class for Aloe Commands.

                + + + + + + + + + +

                + Table of Contents + + +

                + + + + + + + +

                + Constants + + +

                +
                +
                + FAILURE + +  = 1 +
                + +
                + INVALID + +  = 2 +
                + +
                + SUCCESS + +  = 0 +
                + +
                + + +

                + Properties + + +

                +
                +
                + $description + +  : mixed +
                +
                Description for command
                + +
                + $help + +  : mixed +
                +
                Help for command
                + +
                + $defaultDescription + +  : string|null +
                + +
                + $defaultName + +  : string|null +
                + +
                + $input + +  : InputInterface +
                +
                The input object
                + +
                + $output + +  : OutputInterface +
                +
                The output object
                + +
                + $aliases + +  : mixed +
                + +
                + $application + +  : mixed +
                + +
                + $code + +  : mixed +
                + +
                + $definition + +  : mixed +
                + +
                + $fullDefinition + +  : mixed +
                + +
                + $helperSet + +  : mixed +
                + +
                + $hidden + +  : mixed +
                + +
                + $ignoreValidationErrors + +  : mixed +
                + +
                + $name + +  : mixed +
                +
                The name of command to run in console
                + +
                + $processTitle + +  : mixed +
                + +
                + $synopsis + +  : mixed +
                + +
                + $usages + +  : mixed +
                + +
                + +

                + Methods + + +

                +
                +
                + __construct() + +  : mixed +
                + +
                + addArgument() + +  : $this +
                +
                Adds an argument.
                + +
                + addOption() + +  : $this +
                +
                Adds an option.
                + +
                + addUsage() + +  : $this +
                +
                Add a command usage example, it'll be prefixed with the command name.
                + +
                + argument() + +  : mixed +
                +
                Returns the argument value for a given argument name.
                + +
                + arguments() + +  : mixed +
                +
                Returns all the given arguments merged with the default values.
                + +
                + ask() + +  : mixed +
                +
                Ask a question
                + +
                + askMultiline() + +  : mixed +
                +
                Ask a question
                + +
                + askRaw() + +  : mixed +
                +
                Ask a question
                + +
                + autoComplete() + +  : mixed +
                +
                Ask a question with auto completion
                + +
                + choice() + +  : mixed +
                +
                Ask a question with possible answers
                + +
                + comment() + +  : mixed +
                +
                Output some data as a comment
                + +
                + complete() + +  : void +
                +
                Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                + +
                + confirm() + +  : mixed +
                +
                Prompt user for confirmation
                + +
                + error() + +  : mixed +
                +
                Output some data as a error
                + +
                + getAliases() + +  : array<string|int, mixed> +
                +
                Returns the aliases for the command.
                + +
                + getApplication() + +  : Application|null +
                +
                Gets the application instance for this command.
                + +
                + getDefaultDescription() + +  : string|null +
                + +
                + getDefaultName() + +  : string|null +
                + +
                + getDefinition() + +  : InputDefinition +
                +
                Gets the InputDefinition attached to this Command.
                + +
                + getDescription() + +  : string +
                +
                Returns the description for the command.
                + +
                + getHelp() + +  : string +
                +
                Returns the help for the command.
                + +
                + getHelper() + +  : mixed +
                +
                Gets a helper instance by name.
                + +
                + getHelperSet() + +  : HelperSet|null +
                +
                Gets the helper set.
                + +
                + getName() + +  : string|null +
                +
                Returns the command name.
                + +
                + getNativeDefinition() + +  : InputDefinition +
                +
                Gets the InputDefinition to be used to create representations of this Command.
                + +
                + getProcessedHelp() + +  : string +
                +
                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                + +
                + getSynopsis() + +  : string +
                +
                Returns the synopsis for the command.
                + +
                + getUsages() + +  : array<string|int, mixed> +
                +
                Returns alternative usages of the command.
                + +
                + ignoreValidationErrors() + +  : mixed +
                +
                Ignores validation errors.
                + +
                + info() + +  : mixed +
                +
                Output some data as a info
                + +
                + input() + +  : mixed +
                +
                Get an argument or return the input object
                + +
                + isEnabled() + +  : bool +
                +
                Checks whether the command is enabled or not in the current environment.
                + +
                + isHidden() + +  : bool +
                + +
                + link() + +  : mixed +
                +
                Output some data as a link
                + +
                + multiChoice() + +  : mixed +
                +
                Ask a question with possible answers + multiple choice
                + +
                + option() + +  : mixed +
                +
                Get an input option
                + +
                + options() + +  : mixed +
                +
                Get all input options
                + +
                + output() + +  : mixed +
                +
                Output data or return the output object
                + +
                + question() + +  : mixed +
                +
                Output some data as a question
                + +
                + run() + +  : int +
                +
                Runs the command.
                + +
                + runProcess() + +  : mixed +
                +
                Run a new cli process
                + +
                + secret() + +  : mixed +
                +
                Prompt user for input but hide keystrokes
                + +
                + setAliases() + +  : $this +
                +
                Sets the aliases for the command.
                + +
                + setApplication() + +  : mixed +
                + +
                + setArgument() + +  : mixed +
                +
                Add a new argument
                + +
                + setCode() + +  : $this +
                +
                Sets the code to execute when running this command.
                + +
                + setDefinition() + +  : $this +
                +
                Sets an array of argument and option instances.
                + +
                + setDescription() + +  : $this +
                +
                Sets the description for the command.
                + +
                + setHelp() + +  : $this +
                +
                Sets the help for the command.
                + +
                + setHelperSet() + +  : mixed +
                + +
                + setHidden() + +  : $this +
                + +
                + setName() + +  : $this +
                +
                Sets the name of the command.
                + +
                + setOption() + +  : mixed +
                +
                Add a new option
                + +
                + setProcessTitle() + +  : $this +
                +
                Sets the process title of the command.
                + +
                + write() + +  : mixed +
                +
                Output some data
                + +
                + writeln() + +  : mixed +
                +
                Output some data
                + +
                + config() + +  : mixed +
                + +
                + configure() + +  : mixed +
                +
                Configures the current command.
                + +
                + execute() + +  : int +
                +
                Executes the current command.
                + +
                + handle() + +  : int +
                +
                Executes the current command.
                + +
                + initialize() + +  : mixed +
                +
                Initializes the command after the input has been bound and before the input +is validated.
                + +
                + interact() + +  : mixed +
                +
                Interacts with the user.
                + +
                + validateName() + +  : mixed +
                +
                Validates a command name.
                + +
                + + + + +
                +

                + Constants + + +

                +
                +

                + FAILURE + + +

                + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                +
                +

                + INVALID + + +

                + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                +
                +

                + SUCCESS + + +

                + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                +
                + + +
                +

                + Properties + + +

                +
                +

                + $description + + + + +

                + + +

                Description for command

                + + + + public + mixed + $description + = 'Rollback database to a previous state' + + + + + + + +
                +
                +

                + $help + + + + +

                + + +

                Help for command

                + + + + public + mixed + $help + = "Rollback database to a previous state, add -s to time-travel to a specific state.\n" + + + + + + + +
                +
                +

                + $defaultDescription + + + + +

                + + + + + + protected + static string|null + $defaultDescription + + + +

                The default command description

                +
                + + + + + +
                +
                +

                + $defaultName + + + + +

                + + + + + + protected + static string|null + $defaultName + = 'db:rollback' + + +

                The default command name

                +
                + + + + + +
                +
                +

                + $input + + + + +

                + + +

                The input object

                + + + + protected + InputInterface + $input + + + + + + + + +
                +
                +

                + $output + + + + +

                + + +

                The output object

                + + + + protected + OutputInterface + $output + + + + + + + + +
                +
                +

                + $aliases + + + + +

                + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                +
                +

                + $application + + + + +

                + + + + + + private + mixed + $application + + + + + + + + +
                +
                +

                + $code + + + + +

                + + + + + + private + mixed + $code + + + + + + + + +
                +
                +

                + $definition + + + + +

                + + + + + + private + mixed + $definition + + + + + + + + +
                +
                +

                + $fullDefinition + + + + +

                + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                +
                +

                + $helperSet + + + + +

                + + + + + + private + mixed + $helperSet + + + + + + + + +
                +
                +

                + $hidden + + + + +

                + + + + + + private + mixed + $hidden + = false + + + + + + + +
                +
                +

                + $ignoreValidationErrors + + + + +

                + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                +
                +

                + $name + + + + +

                + + +

                The name of command to run in console

                + + + + private + mixed + $name + + + + + + + + +
                +
                +

                + $processTitle + + + + +

                + + + + + + private + mixed + $processTitle + + + + + + + + +
                +
                +

                + $synopsis + + + + +

                + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                +
                +

                + $usages + + + + +

                + + + + + + private + mixed + $usages + = [] + + + + + + + +
                +
                + +
                +

                + Methods + + +

                +
                +

                + __construct() + + +

                + + + + + public + __construct([string|null $name = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string|null + = null
                +
                +

                The name of the command; passing null means it must be set in configure()

                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + LogicException + +

                When the command name is empty

                +
                + +
                +
                + + + + +
                +
                +

                + addArgument() + + +

                + + +

                Adds an argument.

                + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + $mode + : int|null + = null
                +
                +

                The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                +
                + +
                +
                + $description + : string + = ''
                +
                + +
                +
                + $default + : mixed + = null
                +
                +

                The default value (for InputArgument::OPTIONAL mode only)

                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + InvalidArgumentException + +

                When argument mode is not valid

                +
                + +
                +
                + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + addOption() + + +

                + + +

                Adds an option.

                + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + $shortcut + : string|array<string|int, mixed>|null + = null
                +
                +

                The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                +
                + +
                +
                + $mode + : int|null + = null
                +
                +

                The option mode: One of the InputOption::VALUE_* constants

                +
                + +
                +
                + $description + : string + = ''
                +
                + +
                +
                + $default + : mixed + = null
                +
                +

                The default value (must be null for InputOption::VALUE_NONE)

                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + InvalidArgumentException + +

                If option mode is invalid or incompatible

                +
                + +
                +
                + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + addUsage() + + +

                + + +

                Add a command usage example, it'll be prefixed with the command name.

                + + + public + addUsage(string $usage) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $usage + : string +
                +
                + +
                +
                + + + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + argument() + + +

                + + +

                Returns the argument value for a given argument name.

                + + + public + argument(string $name) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + + + + + + +
                +
                +

                + arguments() + + +

                + + +

                Returns all the given arguments merged with the default values.

                + + + public + arguments() : mixed + +
                +
                + + + + + + + + +
                +
                +

                + ask() + + +

                + + +

                Ask a question

                + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + $default + : mixed + = null
                +
                + +
                +
                + + + + + + +
                +
                +

                + askMultiline() + + +

                + + +

                Ask a question

                + + + public + askMultiline(string $question) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + + + + + + +
                +
                +

                + askRaw() + + +

                + + +

                Ask a question

                + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + $default + : mixed + = null
                +
                + +
                +
                + + + + + + +
                +
                +

                + autoComplete() + + +

                + + +

                Ask a question with auto completion

                + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + $potentialAnswers + : array<string|int, mixed> +
                +
                + +
                +
                + $default + : mixed + = null
                +
                + +
                +
                + + + + + + +
                +
                +

                + choice() + + +

                + + +

                Ask a question with possible answers

                + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + $choices + : array<string|int, mixed> +
                +
                + +
                +
                + $errorMessage + : string + = 'Invalid choice'
                +
                + +
                +
                + $default + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + comment() + + +

                + + +

                Output some data as a comment

                + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $messages + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                + +
                +

                + confirm() + + +

                + + +

                Prompt user for confirmation

                + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : mixed +
                +
                + +
                +
                + $param + : mixed + = false
                +
                + +
                +
                + $regex + : mixed + = '/^y/i'
                +
                + +
                +
                + + + + + + +
                +
                +

                + error() + + +

                + + +

                Output some data as a error

                + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $messages + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + getAliases() + + +

                + + +

                Returns the aliases for the command.

                + + + public + getAliases() : array<string|int, mixed> + +
                +
                + + + + + + + +
                +
                Return values
                + array<string|int, mixed> +
                + +
                +
                +

                + getApplication() + + +

                + + +

                Gets the application instance for this command.

                + + + public + getApplication() : Application|null + +
                +
                + + + + + + + +
                +
                Return values
                + Application|null +
                + +
                +
                +

                + getDefaultDescription() + + +

                + + + + + public + static getDefaultDescription() : string|null + +
                +
                + + + + + + + +
                +
                Return values
                + string|null +
                + +
                +
                +

                + getDefaultName() + + +

                + + + + + public + static getDefaultName() : string|null + +
                +
                + + + + + + + +
                +
                Return values
                + string|null +
                + +
                +
                +

                + getDefinition() + + +

                + + +

                Gets the InputDefinition attached to this Command.

                + + + public + getDefinition() : InputDefinition + +
                +
                + + + + + + + +
                +
                Return values
                + InputDefinition +
                + +
                +
                +

                + getDescription() + + +

                + + +

                Returns the description for the command.

                + + + public + getDescription() : string + +
                +
                + + + + + + + +
                +
                Return values
                + string +
                + +
                +
                +

                + getHelp() + + +

                + + +

                Returns the help for the command.

                + + + public + getHelp() : string + +
                +
                + + + + + + + +
                +
                Return values
                + string +
                + +
                +
                +

                + getHelper() + + +

                + + +

                Gets a helper instance by name.

                + + + public + getHelper(string $name) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + LogicException + +

                if no HelperSet is defined

                +
                + +
                +
                + throws +
                +
                + InvalidArgumentException + +

                if the helper is not defined

                +
                + +
                +
                + + + + +
                +
                +

                + getHelperSet() + + +

                + + +

                Gets the helper set.

                + + + public + getHelperSet() : HelperSet|null + +
                +
                + + + + + + + +
                +
                Return values
                + HelperSet|null +
                + +
                +
                +

                + getName() + + +

                + + +

                Returns the command name.

                + + + public + getName() : string|null + +
                +
                + + + + + + + +
                +
                Return values
                + string|null +
                + +
                +
                +

                + getNativeDefinition() + + +

                + + +

                Gets the InputDefinition to be used to create representations of this Command.

                + + + public + getNativeDefinition() : InputDefinition + +
                +
                + +

                Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                +

                This method is not part of public API and should not be used directly.

                +
                + + + + + + +
                +
                Return values
                + InputDefinition +
                + +
                +
                +

                + getProcessedHelp() + + +

                + + +

                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                + + + public + getProcessedHelp() : string + +
                +
                + + + + + + + +
                +
                Return values
                + string +
                + +
                +
                +

                + getSynopsis() + + +

                + + +

                Returns the synopsis for the command.

                + + + public + getSynopsis([bool $short = false ]) : string + +
                +
                + + +
                Parameters
                +
                +
                + $short + : bool + = false
                +
                +

                Whether to show the short version of the synopsis (with options folded) or not

                +
                + +
                +
                + + + + + +
                +
                Return values
                + string +
                + +
                +
                +

                + getUsages() + + +

                + + +

                Returns alternative usages of the command.

                + + + public + getUsages() : array<string|int, mixed> + +
                +
                + + + + + + + +
                +
                Return values
                + array<string|int, mixed> +
                + +
                +
                +

                + ignoreValidationErrors() + + +

                + + +

                Ignores validation errors.

                + + + public + ignoreValidationErrors() : mixed + +
                +
                + +

                This is mainly useful for the help command.

                +
                + + + + + + + +
                +
                +

                + info() + + +

                + + +

                Output some data as a info

                + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $messages + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + input() + + +

                + + +

                Get an argument or return the input object

                + + + public + input([string $data = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $data + : string + = null
                +
                +

                The argument to return

                +
                + +
                +
                + + + + + + +
                +
                +

                + isEnabled() + + +

                + + +

                Checks whether the command is enabled or not in the current environment.

                + + + public + isEnabled() : bool + +
                +
                + +

                Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                +
                + + + + + + +
                +
                Return values
                + bool +
                + +
                +
                +

                + isHidden() + + +

                + + + + + public + isHidden() : bool + +
                +
                + + + + + + + +
                +
                Return values
                + bool + — +

                whether the command should be publicly shown or not

                +
                + +
                + +
                +
                + + + +

                Output some data as a link

                + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $link + : mixed +
                +
                + +
                +
                + $display + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + multiChoice() + + +

                + + +

                Ask a question with possible answers + multiple choice

                + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + $choices + : array<string|int, mixed> +
                +
                + +
                +
                + $errorMessage + : string + = 'Invalid choice'
                +
                + +
                +
                + $default + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + option() + + +

                + + +

                Get an input option

                + + + public + option(string $name) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + + + + + + +
                +
                +

                + options() + + +

                + + +

                Get all input options

                + + + public + options(string $name) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + + + + + + +
                +
                +

                + output() + + +

                + + +

                Output data or return the output object

                + + + public + output([string $data = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $data + : string + = null
                +
                +

                The argument to return

                +
                + +
                +
                + + + + + + +
                +
                +

                + question() + + +

                + + +

                Output some data as a question

                + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $messages + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + run() + + +

                + + +

                Runs the command.

                + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                +
                + +

                The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                +
                + +
                Parameters
                +
                +
                + $input + : InputInterface +
                +
                + +
                +
                + $output + : OutputInterface +
                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + Exception + +

                When binding input fails. Bypass this by calling .

                +
                + +
                +
                + see +
                +
                + setCode() + + +
                +
                + see +
                +
                + execute() + + +
                +
                + + + +
                +
                Return values
                + int + — +

                The command exit code

                +
                + +
                + +
                +
                +

                + runProcess() + + +

                + + +

                Run a new cli process

                + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $process + : array<string|int, mixed> +
                +
                + +
                +
                + + + + + + +
                +
                +

                + secret() + + +

                + + +

                Prompt user for input but hide keystrokes

                + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $question + : string +
                +
                + +
                +
                + $useFallback + : bool + = false
                +
                + +
                +
                + + + + + + +
                +
                +

                + setAliases() + + +

                + + +

                Sets the aliases for the command.

                + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $aliases + : array<string|int, string> +
                +
                +

                An array of aliases for the command

                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + InvalidArgumentException + +

                When an alias is invalid

                +
                + +
                +
                + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setApplication() + + +

                + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $application + : Application|null + = null
                +
                + +
                +
                + + + + + + +
                +
                +

                + setArgument() + + +

                + + +

                Add a new argument

                + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : mixed +
                +
                + +
                +
                + $mode + : mixed + = null
                +
                + +
                +
                + $description + : mixed + = ''
                +
                + +
                +
                + $default + : mixed + = null
                +
                + +
                +
                + + + + + + +
                +
                +

                + setCode() + + +

                + + +

                Sets the code to execute when running this command.

                + + + public + setCode(callable $code) : $this + +
                +
                + +

                If this method is used, it overrides the code defined +in the execute() method.

                +
                + +
                Parameters
                +
                +
                + $code + : callable +
                +
                +

                A callable(InputInterface $input, OutputInterface $output)

                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + InvalidArgumentException + + +
                +
                + see +
                +
                + execute() + + +
                +
                + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setDefinition() + + +

                + + +

                Sets an array of argument and option instances.

                + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $definition + : array<string|int, mixed>|InputDefinition +
                +
                +

                An array of argument and option instances or a definition instance

                +
                + +
                +
                + + + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setDescription() + + +

                + + +

                Sets the description for the command.

                + + + public + setDescription(string $description) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $description + : string +
                +
                + +
                +
                + + + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setHelp() + + +

                + + +

                Sets the help for the command.

                + + + public + setHelp(string $help) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $help + : string +
                +
                + +
                +
                + + + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setHelperSet() + + +

                + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $helperSet + : HelperSet +
                +
                + +
                +
                + + + + + + +
                +
                +

                + setHidden() + + +

                + + + + + public + setHidden(bool $hidden) : $this + +
                +
                + + +
                Parameters
                +
                +
                + $hidden + : bool +
                +
                +

                Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + final +
                +
                + +

                since Symfony 5.1

                +
                + +
                +
                + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setName() + + +

                + + +

                Sets the name of the command.

                + + + public + setName(string $name) : $this + +
                +
                + +

                This method can set both the namespace and the name if +you separate them by a colon (:)

                +
                $command->setName('foo:bar');
                +
                +
                + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + InvalidArgumentException + +

                When the name is invalid

                +
                + +
                +
                + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + setOption() + + +

                + + +

                Add a new option

                + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $name + : mixed +
                +
                + +
                +
                + $shortcut + : mixed + = null
                +
                + +
                +
                + $mode + : mixed + = null
                +
                + +
                +
                + $description + : mixed + = ''
                +
                + +
                +
                + $default + : mixed + = null
                +
                + +
                +
                + + + + + + +
                +
                +

                + setProcessTitle() + + +

                + + +

                Sets the process title of the command.

                + + + public + setProcessTitle(string $title) : $this + +
                +
                + +

                This feature should be used only when creating a long process command, +like a daemon.

                +
                + +
                Parameters
                +
                +
                + $title + : string +
                +
                + +
                +
                + + + + + +
                +
                Return values
                + $this +
                + +
                +
                +

                + write() + + +

                + + +

                Output some data

                + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $messages + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                +
                +

                + writeln() + + +

                + + +

                Output some data

                + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                +
                + + +
                Parameters
                +
                +
                + $messages + : mixed +
                +
                + +
                +
                + $options + : mixed + = 0
                +
                + +
                +
                + + + + + + +
                + +
                +

                + configure() + + +

                + + +

                Configures the current command.

                + + + protected + configure() : mixed + +
                +
                + + + + + + + + +
                +
                +

                + execute() + + +

                + + +

                Executes the current command.

                + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                +
                + +

                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                +
                + +
                Parameters
                +
                +
                + $input + : InputInterface +
                +
                + +
                +
                + $output + : OutputInterface +
                +
                + +
                +
                + + + + + +
                +
                Return values
                + int + — +

                0 if everything went fine, or an exit code

                +
                + +
                + +
                +
                +

                + handle() + + +

                + + +

                Executes the current command.

                + + + protected + handle() : int + +
                +
                + +

                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                +
                + + + + + + +
                +
                Return values
                + int + — +

                0 if everything went fine, or an exit code

                +
                + +
                + +
                +
                +

                + initialize() + + +

                + + +

                Initializes the command after the input has been bound and before the input +is validated.

                + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                +
                + +

                This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                +
                + +
                Parameters
                +
                +
                + $input + : InputInterface +
                +
                + +
                +
                + $output + : OutputInterface +
                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + see +
                +
                + InputInterface::bind() + + +
                +
                + see +
                +
                + InputInterface::validate() + + +
                +
                + + + + +
                +
                +

                + interact() + + +

                + + +

                Interacts with the user.

                + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                +
                + +

                This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                +
                + +
                Parameters
                +
                +
                + $input + : InputInterface +
                +
                + +
                +
                + $output + : OutputInterface +
                +
                + +
                +
                + + + + + + +
                +
                +

                + validateName() + + +

                + + +

                Validates a command name.

                + + + private + validateName(string $name) : mixed + +
                +
                + +

                It must be non-empty and parts can optionally be separated by ":".

                +
                + +
                Parameters
                +
                +
                + $name + : string +
                +
                + +
                +
                + + +
                + Tags + + +
                +
                +
                + throws +
                +
                + InvalidArgumentException + +

                When the name is invalid

                +
                + +
                +
                + + + + +
                +
                + +
                +
                +
                +
                +
                
                +        
                + +
                +
                + + + +
                +
                +
                + +
                + On this page + + +
                + +
                +
                +
                +
                +
                +

                Search results

                + +
                +
                +
                  +
                  +
                  +
                  +
                  + + +
                  + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DatabaseSeedCommand.html b/src/public/api/classes/Aloe-Command-DatabaseSeedCommand.html new file mode 100644 index 00000000..347fab18 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DatabaseSeedCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                  +

                  Leaf PHP

                  + + + + + +
                  + +
                  +
                  + + + + +
                  +
                  + + +
                  +

                  + DatabaseSeedCommand + + + extends Command + + +
                  + in package + +
                  + + +

                  + +
                  + + +
                  + + + +

                  Base class for Aloe Commands.

                  + + + + + + + + + +

                  + Table of Contents + + +

                  + + + + + + + +

                  + Constants + + +

                  +
                  +
                  + FAILURE + +  = 1 +
                  + +
                  + INVALID + +  = 2 +
                  + +
                  + SUCCESS + +  = 0 +
                  + +
                  + + +

                  + Properties + + +

                  +
                  +
                  + $description + +  : mixed +
                  +
                  Description for command
                  + +
                  + $help + +  : mixed +
                  +
                  Help for command
                  + +
                  + $defaultDescription + +  : string|null +
                  + +
                  + $defaultName + +  : string|null +
                  + +
                  + $input + +  : InputInterface +
                  +
                  The input object
                  + +
                  + $output + +  : OutputInterface +
                  +
                  The output object
                  + +
                  + $aliases + +  : mixed +
                  + +
                  + $application + +  : mixed +
                  + +
                  + $code + +  : mixed +
                  + +
                  + $definition + +  : mixed +
                  + +
                  + $fullDefinition + +  : mixed +
                  + +
                  + $helperSet + +  : mixed +
                  + +
                  + $hidden + +  : mixed +
                  + +
                  + $ignoreValidationErrors + +  : mixed +
                  + +
                  + $name + +  : mixed +
                  +
                  The name of command to run in console
                  + +
                  + $processTitle + +  : mixed +
                  + +
                  + $synopsis + +  : mixed +
                  + +
                  + $usages + +  : mixed +
                  + +
                  + +

                  + Methods + + +

                  +
                  +
                  + __construct() + +  : mixed +
                  + +
                  + addArgument() + +  : $this +
                  +
                  Adds an argument.
                  + +
                  + addOption() + +  : $this +
                  +
                  Adds an option.
                  + +
                  + addUsage() + +  : $this +
                  +
                  Add a command usage example, it'll be prefixed with the command name.
                  + +
                  + argument() + +  : mixed +
                  +
                  Returns the argument value for a given argument name.
                  + +
                  + arguments() + +  : mixed +
                  +
                  Returns all the given arguments merged with the default values.
                  + +
                  + ask() + +  : mixed +
                  +
                  Ask a question
                  + +
                  + askMultiline() + +  : mixed +
                  +
                  Ask a question
                  + +
                  + askRaw() + +  : mixed +
                  +
                  Ask a question
                  + +
                  + autoComplete() + +  : mixed +
                  +
                  Ask a question with auto completion
                  + +
                  + choice() + +  : mixed +
                  +
                  Ask a question with possible answers
                  + +
                  + comment() + +  : mixed +
                  +
                  Output some data as a comment
                  + +
                  + complete() + +  : void +
                  +
                  Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                  + +
                  + confirm() + +  : mixed +
                  +
                  Prompt user for confirmation
                  + +
                  + error() + +  : mixed +
                  +
                  Output some data as a error
                  + +
                  + getAliases() + +  : array<string|int, mixed> +
                  +
                  Returns the aliases for the command.
                  + +
                  + getApplication() + +  : Application|null +
                  +
                  Gets the application instance for this command.
                  + +
                  + getDefaultDescription() + +  : string|null +
                  + +
                  + getDefaultName() + +  : string|null +
                  + +
                  + getDefinition() + +  : InputDefinition +
                  +
                  Gets the InputDefinition attached to this Command.
                  + +
                  + getDescription() + +  : string +
                  +
                  Returns the description for the command.
                  + +
                  + getHelp() + +  : string +
                  +
                  Returns the help for the command.
                  + +
                  + getHelper() + +  : mixed +
                  +
                  Gets a helper instance by name.
                  + +
                  + getHelperSet() + +  : HelperSet|null +
                  +
                  Gets the helper set.
                  + +
                  + getName() + +  : string|null +
                  +
                  Returns the command name.
                  + +
                  + getNativeDefinition() + +  : InputDefinition +
                  +
                  Gets the InputDefinition to be used to create representations of this Command.
                  + +
                  + getProcessedHelp() + +  : string +
                  +
                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                  + +
                  + getSynopsis() + +  : string +
                  +
                  Returns the synopsis for the command.
                  + +
                  + getUsages() + +  : array<string|int, mixed> +
                  +
                  Returns alternative usages of the command.
                  + +
                  + ignoreValidationErrors() + +  : mixed +
                  +
                  Ignores validation errors.
                  + +
                  + info() + +  : mixed +
                  +
                  Output some data as a info
                  + +
                  + input() + +  : mixed +
                  +
                  Get an argument or return the input object
                  + +
                  + isEnabled() + +  : bool +
                  +
                  Checks whether the command is enabled or not in the current environment.
                  + +
                  + isHidden() + +  : bool +
                  + +
                  + link() + +  : mixed +
                  +
                  Output some data as a link
                  + +
                  + multiChoice() + +  : mixed +
                  +
                  Ask a question with possible answers + multiple choice
                  + +
                  + option() + +  : mixed +
                  +
                  Get an input option
                  + +
                  + options() + +  : mixed +
                  +
                  Get all input options
                  + +
                  + output() + +  : mixed +
                  +
                  Output data or return the output object
                  + +
                  + question() + +  : mixed +
                  +
                  Output some data as a question
                  + +
                  + run() + +  : int +
                  +
                  Runs the command.
                  + +
                  + runProcess() + +  : mixed +
                  +
                  Run a new cli process
                  + +
                  + secret() + +  : mixed +
                  +
                  Prompt user for input but hide keystrokes
                  + +
                  + setAliases() + +  : $this +
                  +
                  Sets the aliases for the command.
                  + +
                  + setApplication() + +  : mixed +
                  + +
                  + setArgument() + +  : mixed +
                  +
                  Add a new argument
                  + +
                  + setCode() + +  : $this +
                  +
                  Sets the code to execute when running this command.
                  + +
                  + setDefinition() + +  : $this +
                  +
                  Sets an array of argument and option instances.
                  + +
                  + setDescription() + +  : $this +
                  +
                  Sets the description for the command.
                  + +
                  + setHelp() + +  : $this +
                  +
                  Sets the help for the command.
                  + +
                  + setHelperSet() + +  : mixed +
                  + +
                  + setHidden() + +  : $this +
                  + +
                  + setName() + +  : $this +
                  +
                  Sets the name of the command.
                  + +
                  + setOption() + +  : mixed +
                  +
                  Add a new option
                  + +
                  + setProcessTitle() + +  : $this +
                  +
                  Sets the process title of the command.
                  + +
                  + write() + +  : mixed +
                  +
                  Output some data
                  + +
                  + writeln() + +  : mixed +
                  +
                  Output some data
                  + +
                  + config() + +  : mixed +
                  + +
                  + configure() + +  : mixed +
                  +
                  Configures the current command.
                  + +
                  + execute() + +  : int +
                  +
                  Executes the current command.
                  + +
                  + handle() + +  : int +
                  +
                  Executes the current command.
                  + +
                  + initialize() + +  : mixed +
                  +
                  Initializes the command after the input has been bound and before the input +is validated.
                  + +
                  + interact() + +  : mixed +
                  +
                  Interacts with the user.
                  + +
                  + validateName() + +  : mixed +
                  +
                  Validates a command name.
                  + +
                  + + + + +
                  +

                  + Constants + + +

                  +
                  +

                  + FAILURE + + +

                  + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                  +
                  +

                  + INVALID + + +

                  + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                  +
                  +

                  + SUCCESS + + +

                  + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                  +
                  + + +
                  +

                  + Properties + + +

                  +
                  +

                  + $description + + + + +

                  + + +

                  Description for command

                  + + + + public + mixed + $description + = 'Seed the database with records' + + + + + + + +
                  +
                  +

                  + $help + + + + +

                  + + +

                  Help for command

                  + + + + public + mixed + $help + = 'Seed the database with records' + + + + + + + +
                  +
                  +

                  + $defaultDescription + + + + +

                  + + + + + + protected + static string|null + $defaultDescription + + + +

                  The default command description

                  +
                  + + + + + +
                  +
                  +

                  + $defaultName + + + + +

                  + + + + + + protected + static string|null + $defaultName + = 'db:seed' + + +

                  The default command name

                  +
                  + + + + + +
                  +
                  +

                  + $input + + + + +

                  + + +

                  The input object

                  + + + + protected + InputInterface + $input + + + + + + + + +
                  +
                  +

                  + $output + + + + +

                  + + +

                  The output object

                  + + + + protected + OutputInterface + $output + + + + + + + + +
                  +
                  +

                  + $aliases + + + + +

                  + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                  +
                  +

                  + $application + + + + +

                  + + + + + + private + mixed + $application + + + + + + + + +
                  +
                  +

                  + $code + + + + +

                  + + + + + + private + mixed + $code + + + + + + + + +
                  +
                  +

                  + $definition + + + + +

                  + + + + + + private + mixed + $definition + + + + + + + + +
                  +
                  +

                  + $fullDefinition + + + + +

                  + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                  +
                  +

                  + $helperSet + + + + +

                  + + + + + + private + mixed + $helperSet + + + + + + + + +
                  +
                  +

                  + $hidden + + + + +

                  + + + + + + private + mixed + $hidden + = false + + + + + + + +
                  +
                  +

                  + $ignoreValidationErrors + + + + +

                  + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                  +
                  +

                  + $name + + + + +

                  + + +

                  The name of command to run in console

                  + + + + private + mixed + $name + + + + + + + + +
                  +
                  +

                  + $processTitle + + + + +

                  + + + + + + private + mixed + $processTitle + + + + + + + + +
                  +
                  +

                  + $synopsis + + + + +

                  + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                  +
                  +

                  + $usages + + + + +

                  + + + + + + private + mixed + $usages + = [] + + + + + + + +
                  +
                  + +
                  +

                  + Methods + + +

                  +
                  +

                  + __construct() + + +

                  + + + + + public + __construct([string|null $name = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string|null + = null
                  +
                  +

                  The name of the command; passing null means it must be set in configure()

                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + LogicException + +

                  When the command name is empty

                  +
                  + +
                  +
                  + + + + +
                  +
                  +

                  + addArgument() + + +

                  + + +

                  Adds an argument.

                  + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + $mode + : int|null + = null
                  +
                  +

                  The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                  +
                  + +
                  +
                  + $description + : string + = ''
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  +

                  The default value (for InputArgument::OPTIONAL mode only)

                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + +

                  When argument mode is not valid

                  +
                  + +
                  +
                  + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + addOption() + + +

                  + + +

                  Adds an option.

                  + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + $shortcut + : string|array<string|int, mixed>|null + = null
                  +
                  +

                  The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                  +
                  + +
                  +
                  + $mode + : int|null + = null
                  +
                  +

                  The option mode: One of the InputOption::VALUE_* constants

                  +
                  + +
                  +
                  + $description + : string + = ''
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  +

                  The default value (must be null for InputOption::VALUE_NONE)

                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + +

                  If option mode is invalid or incompatible

                  +
                  + +
                  +
                  + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + addUsage() + + +

                  + + +

                  Add a command usage example, it'll be prefixed with the command name.

                  + + + public + addUsage(string $usage) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $usage + : string +
                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + argument() + + +

                  + + +

                  Returns the argument value for a given argument name.

                  + + + public + argument(string $name) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + arguments() + + +

                  + + +

                  Returns all the given arguments merged with the default values.

                  + + + public + arguments() : mixed + +
                  +
                  + + + + + + + + +
                  +
                  +

                  + ask() + + +

                  + + +

                  Ask a question

                  + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + askMultiline() + + +

                  + + +

                  Ask a question

                  + + + public + askMultiline(string $question) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + askRaw() + + +

                  + + +

                  Ask a question

                  + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + autoComplete() + + +

                  + + +

                  Ask a question with auto completion

                  + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + $potentialAnswers + : array<string|int, mixed> +
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + choice() + + +

                  + + +

                  Ask a question with possible answers

                  + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + $choices + : array<string|int, mixed> +
                  +
                  + +
                  +
                  + $errorMessage + : string + = 'Invalid choice'
                  +
                  + +
                  +
                  + $default + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + comment() + + +

                  + + +

                  Output some data as a comment

                  + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $messages + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  + +
                  +

                  + confirm() + + +

                  + + +

                  Prompt user for confirmation

                  + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : mixed +
                  +
                  + +
                  +
                  + $param + : mixed + = false
                  +
                  + +
                  +
                  + $regex + : mixed + = '/^y/i'
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + error() + + +

                  + + +

                  Output some data as a error

                  + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $messages + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + getAliases() + + +

                  + + +

                  Returns the aliases for the command.

                  + + + public + getAliases() : array<string|int, mixed> + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + array<string|int, mixed> +
                  + +
                  +
                  +

                  + getApplication() + + +

                  + + +

                  Gets the application instance for this command.

                  + + + public + getApplication() : Application|null + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + Application|null +
                  + +
                  +
                  +

                  + getDefaultDescription() + + +

                  + + + + + public + static getDefaultDescription() : string|null + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + string|null +
                  + +
                  +
                  +

                  + getDefaultName() + + +

                  + + + + + public + static getDefaultName() : string|null + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + string|null +
                  + +
                  +
                  +

                  + getDefinition() + + +

                  + + +

                  Gets the InputDefinition attached to this Command.

                  + + + public + getDefinition() : InputDefinition + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + InputDefinition +
                  + +
                  +
                  +

                  + getDescription() + + +

                  + + +

                  Returns the description for the command.

                  + + + public + getDescription() : string + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + string +
                  + +
                  +
                  +

                  + getHelp() + + +

                  + + +

                  Returns the help for the command.

                  + + + public + getHelp() : string + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + string +
                  + +
                  +
                  +

                  + getHelper() + + +

                  + + +

                  Gets a helper instance by name.

                  + + + public + getHelper(string $name) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + LogicException + +

                  if no HelperSet is defined

                  +
                  + +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + +

                  if the helper is not defined

                  +
                  + +
                  +
                  + + + + +
                  +
                  +

                  + getHelperSet() + + +

                  + + +

                  Gets the helper set.

                  + + + public + getHelperSet() : HelperSet|null + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + HelperSet|null +
                  + +
                  +
                  +

                  + getName() + + +

                  + + +

                  Returns the command name.

                  + + + public + getName() : string|null + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + string|null +
                  + +
                  +
                  +

                  + getNativeDefinition() + + +

                  + + +

                  Gets the InputDefinition to be used to create representations of this Command.

                  + + + public + getNativeDefinition() : InputDefinition + +
                  +
                  + +

                  Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                  +

                  This method is not part of public API and should not be used directly.

                  +
                  + + + + + + +
                  +
                  Return values
                  + InputDefinition +
                  + +
                  +
                  +

                  + getProcessedHelp() + + +

                  + + +

                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                  + + + public + getProcessedHelp() : string + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + string +
                  + +
                  +
                  +

                  + getSynopsis() + + +

                  + + +

                  Returns the synopsis for the command.

                  + + + public + getSynopsis([bool $short = false ]) : string + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $short + : bool + = false
                  +
                  +

                  Whether to show the short version of the synopsis (with options folded) or not

                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + string +
                  + +
                  +
                  +

                  + getUsages() + + +

                  + + +

                  Returns alternative usages of the command.

                  + + + public + getUsages() : array<string|int, mixed> + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + array<string|int, mixed> +
                  + +
                  +
                  +

                  + ignoreValidationErrors() + + +

                  + + +

                  Ignores validation errors.

                  + + + public + ignoreValidationErrors() : mixed + +
                  +
                  + +

                  This is mainly useful for the help command.

                  +
                  + + + + + + + +
                  +
                  +

                  + info() + + +

                  + + +

                  Output some data as a info

                  + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $messages + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + input() + + +

                  + + +

                  Get an argument or return the input object

                  + + + public + input([string $data = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $data + : string + = null
                  +
                  +

                  The argument to return

                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + isEnabled() + + +

                  + + +

                  Checks whether the command is enabled or not in the current environment.

                  + + + public + isEnabled() : bool + +
                  +
                  + +

                  Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                  +
                  + + + + + + +
                  +
                  Return values
                  + bool +
                  + +
                  +
                  +

                  + isHidden() + + +

                  + + + + + public + isHidden() : bool + +
                  +
                  + + + + + + + +
                  +
                  Return values
                  + bool + — +

                  whether the command should be publicly shown or not

                  +
                  + +
                  + +
                  +
                  + + + +

                  Output some data as a link

                  + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $link + : mixed +
                  +
                  + +
                  +
                  + $display + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + multiChoice() + + +

                  + + +

                  Ask a question with possible answers + multiple choice

                  + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + $choices + : array<string|int, mixed> +
                  +
                  + +
                  +
                  + $errorMessage + : string + = 'Invalid choice'
                  +
                  + +
                  +
                  + $default + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + option() + + +

                  + + +

                  Get an input option

                  + + + public + option(string $name) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + options() + + +

                  + + +

                  Get all input options

                  + + + public + options(string $name) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + output() + + +

                  + + +

                  Output data or return the output object

                  + + + public + output([string $data = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $data + : string + = null
                  +
                  +

                  The argument to return

                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + question() + + +

                  + + +

                  Output some data as a question

                  + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $messages + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + run() + + +

                  + + +

                  Runs the command.

                  + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                  +
                  + +

                  The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                  +
                  + +
                  Parameters
                  +
                  +
                  + $input + : InputInterface +
                  +
                  + +
                  +
                  + $output + : OutputInterface +
                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + Exception + +

                  When binding input fails. Bypass this by calling .

                  +
                  + +
                  +
                  + see +
                  +
                  + setCode() + + +
                  +
                  + see +
                  +
                  + execute() + + +
                  +
                  + + + +
                  +
                  Return values
                  + int + — +

                  The command exit code

                  +
                  + +
                  + +
                  +
                  +

                  + runProcess() + + +

                  + + +

                  Run a new cli process

                  + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $process + : array<string|int, mixed> +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + secret() + + +

                  + + +

                  Prompt user for input but hide keystrokes

                  + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $question + : string +
                  +
                  + +
                  +
                  + $useFallback + : bool + = false
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + setAliases() + + +

                  + + +

                  Sets the aliases for the command.

                  + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $aliases + : array<string|int, string> +
                  +
                  +

                  An array of aliases for the command

                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + +

                  When an alias is invalid

                  +
                  + +
                  +
                  + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setApplication() + + +

                  + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $application + : Application|null + = null
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + setArgument() + + +

                  + + +

                  Add a new argument

                  + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : mixed +
                  +
                  + +
                  +
                  + $mode + : mixed + = null
                  +
                  + +
                  +
                  + $description + : mixed + = ''
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + setCode() + + +

                  + + +

                  Sets the code to execute when running this command.

                  + + + public + setCode(callable $code) : $this + +
                  +
                  + +

                  If this method is used, it overrides the code defined +in the execute() method.

                  +
                  + +
                  Parameters
                  +
                  +
                  + $code + : callable +
                  +
                  +

                  A callable(InputInterface $input, OutputInterface $output)

                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + + +
                  +
                  + see +
                  +
                  + execute() + + +
                  +
                  + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setDefinition() + + +

                  + + +

                  Sets an array of argument and option instances.

                  + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $definition + : array<string|int, mixed>|InputDefinition +
                  +
                  +

                  An array of argument and option instances or a definition instance

                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setDescription() + + +

                  + + +

                  Sets the description for the command.

                  + + + public + setDescription(string $description) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $description + : string +
                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setHelp() + + +

                  + + +

                  Sets the help for the command.

                  + + + public + setHelp(string $help) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $help + : string +
                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setHelperSet() + + +

                  + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $helperSet + : HelperSet +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + setHidden() + + +

                  + + + + + public + setHidden(bool $hidden) : $this + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $hidden + : bool +
                  +
                  +

                  Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + final +
                  +
                  + +

                  since Symfony 5.1

                  +
                  + +
                  +
                  + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setName() + + +

                  + + +

                  Sets the name of the command.

                  + + + public + setName(string $name) : $this + +
                  +
                  + +

                  This method can set both the namespace and the name if +you separate them by a colon (:)

                  +
                  $command->setName('foo:bar');
                  +
                  +
                  + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + +

                  When the name is invalid

                  +
                  + +
                  +
                  + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + setOption() + + +

                  + + +

                  Add a new option

                  + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $name + : mixed +
                  +
                  + +
                  +
                  + $shortcut + : mixed + = null
                  +
                  + +
                  +
                  + $mode + : mixed + = null
                  +
                  + +
                  +
                  + $description + : mixed + = ''
                  +
                  + +
                  +
                  + $default + : mixed + = null
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + setProcessTitle() + + +

                  + + +

                  Sets the process title of the command.

                  + + + public + setProcessTitle(string $title) : $this + +
                  +
                  + +

                  This feature should be used only when creating a long process command, +like a daemon.

                  +
                  + +
                  Parameters
                  +
                  +
                  + $title + : string +
                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + $this +
                  + +
                  +
                  +

                  + write() + + +

                  + + +

                  Output some data

                  + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $messages + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + writeln() + + +

                  + + +

                  Output some data

                  + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                  +
                  + + +
                  Parameters
                  +
                  +
                  + $messages + : mixed +
                  +
                  + +
                  +
                  + $options + : mixed + = 0
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + config() + + +

                  + + + + + protected + config() : mixed + +
                  +
                  + + + + + + + + +
                  +
                  +

                  + configure() + + +

                  + + +

                  Configures the current command.

                  + + + protected + configure() : mixed + +
                  +
                  + + + + + + + + +
                  +
                  +

                  + execute() + + +

                  + + +

                  Executes the current command.

                  + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                  +
                  + +

                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                  +
                  + +
                  Parameters
                  +
                  +
                  + $input + : InputInterface +
                  +
                  + +
                  +
                  + $output + : OutputInterface +
                  +
                  + +
                  +
                  + + + + + +
                  +
                  Return values
                  + int + — +

                  0 if everything went fine, or an exit code

                  +
                  + +
                  + +
                  +
                  +

                  + handle() + + +

                  + + +

                  Executes the current command.

                  + + + protected + handle() : int + +
                  +
                  + +

                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                  +
                  + + + + + + +
                  +
                  Return values
                  + int + — +

                  0 if everything went fine, or an exit code

                  +
                  + +
                  + +
                  +
                  +

                  + initialize() + + +

                  + + +

                  Initializes the command after the input has been bound and before the input +is validated.

                  + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                  +
                  + +

                  This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                  +
                  + +
                  Parameters
                  +
                  +
                  + $input + : InputInterface +
                  +
                  + +
                  +
                  + $output + : OutputInterface +
                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + see +
                  +
                  + InputInterface::bind() + + +
                  +
                  + see +
                  +
                  + InputInterface::validate() + + +
                  +
                  + + + + +
                  +
                  +

                  + interact() + + +

                  + + +

                  Interacts with the user.

                  + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                  +
                  + +

                  This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                  +
                  + +
                  Parameters
                  +
                  +
                  + $input + : InputInterface +
                  +
                  + +
                  +
                  + $output + : OutputInterface +
                  +
                  + +
                  +
                  + + + + + + +
                  +
                  +

                  + validateName() + + +

                  + + +

                  Validates a command name.

                  + + + private + validateName(string $name) : mixed + +
                  +
                  + +

                  It must be non-empty and parts can optionally be separated by ":".

                  +
                  + +
                  Parameters
                  +
                  +
                  + $name + : string +
                  +
                  + +
                  +
                  + + +
                  + Tags + + +
                  +
                  +
                  + throws +
                  +
                  + InvalidArgumentException + +

                  When the name is invalid

                  +
                  + +
                  +
                  + + + + +
                  +
                  + +
                  +
                  +
                  +
                  +
                  
                  +        
                  + +
                  +
                  + + + +
                  +
                  +
                  + +
                  + On this page + + +
                  + +
                  +
                  +
                  +
                  +
                  +

                  Search results

                  + +
                  +
                  +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DeleteConsoleCommand.html b/src/public/api/classes/Aloe-Command-DeleteConsoleCommand.html new file mode 100644 index 00000000..00595f8e --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DeleteConsoleCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                    +

                    Leaf PHP

                    + + + + + +
                    + +
                    +
                    + + + + +
                    +
                    + + +
                    +

                    + DeleteConsoleCommand + + + extends Command + + +
                    + in package + +
                    + + +

                    + +
                    + + +
                    + + + +

                    Base class for Aloe Commands.

                    + + + + + + + + + +

                    + Table of Contents + + +

                    + + + + + + + +

                    + Constants + + +

                    +
                    +
                    + FAILURE + +  = 1 +
                    + +
                    + INVALID + +  = 2 +
                    + +
                    + SUCCESS + +  = 0 +
                    + +
                    + + +

                    + Properties + + +

                    +
                    +
                    + $description + +  : mixed +
                    +
                    Description for command
                    + +
                    + $help + +  : mixed +
                    +
                    Help for command
                    + +
                    + $defaultDescription + +  : string|null +
                    + +
                    + $defaultName + +  : string|null +
                    + +
                    + $input + +  : InputInterface +
                    +
                    The input object
                    + +
                    + $output + +  : OutputInterface +
                    +
                    The output object
                    + +
                    + $aliases + +  : mixed +
                    + +
                    + $application + +  : mixed +
                    + +
                    + $code + +  : mixed +
                    + +
                    + $definition + +  : mixed +
                    + +
                    + $fullDefinition + +  : mixed +
                    + +
                    + $helperSet + +  : mixed +
                    + +
                    + $hidden + +  : mixed +
                    + +
                    + $ignoreValidationErrors + +  : mixed +
                    + +
                    + $name + +  : mixed +
                    +
                    The name of command to run in console
                    + +
                    + $processTitle + +  : mixed +
                    + +
                    + $synopsis + +  : mixed +
                    + +
                    + $usages + +  : mixed +
                    + +
                    + +

                    + Methods + + +

                    +
                    +
                    + __construct() + +  : mixed +
                    + +
                    + addArgument() + +  : $this +
                    +
                    Adds an argument.
                    + +
                    + addOption() + +  : $this +
                    +
                    Adds an option.
                    + +
                    + addUsage() + +  : $this +
                    +
                    Add a command usage example, it'll be prefixed with the command name.
                    + +
                    + argument() + +  : mixed +
                    +
                    Returns the argument value for a given argument name.
                    + +
                    + arguments() + +  : mixed +
                    +
                    Returns all the given arguments merged with the default values.
                    + +
                    + ask() + +  : mixed +
                    +
                    Ask a question
                    + +
                    + askMultiline() + +  : mixed +
                    +
                    Ask a question
                    + +
                    + askRaw() + +  : mixed +
                    +
                    Ask a question
                    + +
                    + autoComplete() + +  : mixed +
                    +
                    Ask a question with auto completion
                    + +
                    + choice() + +  : mixed +
                    +
                    Ask a question with possible answers
                    + +
                    + comment() + +  : mixed +
                    +
                    Output some data as a comment
                    + +
                    + complete() + +  : void +
                    +
                    Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                    + +
                    + confirm() + +  : mixed +
                    +
                    Prompt user for confirmation
                    + +
                    + error() + +  : mixed +
                    +
                    Output some data as a error
                    + +
                    + getAliases() + +  : array<string|int, mixed> +
                    +
                    Returns the aliases for the command.
                    + +
                    + getApplication() + +  : Application|null +
                    +
                    Gets the application instance for this command.
                    + +
                    + getDefaultDescription() + +  : string|null +
                    + +
                    + getDefaultName() + +  : string|null +
                    + +
                    + getDefinition() + +  : InputDefinition +
                    +
                    Gets the InputDefinition attached to this Command.
                    + +
                    + getDescription() + +  : string +
                    +
                    Returns the description for the command.
                    + +
                    + getHelp() + +  : string +
                    +
                    Returns the help for the command.
                    + +
                    + getHelper() + +  : mixed +
                    +
                    Gets a helper instance by name.
                    + +
                    + getHelperSet() + +  : HelperSet|null +
                    +
                    Gets the helper set.
                    + +
                    + getName() + +  : string|null +
                    +
                    Returns the command name.
                    + +
                    + getNativeDefinition() + +  : InputDefinition +
                    +
                    Gets the InputDefinition to be used to create representations of this Command.
                    + +
                    + getProcessedHelp() + +  : string +
                    +
                    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                    + +
                    + getSynopsis() + +  : string +
                    +
                    Returns the synopsis for the command.
                    + +
                    + getUsages() + +  : array<string|int, mixed> +
                    +
                    Returns alternative usages of the command.
                    + +
                    + ignoreValidationErrors() + +  : mixed +
                    +
                    Ignores validation errors.
                    + +
                    + info() + +  : mixed +
                    +
                    Output some data as a info
                    + +
                    + input() + +  : mixed +
                    +
                    Get an argument or return the input object
                    + +
                    + isEnabled() + +  : bool +
                    +
                    Checks whether the command is enabled or not in the current environment.
                    + +
                    + isHidden() + +  : bool +
                    + +
                    + link() + +  : mixed +
                    +
                    Output some data as a link
                    + +
                    + multiChoice() + +  : mixed +
                    +
                    Ask a question with possible answers + multiple choice
                    + +
                    + option() + +  : mixed +
                    +
                    Get an input option
                    + +
                    + options() + +  : mixed +
                    +
                    Get all input options
                    + +
                    + output() + +  : mixed +
                    +
                    Output data or return the output object
                    + +
                    + question() + +  : mixed +
                    +
                    Output some data as a question
                    + +
                    + run() + +  : int +
                    +
                    Runs the command.
                    + +
                    + runProcess() + +  : mixed +
                    +
                    Run a new cli process
                    + +
                    + secret() + +  : mixed +
                    +
                    Prompt user for input but hide keystrokes
                    + +
                    + setAliases() + +  : $this +
                    +
                    Sets the aliases for the command.
                    + +
                    + setApplication() + +  : mixed +
                    + +
                    + setArgument() + +  : mixed +
                    +
                    Add a new argument
                    + +
                    + setCode() + +  : $this +
                    +
                    Sets the code to execute when running this command.
                    + +
                    + setDefinition() + +  : $this +
                    +
                    Sets an array of argument and option instances.
                    + +
                    + setDescription() + +  : $this +
                    +
                    Sets the description for the command.
                    + +
                    + setHelp() + +  : $this +
                    +
                    Sets the help for the command.
                    + +
                    + setHelperSet() + +  : mixed +
                    + +
                    + setHidden() + +  : $this +
                    + +
                    + setName() + +  : $this +
                    +
                    Sets the name of the command.
                    + +
                    + setOption() + +  : mixed +
                    +
                    Add a new option
                    + +
                    + setProcessTitle() + +  : $this +
                    +
                    Sets the process title of the command.
                    + +
                    + write() + +  : mixed +
                    +
                    Output some data
                    + +
                    + writeln() + +  : mixed +
                    +
                    Output some data
                    + +
                    + config() + +  : mixed +
                    + +
                    + configure() + +  : mixed +
                    +
                    Configures the current command.
                    + +
                    + execute() + +  : int +
                    +
                    Executes the current command.
                    + +
                    + handle() + +  : int +
                    +
                    Executes the current command.
                    + +
                    + initialize() + +  : mixed +
                    +
                    Initializes the command after the input has been bound and before the input +is validated.
                    + +
                    + interact() + +  : mixed +
                    +
                    Interacts with the user.
                    + +
                    + validateName() + +  : mixed +
                    +
                    Validates a command name.
                    + +
                    + + + + +
                    +

                    + Constants + + +

                    +
                    +

                    + FAILURE + + +

                    + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                    +
                    +

                    + INVALID + + +

                    + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                    +
                    +

                    + SUCCESS + + +

                    + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                    +
                    + + +
                    +

                    + Properties + + +

                    +
                    +

                    + $description + + + + +

                    + + +

                    Description for command

                    + + + + public + mixed + $description + = 'Delete a console command' + + + + + + + +
                    +
                    +

                    + $help + + + + +

                    + + +

                    Help for command

                    + + + + public + mixed + $help + = 'Delete a console command' + + + + + + + +
                    +
                    +

                    + $defaultDescription + + + + +

                    + + + + + + protected + static string|null + $defaultDescription + + + +

                    The default command description

                    +
                    + + + + + +
                    +
                    +

                    + $defaultName + + + + +

                    + + + + + + protected + static string|null + $defaultName + = 'd:command' + + +

                    The default command name

                    +
                    + + + + + +
                    +
                    +

                    + $input + + + + +

                    + + +

                    The input object

                    + + + + protected + InputInterface + $input + + + + + + + + +
                    +
                    +

                    + $output + + + + +

                    + + +

                    The output object

                    + + + + protected + OutputInterface + $output + + + + + + + + +
                    +
                    +

                    + $aliases + + + + +

                    + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                    +
                    +

                    + $application + + + + +

                    + + + + + + private + mixed + $application + + + + + + + + +
                    +
                    +

                    + $code + + + + +

                    + + + + + + private + mixed + $code + + + + + + + + +
                    +
                    +

                    + $definition + + + + +

                    + + + + + + private + mixed + $definition + + + + + + + + +
                    +
                    +

                    + $fullDefinition + + + + +

                    + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                    +
                    +

                    + $helperSet + + + + +

                    + + + + + + private + mixed + $helperSet + + + + + + + + +
                    +
                    +

                    + $hidden + + + + +

                    + + + + + + private + mixed + $hidden + = false + + + + + + + +
                    +
                    +

                    + $ignoreValidationErrors + + + + +

                    + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                    +
                    +

                    + $name + + + + +

                    + + +

                    The name of command to run in console

                    + + + + private + mixed + $name + + + + + + + + +
                    +
                    +

                    + $processTitle + + + + +

                    + + + + + + private + mixed + $processTitle + + + + + + + + +
                    +
                    +

                    + $synopsis + + + + +

                    + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                    +
                    +

                    + $usages + + + + +

                    + + + + + + private + mixed + $usages + = [] + + + + + + + +
                    +
                    + +
                    +

                    + Methods + + +

                    +
                    +

                    + __construct() + + +

                    + + + + + public + __construct([string|null $name = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string|null + = null
                    +
                    +

                    The name of the command; passing null means it must be set in configure()

                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + LogicException + +

                    When the command name is empty

                    +
                    + +
                    +
                    + + + + +
                    +
                    +

                    + addArgument() + + +

                    + + +

                    Adds an argument.

                    + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + $mode + : int|null + = null
                    +
                    +

                    The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                    +
                    + +
                    +
                    + $description + : string + = ''
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    +

                    The default value (for InputArgument::OPTIONAL mode only)

                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + +

                    When argument mode is not valid

                    +
                    + +
                    +
                    + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + addOption() + + +

                    + + +

                    Adds an option.

                    + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + $shortcut + : string|array<string|int, mixed>|null + = null
                    +
                    +

                    The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                    +
                    + +
                    +
                    + $mode + : int|null + = null
                    +
                    +

                    The option mode: One of the InputOption::VALUE_* constants

                    +
                    + +
                    +
                    + $description + : string + = ''
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    +

                    The default value (must be null for InputOption::VALUE_NONE)

                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + +

                    If option mode is invalid or incompatible

                    +
                    + +
                    +
                    + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + addUsage() + + +

                    + + +

                    Add a command usage example, it'll be prefixed with the command name.

                    + + + public + addUsage(string $usage) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $usage + : string +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + argument() + + +

                    + + +

                    Returns the argument value for a given argument name.

                    + + + public + argument(string $name) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + arguments() + + +

                    + + +

                    Returns all the given arguments merged with the default values.

                    + + + public + arguments() : mixed + +
                    +
                    + + + + + + + + +
                    +
                    +

                    + ask() + + +

                    + + +

                    Ask a question

                    + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + askMultiline() + + +

                    + + +

                    Ask a question

                    + + + public + askMultiline(string $question) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + askRaw() + + +

                    + + +

                    Ask a question

                    + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + autoComplete() + + +

                    + + +

                    Ask a question with auto completion

                    + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + $potentialAnswers + : array<string|int, mixed> +
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + choice() + + +

                    + + +

                    Ask a question with possible answers

                    + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + $choices + : array<string|int, mixed> +
                    +
                    + +
                    +
                    + $errorMessage + : string + = 'Invalid choice'
                    +
                    + +
                    +
                    + $default + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + comment() + + +

                    + + +

                    Output some data as a comment

                    + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $messages + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    + +
                    +

                    + confirm() + + +

                    + + +

                    Prompt user for confirmation

                    + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : mixed +
                    +
                    + +
                    +
                    + $param + : mixed + = false
                    +
                    + +
                    +
                    + $regex + : mixed + = '/^y/i'
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + error() + + +

                    + + +

                    Output some data as a error

                    + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $messages + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + getAliases() + + +

                    + + +

                    Returns the aliases for the command.

                    + + + public + getAliases() : array<string|int, mixed> + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + array<string|int, mixed> +
                    + +
                    +
                    +

                    + getApplication() + + +

                    + + +

                    Gets the application instance for this command.

                    + + + public + getApplication() : Application|null + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + Application|null +
                    + +
                    +
                    +

                    + getDefaultDescription() + + +

                    + + + + + public + static getDefaultDescription() : string|null + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + string|null +
                    + +
                    +
                    +

                    + getDefaultName() + + +

                    + + + + + public + static getDefaultName() : string|null + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + string|null +
                    + +
                    +
                    +

                    + getDefinition() + + +

                    + + +

                    Gets the InputDefinition attached to this Command.

                    + + + public + getDefinition() : InputDefinition + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + InputDefinition +
                    + +
                    +
                    +

                    + getDescription() + + +

                    + + +

                    Returns the description for the command.

                    + + + public + getDescription() : string + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + string +
                    + +
                    +
                    +

                    + getHelp() + + +

                    + + +

                    Returns the help for the command.

                    + + + public + getHelp() : string + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + string +
                    + +
                    +
                    +

                    + getHelper() + + +

                    + + +

                    Gets a helper instance by name.

                    + + + public + getHelper(string $name) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + LogicException + +

                    if no HelperSet is defined

                    +
                    + +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + +

                    if the helper is not defined

                    +
                    + +
                    +
                    + + + + +
                    +
                    +

                    + getHelperSet() + + +

                    + + +

                    Gets the helper set.

                    + + + public + getHelperSet() : HelperSet|null + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + HelperSet|null +
                    + +
                    +
                    +

                    + getName() + + +

                    + + +

                    Returns the command name.

                    + + + public + getName() : string|null + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + string|null +
                    + +
                    +
                    +

                    + getNativeDefinition() + + +

                    + + +

                    Gets the InputDefinition to be used to create representations of this Command.

                    + + + public + getNativeDefinition() : InputDefinition + +
                    +
                    + +

                    Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                    +

                    This method is not part of public API and should not be used directly.

                    +
                    + + + + + + +
                    +
                    Return values
                    + InputDefinition +
                    + +
                    +
                    +

                    + getProcessedHelp() + + +

                    + + +

                    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                    + + + public + getProcessedHelp() : string + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + string +
                    + +
                    +
                    +

                    + getSynopsis() + + +

                    + + +

                    Returns the synopsis for the command.

                    + + + public + getSynopsis([bool $short = false ]) : string + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $short + : bool + = false
                    +
                    +

                    Whether to show the short version of the synopsis (with options folded) or not

                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + string +
                    + +
                    +
                    +

                    + getUsages() + + +

                    + + +

                    Returns alternative usages of the command.

                    + + + public + getUsages() : array<string|int, mixed> + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + array<string|int, mixed> +
                    + +
                    +
                    +

                    + ignoreValidationErrors() + + +

                    + + +

                    Ignores validation errors.

                    + + + public + ignoreValidationErrors() : mixed + +
                    +
                    + +

                    This is mainly useful for the help command.

                    +
                    + + + + + + + +
                    +
                    +

                    + info() + + +

                    + + +

                    Output some data as a info

                    + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $messages + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + input() + + +

                    + + +

                    Get an argument or return the input object

                    + + + public + input([string $data = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $data + : string + = null
                    +
                    +

                    The argument to return

                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + isEnabled() + + +

                    + + +

                    Checks whether the command is enabled or not in the current environment.

                    + + + public + isEnabled() : bool + +
                    +
                    + +

                    Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                    +
                    + + + + + + +
                    +
                    Return values
                    + bool +
                    + +
                    +
                    +

                    + isHidden() + + +

                    + + + + + public + isHidden() : bool + +
                    +
                    + + + + + + + +
                    +
                    Return values
                    + bool + — +

                    whether the command should be publicly shown or not

                    +
                    + +
                    + +
                    +
                    + + + +

                    Output some data as a link

                    + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $link + : mixed +
                    +
                    + +
                    +
                    + $display + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + multiChoice() + + +

                    + + +

                    Ask a question with possible answers + multiple choice

                    + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + $choices + : array<string|int, mixed> +
                    +
                    + +
                    +
                    + $errorMessage + : string + = 'Invalid choice'
                    +
                    + +
                    +
                    + $default + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + option() + + +

                    + + +

                    Get an input option

                    + + + public + option(string $name) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + options() + + +

                    + + +

                    Get all input options

                    + + + public + options(string $name) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + output() + + +

                    + + +

                    Output data or return the output object

                    + + + public + output([string $data = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $data + : string + = null
                    +
                    +

                    The argument to return

                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + question() + + +

                    + + +

                    Output some data as a question

                    + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $messages + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + run() + + +

                    + + +

                    Runs the command.

                    + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                    +
                    + +

                    The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                    +
                    + +
                    Parameters
                    +
                    +
                    + $input + : InputInterface +
                    +
                    + +
                    +
                    + $output + : OutputInterface +
                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + Exception + +

                    When binding input fails. Bypass this by calling .

                    +
                    + +
                    +
                    + see +
                    +
                    + setCode() + + +
                    +
                    + see +
                    +
                    + execute() + + +
                    +
                    + + + +
                    +
                    Return values
                    + int + — +

                    The command exit code

                    +
                    + +
                    + +
                    +
                    +

                    + runProcess() + + +

                    + + +

                    Run a new cli process

                    + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $process + : array<string|int, mixed> +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + secret() + + +

                    + + +

                    Prompt user for input but hide keystrokes

                    + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $question + : string +
                    +
                    + +
                    +
                    + $useFallback + : bool + = false
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + setAliases() + + +

                    + + +

                    Sets the aliases for the command.

                    + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $aliases + : array<string|int, string> +
                    +
                    +

                    An array of aliases for the command

                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + +

                    When an alias is invalid

                    +
                    + +
                    +
                    + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setApplication() + + +

                    + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $application + : Application|null + = null
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + setArgument() + + +

                    + + +

                    Add a new argument

                    + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : mixed +
                    +
                    + +
                    +
                    + $mode + : mixed + = null
                    +
                    + +
                    +
                    + $description + : mixed + = ''
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + setCode() + + +

                    + + +

                    Sets the code to execute when running this command.

                    + + + public + setCode(callable $code) : $this + +
                    +
                    + +

                    If this method is used, it overrides the code defined +in the execute() method.

                    +
                    + +
                    Parameters
                    +
                    +
                    + $code + : callable +
                    +
                    +

                    A callable(InputInterface $input, OutputInterface $output)

                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + + +
                    +
                    + see +
                    +
                    + execute() + + +
                    +
                    + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setDefinition() + + +

                    + + +

                    Sets an array of argument and option instances.

                    + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $definition + : array<string|int, mixed>|InputDefinition +
                    +
                    +

                    An array of argument and option instances or a definition instance

                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setDescription() + + +

                    + + +

                    Sets the description for the command.

                    + + + public + setDescription(string $description) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $description + : string +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setHelp() + + +

                    + + +

                    Sets the help for the command.

                    + + + public + setHelp(string $help) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $help + : string +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setHelperSet() + + +

                    + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $helperSet + : HelperSet +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + setHidden() + + +

                    + + + + + public + setHidden(bool $hidden) : $this + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $hidden + : bool +
                    +
                    +

                    Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + final +
                    +
                    + +

                    since Symfony 5.1

                    +
                    + +
                    +
                    + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setName() + + +

                    + + +

                    Sets the name of the command.

                    + + + public + setName(string $name) : $this + +
                    +
                    + +

                    This method can set both the namespace and the name if +you separate them by a colon (:)

                    +
                    $command->setName('foo:bar');
                    +
                    +
                    + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + +

                    When the name is invalid

                    +
                    + +
                    +
                    + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + setOption() + + +

                    + + +

                    Add a new option

                    + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $name + : mixed +
                    +
                    + +
                    +
                    + $shortcut + : mixed + = null
                    +
                    + +
                    +
                    + $mode + : mixed + = null
                    +
                    + +
                    +
                    + $description + : mixed + = ''
                    +
                    + +
                    +
                    + $default + : mixed + = null
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + setProcessTitle() + + +

                    + + +

                    Sets the process title of the command.

                    + + + public + setProcessTitle(string $title) : $this + +
                    +
                    + +

                    This feature should be used only when creating a long process command, +like a daemon.

                    +
                    + +
                    Parameters
                    +
                    +
                    + $title + : string +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + $this +
                    + +
                    +
                    +

                    + write() + + +

                    + + +

                    Output some data

                    + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $messages + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + writeln() + + +

                    + + +

                    Output some data

                    + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                    +
                    + + +
                    Parameters
                    +
                    +
                    + $messages + : mixed +
                    +
                    + +
                    +
                    + $options + : mixed + = 0
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + config() + + +

                    + + + + + protected + config() : mixed + +
                    +
                    + + + + + + + + +
                    +
                    +

                    + configure() + + +

                    + + +

                    Configures the current command.

                    + + + protected + configure() : mixed + +
                    +
                    + + + + + + + + +
                    +
                    +

                    + execute() + + +

                    + + +

                    Executes the current command.

                    + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                    +
                    + +

                    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                    +
                    + +
                    Parameters
                    +
                    +
                    + $input + : InputInterface +
                    +
                    + +
                    +
                    + $output + : OutputInterface +
                    +
                    + +
                    +
                    + + + + + +
                    +
                    Return values
                    + int + — +

                    0 if everything went fine, or an exit code

                    +
                    + +
                    + +
                    +
                    +

                    + handle() + + +

                    + + +

                    Executes the current command.

                    + + + protected + handle() : int + +
                    +
                    + +

                    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                    +
                    + + + + + + +
                    +
                    Return values
                    + int + — +

                    0 if everything went fine, or an exit code

                    +
                    + +
                    + +
                    +
                    +

                    + initialize() + + +

                    + + +

                    Initializes the command after the input has been bound and before the input +is validated.

                    + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                    +
                    + +

                    This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                    +
                    + +
                    Parameters
                    +
                    +
                    + $input + : InputInterface +
                    +
                    + +
                    +
                    + $output + : OutputInterface +
                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + see +
                    +
                    + InputInterface::bind() + + +
                    +
                    + see +
                    +
                    + InputInterface::validate() + + +
                    +
                    + + + + +
                    +
                    +

                    + interact() + + +

                    + + +

                    Interacts with the user.

                    + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                    +
                    + +

                    This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                    +
                    + +
                    Parameters
                    +
                    +
                    + $input + : InputInterface +
                    +
                    + +
                    +
                    + $output + : OutputInterface +
                    +
                    + +
                    +
                    + + + + + + +
                    +
                    +

                    + validateName() + + +

                    + + +

                    Validates a command name.

                    + + + private + validateName(string $name) : mixed + +
                    +
                    + +

                    It must be non-empty and parts can optionally be separated by ":".

                    +
                    + +
                    Parameters
                    +
                    +
                    + $name + : string +
                    +
                    + +
                    +
                    + + +
                    + Tags + + +
                    +
                    +
                    + throws +
                    +
                    + InvalidArgumentException + +

                    When the name is invalid

                    +
                    + +
                    +
                    + + + + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    
                    +        
                    + +
                    +
                    + + + +
                    +
                    +
                    + +
                    + On this page + + +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Search results

                    + +
                    +
                    +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DeleteControllerCommand.html b/src/public/api/classes/Aloe-Command-DeleteControllerCommand.html new file mode 100644 index 00000000..af81301e --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DeleteControllerCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                      +

                      Leaf PHP

                      + + + + + +
                      + +
                      +
                      + + + + +
                      +
                      + + +
                      +

                      + DeleteControllerCommand + + + extends Command + + +
                      + in package + +
                      + + +

                      + +
                      + + +
                      + + + +

                      Base class for Aloe Commands.

                      + + + + + + + + + +

                      + Table of Contents + + +

                      + + + + + + + +

                      + Constants + + +

                      +
                      +
                      + FAILURE + +  = 1 +
                      + +
                      + INVALID + +  = 2 +
                      + +
                      + SUCCESS + +  = 0 +
                      + +
                      + + +

                      + Properties + + +

                      +
                      +
                      + $description + +  : mixed +
                      +
                      Description for command
                      + +
                      + $help + +  : mixed +
                      +
                      Help for command
                      + +
                      + $defaultDescription + +  : string|null +
                      + +
                      + $defaultName + +  : string|null +
                      + +
                      + $input + +  : InputInterface +
                      +
                      The input object
                      + +
                      + $output + +  : OutputInterface +
                      +
                      The output object
                      + +
                      + $aliases + +  : mixed +
                      + +
                      + $application + +  : mixed +
                      + +
                      + $code + +  : mixed +
                      + +
                      + $definition + +  : mixed +
                      + +
                      + $fullDefinition + +  : mixed +
                      + +
                      + $helperSet + +  : mixed +
                      + +
                      + $hidden + +  : mixed +
                      + +
                      + $ignoreValidationErrors + +  : mixed +
                      + +
                      + $name + +  : mixed +
                      +
                      The name of command to run in console
                      + +
                      + $processTitle + +  : mixed +
                      + +
                      + $synopsis + +  : mixed +
                      + +
                      + $usages + +  : mixed +
                      + +
                      + +

                      + Methods + + +

                      +
                      +
                      + __construct() + +  : mixed +
                      + +
                      + addArgument() + +  : $this +
                      +
                      Adds an argument.
                      + +
                      + addOption() + +  : $this +
                      +
                      Adds an option.
                      + +
                      + addUsage() + +  : $this +
                      +
                      Add a command usage example, it'll be prefixed with the command name.
                      + +
                      + argument() + +  : mixed +
                      +
                      Returns the argument value for a given argument name.
                      + +
                      + arguments() + +  : mixed +
                      +
                      Returns all the given arguments merged with the default values.
                      + +
                      + ask() + +  : mixed +
                      +
                      Ask a question
                      + +
                      + askMultiline() + +  : mixed +
                      +
                      Ask a question
                      + +
                      + askRaw() + +  : mixed +
                      +
                      Ask a question
                      + +
                      + autoComplete() + +  : mixed +
                      +
                      Ask a question with auto completion
                      + +
                      + choice() + +  : mixed +
                      +
                      Ask a question with possible answers
                      + +
                      + comment() + +  : mixed +
                      +
                      Output some data as a comment
                      + +
                      + complete() + +  : void +
                      +
                      Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                      + +
                      + confirm() + +  : mixed +
                      +
                      Prompt user for confirmation
                      + +
                      + error() + +  : mixed +
                      +
                      Output some data as a error
                      + +
                      + getAliases() + +  : array<string|int, mixed> +
                      +
                      Returns the aliases for the command.
                      + +
                      + getApplication() + +  : Application|null +
                      +
                      Gets the application instance for this command.
                      + +
                      + getDefaultDescription() + +  : string|null +
                      + +
                      + getDefaultName() + +  : string|null +
                      + +
                      + getDefinition() + +  : InputDefinition +
                      +
                      Gets the InputDefinition attached to this Command.
                      + +
                      + getDescription() + +  : string +
                      +
                      Returns the description for the command.
                      + +
                      + getHelp() + +  : string +
                      +
                      Returns the help for the command.
                      + +
                      + getHelper() + +  : mixed +
                      +
                      Gets a helper instance by name.
                      + +
                      + getHelperSet() + +  : HelperSet|null +
                      +
                      Gets the helper set.
                      + +
                      + getName() + +  : string|null +
                      +
                      Returns the command name.
                      + +
                      + getNativeDefinition() + +  : InputDefinition +
                      +
                      Gets the InputDefinition to be used to create representations of this Command.
                      + +
                      + getProcessedHelp() + +  : string +
                      +
                      Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                      + +
                      + getSynopsis() + +  : string +
                      +
                      Returns the synopsis for the command.
                      + +
                      + getUsages() + +  : array<string|int, mixed> +
                      +
                      Returns alternative usages of the command.
                      + +
                      + ignoreValidationErrors() + +  : mixed +
                      +
                      Ignores validation errors.
                      + +
                      + info() + +  : mixed +
                      +
                      Output some data as a info
                      + +
                      + input() + +  : mixed +
                      +
                      Get an argument or return the input object
                      + +
                      + isEnabled() + +  : bool +
                      +
                      Checks whether the command is enabled or not in the current environment.
                      + +
                      + isHidden() + +  : bool +
                      + +
                      + link() + +  : mixed +
                      +
                      Output some data as a link
                      + +
                      + multiChoice() + +  : mixed +
                      +
                      Ask a question with possible answers + multiple choice
                      + +
                      + option() + +  : mixed +
                      +
                      Get an input option
                      + +
                      + options() + +  : mixed +
                      +
                      Get all input options
                      + +
                      + output() + +  : mixed +
                      +
                      Output data or return the output object
                      + +
                      + question() + +  : mixed +
                      +
                      Output some data as a question
                      + +
                      + run() + +  : int +
                      +
                      Runs the command.
                      + +
                      + runProcess() + +  : mixed +
                      +
                      Run a new cli process
                      + +
                      + secret() + +  : mixed +
                      +
                      Prompt user for input but hide keystrokes
                      + +
                      + setAliases() + +  : $this +
                      +
                      Sets the aliases for the command.
                      + +
                      + setApplication() + +  : mixed +
                      + +
                      + setArgument() + +  : mixed +
                      +
                      Add a new argument
                      + +
                      + setCode() + +  : $this +
                      +
                      Sets the code to execute when running this command.
                      + +
                      + setDefinition() + +  : $this +
                      +
                      Sets an array of argument and option instances.
                      + +
                      + setDescription() + +  : $this +
                      +
                      Sets the description for the command.
                      + +
                      + setHelp() + +  : $this +
                      +
                      Sets the help for the command.
                      + +
                      + setHelperSet() + +  : mixed +
                      + +
                      + setHidden() + +  : $this +
                      + +
                      + setName() + +  : $this +
                      +
                      Sets the name of the command.
                      + +
                      + setOption() + +  : mixed +
                      +
                      Add a new option
                      + +
                      + setProcessTitle() + +  : $this +
                      +
                      Sets the process title of the command.
                      + +
                      + write() + +  : mixed +
                      +
                      Output some data
                      + +
                      + writeln() + +  : mixed +
                      +
                      Output some data
                      + +
                      + config() + +  : mixed +
                      + +
                      + configure() + +  : mixed +
                      +
                      Configures the current command.
                      + +
                      + execute() + +  : int +
                      +
                      Executes the current command.
                      + +
                      + handle() + +  : int +
                      +
                      Executes the current command.
                      + +
                      + initialize() + +  : mixed +
                      +
                      Initializes the command after the input has been bound and before the input +is validated.
                      + +
                      + interact() + +  : mixed +
                      +
                      Interacts with the user.
                      + +
                      + validateName() + +  : mixed +
                      +
                      Validates a command name.
                      + +
                      + + + + +
                      +

                      + Constants + + +

                      +
                      +

                      + FAILURE + + +

                      + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                      +
                      +

                      + INVALID + + +

                      + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                      +
                      +

                      + SUCCESS + + +

                      + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                      +
                      + + +
                      +

                      + Properties + + +

                      +
                      +

                      + $description + + + + +

                      + + +

                      Description for command

                      + + + + public + mixed + $description + = 'Delete a controller' + + + + + + + +
                      +
                      +

                      + $help + + + + +

                      + + +

                      Help for command

                      + + + + public + mixed + $help + = 'Delete a controller' + + + + + + + +
                      +
                      +

                      + $defaultDescription + + + + +

                      + + + + + + protected + static string|null + $defaultDescription + + + +

                      The default command description

                      +
                      + + + + + +
                      +
                      +

                      + $defaultName + + + + +

                      + + + + + + protected + static string|null + $defaultName + = 'd:controller' + + +

                      The default command name

                      +
                      + + + + + +
                      +
                      +

                      + $input + + + + +

                      + + +

                      The input object

                      + + + + protected + InputInterface + $input + + + + + + + + +
                      +
                      +

                      + $output + + + + +

                      + + +

                      The output object

                      + + + + protected + OutputInterface + $output + + + + + + + + +
                      +
                      +

                      + $aliases + + + + +

                      + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                      +
                      +

                      + $application + + + + +

                      + + + + + + private + mixed + $application + + + + + + + + +
                      +
                      +

                      + $code + + + + +

                      + + + + + + private + mixed + $code + + + + + + + + +
                      +
                      +

                      + $definition + + + + +

                      + + + + + + private + mixed + $definition + + + + + + + + +
                      +
                      +

                      + $fullDefinition + + + + +

                      + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                      +
                      +

                      + $helperSet + + + + +

                      + + + + + + private + mixed + $helperSet + + + + + + + + +
                      +
                      +

                      + $hidden + + + + +

                      + + + + + + private + mixed + $hidden + = false + + + + + + + +
                      +
                      +

                      + $ignoreValidationErrors + + + + +

                      + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                      +
                      +

                      + $name + + + + +

                      + + +

                      The name of command to run in console

                      + + + + private + mixed + $name + + + + + + + + +
                      +
                      +

                      + $processTitle + + + + +

                      + + + + + + private + mixed + $processTitle + + + + + + + + +
                      +
                      +

                      + $synopsis + + + + +

                      + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                      +
                      +

                      + $usages + + + + +

                      + + + + + + private + mixed + $usages + = [] + + + + + + + +
                      +
                      + +
                      +

                      + Methods + + +

                      +
                      +

                      + __construct() + + +

                      + + + + + public + __construct([string|null $name = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string|null + = null
                      +
                      +

                      The name of the command; passing null means it must be set in configure()

                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + LogicException + +

                      When the command name is empty

                      +
                      + +
                      +
                      + + + + +
                      +
                      +

                      + addArgument() + + +

                      + + +

                      Adds an argument.

                      + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + $mode + : int|null + = null
                      +
                      +

                      The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                      +
                      + +
                      +
                      + $description + : string + = ''
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      +

                      The default value (for InputArgument::OPTIONAL mode only)

                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + +

                      When argument mode is not valid

                      +
                      + +
                      +
                      + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + addOption() + + +

                      + + +

                      Adds an option.

                      + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + $shortcut + : string|array<string|int, mixed>|null + = null
                      +
                      +

                      The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                      +
                      + +
                      +
                      + $mode + : int|null + = null
                      +
                      +

                      The option mode: One of the InputOption::VALUE_* constants

                      +
                      + +
                      +
                      + $description + : string + = ''
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      +

                      The default value (must be null for InputOption::VALUE_NONE)

                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + +

                      If option mode is invalid or incompatible

                      +
                      + +
                      +
                      + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + addUsage() + + +

                      + + +

                      Add a command usage example, it'll be prefixed with the command name.

                      + + + public + addUsage(string $usage) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $usage + : string +
                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + argument() + + +

                      + + +

                      Returns the argument value for a given argument name.

                      + + + public + argument(string $name) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + arguments() + + +

                      + + +

                      Returns all the given arguments merged with the default values.

                      + + + public + arguments() : mixed + +
                      +
                      + + + + + + + + +
                      +
                      +

                      + ask() + + +

                      + + +

                      Ask a question

                      + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + askMultiline() + + +

                      + + +

                      Ask a question

                      + + + public + askMultiline(string $question) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + askRaw() + + +

                      + + +

                      Ask a question

                      + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + autoComplete() + + +

                      + + +

                      Ask a question with auto completion

                      + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + $potentialAnswers + : array<string|int, mixed> +
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + choice() + + +

                      + + +

                      Ask a question with possible answers

                      + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + $choices + : array<string|int, mixed> +
                      +
                      + +
                      +
                      + $errorMessage + : string + = 'Invalid choice'
                      +
                      + +
                      +
                      + $default + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + comment() + + +

                      + + +

                      Output some data as a comment

                      + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $messages + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      + +
                      +

                      + confirm() + + +

                      + + +

                      Prompt user for confirmation

                      + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : mixed +
                      +
                      + +
                      +
                      + $param + : mixed + = false
                      +
                      + +
                      +
                      + $regex + : mixed + = '/^y/i'
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + error() + + +

                      + + +

                      Output some data as a error

                      + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $messages + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + getAliases() + + +

                      + + +

                      Returns the aliases for the command.

                      + + + public + getAliases() : array<string|int, mixed> + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + array<string|int, mixed> +
                      + +
                      +
                      +

                      + getApplication() + + +

                      + + +

                      Gets the application instance for this command.

                      + + + public + getApplication() : Application|null + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + Application|null +
                      + +
                      +
                      +

                      + getDefaultDescription() + + +

                      + + + + + public + static getDefaultDescription() : string|null + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + string|null +
                      + +
                      +
                      +

                      + getDefaultName() + + +

                      + + + + + public + static getDefaultName() : string|null + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + string|null +
                      + +
                      +
                      +

                      + getDefinition() + + +

                      + + +

                      Gets the InputDefinition attached to this Command.

                      + + + public + getDefinition() : InputDefinition + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + InputDefinition +
                      + +
                      +
                      +

                      + getDescription() + + +

                      + + +

                      Returns the description for the command.

                      + + + public + getDescription() : string + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + string +
                      + +
                      +
                      +

                      + getHelp() + + +

                      + + +

                      Returns the help for the command.

                      + + + public + getHelp() : string + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + string +
                      + +
                      +
                      +

                      + getHelper() + + +

                      + + +

                      Gets a helper instance by name.

                      + + + public + getHelper(string $name) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + LogicException + +

                      if no HelperSet is defined

                      +
                      + +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + +

                      if the helper is not defined

                      +
                      + +
                      +
                      + + + + +
                      +
                      +

                      + getHelperSet() + + +

                      + + +

                      Gets the helper set.

                      + + + public + getHelperSet() : HelperSet|null + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + HelperSet|null +
                      + +
                      +
                      +

                      + getName() + + +

                      + + +

                      Returns the command name.

                      + + + public + getName() : string|null + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + string|null +
                      + +
                      +
                      +

                      + getNativeDefinition() + + +

                      + + +

                      Gets the InputDefinition to be used to create representations of this Command.

                      + + + public + getNativeDefinition() : InputDefinition + +
                      +
                      + +

                      Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                      +

                      This method is not part of public API and should not be used directly.

                      +
                      + + + + + + +
                      +
                      Return values
                      + InputDefinition +
                      + +
                      +
                      +

                      + getProcessedHelp() + + +

                      + + +

                      Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                      + + + public + getProcessedHelp() : string + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + string +
                      + +
                      +
                      +

                      + getSynopsis() + + +

                      + + +

                      Returns the synopsis for the command.

                      + + + public + getSynopsis([bool $short = false ]) : string + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $short + : bool + = false
                      +
                      +

                      Whether to show the short version of the synopsis (with options folded) or not

                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + string +
                      + +
                      +
                      +

                      + getUsages() + + +

                      + + +

                      Returns alternative usages of the command.

                      + + + public + getUsages() : array<string|int, mixed> + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + array<string|int, mixed> +
                      + +
                      +
                      +

                      + ignoreValidationErrors() + + +

                      + + +

                      Ignores validation errors.

                      + + + public + ignoreValidationErrors() : mixed + +
                      +
                      + +

                      This is mainly useful for the help command.

                      +
                      + + + + + + + +
                      +
                      +

                      + info() + + +

                      + + +

                      Output some data as a info

                      + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $messages + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + input() + + +

                      + + +

                      Get an argument or return the input object

                      + + + public + input([string $data = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $data + : string + = null
                      +
                      +

                      The argument to return

                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + isEnabled() + + +

                      + + +

                      Checks whether the command is enabled or not in the current environment.

                      + + + public + isEnabled() : bool + +
                      +
                      + +

                      Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                      +
                      + + + + + + +
                      +
                      Return values
                      + bool +
                      + +
                      +
                      +

                      + isHidden() + + +

                      + + + + + public + isHidden() : bool + +
                      +
                      + + + + + + + +
                      +
                      Return values
                      + bool + — +

                      whether the command should be publicly shown or not

                      +
                      + +
                      + +
                      +
                      + + + +

                      Output some data as a link

                      + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $link + : mixed +
                      +
                      + +
                      +
                      + $display + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + multiChoice() + + +

                      + + +

                      Ask a question with possible answers + multiple choice

                      + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + $choices + : array<string|int, mixed> +
                      +
                      + +
                      +
                      + $errorMessage + : string + = 'Invalid choice'
                      +
                      + +
                      +
                      + $default + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + option() + + +

                      + + +

                      Get an input option

                      + + + public + option(string $name) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + options() + + +

                      + + +

                      Get all input options

                      + + + public + options(string $name) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + output() + + +

                      + + +

                      Output data or return the output object

                      + + + public + output([string $data = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $data + : string + = null
                      +
                      +

                      The argument to return

                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + question() + + +

                      + + +

                      Output some data as a question

                      + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $messages + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + run() + + +

                      + + +

                      Runs the command.

                      + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                      +
                      + +

                      The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                      +
                      + +
                      Parameters
                      +
                      +
                      + $input + : InputInterface +
                      +
                      + +
                      +
                      + $output + : OutputInterface +
                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + Exception + +

                      When binding input fails. Bypass this by calling .

                      +
                      + +
                      +
                      + see +
                      +
                      + setCode() + + +
                      +
                      + see +
                      +
                      + execute() + + +
                      +
                      + + + +
                      +
                      Return values
                      + int + — +

                      The command exit code

                      +
                      + +
                      + +
                      +
                      +

                      + runProcess() + + +

                      + + +

                      Run a new cli process

                      + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $process + : array<string|int, mixed> +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + secret() + + +

                      + + +

                      Prompt user for input but hide keystrokes

                      + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $question + : string +
                      +
                      + +
                      +
                      + $useFallback + : bool + = false
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + setAliases() + + +

                      + + +

                      Sets the aliases for the command.

                      + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $aliases + : array<string|int, string> +
                      +
                      +

                      An array of aliases for the command

                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + +

                      When an alias is invalid

                      +
                      + +
                      +
                      + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setApplication() + + +

                      + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $application + : Application|null + = null
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + setArgument() + + +

                      + + +

                      Add a new argument

                      + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : mixed +
                      +
                      + +
                      +
                      + $mode + : mixed + = null
                      +
                      + +
                      +
                      + $description + : mixed + = ''
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + setCode() + + +

                      + + +

                      Sets the code to execute when running this command.

                      + + + public + setCode(callable $code) : $this + +
                      +
                      + +

                      If this method is used, it overrides the code defined +in the execute() method.

                      +
                      + +
                      Parameters
                      +
                      +
                      + $code + : callable +
                      +
                      +

                      A callable(InputInterface $input, OutputInterface $output)

                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + + +
                      +
                      + see +
                      +
                      + execute() + + +
                      +
                      + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setDefinition() + + +

                      + + +

                      Sets an array of argument and option instances.

                      + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $definition + : array<string|int, mixed>|InputDefinition +
                      +
                      +

                      An array of argument and option instances or a definition instance

                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setDescription() + + +

                      + + +

                      Sets the description for the command.

                      + + + public + setDescription(string $description) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $description + : string +
                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setHelp() + + +

                      + + +

                      Sets the help for the command.

                      + + + public + setHelp(string $help) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $help + : string +
                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setHelperSet() + + +

                      + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $helperSet + : HelperSet +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + setHidden() + + +

                      + + + + + public + setHidden(bool $hidden) : $this + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $hidden + : bool +
                      +
                      +

                      Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + final +
                      +
                      + +

                      since Symfony 5.1

                      +
                      + +
                      +
                      + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setName() + + +

                      + + +

                      Sets the name of the command.

                      + + + public + setName(string $name) : $this + +
                      +
                      + +

                      This method can set both the namespace and the name if +you separate them by a colon (:)

                      +
                      $command->setName('foo:bar');
                      +
                      +
                      + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + +

                      When the name is invalid

                      +
                      + +
                      +
                      + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + setOption() + + +

                      + + +

                      Add a new option

                      + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $name + : mixed +
                      +
                      + +
                      +
                      + $shortcut + : mixed + = null
                      +
                      + +
                      +
                      + $mode + : mixed + = null
                      +
                      + +
                      +
                      + $description + : mixed + = ''
                      +
                      + +
                      +
                      + $default + : mixed + = null
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + setProcessTitle() + + +

                      + + +

                      Sets the process title of the command.

                      + + + public + setProcessTitle(string $title) : $this + +
                      +
                      + +

                      This feature should be used only when creating a long process command, +like a daemon.

                      +
                      + +
                      Parameters
                      +
                      +
                      + $title + : string +
                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + $this +
                      + +
                      +
                      +

                      + write() + + +

                      + + +

                      Output some data

                      + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $messages + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + writeln() + + +

                      + + +

                      Output some data

                      + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                      +
                      + + +
                      Parameters
                      +
                      +
                      + $messages + : mixed +
                      +
                      + +
                      +
                      + $options + : mixed + = 0
                      +
                      + +
                      +
                      + + + + + + +
                      + +
                      +

                      + configure() + + +

                      + + +

                      Configures the current command.

                      + + + protected + configure() : mixed + +
                      +
                      + + + + + + + + +
                      +
                      +

                      + execute() + + +

                      + + +

                      Executes the current command.

                      + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                      +
                      + +

                      This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                      +
                      + +
                      Parameters
                      +
                      +
                      + $input + : InputInterface +
                      +
                      + +
                      +
                      + $output + : OutputInterface +
                      +
                      + +
                      +
                      + + + + + +
                      +
                      Return values
                      + int + — +

                      0 if everything went fine, or an exit code

                      +
                      + +
                      + +
                      +
                      +

                      + handle() + + +

                      + + +

                      Executes the current command.

                      + + + protected + handle() : int + +
                      +
                      + +

                      This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                      +
                      + + + + + + +
                      +
                      Return values
                      + int + — +

                      0 if everything went fine, or an exit code

                      +
                      + +
                      + +
                      +
                      +

                      + initialize() + + +

                      + + +

                      Initializes the command after the input has been bound and before the input +is validated.

                      + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                      +
                      + +

                      This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                      +
                      + +
                      Parameters
                      +
                      +
                      + $input + : InputInterface +
                      +
                      + +
                      +
                      + $output + : OutputInterface +
                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + see +
                      +
                      + InputInterface::bind() + + +
                      +
                      + see +
                      +
                      + InputInterface::validate() + + +
                      +
                      + + + + +
                      +
                      +

                      + interact() + + +

                      + + +

                      Interacts with the user.

                      + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                      +
                      + +

                      This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                      +
                      + +
                      Parameters
                      +
                      +
                      + $input + : InputInterface +
                      +
                      + +
                      +
                      + $output + : OutputInterface +
                      +
                      + +
                      +
                      + + + + + + +
                      +
                      +

                      + validateName() + + +

                      + + +

                      Validates a command name.

                      + + + private + validateName(string $name) : mixed + +
                      +
                      + +

                      It must be non-empty and parts can optionally be separated by ":".

                      +
                      + +
                      Parameters
                      +
                      +
                      + $name + : string +
                      +
                      + +
                      +
                      + + +
                      + Tags + + +
                      +
                      +
                      + throws +
                      +
                      + InvalidArgumentException + +

                      When the name is invalid

                      +
                      + +
                      +
                      + + + + +
                      +
                      + +
                      +
                      +
                      +
                      +
                      
                      +        
                      + +
                      +
                      + + + +
                      +
                      +
                      + +
                      + On this page + + +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Search results

                      + +
                      +
                      +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DeleteModelCommand.html b/src/public/api/classes/Aloe-Command-DeleteModelCommand.html new file mode 100644 index 00000000..ee4585a6 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DeleteModelCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                        +

                        Leaf PHP

                        + + + + + +
                        + +
                        +
                        + + + + +
                        +
                        + + +
                        +

                        + DeleteModelCommand + + + extends Command + + +
                        + in package + +
                        + + +

                        + +
                        + + +
                        + + + +

                        Base class for Aloe Commands.

                        + + + + + + + + + +

                        + Table of Contents + + +

                        + + + + + + + +

                        + Constants + + +

                        +
                        +
                        + FAILURE + +  = 1 +
                        + +
                        + INVALID + +  = 2 +
                        + +
                        + SUCCESS + +  = 0 +
                        + +
                        + + +

                        + Properties + + +

                        +
                        +
                        + $description + +  : mixed +
                        +
                        Description for command
                        + +
                        + $help + +  : mixed +
                        +
                        Help for command
                        + +
                        + $defaultDescription + +  : string|null +
                        + +
                        + $defaultName + +  : string|null +
                        + +
                        + $input + +  : InputInterface +
                        +
                        The input object
                        + +
                        + $output + +  : OutputInterface +
                        +
                        The output object
                        + +
                        + $aliases + +  : mixed +
                        + +
                        + $application + +  : mixed +
                        + +
                        + $code + +  : mixed +
                        + +
                        + $definition + +  : mixed +
                        + +
                        + $fullDefinition + +  : mixed +
                        + +
                        + $helperSet + +  : mixed +
                        + +
                        + $hidden + +  : mixed +
                        + +
                        + $ignoreValidationErrors + +  : mixed +
                        + +
                        + $name + +  : mixed +
                        +
                        The name of command to run in console
                        + +
                        + $processTitle + +  : mixed +
                        + +
                        + $synopsis + +  : mixed +
                        + +
                        + $usages + +  : mixed +
                        + +
                        + +

                        + Methods + + +

                        +
                        +
                        + __construct() + +  : mixed +
                        + +
                        + addArgument() + +  : $this +
                        +
                        Adds an argument.
                        + +
                        + addOption() + +  : $this +
                        +
                        Adds an option.
                        + +
                        + addUsage() + +  : $this +
                        +
                        Add a command usage example, it'll be prefixed with the command name.
                        + +
                        + argument() + +  : mixed +
                        +
                        Returns the argument value for a given argument name.
                        + +
                        + arguments() + +  : mixed +
                        +
                        Returns all the given arguments merged with the default values.
                        + +
                        + ask() + +  : mixed +
                        +
                        Ask a question
                        + +
                        + askMultiline() + +  : mixed +
                        +
                        Ask a question
                        + +
                        + askRaw() + +  : mixed +
                        +
                        Ask a question
                        + +
                        + autoComplete() + +  : mixed +
                        +
                        Ask a question with auto completion
                        + +
                        + choice() + +  : mixed +
                        +
                        Ask a question with possible answers
                        + +
                        + comment() + +  : mixed +
                        +
                        Output some data as a comment
                        + +
                        + complete() + +  : void +
                        +
                        Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                        + +
                        + confirm() + +  : mixed +
                        +
                        Prompt user for confirmation
                        + +
                        + error() + +  : mixed +
                        +
                        Output some data as a error
                        + +
                        + getAliases() + +  : array<string|int, mixed> +
                        +
                        Returns the aliases for the command.
                        + +
                        + getApplication() + +  : Application|null +
                        +
                        Gets the application instance for this command.
                        + +
                        + getDefaultDescription() + +  : string|null +
                        + +
                        + getDefaultName() + +  : string|null +
                        + +
                        + getDefinition() + +  : InputDefinition +
                        +
                        Gets the InputDefinition attached to this Command.
                        + +
                        + getDescription() + +  : string +
                        +
                        Returns the description for the command.
                        + +
                        + getHelp() + +  : string +
                        +
                        Returns the help for the command.
                        + +
                        + getHelper() + +  : mixed +
                        +
                        Gets a helper instance by name.
                        + +
                        + getHelperSet() + +  : HelperSet|null +
                        +
                        Gets the helper set.
                        + +
                        + getName() + +  : string|null +
                        +
                        Returns the command name.
                        + +
                        + getNativeDefinition() + +  : InputDefinition +
                        +
                        Gets the InputDefinition to be used to create representations of this Command.
                        + +
                        + getProcessedHelp() + +  : string +
                        +
                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                        + +
                        + getSynopsis() + +  : string +
                        +
                        Returns the synopsis for the command.
                        + +
                        + getUsages() + +  : array<string|int, mixed> +
                        +
                        Returns alternative usages of the command.
                        + +
                        + ignoreValidationErrors() + +  : mixed +
                        +
                        Ignores validation errors.
                        + +
                        + info() + +  : mixed +
                        +
                        Output some data as a info
                        + +
                        + input() + +  : mixed +
                        +
                        Get an argument or return the input object
                        + +
                        + isEnabled() + +  : bool +
                        +
                        Checks whether the command is enabled or not in the current environment.
                        + +
                        + isHidden() + +  : bool +
                        + +
                        + link() + +  : mixed +
                        +
                        Output some data as a link
                        + +
                        + multiChoice() + +  : mixed +
                        +
                        Ask a question with possible answers + multiple choice
                        + +
                        + option() + +  : mixed +
                        +
                        Get an input option
                        + +
                        + options() + +  : mixed +
                        +
                        Get all input options
                        + +
                        + output() + +  : mixed +
                        +
                        Output data or return the output object
                        + +
                        + question() + +  : mixed +
                        +
                        Output some data as a question
                        + +
                        + run() + +  : int +
                        +
                        Runs the command.
                        + +
                        + runProcess() + +  : mixed +
                        +
                        Run a new cli process
                        + +
                        + secret() + +  : mixed +
                        +
                        Prompt user for input but hide keystrokes
                        + +
                        + setAliases() + +  : $this +
                        +
                        Sets the aliases for the command.
                        + +
                        + setApplication() + +  : mixed +
                        + +
                        + setArgument() + +  : mixed +
                        +
                        Add a new argument
                        + +
                        + setCode() + +  : $this +
                        +
                        Sets the code to execute when running this command.
                        + +
                        + setDefinition() + +  : $this +
                        +
                        Sets an array of argument and option instances.
                        + +
                        + setDescription() + +  : $this +
                        +
                        Sets the description for the command.
                        + +
                        + setHelp() + +  : $this +
                        +
                        Sets the help for the command.
                        + +
                        + setHelperSet() + +  : mixed +
                        + +
                        + setHidden() + +  : $this +
                        + +
                        + setName() + +  : $this +
                        +
                        Sets the name of the command.
                        + +
                        + setOption() + +  : mixed +
                        +
                        Add a new option
                        + +
                        + setProcessTitle() + +  : $this +
                        +
                        Sets the process title of the command.
                        + +
                        + write() + +  : mixed +
                        +
                        Output some data
                        + +
                        + writeln() + +  : mixed +
                        +
                        Output some data
                        + +
                        + config() + +  : mixed +
                        + +
                        + configure() + +  : mixed +
                        +
                        Configures the current command.
                        + +
                        + execute() + +  : int +
                        +
                        Executes the current command.
                        + +
                        + handle() + +  : int +
                        +
                        Executes the current command.
                        + +
                        + initialize() + +  : mixed +
                        +
                        Initializes the command after the input has been bound and before the input +is validated.
                        + +
                        + interact() + +  : mixed +
                        +
                        Interacts with the user.
                        + +
                        + validateName() + +  : mixed +
                        +
                        Validates a command name.
                        + +
                        + + + + +
                        +

                        + Constants + + +

                        +
                        +

                        + FAILURE + + +

                        + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                        +
                        +

                        + INVALID + + +

                        + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                        +
                        +

                        + SUCCESS + + +

                        + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                        +
                        + + +
                        +

                        + Properties + + +

                        +
                        +

                        + $description + + + + +

                        + + +

                        Description for command

                        + + + + public + mixed + $description + = 'Delete a model' + + + + + + + +
                        +
                        +

                        + $help + + + + +

                        + + +

                        Help for command

                        + + + + public + mixed + $help + = 'Delete a model file' + + + + + + + +
                        +
                        +

                        + $defaultDescription + + + + +

                        + + + + + + protected + static string|null + $defaultDescription + + + +

                        The default command description

                        +
                        + + + + + +
                        +
                        +

                        + $defaultName + + + + +

                        + + + + + + protected + static string|null + $defaultName + = 'd:model' + + +

                        The default command name

                        +
                        + + + + + +
                        +
                        +

                        + $input + + + + +

                        + + +

                        The input object

                        + + + + protected + InputInterface + $input + + + + + + + + +
                        +
                        +

                        + $output + + + + +

                        + + +

                        The output object

                        + + + + protected + OutputInterface + $output + + + + + + + + +
                        +
                        +

                        + $aliases + + + + +

                        + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                        +
                        +

                        + $application + + + + +

                        + + + + + + private + mixed + $application + + + + + + + + +
                        +
                        +

                        + $code + + + + +

                        + + + + + + private + mixed + $code + + + + + + + + +
                        +
                        +

                        + $definition + + + + +

                        + + + + + + private + mixed + $definition + + + + + + + + +
                        +
                        +

                        + $fullDefinition + + + + +

                        + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                        +
                        +

                        + $helperSet + + + + +

                        + + + + + + private + mixed + $helperSet + + + + + + + + +
                        +
                        +

                        + $hidden + + + + +

                        + + + + + + private + mixed + $hidden + = false + + + + + + + +
                        +
                        +

                        + $ignoreValidationErrors + + + + +

                        + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                        +
                        +

                        + $name + + + + +

                        + + +

                        The name of command to run in console

                        + + + + private + mixed + $name + + + + + + + + +
                        +
                        +

                        + $processTitle + + + + +

                        + + + + + + private + mixed + $processTitle + + + + + + + + +
                        +
                        +

                        + $synopsis + + + + +

                        + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                        +
                        +

                        + $usages + + + + +

                        + + + + + + private + mixed + $usages + = [] + + + + + + + +
                        +
                        + +
                        +

                        + Methods + + +

                        +
                        +

                        + __construct() + + +

                        + + + + + public + __construct([string|null $name = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string|null + = null
                        +
                        +

                        The name of the command; passing null means it must be set in configure()

                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + LogicException + +

                        When the command name is empty

                        +
                        + +
                        +
                        + + + + +
                        +
                        +

                        + addArgument() + + +

                        + + +

                        Adds an argument.

                        + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + $mode + : int|null + = null
                        +
                        +

                        The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                        +
                        + +
                        +
                        + $description + : string + = ''
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        +

                        The default value (for InputArgument::OPTIONAL mode only)

                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + +

                        When argument mode is not valid

                        +
                        + +
                        +
                        + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + addOption() + + +

                        + + +

                        Adds an option.

                        + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + $shortcut + : string|array<string|int, mixed>|null + = null
                        +
                        +

                        The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                        +
                        + +
                        +
                        + $mode + : int|null + = null
                        +
                        +

                        The option mode: One of the InputOption::VALUE_* constants

                        +
                        + +
                        +
                        + $description + : string + = ''
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        +

                        The default value (must be null for InputOption::VALUE_NONE)

                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + +

                        If option mode is invalid or incompatible

                        +
                        + +
                        +
                        + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + addUsage() + + +

                        + + +

                        Add a command usage example, it'll be prefixed with the command name.

                        + + + public + addUsage(string $usage) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $usage + : string +
                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + argument() + + +

                        + + +

                        Returns the argument value for a given argument name.

                        + + + public + argument(string $name) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + arguments() + + +

                        + + +

                        Returns all the given arguments merged with the default values.

                        + + + public + arguments() : mixed + +
                        +
                        + + + + + + + + +
                        +
                        +

                        + ask() + + +

                        + + +

                        Ask a question

                        + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + askMultiline() + + +

                        + + +

                        Ask a question

                        + + + public + askMultiline(string $question) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + askRaw() + + +

                        + + +

                        Ask a question

                        + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + autoComplete() + + +

                        + + +

                        Ask a question with auto completion

                        + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + $potentialAnswers + : array<string|int, mixed> +
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + choice() + + +

                        + + +

                        Ask a question with possible answers

                        + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + $choices + : array<string|int, mixed> +
                        +
                        + +
                        +
                        + $errorMessage + : string + = 'Invalid choice'
                        +
                        + +
                        +
                        + $default + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + comment() + + +

                        + + +

                        Output some data as a comment

                        + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $messages + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        + +
                        +

                        + confirm() + + +

                        + + +

                        Prompt user for confirmation

                        + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : mixed +
                        +
                        + +
                        +
                        + $param + : mixed + = false
                        +
                        + +
                        +
                        + $regex + : mixed + = '/^y/i'
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + error() + + +

                        + + +

                        Output some data as a error

                        + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $messages + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + getAliases() + + +

                        + + +

                        Returns the aliases for the command.

                        + + + public + getAliases() : array<string|int, mixed> + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + array<string|int, mixed> +
                        + +
                        +
                        +

                        + getApplication() + + +

                        + + +

                        Gets the application instance for this command.

                        + + + public + getApplication() : Application|null + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + Application|null +
                        + +
                        +
                        +

                        + getDefaultDescription() + + +

                        + + + + + public + static getDefaultDescription() : string|null + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + string|null +
                        + +
                        +
                        +

                        + getDefaultName() + + +

                        + + + + + public + static getDefaultName() : string|null + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + string|null +
                        + +
                        +
                        +

                        + getDefinition() + + +

                        + + +

                        Gets the InputDefinition attached to this Command.

                        + + + public + getDefinition() : InputDefinition + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + InputDefinition +
                        + +
                        +
                        +

                        + getDescription() + + +

                        + + +

                        Returns the description for the command.

                        + + + public + getDescription() : string + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + string +
                        + +
                        +
                        +

                        + getHelp() + + +

                        + + +

                        Returns the help for the command.

                        + + + public + getHelp() : string + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + string +
                        + +
                        +
                        +

                        + getHelper() + + +

                        + + +

                        Gets a helper instance by name.

                        + + + public + getHelper(string $name) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + LogicException + +

                        if no HelperSet is defined

                        +
                        + +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + +

                        if the helper is not defined

                        +
                        + +
                        +
                        + + + + +
                        +
                        +

                        + getHelperSet() + + +

                        + + +

                        Gets the helper set.

                        + + + public + getHelperSet() : HelperSet|null + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + HelperSet|null +
                        + +
                        +
                        +

                        + getName() + + +

                        + + +

                        Returns the command name.

                        + + + public + getName() : string|null + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + string|null +
                        + +
                        +
                        +

                        + getNativeDefinition() + + +

                        + + +

                        Gets the InputDefinition to be used to create representations of this Command.

                        + + + public + getNativeDefinition() : InputDefinition + +
                        +
                        + +

                        Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                        +

                        This method is not part of public API and should not be used directly.

                        +
                        + + + + + + +
                        +
                        Return values
                        + InputDefinition +
                        + +
                        +
                        +

                        + getProcessedHelp() + + +

                        + + +

                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                        + + + public + getProcessedHelp() : string + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + string +
                        + +
                        +
                        +

                        + getSynopsis() + + +

                        + + +

                        Returns the synopsis for the command.

                        + + + public + getSynopsis([bool $short = false ]) : string + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $short + : bool + = false
                        +
                        +

                        Whether to show the short version of the synopsis (with options folded) or not

                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + string +
                        + +
                        +
                        +

                        + getUsages() + + +

                        + + +

                        Returns alternative usages of the command.

                        + + + public + getUsages() : array<string|int, mixed> + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + array<string|int, mixed> +
                        + +
                        +
                        +

                        + ignoreValidationErrors() + + +

                        + + +

                        Ignores validation errors.

                        + + + public + ignoreValidationErrors() : mixed + +
                        +
                        + +

                        This is mainly useful for the help command.

                        +
                        + + + + + + + +
                        +
                        +

                        + info() + + +

                        + + +

                        Output some data as a info

                        + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $messages + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + input() + + +

                        + + +

                        Get an argument or return the input object

                        + + + public + input([string $data = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $data + : string + = null
                        +
                        +

                        The argument to return

                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + isEnabled() + + +

                        + + +

                        Checks whether the command is enabled or not in the current environment.

                        + + + public + isEnabled() : bool + +
                        +
                        + +

                        Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                        +
                        + + + + + + +
                        +
                        Return values
                        + bool +
                        + +
                        +
                        +

                        + isHidden() + + +

                        + + + + + public + isHidden() : bool + +
                        +
                        + + + + + + + +
                        +
                        Return values
                        + bool + — +

                        whether the command should be publicly shown or not

                        +
                        + +
                        + +
                        +
                        + + + +

                        Output some data as a link

                        + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $link + : mixed +
                        +
                        + +
                        +
                        + $display + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + multiChoice() + + +

                        + + +

                        Ask a question with possible answers + multiple choice

                        + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + $choices + : array<string|int, mixed> +
                        +
                        + +
                        +
                        + $errorMessage + : string + = 'Invalid choice'
                        +
                        + +
                        +
                        + $default + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + option() + + +

                        + + +

                        Get an input option

                        + + + public + option(string $name) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + options() + + +

                        + + +

                        Get all input options

                        + + + public + options(string $name) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + output() + + +

                        + + +

                        Output data or return the output object

                        + + + public + output([string $data = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $data + : string + = null
                        +
                        +

                        The argument to return

                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + question() + + +

                        + + +

                        Output some data as a question

                        + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $messages + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + run() + + +

                        + + +

                        Runs the command.

                        + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                        +
                        + +

                        The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                        +
                        + +
                        Parameters
                        +
                        +
                        + $input + : InputInterface +
                        +
                        + +
                        +
                        + $output + : OutputInterface +
                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + Exception + +

                        When binding input fails. Bypass this by calling .

                        +
                        + +
                        +
                        + see +
                        +
                        + setCode() + + +
                        +
                        + see +
                        +
                        + execute() + + +
                        +
                        + + + +
                        +
                        Return values
                        + int + — +

                        The command exit code

                        +
                        + +
                        + +
                        +
                        +

                        + runProcess() + + +

                        + + +

                        Run a new cli process

                        + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $process + : array<string|int, mixed> +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + secret() + + +

                        + + +

                        Prompt user for input but hide keystrokes

                        + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $question + : string +
                        +
                        + +
                        +
                        + $useFallback + : bool + = false
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + setAliases() + + +

                        + + +

                        Sets the aliases for the command.

                        + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $aliases + : array<string|int, string> +
                        +
                        +

                        An array of aliases for the command

                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + +

                        When an alias is invalid

                        +
                        + +
                        +
                        + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setApplication() + + +

                        + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $application + : Application|null + = null
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + setArgument() + + +

                        + + +

                        Add a new argument

                        + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : mixed +
                        +
                        + +
                        +
                        + $mode + : mixed + = null
                        +
                        + +
                        +
                        + $description + : mixed + = ''
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + setCode() + + +

                        + + +

                        Sets the code to execute when running this command.

                        + + + public + setCode(callable $code) : $this + +
                        +
                        + +

                        If this method is used, it overrides the code defined +in the execute() method.

                        +
                        + +
                        Parameters
                        +
                        +
                        + $code + : callable +
                        +
                        +

                        A callable(InputInterface $input, OutputInterface $output)

                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + + +
                        +
                        + see +
                        +
                        + execute() + + +
                        +
                        + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setDefinition() + + +

                        + + +

                        Sets an array of argument and option instances.

                        + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $definition + : array<string|int, mixed>|InputDefinition +
                        +
                        +

                        An array of argument and option instances or a definition instance

                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setDescription() + + +

                        + + +

                        Sets the description for the command.

                        + + + public + setDescription(string $description) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $description + : string +
                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setHelp() + + +

                        + + +

                        Sets the help for the command.

                        + + + public + setHelp(string $help) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $help + : string +
                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setHelperSet() + + +

                        + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $helperSet + : HelperSet +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + setHidden() + + +

                        + + + + + public + setHidden(bool $hidden) : $this + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $hidden + : bool +
                        +
                        +

                        Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + final +
                        +
                        + +

                        since Symfony 5.1

                        +
                        + +
                        +
                        + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setName() + + +

                        + + +

                        Sets the name of the command.

                        + + + public + setName(string $name) : $this + +
                        +
                        + +

                        This method can set both the namespace and the name if +you separate them by a colon (:)

                        +
                        $command->setName('foo:bar');
                        +
                        +
                        + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + +

                        When the name is invalid

                        +
                        + +
                        +
                        + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + setOption() + + +

                        + + +

                        Add a new option

                        + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $name + : mixed +
                        +
                        + +
                        +
                        + $shortcut + : mixed + = null
                        +
                        + +
                        +
                        + $mode + : mixed + = null
                        +
                        + +
                        +
                        + $description + : mixed + = ''
                        +
                        + +
                        +
                        + $default + : mixed + = null
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + setProcessTitle() + + +

                        + + +

                        Sets the process title of the command.

                        + + + public + setProcessTitle(string $title) : $this + +
                        +
                        + +

                        This feature should be used only when creating a long process command, +like a daemon.

                        +
                        + +
                        Parameters
                        +
                        +
                        + $title + : string +
                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + $this +
                        + +
                        +
                        +

                        + write() + + +

                        + + +

                        Output some data

                        + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $messages + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + writeln() + + +

                        + + +

                        Output some data

                        + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                        +
                        + + +
                        Parameters
                        +
                        +
                        + $messages + : mixed +
                        +
                        + +
                        +
                        + $options + : mixed + = 0
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + config() + + +

                        + + + + + protected + config() : mixed + +
                        +
                        + + + + + + + + +
                        +
                        +

                        + configure() + + +

                        + + +

                        Configures the current command.

                        + + + protected + configure() : mixed + +
                        +
                        + + + + + + + + +
                        +
                        +

                        + execute() + + +

                        + + +

                        Executes the current command.

                        + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                        +
                        + +

                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                        +
                        + +
                        Parameters
                        +
                        +
                        + $input + : InputInterface +
                        +
                        + +
                        +
                        + $output + : OutputInterface +
                        +
                        + +
                        +
                        + + + + + +
                        +
                        Return values
                        + int + — +

                        0 if everything went fine, or an exit code

                        +
                        + +
                        + +
                        +
                        +

                        + handle() + + +

                        + + +

                        Executes the current command.

                        + + + protected + handle() : int + +
                        +
                        + +

                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                        +
                        + + + + + + +
                        +
                        Return values
                        + int + — +

                        0 if everything went fine, or an exit code

                        +
                        + +
                        + +
                        +
                        +

                        + initialize() + + +

                        + + +

                        Initializes the command after the input has been bound and before the input +is validated.

                        + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                        +
                        + +

                        This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                        +
                        + +
                        Parameters
                        +
                        +
                        + $input + : InputInterface +
                        +
                        + +
                        +
                        + $output + : OutputInterface +
                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + see +
                        +
                        + InputInterface::bind() + + +
                        +
                        + see +
                        +
                        + InputInterface::validate() + + +
                        +
                        + + + + +
                        +
                        +

                        + interact() + + +

                        + + +

                        Interacts with the user.

                        + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                        +
                        + +

                        This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                        +
                        + +
                        Parameters
                        +
                        +
                        + $input + : InputInterface +
                        +
                        + +
                        +
                        + $output + : OutputInterface +
                        +
                        + +
                        +
                        + + + + + + +
                        +
                        +

                        + validateName() + + +

                        + + +

                        Validates a command name.

                        + + + private + validateName(string $name) : mixed + +
                        +
                        + +

                        It must be non-empty and parts can optionally be separated by ":".

                        +
                        + +
                        Parameters
                        +
                        +
                        + $name + : string +
                        +
                        + +
                        +
                        + + +
                        + Tags + + +
                        +
                        +
                        + throws +
                        +
                        + InvalidArgumentException + +

                        When the name is invalid

                        +
                        + +
                        +
                        + + + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        
                        +        
                        + +
                        +
                        + + + +
                        +
                        +
                        + +
                        + On this page + + +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Search results

                        + +
                        +
                        +
                          +
                          +
                          +
                          +
                          + + +
                          + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-DevToolsCommand.html b/src/public/api/classes/Aloe-Command-DevToolsCommand.html new file mode 100644 index 00000000..4574927b --- /dev/null +++ b/src/public/api/classes/Aloe-Command-DevToolsCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                          +

                          Leaf PHP

                          + + + + + +
                          + +
                          +
                          + + + + +
                          +
                          + + +
                          +

                          + DevToolsCommand + + + extends Command + + +
                          + in package + +
                          + + +

                          + +
                          + + +
                          + + + +

                          Base class for Aloe Commands.

                          + + + + + + + + + +

                          + Table of Contents + + +

                          + + + + + + + +

                          + Constants + + +

                          +
                          +
                          + FAILURE + +  = 1 +
                          + +
                          + INVALID + +  = 2 +
                          + +
                          + SUCCESS + +  = 0 +
                          + +
                          + + +

                          + Properties + + +

                          +
                          +
                          + $description + +  : mixed +
                          +
                          Description for command
                          + +
                          + $help + +  : mixed +
                          +
                          Help for command
                          + +
                          + $defaultDescription + +  : string|null +
                          + +
                          + $defaultName + +  : string|null +
                          + +
                          + $input + +  : InputInterface +
                          +
                          The input object
                          + +
                          + $output + +  : OutputInterface +
                          +
                          The output object
                          + +
                          + $aliases + +  : mixed +
                          + +
                          + $application + +  : mixed +
                          + +
                          + $code + +  : mixed +
                          + +
                          + $definition + +  : mixed +
                          + +
                          + $fullDefinition + +  : mixed +
                          + +
                          + $helperSet + +  : mixed +
                          + +
                          + $hidden + +  : mixed +
                          + +
                          + $ignoreValidationErrors + +  : mixed +
                          + +
                          + $name + +  : mixed +
                          +
                          The name of command to run in console
                          + +
                          + $processTitle + +  : mixed +
                          + +
                          + $synopsis + +  : mixed +
                          + +
                          + $usages + +  : mixed +
                          + +
                          + +

                          + Methods + + +

                          +
                          +
                          + __construct() + +  : mixed +
                          + +
                          + addArgument() + +  : $this +
                          +
                          Adds an argument.
                          + +
                          + addOption() + +  : $this +
                          +
                          Adds an option.
                          + +
                          + addUsage() + +  : $this +
                          +
                          Add a command usage example, it'll be prefixed with the command name.
                          + +
                          + argument() + +  : mixed +
                          +
                          Returns the argument value for a given argument name.
                          + +
                          + arguments() + +  : mixed +
                          +
                          Returns all the given arguments merged with the default values.
                          + +
                          + ask() + +  : mixed +
                          +
                          Ask a question
                          + +
                          + askMultiline() + +  : mixed +
                          +
                          Ask a question
                          + +
                          + askRaw() + +  : mixed +
                          +
                          Ask a question
                          + +
                          + autoComplete() + +  : mixed +
                          +
                          Ask a question with auto completion
                          + +
                          + choice() + +  : mixed +
                          +
                          Ask a question with possible answers
                          + +
                          + comment() + +  : mixed +
                          +
                          Output some data as a comment
                          + +
                          + complete() + +  : void +
                          +
                          Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                          + +
                          + confirm() + +  : mixed +
                          +
                          Prompt user for confirmation
                          + +
                          + error() + +  : mixed +
                          +
                          Output some data as a error
                          + +
                          + getAliases() + +  : array<string|int, mixed> +
                          +
                          Returns the aliases for the command.
                          + +
                          + getApplication() + +  : Application|null +
                          +
                          Gets the application instance for this command.
                          + +
                          + getDefaultDescription() + +  : string|null +
                          + +
                          + getDefaultName() + +  : string|null +
                          + +
                          + getDefinition() + +  : InputDefinition +
                          +
                          Gets the InputDefinition attached to this Command.
                          + +
                          + getDescription() + +  : string +
                          +
                          Returns the description for the command.
                          + +
                          + getHelp() + +  : string +
                          +
                          Returns the help for the command.
                          + +
                          + getHelper() + +  : mixed +
                          +
                          Gets a helper instance by name.
                          + +
                          + getHelperSet() + +  : HelperSet|null +
                          +
                          Gets the helper set.
                          + +
                          + getName() + +  : string|null +
                          +
                          Returns the command name.
                          + +
                          + getNativeDefinition() + +  : InputDefinition +
                          +
                          Gets the InputDefinition to be used to create representations of this Command.
                          + +
                          + getProcessedHelp() + +  : string +
                          +
                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                          + +
                          + getSynopsis() + +  : string +
                          +
                          Returns the synopsis for the command.
                          + +
                          + getUsages() + +  : array<string|int, mixed> +
                          +
                          Returns alternative usages of the command.
                          + +
                          + ignoreValidationErrors() + +  : mixed +
                          +
                          Ignores validation errors.
                          + +
                          + info() + +  : mixed +
                          +
                          Output some data as a info
                          + +
                          + input() + +  : mixed +
                          +
                          Get an argument or return the input object
                          + +
                          + isEnabled() + +  : bool +
                          +
                          Checks whether the command is enabled or not in the current environment.
                          + +
                          + isHidden() + +  : bool +
                          + +
                          + link() + +  : mixed +
                          +
                          Output some data as a link
                          + +
                          + multiChoice() + +  : mixed +
                          +
                          Ask a question with possible answers + multiple choice
                          + +
                          + option() + +  : mixed +
                          +
                          Get an input option
                          + +
                          + options() + +  : mixed +
                          +
                          Get all input options
                          + +
                          + output() + +  : mixed +
                          +
                          Output data or return the output object
                          + +
                          + question() + +  : mixed +
                          +
                          Output some data as a question
                          + +
                          + run() + +  : int +
                          +
                          Runs the command.
                          + +
                          + runProcess() + +  : mixed +
                          +
                          Run a new cli process
                          + +
                          + secret() + +  : mixed +
                          +
                          Prompt user for input but hide keystrokes
                          + +
                          + setAliases() + +  : $this +
                          +
                          Sets the aliases for the command.
                          + +
                          + setApplication() + +  : mixed +
                          + +
                          + setArgument() + +  : mixed +
                          +
                          Add a new argument
                          + +
                          + setCode() + +  : $this +
                          +
                          Sets the code to execute when running this command.
                          + +
                          + setDefinition() + +  : $this +
                          +
                          Sets an array of argument and option instances.
                          + +
                          + setDescription() + +  : $this +
                          +
                          Sets the description for the command.
                          + +
                          + setHelp() + +  : $this +
                          +
                          Sets the help for the command.
                          + +
                          + setHelperSet() + +  : mixed +
                          + +
                          + setHidden() + +  : $this +
                          + +
                          + setName() + +  : $this +
                          +
                          Sets the name of the command.
                          + +
                          + setOption() + +  : mixed +
                          +
                          Add a new option
                          + +
                          + setProcessTitle() + +  : $this +
                          +
                          Sets the process title of the command.
                          + +
                          + write() + +  : mixed +
                          +
                          Output some data
                          + +
                          + writeln() + +  : mixed +
                          +
                          Output some data
                          + +
                          + config() + +  : mixed +
                          + +
                          + configure() + +  : mixed +
                          +
                          Configures the current command.
                          + +
                          + execute() + +  : int +
                          +
                          Executes the current command.
                          + +
                          + handle() + +  : int +
                          +
                          Executes the current command.
                          + +
                          + initialize() + +  : mixed +
                          +
                          Initializes the command after the input has been bound and before the input +is validated.
                          + +
                          + interact() + +  : mixed +
                          +
                          Interacts with the user.
                          + +
                          + validateName() + +  : mixed +
                          +
                          Validates a command name.
                          + +
                          + + + + +
                          +

                          + Constants + + +

                          +
                          +

                          + FAILURE + + +

                          + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                          +
                          +

                          + INVALID + + +

                          + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                          +
                          +

                          + SUCCESS + + +

                          + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                          +
                          + + +
                          +

                          + Properties + + +

                          +
                          +

                          + $description + + + + +

                          + + +

                          Description for command

                          + + + + public + mixed + $description + = 'Install the Leaf PHP devtools' + + + + + + + +
                          +
                          +

                          + $help + + + + +

                          + + +

                          Help for command

                          + + + + public + mixed + $help + = 'Install the leaf PHP Dev tools' + + + + + + + +
                          +
                          +

                          + $defaultDescription + + + + +

                          + + + + + + protected + static string|null + $defaultDescription + + + +

                          The default command description

                          +
                          + + + + + +
                          +
                          +

                          + $defaultName + + + + +

                          + + + + + + protected + static string|null + $defaultName + = 'devtools:install' + + +

                          The default command name

                          +
                          + + + + + +
                          +
                          +

                          + $input + + + + +

                          + + +

                          The input object

                          + + + + protected + InputInterface + $input + + + + + + + + +
                          +
                          +

                          + $output + + + + +

                          + + +

                          The output object

                          + + + + protected + OutputInterface + $output + + + + + + + + +
                          +
                          +

                          + $aliases + + + + +

                          + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                          +
                          +

                          + $application + + + + +

                          + + + + + + private + mixed + $application + + + + + + + + +
                          +
                          +

                          + $code + + + + +

                          + + + + + + private + mixed + $code + + + + + + + + +
                          +
                          +

                          + $definition + + + + +

                          + + + + + + private + mixed + $definition + + + + + + + + +
                          +
                          +

                          + $fullDefinition + + + + +

                          + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                          +
                          +

                          + $helperSet + + + + +

                          + + + + + + private + mixed + $helperSet + + + + + + + + +
                          +
                          +

                          + $hidden + + + + +

                          + + + + + + private + mixed + $hidden + = false + + + + + + + +
                          +
                          +

                          + $ignoreValidationErrors + + + + +

                          + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                          +
                          +

                          + $name + + + + +

                          + + +

                          The name of command to run in console

                          + + + + private + mixed + $name + + + + + + + + +
                          +
                          +

                          + $processTitle + + + + +

                          + + + + + + private + mixed + $processTitle + + + + + + + + +
                          +
                          +

                          + $synopsis + + + + +

                          + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                          +
                          +

                          + $usages + + + + +

                          + + + + + + private + mixed + $usages + = [] + + + + + + + +
                          +
                          + +
                          +

                          + Methods + + +

                          +
                          +

                          + __construct() + + +

                          + + + + + public + __construct([string|null $name = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string|null + = null
                          +
                          +

                          The name of the command; passing null means it must be set in configure()

                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + LogicException + +

                          When the command name is empty

                          +
                          + +
                          +
                          + + + + +
                          +
                          +

                          + addArgument() + + +

                          + + +

                          Adds an argument.

                          + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + $mode + : int|null + = null
                          +
                          +

                          The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                          +
                          + +
                          +
                          + $description + : string + = ''
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          +

                          The default value (for InputArgument::OPTIONAL mode only)

                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + +

                          When argument mode is not valid

                          +
                          + +
                          +
                          + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + addOption() + + +

                          + + +

                          Adds an option.

                          + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + $shortcut + : string|array<string|int, mixed>|null + = null
                          +
                          +

                          The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                          +
                          + +
                          +
                          + $mode + : int|null + = null
                          +
                          +

                          The option mode: One of the InputOption::VALUE_* constants

                          +
                          + +
                          +
                          + $description + : string + = ''
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          +

                          The default value (must be null for InputOption::VALUE_NONE)

                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + +

                          If option mode is invalid or incompatible

                          +
                          + +
                          +
                          + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + addUsage() + + +

                          + + +

                          Add a command usage example, it'll be prefixed with the command name.

                          + + + public + addUsage(string $usage) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $usage + : string +
                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + argument() + + +

                          + + +

                          Returns the argument value for a given argument name.

                          + + + public + argument(string $name) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + arguments() + + +

                          + + +

                          Returns all the given arguments merged with the default values.

                          + + + public + arguments() : mixed + +
                          +
                          + + + + + + + + +
                          +
                          +

                          + ask() + + +

                          + + +

                          Ask a question

                          + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + askMultiline() + + +

                          + + +

                          Ask a question

                          + + + public + askMultiline(string $question) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + askRaw() + + +

                          + + +

                          Ask a question

                          + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + autoComplete() + + +

                          + + +

                          Ask a question with auto completion

                          + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + $potentialAnswers + : array<string|int, mixed> +
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + choice() + + +

                          + + +

                          Ask a question with possible answers

                          + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + $choices + : array<string|int, mixed> +
                          +
                          + +
                          +
                          + $errorMessage + : string + = 'Invalid choice'
                          +
                          + +
                          +
                          + $default + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + comment() + + +

                          + + +

                          Output some data as a comment

                          + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $messages + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          + +
                          +

                          + confirm() + + +

                          + + +

                          Prompt user for confirmation

                          + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : mixed +
                          +
                          + +
                          +
                          + $param + : mixed + = false
                          +
                          + +
                          +
                          + $regex + : mixed + = '/^y/i'
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + error() + + +

                          + + +

                          Output some data as a error

                          + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $messages + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + getAliases() + + +

                          + + +

                          Returns the aliases for the command.

                          + + + public + getAliases() : array<string|int, mixed> + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + array<string|int, mixed> +
                          + +
                          +
                          +

                          + getApplication() + + +

                          + + +

                          Gets the application instance for this command.

                          + + + public + getApplication() : Application|null + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + Application|null +
                          + +
                          +
                          +

                          + getDefaultDescription() + + +

                          + + + + + public + static getDefaultDescription() : string|null + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + string|null +
                          + +
                          +
                          +

                          + getDefaultName() + + +

                          + + + + + public + static getDefaultName() : string|null + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + string|null +
                          + +
                          +
                          +

                          + getDefinition() + + +

                          + + +

                          Gets the InputDefinition attached to this Command.

                          + + + public + getDefinition() : InputDefinition + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + InputDefinition +
                          + +
                          +
                          +

                          + getDescription() + + +

                          + + +

                          Returns the description for the command.

                          + + + public + getDescription() : string + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + string +
                          + +
                          +
                          +

                          + getHelp() + + +

                          + + +

                          Returns the help for the command.

                          + + + public + getHelp() : string + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + string +
                          + +
                          +
                          +

                          + getHelper() + + +

                          + + +

                          Gets a helper instance by name.

                          + + + public + getHelper(string $name) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + LogicException + +

                          if no HelperSet is defined

                          +
                          + +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + +

                          if the helper is not defined

                          +
                          + +
                          +
                          + + + + +
                          +
                          +

                          + getHelperSet() + + +

                          + + +

                          Gets the helper set.

                          + + + public + getHelperSet() : HelperSet|null + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + HelperSet|null +
                          + +
                          +
                          +

                          + getName() + + +

                          + + +

                          Returns the command name.

                          + + + public + getName() : string|null + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + string|null +
                          + +
                          +
                          +

                          + getNativeDefinition() + + +

                          + + +

                          Gets the InputDefinition to be used to create representations of this Command.

                          + + + public + getNativeDefinition() : InputDefinition + +
                          +
                          + +

                          Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                          +

                          This method is not part of public API and should not be used directly.

                          +
                          + + + + + + +
                          +
                          Return values
                          + InputDefinition +
                          + +
                          +
                          +

                          + getProcessedHelp() + + +

                          + + +

                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                          + + + public + getProcessedHelp() : string + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + string +
                          + +
                          +
                          +

                          + getSynopsis() + + +

                          + + +

                          Returns the synopsis for the command.

                          + + + public + getSynopsis([bool $short = false ]) : string + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $short + : bool + = false
                          +
                          +

                          Whether to show the short version of the synopsis (with options folded) or not

                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + string +
                          + +
                          +
                          +

                          + getUsages() + + +

                          + + +

                          Returns alternative usages of the command.

                          + + + public + getUsages() : array<string|int, mixed> + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + array<string|int, mixed> +
                          + +
                          +
                          +

                          + ignoreValidationErrors() + + +

                          + + +

                          Ignores validation errors.

                          + + + public + ignoreValidationErrors() : mixed + +
                          +
                          + +

                          This is mainly useful for the help command.

                          +
                          + + + + + + + +
                          +
                          +

                          + info() + + +

                          + + +

                          Output some data as a info

                          + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $messages + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + input() + + +

                          + + +

                          Get an argument or return the input object

                          + + + public + input([string $data = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $data + : string + = null
                          +
                          +

                          The argument to return

                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + isEnabled() + + +

                          + + +

                          Checks whether the command is enabled or not in the current environment.

                          + + + public + isEnabled() : bool + +
                          +
                          + +

                          Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                          +
                          + + + + + + +
                          +
                          Return values
                          + bool +
                          + +
                          +
                          +

                          + isHidden() + + +

                          + + + + + public + isHidden() : bool + +
                          +
                          + + + + + + + +
                          +
                          Return values
                          + bool + — +

                          whether the command should be publicly shown or not

                          +
                          + +
                          + +
                          +
                          + + + +

                          Output some data as a link

                          + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $link + : mixed +
                          +
                          + +
                          +
                          + $display + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + multiChoice() + + +

                          + + +

                          Ask a question with possible answers + multiple choice

                          + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + $choices + : array<string|int, mixed> +
                          +
                          + +
                          +
                          + $errorMessage + : string + = 'Invalid choice'
                          +
                          + +
                          +
                          + $default + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + option() + + +

                          + + +

                          Get an input option

                          + + + public + option(string $name) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + options() + + +

                          + + +

                          Get all input options

                          + + + public + options(string $name) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + output() + + +

                          + + +

                          Output data or return the output object

                          + + + public + output([string $data = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $data + : string + = null
                          +
                          +

                          The argument to return

                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + question() + + +

                          + + +

                          Output some data as a question

                          + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $messages + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + run() + + +

                          + + +

                          Runs the command.

                          + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                          +
                          + +

                          The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                          +
                          + +
                          Parameters
                          +
                          +
                          + $input + : InputInterface +
                          +
                          + +
                          +
                          + $output + : OutputInterface +
                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + Exception + +

                          When binding input fails. Bypass this by calling .

                          +
                          + +
                          +
                          + see +
                          +
                          + setCode() + + +
                          +
                          + see +
                          +
                          + execute() + + +
                          +
                          + + + +
                          +
                          Return values
                          + int + — +

                          The command exit code

                          +
                          + +
                          + +
                          +
                          +

                          + runProcess() + + +

                          + + +

                          Run a new cli process

                          + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $process + : array<string|int, mixed> +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + secret() + + +

                          + + +

                          Prompt user for input but hide keystrokes

                          + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $question + : string +
                          +
                          + +
                          +
                          + $useFallback + : bool + = false
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + setAliases() + + +

                          + + +

                          Sets the aliases for the command.

                          + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $aliases + : array<string|int, string> +
                          +
                          +

                          An array of aliases for the command

                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + +

                          When an alias is invalid

                          +
                          + +
                          +
                          + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setApplication() + + +

                          + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $application + : Application|null + = null
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + setArgument() + + +

                          + + +

                          Add a new argument

                          + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : mixed +
                          +
                          + +
                          +
                          + $mode + : mixed + = null
                          +
                          + +
                          +
                          + $description + : mixed + = ''
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + setCode() + + +

                          + + +

                          Sets the code to execute when running this command.

                          + + + public + setCode(callable $code) : $this + +
                          +
                          + +

                          If this method is used, it overrides the code defined +in the execute() method.

                          +
                          + +
                          Parameters
                          +
                          +
                          + $code + : callable +
                          +
                          +

                          A callable(InputInterface $input, OutputInterface $output)

                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + + +
                          +
                          + see +
                          +
                          + execute() + + +
                          +
                          + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setDefinition() + + +

                          + + +

                          Sets an array of argument and option instances.

                          + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $definition + : array<string|int, mixed>|InputDefinition +
                          +
                          +

                          An array of argument and option instances or a definition instance

                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setDescription() + + +

                          + + +

                          Sets the description for the command.

                          + + + public + setDescription(string $description) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $description + : string +
                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setHelp() + + +

                          + + +

                          Sets the help for the command.

                          + + + public + setHelp(string $help) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $help + : string +
                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setHelperSet() + + +

                          + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $helperSet + : HelperSet +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + setHidden() + + +

                          + + + + + public + setHidden(bool $hidden) : $this + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $hidden + : bool +
                          +
                          +

                          Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + final +
                          +
                          + +

                          since Symfony 5.1

                          +
                          + +
                          +
                          + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setName() + + +

                          + + +

                          Sets the name of the command.

                          + + + public + setName(string $name) : $this + +
                          +
                          + +

                          This method can set both the namespace and the name if +you separate them by a colon (:)

                          +
                          $command->setName('foo:bar');
                          +
                          +
                          + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + +

                          When the name is invalid

                          +
                          + +
                          +
                          + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + setOption() + + +

                          + + +

                          Add a new option

                          + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $name + : mixed +
                          +
                          + +
                          +
                          + $shortcut + : mixed + = null
                          +
                          + +
                          +
                          + $mode + : mixed + = null
                          +
                          + +
                          +
                          + $description + : mixed + = ''
                          +
                          + +
                          +
                          + $default + : mixed + = null
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + setProcessTitle() + + +

                          + + +

                          Sets the process title of the command.

                          + + + public + setProcessTitle(string $title) : $this + +
                          +
                          + +

                          This feature should be used only when creating a long process command, +like a daemon.

                          +
                          + +
                          Parameters
                          +
                          +
                          + $title + : string +
                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + $this +
                          + +
                          +
                          +

                          + write() + + +

                          + + +

                          Output some data

                          + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $messages + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + writeln() + + +

                          + + +

                          Output some data

                          + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                          +
                          + + +
                          Parameters
                          +
                          +
                          + $messages + : mixed +
                          +
                          + +
                          +
                          + $options + : mixed + = 0
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + config() + + +

                          + + + + + protected + config() : mixed + +
                          +
                          + + + + + + + + +
                          +
                          +

                          + configure() + + +

                          + + +

                          Configures the current command.

                          + + + protected + configure() : mixed + +
                          +
                          + + + + + + + + +
                          +
                          +

                          + execute() + + +

                          + + +

                          Executes the current command.

                          + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                          +
                          + +

                          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                          +
                          + +
                          Parameters
                          +
                          +
                          + $input + : InputInterface +
                          +
                          + +
                          +
                          + $output + : OutputInterface +
                          +
                          + +
                          +
                          + + + + + +
                          +
                          Return values
                          + int + — +

                          0 if everything went fine, or an exit code

                          +
                          + +
                          + +
                          +
                          +

                          + handle() + + +

                          + + +

                          Executes the current command.

                          + + + protected + handle() : int + +
                          +
                          + +

                          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                          +
                          + + + + + + +
                          +
                          Return values
                          + int + — +

                          0 if everything went fine, or an exit code

                          +
                          + +
                          + +
                          +
                          +

                          + initialize() + + +

                          + + +

                          Initializes the command after the input has been bound and before the input +is validated.

                          + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                          +
                          + +

                          This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                          +
                          + +
                          Parameters
                          +
                          +
                          + $input + : InputInterface +
                          +
                          + +
                          +
                          + $output + : OutputInterface +
                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + see +
                          +
                          + InputInterface::bind() + + +
                          +
                          + see +
                          +
                          + InputInterface::validate() + + +
                          +
                          + + + + +
                          +
                          +

                          + interact() + + +

                          + + +

                          Interacts with the user.

                          + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                          +
                          + +

                          This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                          +
                          + +
                          Parameters
                          +
                          +
                          + $input + : InputInterface +
                          +
                          + +
                          +
                          + $output + : OutputInterface +
                          +
                          + +
                          +
                          + + + + + + +
                          +
                          +

                          + validateName() + + +

                          + + +

                          Validates a command name.

                          + + + private + validateName(string $name) : mixed + +
                          +
                          + +

                          It must be non-empty and parts can optionally be separated by ":".

                          +
                          + +
                          Parameters
                          +
                          +
                          + $name + : string +
                          +
                          + +
                          +
                          + + +
                          + Tags + + +
                          +
                          +
                          + throws +
                          +
                          + InvalidArgumentException + +

                          When the name is invalid

                          +
                          + +
                          +
                          + + + + +
                          +
                          + +
                          +
                          +
                          +
                          +
                          
                          +        
                          + +
                          +
                          + + + +
                          +
                          +
                          + +
                          + On this page + + +
                          + +
                          +
                          +
                          +
                          +
                          +

                          Search results

                          + +
                          +
                          +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-EnvGenerateCommand.html b/src/public/api/classes/Aloe-Command-EnvGenerateCommand.html new file mode 100644 index 00000000..cc5be410 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-EnvGenerateCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                            +

                            Leaf PHP

                            + + + + + +
                            + +
                            +
                            + + + + +
                            +
                            + + +
                            +

                            + EnvGenerateCommand + + + extends Command + + +
                            + in package + +
                            + + +

                            + +
                            + + +
                            + + + +

                            Base class for Aloe Commands.

                            + + + + + + + + + +

                            + Table of Contents + + +

                            + + + + + + + +

                            + Constants + + +

                            +
                            +
                            + FAILURE + +  = 1 +
                            + +
                            + INVALID + +  = 2 +
                            + +
                            + SUCCESS + +  = 0 +
                            + +
                            + + +

                            + Properties + + +

                            +
                            +
                            + $description + +  : mixed +
                            +
                            Description for command
                            + +
                            + $help + +  : mixed +
                            +
                            Help for command
                            + +
                            + $defaultDescription + +  : string|null +
                            + +
                            + $defaultName + +  : string|null +
                            + +
                            + $input + +  : InputInterface +
                            +
                            The input object
                            + +
                            + $output + +  : OutputInterface +
                            +
                            The output object
                            + +
                            + $aliases + +  : mixed +
                            + +
                            + $application + +  : mixed +
                            + +
                            + $code + +  : mixed +
                            + +
                            + $definition + +  : mixed +
                            + +
                            + $fullDefinition + +  : mixed +
                            + +
                            + $helperSet + +  : mixed +
                            + +
                            + $hidden + +  : mixed +
                            + +
                            + $ignoreValidationErrors + +  : mixed +
                            + +
                            + $name + +  : mixed +
                            +
                            The name of command to run in console
                            + +
                            + $processTitle + +  : mixed +
                            + +
                            + $synopsis + +  : mixed +
                            + +
                            + $usages + +  : mixed +
                            + +
                            + +

                            + Methods + + +

                            +
                            +
                            + __construct() + +  : mixed +
                            + +
                            + addArgument() + +  : $this +
                            +
                            Adds an argument.
                            + +
                            + addOption() + +  : $this +
                            +
                            Adds an option.
                            + +
                            + addUsage() + +  : $this +
                            +
                            Add a command usage example, it'll be prefixed with the command name.
                            + +
                            + argument() + +  : mixed +
                            +
                            Returns the argument value for a given argument name.
                            + +
                            + arguments() + +  : mixed +
                            +
                            Returns all the given arguments merged with the default values.
                            + +
                            + ask() + +  : mixed +
                            +
                            Ask a question
                            + +
                            + askMultiline() + +  : mixed +
                            +
                            Ask a question
                            + +
                            + askRaw() + +  : mixed +
                            +
                            Ask a question
                            + +
                            + autoComplete() + +  : mixed +
                            +
                            Ask a question with auto completion
                            + +
                            + choice() + +  : mixed +
                            +
                            Ask a question with possible answers
                            + +
                            + comment() + +  : mixed +
                            +
                            Output some data as a comment
                            + +
                            + complete() + +  : void +
                            +
                            Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                            + +
                            + confirm() + +  : mixed +
                            +
                            Prompt user for confirmation
                            + +
                            + error() + +  : mixed +
                            +
                            Output some data as a error
                            + +
                            + getAliases() + +  : array<string|int, mixed> +
                            +
                            Returns the aliases for the command.
                            + +
                            + getApplication() + +  : Application|null +
                            +
                            Gets the application instance for this command.
                            + +
                            + getDefaultDescription() + +  : string|null +
                            + +
                            + getDefaultName() + +  : string|null +
                            + +
                            + getDefinition() + +  : InputDefinition +
                            +
                            Gets the InputDefinition attached to this Command.
                            + +
                            + getDescription() + +  : string +
                            +
                            Returns the description for the command.
                            + +
                            + getHelp() + +  : string +
                            +
                            Returns the help for the command.
                            + +
                            + getHelper() + +  : mixed +
                            +
                            Gets a helper instance by name.
                            + +
                            + getHelperSet() + +  : HelperSet|null +
                            +
                            Gets the helper set.
                            + +
                            + getName() + +  : string|null +
                            +
                            Returns the command name.
                            + +
                            + getNativeDefinition() + +  : InputDefinition +
                            +
                            Gets the InputDefinition to be used to create representations of this Command.
                            + +
                            + getProcessedHelp() + +  : string +
                            +
                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                            + +
                            + getSynopsis() + +  : string +
                            +
                            Returns the synopsis for the command.
                            + +
                            + getUsages() + +  : array<string|int, mixed> +
                            +
                            Returns alternative usages of the command.
                            + +
                            + ignoreValidationErrors() + +  : mixed +
                            +
                            Ignores validation errors.
                            + +
                            + info() + +  : mixed +
                            +
                            Output some data as a info
                            + +
                            + input() + +  : mixed +
                            +
                            Get an argument or return the input object
                            + +
                            + isEnabled() + +  : bool +
                            +
                            Checks whether the command is enabled or not in the current environment.
                            + +
                            + isHidden() + +  : bool +
                            + +
                            + link() + +  : mixed +
                            +
                            Output some data as a link
                            + +
                            + multiChoice() + +  : mixed +
                            +
                            Ask a question with possible answers + multiple choice
                            + +
                            + option() + +  : mixed +
                            +
                            Get an input option
                            + +
                            + options() + +  : mixed +
                            +
                            Get all input options
                            + +
                            + output() + +  : mixed +
                            +
                            Output data or return the output object
                            + +
                            + question() + +  : mixed +
                            +
                            Output some data as a question
                            + +
                            + run() + +  : int +
                            +
                            Runs the command.
                            + +
                            + runProcess() + +  : mixed +
                            +
                            Run a new cli process
                            + +
                            + secret() + +  : mixed +
                            +
                            Prompt user for input but hide keystrokes
                            + +
                            + setAliases() + +  : $this +
                            +
                            Sets the aliases for the command.
                            + +
                            + setApplication() + +  : mixed +
                            + +
                            + setArgument() + +  : mixed +
                            +
                            Add a new argument
                            + +
                            + setCode() + +  : $this +
                            +
                            Sets the code to execute when running this command.
                            + +
                            + setDefinition() + +  : $this +
                            +
                            Sets an array of argument and option instances.
                            + +
                            + setDescription() + +  : $this +
                            +
                            Sets the description for the command.
                            + +
                            + setHelp() + +  : $this +
                            +
                            Sets the help for the command.
                            + +
                            + setHelperSet() + +  : mixed +
                            + +
                            + setHidden() + +  : $this +
                            + +
                            + setName() + +  : $this +
                            +
                            Sets the name of the command.
                            + +
                            + setOption() + +  : mixed +
                            +
                            Add a new option
                            + +
                            + setProcessTitle() + +  : $this +
                            +
                            Sets the process title of the command.
                            + +
                            + write() + +  : mixed +
                            +
                            Output some data
                            + +
                            + writeln() + +  : mixed +
                            +
                            Output some data
                            + +
                            + config() + +  : mixed +
                            + +
                            + configure() + +  : mixed +
                            +
                            Configures the current command.
                            + +
                            + execute() + +  : int +
                            +
                            Executes the current command.
                            + +
                            + handle() + +  : int +
                            +
                            Executes the current command.
                            + +
                            + initialize() + +  : mixed +
                            +
                            Initializes the command after the input has been bound and before the input +is validated.
                            + +
                            + interact() + +  : mixed +
                            +
                            Interacts with the user.
                            + +
                            + validateName() + +  : mixed +
                            +
                            Validates a command name.
                            + +
                            + + + + +
                            +

                            + Constants + + +

                            +
                            +

                            + FAILURE + + +

                            + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                            +
                            +

                            + INVALID + + +

                            + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                            +
                            +

                            + SUCCESS + + +

                            + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                            +
                            + + +
                            +

                            + Properties + + +

                            +
                            +

                            + $description + + + + +

                            + + +

                            Description for command

                            + + + + public + mixed + $description + = 'Generate .env file' + + + + + + + +
                            +
                            +

                            + $help + + + + +

                            + + +

                            Help for command

                            + + + + public + mixed + $help + = 'Generate .env file' + + + + + + + +
                            +
                            +

                            + $defaultDescription + + + + +

                            + + + + + + protected + static string|null + $defaultDescription + + + +

                            The default command description

                            +
                            + + + + + +
                            +
                            +

                            + $defaultName + + + + +

                            + + + + + + protected + static string|null + $defaultName + = 'env:generate' + + +

                            The default command name

                            +
                            + + + + + +
                            +
                            +

                            + $input + + + + +

                            + + +

                            The input object

                            + + + + protected + InputInterface + $input + + + + + + + + +
                            +
                            +

                            + $output + + + + +

                            + + +

                            The output object

                            + + + + protected + OutputInterface + $output + + + + + + + + +
                            +
                            +

                            + $aliases + + + + +

                            + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                            +
                            +

                            + $application + + + + +

                            + + + + + + private + mixed + $application + + + + + + + + +
                            +
                            +

                            + $code + + + + +

                            + + + + + + private + mixed + $code + + + + + + + + +
                            +
                            +

                            + $definition + + + + +

                            + + + + + + private + mixed + $definition + + + + + + + + +
                            +
                            +

                            + $fullDefinition + + + + +

                            + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                            +
                            +

                            + $helperSet + + + + +

                            + + + + + + private + mixed + $helperSet + + + + + + + + +
                            +
                            +

                            + $hidden + + + + +

                            + + + + + + private + mixed + $hidden + = false + + + + + + + +
                            +
                            +

                            + $ignoreValidationErrors + + + + +

                            + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                            +
                            +

                            + $name + + + + +

                            + + +

                            The name of command to run in console

                            + + + + private + mixed + $name + + + + + + + + +
                            +
                            +

                            + $processTitle + + + + +

                            + + + + + + private + mixed + $processTitle + + + + + + + + +
                            +
                            +

                            + $synopsis + + + + +

                            + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                            +
                            +

                            + $usages + + + + +

                            + + + + + + private + mixed + $usages + = [] + + + + + + + +
                            +
                            + +
                            +

                            + Methods + + +

                            +
                            +

                            + __construct() + + +

                            + + + + + public + __construct([string|null $name = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string|null + = null
                            +
                            +

                            The name of the command; passing null means it must be set in configure()

                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + LogicException + +

                            When the command name is empty

                            +
                            + +
                            +
                            + + + + +
                            +
                            +

                            + addArgument() + + +

                            + + +

                            Adds an argument.

                            + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + $mode + : int|null + = null
                            +
                            +

                            The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                            +
                            + +
                            +
                            + $description + : string + = ''
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            +

                            The default value (for InputArgument::OPTIONAL mode only)

                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + +

                            When argument mode is not valid

                            +
                            + +
                            +
                            + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + addOption() + + +

                            + + +

                            Adds an option.

                            + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + $shortcut + : string|array<string|int, mixed>|null + = null
                            +
                            +

                            The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                            +
                            + +
                            +
                            + $mode + : int|null + = null
                            +
                            +

                            The option mode: One of the InputOption::VALUE_* constants

                            +
                            + +
                            +
                            + $description + : string + = ''
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            +

                            The default value (must be null for InputOption::VALUE_NONE)

                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + +

                            If option mode is invalid or incompatible

                            +
                            + +
                            +
                            + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + addUsage() + + +

                            + + +

                            Add a command usage example, it'll be prefixed with the command name.

                            + + + public + addUsage(string $usage) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $usage + : string +
                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + argument() + + +

                            + + +

                            Returns the argument value for a given argument name.

                            + + + public + argument(string $name) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + arguments() + + +

                            + + +

                            Returns all the given arguments merged with the default values.

                            + + + public + arguments() : mixed + +
                            +
                            + + + + + + + + +
                            +
                            +

                            + ask() + + +

                            + + +

                            Ask a question

                            + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + askMultiline() + + +

                            + + +

                            Ask a question

                            + + + public + askMultiline(string $question) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + askRaw() + + +

                            + + +

                            Ask a question

                            + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + autoComplete() + + +

                            + + +

                            Ask a question with auto completion

                            + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + $potentialAnswers + : array<string|int, mixed> +
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + choice() + + +

                            + + +

                            Ask a question with possible answers

                            + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + $choices + : array<string|int, mixed> +
                            +
                            + +
                            +
                            + $errorMessage + : string + = 'Invalid choice'
                            +
                            + +
                            +
                            + $default + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + comment() + + +

                            + + +

                            Output some data as a comment

                            + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $messages + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            + +
                            +

                            + confirm() + + +

                            + + +

                            Prompt user for confirmation

                            + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : mixed +
                            +
                            + +
                            +
                            + $param + : mixed + = false
                            +
                            + +
                            +
                            + $regex + : mixed + = '/^y/i'
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + error() + + +

                            + + +

                            Output some data as a error

                            + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $messages + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + getAliases() + + +

                            + + +

                            Returns the aliases for the command.

                            + + + public + getAliases() : array<string|int, mixed> + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + array<string|int, mixed> +
                            + +
                            +
                            +

                            + getApplication() + + +

                            + + +

                            Gets the application instance for this command.

                            + + + public + getApplication() : Application|null + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + Application|null +
                            + +
                            +
                            +

                            + getDefaultDescription() + + +

                            + + + + + public + static getDefaultDescription() : string|null + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + string|null +
                            + +
                            +
                            +

                            + getDefaultName() + + +

                            + + + + + public + static getDefaultName() : string|null + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + string|null +
                            + +
                            +
                            +

                            + getDefinition() + + +

                            + + +

                            Gets the InputDefinition attached to this Command.

                            + + + public + getDefinition() : InputDefinition + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + InputDefinition +
                            + +
                            +
                            +

                            + getDescription() + + +

                            + + +

                            Returns the description for the command.

                            + + + public + getDescription() : string + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + string +
                            + +
                            +
                            +

                            + getHelp() + + +

                            + + +

                            Returns the help for the command.

                            + + + public + getHelp() : string + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + string +
                            + +
                            +
                            +

                            + getHelper() + + +

                            + + +

                            Gets a helper instance by name.

                            + + + public + getHelper(string $name) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + LogicException + +

                            if no HelperSet is defined

                            +
                            + +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + +

                            if the helper is not defined

                            +
                            + +
                            +
                            + + + + +
                            +
                            +

                            + getHelperSet() + + +

                            + + +

                            Gets the helper set.

                            + + + public + getHelperSet() : HelperSet|null + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + HelperSet|null +
                            + +
                            +
                            +

                            + getName() + + +

                            + + +

                            Returns the command name.

                            + + + public + getName() : string|null + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + string|null +
                            + +
                            +
                            +

                            + getNativeDefinition() + + +

                            + + +

                            Gets the InputDefinition to be used to create representations of this Command.

                            + + + public + getNativeDefinition() : InputDefinition + +
                            +
                            + +

                            Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                            +

                            This method is not part of public API and should not be used directly.

                            +
                            + + + + + + +
                            +
                            Return values
                            + InputDefinition +
                            + +
                            +
                            +

                            + getProcessedHelp() + + +

                            + + +

                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                            + + + public + getProcessedHelp() : string + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + string +
                            + +
                            +
                            +

                            + getSynopsis() + + +

                            + + +

                            Returns the synopsis for the command.

                            + + + public + getSynopsis([bool $short = false ]) : string + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $short + : bool + = false
                            +
                            +

                            Whether to show the short version of the synopsis (with options folded) or not

                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + string +
                            + +
                            +
                            +

                            + getUsages() + + +

                            + + +

                            Returns alternative usages of the command.

                            + + + public + getUsages() : array<string|int, mixed> + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + array<string|int, mixed> +
                            + +
                            +
                            +

                            + ignoreValidationErrors() + + +

                            + + +

                            Ignores validation errors.

                            + + + public + ignoreValidationErrors() : mixed + +
                            +
                            + +

                            This is mainly useful for the help command.

                            +
                            + + + + + + + +
                            +
                            +

                            + info() + + +

                            + + +

                            Output some data as a info

                            + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $messages + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + input() + + +

                            + + +

                            Get an argument or return the input object

                            + + + public + input([string $data = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $data + : string + = null
                            +
                            +

                            The argument to return

                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + isEnabled() + + +

                            + + +

                            Checks whether the command is enabled or not in the current environment.

                            + + + public + isEnabled() : bool + +
                            +
                            + +

                            Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                            +
                            + + + + + + +
                            +
                            Return values
                            + bool +
                            + +
                            +
                            +

                            + isHidden() + + +

                            + + + + + public + isHidden() : bool + +
                            +
                            + + + + + + + +
                            +
                            Return values
                            + bool + — +

                            whether the command should be publicly shown or not

                            +
                            + +
                            + +
                            +
                            + + + +

                            Output some data as a link

                            + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $link + : mixed +
                            +
                            + +
                            +
                            + $display + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + multiChoice() + + +

                            + + +

                            Ask a question with possible answers + multiple choice

                            + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + $choices + : array<string|int, mixed> +
                            +
                            + +
                            +
                            + $errorMessage + : string + = 'Invalid choice'
                            +
                            + +
                            +
                            + $default + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + option() + + +

                            + + +

                            Get an input option

                            + + + public + option(string $name) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + options() + + +

                            + + +

                            Get all input options

                            + + + public + options(string $name) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + output() + + +

                            + + +

                            Output data or return the output object

                            + + + public + output([string $data = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $data + : string + = null
                            +
                            +

                            The argument to return

                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + question() + + +

                            + + +

                            Output some data as a question

                            + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $messages + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + run() + + +

                            + + +

                            Runs the command.

                            + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                            +
                            + +

                            The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                            +
                            + +
                            Parameters
                            +
                            +
                            + $input + : InputInterface +
                            +
                            + +
                            +
                            + $output + : OutputInterface +
                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + Exception + +

                            When binding input fails. Bypass this by calling .

                            +
                            + +
                            +
                            + see +
                            +
                            + setCode() + + +
                            +
                            + see +
                            +
                            + execute() + + +
                            +
                            + + + +
                            +
                            Return values
                            + int + — +

                            The command exit code

                            +
                            + +
                            + +
                            +
                            +

                            + runProcess() + + +

                            + + +

                            Run a new cli process

                            + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $process + : array<string|int, mixed> +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + secret() + + +

                            + + +

                            Prompt user for input but hide keystrokes

                            + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $question + : string +
                            +
                            + +
                            +
                            + $useFallback + : bool + = false
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + setAliases() + + +

                            + + +

                            Sets the aliases for the command.

                            + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $aliases + : array<string|int, string> +
                            +
                            +

                            An array of aliases for the command

                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + +

                            When an alias is invalid

                            +
                            + +
                            +
                            + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setApplication() + + +

                            + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $application + : Application|null + = null
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + setArgument() + + +

                            + + +

                            Add a new argument

                            + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : mixed +
                            +
                            + +
                            +
                            + $mode + : mixed + = null
                            +
                            + +
                            +
                            + $description + : mixed + = ''
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + setCode() + + +

                            + + +

                            Sets the code to execute when running this command.

                            + + + public + setCode(callable $code) : $this + +
                            +
                            + +

                            If this method is used, it overrides the code defined +in the execute() method.

                            +
                            + +
                            Parameters
                            +
                            +
                            + $code + : callable +
                            +
                            +

                            A callable(InputInterface $input, OutputInterface $output)

                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + + +
                            +
                            + see +
                            +
                            + execute() + + +
                            +
                            + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setDefinition() + + +

                            + + +

                            Sets an array of argument and option instances.

                            + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $definition + : array<string|int, mixed>|InputDefinition +
                            +
                            +

                            An array of argument and option instances or a definition instance

                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setDescription() + + +

                            + + +

                            Sets the description for the command.

                            + + + public + setDescription(string $description) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $description + : string +
                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setHelp() + + +

                            + + +

                            Sets the help for the command.

                            + + + public + setHelp(string $help) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $help + : string +
                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setHelperSet() + + +

                            + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $helperSet + : HelperSet +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + setHidden() + + +

                            + + + + + public + setHidden(bool $hidden) : $this + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $hidden + : bool +
                            +
                            +

                            Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + final +
                            +
                            + +

                            since Symfony 5.1

                            +
                            + +
                            +
                            + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setName() + + +

                            + + +

                            Sets the name of the command.

                            + + + public + setName(string $name) : $this + +
                            +
                            + +

                            This method can set both the namespace and the name if +you separate them by a colon (:)

                            +
                            $command->setName('foo:bar');
                            +
                            +
                            + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + +

                            When the name is invalid

                            +
                            + +
                            +
                            + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + setOption() + + +

                            + + +

                            Add a new option

                            + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $name + : mixed +
                            +
                            + +
                            +
                            + $shortcut + : mixed + = null
                            +
                            + +
                            +
                            + $mode + : mixed + = null
                            +
                            + +
                            +
                            + $description + : mixed + = ''
                            +
                            + +
                            +
                            + $default + : mixed + = null
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + setProcessTitle() + + +

                            + + +

                            Sets the process title of the command.

                            + + + public + setProcessTitle(string $title) : $this + +
                            +
                            + +

                            This feature should be used only when creating a long process command, +like a daemon.

                            +
                            + +
                            Parameters
                            +
                            +
                            + $title + : string +
                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + $this +
                            + +
                            +
                            +

                            + write() + + +

                            + + +

                            Output some data

                            + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $messages + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + writeln() + + +

                            + + +

                            Output some data

                            + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                            +
                            + + +
                            Parameters
                            +
                            +
                            + $messages + : mixed +
                            +
                            + +
                            +
                            + $options + : mixed + = 0
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + config() + + +

                            + + + + + protected + config() : mixed + +
                            +
                            + + + + + + + + +
                            +
                            +

                            + configure() + + +

                            + + +

                            Configures the current command.

                            + + + protected + configure() : mixed + +
                            +
                            + + + + + + + + +
                            +
                            +

                            + execute() + + +

                            + + +

                            Executes the current command.

                            + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                            +
                            + +

                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                            +
                            + +
                            Parameters
                            +
                            +
                            + $input + : InputInterface +
                            +
                            + +
                            +
                            + $output + : OutputInterface +
                            +
                            + +
                            +
                            + + + + + +
                            +
                            Return values
                            + int + — +

                            0 if everything went fine, or an exit code

                            +
                            + +
                            + +
                            +
                            +

                            + handle() + + +

                            + + +

                            Executes the current command.

                            + + + protected + handle() : int + +
                            +
                            + +

                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                            +
                            + + + + + + +
                            +
                            Return values
                            + int + — +

                            0 if everything went fine, or an exit code

                            +
                            + +
                            + +
                            +
                            +

                            + initialize() + + +

                            + + +

                            Initializes the command after the input has been bound and before the input +is validated.

                            + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                            +
                            + +

                            This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                            +
                            + +
                            Parameters
                            +
                            +
                            + $input + : InputInterface +
                            +
                            + +
                            +
                            + $output + : OutputInterface +
                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + see +
                            +
                            + InputInterface::bind() + + +
                            +
                            + see +
                            +
                            + InputInterface::validate() + + +
                            +
                            + + + + +
                            +
                            +

                            + interact() + + +

                            + + +

                            Interacts with the user.

                            + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                            +
                            + +

                            This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                            +
                            + +
                            Parameters
                            +
                            +
                            + $input + : InputInterface +
                            +
                            + +
                            +
                            + $output + : OutputInterface +
                            +
                            + +
                            +
                            + + + + + + +
                            +
                            +

                            + validateName() + + +

                            + + +

                            Validates a command name.

                            + + + private + validateName(string $name) : mixed + +
                            +
                            + +

                            It must be non-empty and parts can optionally be separated by ":".

                            +
                            + +
                            Parameters
                            +
                            +
                            + $name + : string +
                            +
                            + +
                            +
                            + + +
                            + Tags + + +
                            +
                            +
                            + throws +
                            +
                            + InvalidArgumentException + +

                            When the name is invalid

                            +
                            + +
                            +
                            + + + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            
                            +        
                            + +
                            +
                            + + + +
                            +
                            +
                            + +
                            + On this page + + +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Search results

                            + +
                            +
                            +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateConsoleCommand.html b/src/public/api/classes/Aloe-Command-GenerateConsoleCommand.html new file mode 100644 index 00000000..3add1a23 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateConsoleCommand.html @@ -0,0 +1,5273 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                              +

                              Leaf PHP

                              + + + + + +
                              + +
                              +
                              + + + + +
                              +
                              + + +
                              +

                              + GenerateConsoleCommand + + + extends Command + + +
                              + in package + +
                              + + +

                              + +
                              + + +
                              + + + +

                              Base class for Aloe Commands.

                              + + + + + + + + + +

                              + Table of Contents + + +

                              + + + + + + + +

                              + Constants + + +

                              +
                              +
                              + FAILURE + +  = 1 +
                              + +
                              + INVALID + +  = 2 +
                              + +
                              + SUCCESS + +  = 0 +
                              + +
                              + + +

                              + Properties + + +

                              +
                              +
                              + $description + +  : mixed +
                              +
                              Description for command
                              + +
                              + $help + +  : mixed +
                              +
                              Help for command
                              + +
                              + $defaultDescription + +  : string|null +
                              + +
                              + $defaultName + +  : string|null +
                              + +
                              + $input + +  : InputInterface +
                              +
                              The input object
                              + +
                              + $output + +  : OutputInterface +
                              +
                              The output object
                              + +
                              + $aliases + +  : mixed +
                              + +
                              + $application + +  : mixed +
                              + +
                              + $code + +  : mixed +
                              + +
                              + $definition + +  : mixed +
                              + +
                              + $fullDefinition + +  : mixed +
                              + +
                              + $helperSet + +  : mixed +
                              + +
                              + $hidden + +  : mixed +
                              + +
                              + $ignoreValidationErrors + +  : mixed +
                              + +
                              + $name + +  : mixed +
                              +
                              The name of command to run in console
                              + +
                              + $processTitle + +  : mixed +
                              + +
                              + $synopsis + +  : mixed +
                              + +
                              + $usages + +  : mixed +
                              + +
                              + +

                              + Methods + + +

                              +
                              +
                              + __construct() + +  : mixed +
                              + +
                              + addArgument() + +  : $this +
                              +
                              Adds an argument.
                              + +
                              + addOption() + +  : $this +
                              +
                              Adds an option.
                              + +
                              + addUsage() + +  : $this +
                              +
                              Add a command usage example, it'll be prefixed with the command name.
                              + +
                              + argument() + +  : mixed +
                              +
                              Returns the argument value for a given argument name.
                              + +
                              + arguments() + +  : mixed +
                              +
                              Returns all the given arguments merged with the default values.
                              + +
                              + ask() + +  : mixed +
                              +
                              Ask a question
                              + +
                              + askMultiline() + +  : mixed +
                              +
                              Ask a question
                              + +
                              + askRaw() + +  : mixed +
                              +
                              Ask a question
                              + +
                              + autoComplete() + +  : mixed +
                              +
                              Ask a question with auto completion
                              + +
                              + choice() + +  : mixed +
                              +
                              Ask a question with possible answers
                              + +
                              + comment() + +  : mixed +
                              +
                              Output some data as a comment
                              + +
                              + complete() + +  : void +
                              +
                              Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                              + +
                              + confirm() + +  : mixed +
                              +
                              Prompt user for confirmation
                              + +
                              + error() + +  : mixed +
                              +
                              Output some data as a error
                              + +
                              + getAliases() + +  : array<string|int, mixed> +
                              +
                              Returns the aliases for the command.
                              + +
                              + getApplication() + +  : Application|null +
                              +
                              Gets the application instance for this command.
                              + +
                              + getDefaultDescription() + +  : string|null +
                              + +
                              + getDefaultName() + +  : string|null +
                              + +
                              + getDefinition() + +  : InputDefinition +
                              +
                              Gets the InputDefinition attached to this Command.
                              + +
                              + getDescription() + +  : string +
                              +
                              Returns the description for the command.
                              + +
                              + getHelp() + +  : string +
                              +
                              Returns the help for the command.
                              + +
                              + getHelper() + +  : mixed +
                              +
                              Gets a helper instance by name.
                              + +
                              + getHelperSet() + +  : HelperSet|null +
                              +
                              Gets the helper set.
                              + +
                              + getName() + +  : string|null +
                              +
                              Returns the command name.
                              + +
                              + getNativeDefinition() + +  : InputDefinition +
                              +
                              Gets the InputDefinition to be used to create representations of this Command.
                              + +
                              + getProcessedHelp() + +  : string +
                              +
                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                              + +
                              + getSynopsis() + +  : string +
                              +
                              Returns the synopsis for the command.
                              + +
                              + getUsages() + +  : array<string|int, mixed> +
                              +
                              Returns alternative usages of the command.
                              + +
                              + ignoreValidationErrors() + +  : mixed +
                              +
                              Ignores validation errors.
                              + +
                              + info() + +  : mixed +
                              +
                              Output some data as a info
                              + +
                              + input() + +  : mixed +
                              +
                              Get an argument or return the input object
                              + +
                              + isEnabled() + +  : bool +
                              +
                              Checks whether the command is enabled or not in the current environment.
                              + +
                              + isHidden() + +  : bool +
                              + +
                              + link() + +  : mixed +
                              +
                              Output some data as a link
                              + +
                              + mapNames() + +  : mixed +
                              + +
                              + multiChoice() + +  : mixed +
                              +
                              Ask a question with possible answers + multiple choice
                              + +
                              + option() + +  : mixed +
                              +
                              Get an input option
                              + +
                              + options() + +  : mixed +
                              +
                              Get all input options
                              + +
                              + output() + +  : mixed +
                              +
                              Output data or return the output object
                              + +
                              + question() + +  : mixed +
                              +
                              Output some data as a question
                              + +
                              + run() + +  : int +
                              +
                              Runs the command.
                              + +
                              + runProcess() + +  : mixed +
                              +
                              Run a new cli process
                              + +
                              + secret() + +  : mixed +
                              +
                              Prompt user for input but hide keystrokes
                              + +
                              + setAliases() + +  : $this +
                              +
                              Sets the aliases for the command.
                              + +
                              + setApplication() + +  : mixed +
                              + +
                              + setArgument() + +  : mixed +
                              +
                              Add a new argument
                              + +
                              + setCode() + +  : $this +
                              +
                              Sets the code to execute when running this command.
                              + +
                              + setDefinition() + +  : $this +
                              +
                              Sets an array of argument and option instances.
                              + +
                              + setDescription() + +  : $this +
                              +
                              Sets the description for the command.
                              + +
                              + setHelp() + +  : $this +
                              +
                              Sets the help for the command.
                              + +
                              + setHelperSet() + +  : mixed +
                              + +
                              + setHidden() + +  : $this +
                              + +
                              + setName() + +  : $this +
                              +
                              Sets the name of the command.
                              + +
                              + setOption() + +  : mixed +
                              +
                              Add a new option
                              + +
                              + setProcessTitle() + +  : $this +
                              +
                              Sets the process title of the command.
                              + +
                              + write() + +  : mixed +
                              +
                              Output some data
                              + +
                              + writeln() + +  : mixed +
                              +
                              Output some data
                              + +
                              + config() + +  : mixed +
                              + +
                              + configure() + +  : mixed +
                              +
                              Configures the current command.
                              + +
                              + execute() + +  : int +
                              +
                              Executes the current command.
                              + +
                              + handle() + +  : int +
                              +
                              Executes the current command.
                              + +
                              + initialize() + +  : mixed +
                              +
                              Initializes the command after the input has been bound and before the input +is validated.
                              + +
                              + interact() + +  : mixed +
                              +
                              Interacts with the user.
                              + +
                              + validateName() + +  : mixed +
                              +
                              Validates a command name.
                              + +
                              + + + + +
                              +

                              + Constants + + +

                              +
                              +

                              + FAILURE + + +

                              + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                              +
                              +

                              + INVALID + + +

                              + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                              +
                              +

                              + SUCCESS + + +

                              + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                              +
                              + + +
                              +

                              + Properties + + +

                              +
                              +

                              + $description + + + + +

                              + + +

                              Description for command

                              + + + + public + mixed + $description + = 'Create a new console command' + + + + + + + +
                              +
                              +

                              + $help + + + + +

                              + + +

                              Help for command

                              + + + + public + mixed + $help + = 'Create a custom aloe cli command' + + + + + + + +
                              +
                              +

                              + $defaultDescription + + + + +

                              + + + + + + protected + static string|null + $defaultDescription + + + +

                              The default command description

                              +
                              + + + + + +
                              +
                              +

                              + $defaultName + + + + +

                              + + + + + + protected + static string|null + $defaultName + = 'g:command' + + +

                              The default command name

                              +
                              + + + + + +
                              +
                              +

                              + $input + + + + +

                              + + +

                              The input object

                              + + + + protected + InputInterface + $input + + + + + + + + +
                              +
                              +

                              + $output + + + + +

                              + + +

                              The output object

                              + + + + protected + OutputInterface + $output + + + + + + + + +
                              +
                              +

                              + $aliases + + + + +

                              + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                              +
                              +

                              + $application + + + + +

                              + + + + + + private + mixed + $application + + + + + + + + +
                              +
                              +

                              + $code + + + + +

                              + + + + + + private + mixed + $code + + + + + + + + +
                              +
                              +

                              + $definition + + + + +

                              + + + + + + private + mixed + $definition + + + + + + + + +
                              +
                              +

                              + $fullDefinition + + + + +

                              + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                              +
                              +

                              + $helperSet + + + + +

                              + + + + + + private + mixed + $helperSet + + + + + + + + +
                              +
                              +

                              + $hidden + + + + +

                              + + + + + + private + mixed + $hidden + = false + + + + + + + +
                              +
                              +

                              + $ignoreValidationErrors + + + + +

                              + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                              +
                              +

                              + $name + + + + +

                              + + +

                              The name of command to run in console

                              + + + + private + mixed + $name + + + + + + + + +
                              +
                              +

                              + $processTitle + + + + +

                              + + + + + + private + mixed + $processTitle + + + + + + + + +
                              +
                              +

                              + $synopsis + + + + +

                              + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                              +
                              +

                              + $usages + + + + +

                              + + + + + + private + mixed + $usages + = [] + + + + + + + +
                              +
                              + +
                              +

                              + Methods + + +

                              +
                              +

                              + __construct() + + +

                              + + + + + public + __construct([string|null $name = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string|null + = null
                              +
                              +

                              The name of the command; passing null means it must be set in configure()

                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + LogicException + +

                              When the command name is empty

                              +
                              + +
                              +
                              + + + + +
                              +
                              +

                              + addArgument() + + +

                              + + +

                              Adds an argument.

                              + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + $mode + : int|null + = null
                              +
                              +

                              The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                              +
                              + +
                              +
                              + $description + : string + = ''
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              +

                              The default value (for InputArgument::OPTIONAL mode only)

                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + +

                              When argument mode is not valid

                              +
                              + +
                              +
                              + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + addOption() + + +

                              + + +

                              Adds an option.

                              + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + $shortcut + : string|array<string|int, mixed>|null + = null
                              +
                              +

                              The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                              +
                              + +
                              +
                              + $mode + : int|null + = null
                              +
                              +

                              The option mode: One of the InputOption::VALUE_* constants

                              +
                              + +
                              +
                              + $description + : string + = ''
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              +

                              The default value (must be null for InputOption::VALUE_NONE)

                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + +

                              If option mode is invalid or incompatible

                              +
                              + +
                              +
                              + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + addUsage() + + +

                              + + +

                              Add a command usage example, it'll be prefixed with the command name.

                              + + + public + addUsage(string $usage) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $usage + : string +
                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + argument() + + +

                              + + +

                              Returns the argument value for a given argument name.

                              + + + public + argument(string $name) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + arguments() + + +

                              + + +

                              Returns all the given arguments merged with the default values.

                              + + + public + arguments() : mixed + +
                              +
                              + + + + + + + + +
                              +
                              +

                              + ask() + + +

                              + + +

                              Ask a question

                              + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + askMultiline() + + +

                              + + +

                              Ask a question

                              + + + public + askMultiline(string $question) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + askRaw() + + +

                              + + +

                              Ask a question

                              + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + autoComplete() + + +

                              + + +

                              Ask a question with auto completion

                              + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + $potentialAnswers + : array<string|int, mixed> +
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + choice() + + +

                              + + +

                              Ask a question with possible answers

                              + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + $choices + : array<string|int, mixed> +
                              +
                              + +
                              +
                              + $errorMessage + : string + = 'Invalid choice'
                              +
                              + +
                              +
                              + $default + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + comment() + + +

                              + + +

                              Output some data as a comment

                              + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $messages + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              + +
                              +

                              + confirm() + + +

                              + + +

                              Prompt user for confirmation

                              + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : mixed +
                              +
                              + +
                              +
                              + $param + : mixed + = false
                              +
                              + +
                              +
                              + $regex + : mixed + = '/^y/i'
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + error() + + +

                              + + +

                              Output some data as a error

                              + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $messages + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + getAliases() + + +

                              + + +

                              Returns the aliases for the command.

                              + + + public + getAliases() : array<string|int, mixed> + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + array<string|int, mixed> +
                              + +
                              +
                              +

                              + getApplication() + + +

                              + + +

                              Gets the application instance for this command.

                              + + + public + getApplication() : Application|null + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + Application|null +
                              + +
                              +
                              +

                              + getDefaultDescription() + + +

                              + + + + + public + static getDefaultDescription() : string|null + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + string|null +
                              + +
                              +
                              +

                              + getDefaultName() + + +

                              + + + + + public + static getDefaultName() : string|null + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + string|null +
                              + +
                              +
                              +

                              + getDefinition() + + +

                              + + +

                              Gets the InputDefinition attached to this Command.

                              + + + public + getDefinition() : InputDefinition + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + InputDefinition +
                              + +
                              +
                              +

                              + getDescription() + + +

                              + + +

                              Returns the description for the command.

                              + + + public + getDescription() : string + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + string +
                              + +
                              +
                              +

                              + getHelp() + + +

                              + + +

                              Returns the help for the command.

                              + + + public + getHelp() : string + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + string +
                              + +
                              +
                              +

                              + getHelper() + + +

                              + + +

                              Gets a helper instance by name.

                              + + + public + getHelper(string $name) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + LogicException + +

                              if no HelperSet is defined

                              +
                              + +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + +

                              if the helper is not defined

                              +
                              + +
                              +
                              + + + + +
                              +
                              +

                              + getHelperSet() + + +

                              + + +

                              Gets the helper set.

                              + + + public + getHelperSet() : HelperSet|null + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + HelperSet|null +
                              + +
                              +
                              +

                              + getName() + + +

                              + + +

                              Returns the command name.

                              + + + public + getName() : string|null + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + string|null +
                              + +
                              +
                              +

                              + getNativeDefinition() + + +

                              + + +

                              Gets the InputDefinition to be used to create representations of this Command.

                              + + + public + getNativeDefinition() : InputDefinition + +
                              +
                              + +

                              Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                              +

                              This method is not part of public API and should not be used directly.

                              +
                              + + + + + + +
                              +
                              Return values
                              + InputDefinition +
                              + +
                              +
                              +

                              + getProcessedHelp() + + +

                              + + +

                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                              + + + public + getProcessedHelp() : string + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + string +
                              + +
                              +
                              +

                              + getSynopsis() + + +

                              + + +

                              Returns the synopsis for the command.

                              + + + public + getSynopsis([bool $short = false ]) : string + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $short + : bool + = false
                              +
                              +

                              Whether to show the short version of the synopsis (with options folded) or not

                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + string +
                              + +
                              +
                              +

                              + getUsages() + + +

                              + + +

                              Returns alternative usages of the command.

                              + + + public + getUsages() : array<string|int, mixed> + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + array<string|int, mixed> +
                              + +
                              +
                              +

                              + ignoreValidationErrors() + + +

                              + + +

                              Ignores validation errors.

                              + + + public + ignoreValidationErrors() : mixed + +
                              +
                              + +

                              This is mainly useful for the help command.

                              +
                              + + + + + + + +
                              +
                              +

                              + info() + + +

                              + + +

                              Output some data as a info

                              + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $messages + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + input() + + +

                              + + +

                              Get an argument or return the input object

                              + + + public + input([string $data = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $data + : string + = null
                              +
                              +

                              The argument to return

                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + isEnabled() + + +

                              + + +

                              Checks whether the command is enabled or not in the current environment.

                              + + + public + isEnabled() : bool + +
                              +
                              + +

                              Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                              +
                              + + + + + + +
                              +
                              Return values
                              + bool +
                              + +
                              +
                              +

                              + isHidden() + + +

                              + + + + + public + isHidden() : bool + +
                              +
                              + + + + + + + +
                              +
                              Return values
                              + bool + — +

                              whether the command should be publicly shown or not

                              +
                              + +
                              + +
                              +
                              + + + +

                              Output some data as a link

                              + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $link + : mixed +
                              +
                              + +
                              +
                              + $display + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + mapNames() + + +

                              + + + + + public + mapNames(mixed $command) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $command + : mixed +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + multiChoice() + + +

                              + + +

                              Ask a question with possible answers + multiple choice

                              + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + $choices + : array<string|int, mixed> +
                              +
                              + +
                              +
                              + $errorMessage + : string + = 'Invalid choice'
                              +
                              + +
                              +
                              + $default + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + option() + + +

                              + + +

                              Get an input option

                              + + + public + option(string $name) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + options() + + +

                              + + +

                              Get all input options

                              + + + public + options(string $name) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + output() + + +

                              + + +

                              Output data or return the output object

                              + + + public + output([string $data = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $data + : string + = null
                              +
                              +

                              The argument to return

                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + question() + + +

                              + + +

                              Output some data as a question

                              + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $messages + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + run() + + +

                              + + +

                              Runs the command.

                              + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                              +
                              + +

                              The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                              +
                              + +
                              Parameters
                              +
                              +
                              + $input + : InputInterface +
                              +
                              + +
                              +
                              + $output + : OutputInterface +
                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + Exception + +

                              When binding input fails. Bypass this by calling .

                              +
                              + +
                              +
                              + see +
                              +
                              + setCode() + + +
                              +
                              + see +
                              +
                              + execute() + + +
                              +
                              + + + +
                              +
                              Return values
                              + int + — +

                              The command exit code

                              +
                              + +
                              + +
                              +
                              +

                              + runProcess() + + +

                              + + +

                              Run a new cli process

                              + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $process + : array<string|int, mixed> +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + secret() + + +

                              + + +

                              Prompt user for input but hide keystrokes

                              + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $question + : string +
                              +
                              + +
                              +
                              + $useFallback + : bool + = false
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + setAliases() + + +

                              + + +

                              Sets the aliases for the command.

                              + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $aliases + : array<string|int, string> +
                              +
                              +

                              An array of aliases for the command

                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + +

                              When an alias is invalid

                              +
                              + +
                              +
                              + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setApplication() + + +

                              + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $application + : Application|null + = null
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + setArgument() + + +

                              + + +

                              Add a new argument

                              + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : mixed +
                              +
                              + +
                              +
                              + $mode + : mixed + = null
                              +
                              + +
                              +
                              + $description + : mixed + = ''
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + setCode() + + +

                              + + +

                              Sets the code to execute when running this command.

                              + + + public + setCode(callable $code) : $this + +
                              +
                              + +

                              If this method is used, it overrides the code defined +in the execute() method.

                              +
                              + +
                              Parameters
                              +
                              +
                              + $code + : callable +
                              +
                              +

                              A callable(InputInterface $input, OutputInterface $output)

                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + + +
                              +
                              + see +
                              +
                              + execute() + + +
                              +
                              + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setDefinition() + + +

                              + + +

                              Sets an array of argument and option instances.

                              + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $definition + : array<string|int, mixed>|InputDefinition +
                              +
                              +

                              An array of argument and option instances or a definition instance

                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setDescription() + + +

                              + + +

                              Sets the description for the command.

                              + + + public + setDescription(string $description) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $description + : string +
                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setHelp() + + +

                              + + +

                              Sets the help for the command.

                              + + + public + setHelp(string $help) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $help + : string +
                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setHelperSet() + + +

                              + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $helperSet + : HelperSet +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + setHidden() + + +

                              + + + + + public + setHidden(bool $hidden) : $this + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $hidden + : bool +
                              +
                              +

                              Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + final +
                              +
                              + +

                              since Symfony 5.1

                              +
                              + +
                              +
                              + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setName() + + +

                              + + +

                              Sets the name of the command.

                              + + + public + setName(string $name) : $this + +
                              +
                              + +

                              This method can set both the namespace and the name if +you separate them by a colon (:)

                              +
                              $command->setName('foo:bar');
                              +
                              +
                              + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + +

                              When the name is invalid

                              +
                              + +
                              +
                              + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + setOption() + + +

                              + + +

                              Add a new option

                              + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $name + : mixed +
                              +
                              + +
                              +
                              + $shortcut + : mixed + = null
                              +
                              + +
                              +
                              + $mode + : mixed + = null
                              +
                              + +
                              +
                              + $description + : mixed + = ''
                              +
                              + +
                              +
                              + $default + : mixed + = null
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + setProcessTitle() + + +

                              + + +

                              Sets the process title of the command.

                              + + + public + setProcessTitle(string $title) : $this + +
                              +
                              + +

                              This feature should be used only when creating a long process command, +like a daemon.

                              +
                              + +
                              Parameters
                              +
                              +
                              + $title + : string +
                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + $this +
                              + +
                              +
                              +

                              + write() + + +

                              + + +

                              Output some data

                              + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $messages + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + writeln() + + +

                              + + +

                              Output some data

                              + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                              +
                              + + +
                              Parameters
                              +
                              +
                              + $messages + : mixed +
                              +
                              + +
                              +
                              + $options + : mixed + = 0
                              +
                              + +
                              +
                              + + + + + + +
                              + +
                              +

                              + configure() + + +

                              + + +

                              Configures the current command.

                              + + + protected + configure() : mixed + +
                              +
                              + + + + + + + + +
                              +
                              +

                              + execute() + + +

                              + + +

                              Executes the current command.

                              + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                              +
                              + +

                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                              +
                              + +
                              Parameters
                              +
                              +
                              + $input + : InputInterface +
                              +
                              + +
                              +
                              + $output + : OutputInterface +
                              +
                              + +
                              +
                              + + + + + +
                              +
                              Return values
                              + int + — +

                              0 if everything went fine, or an exit code

                              +
                              + +
                              + +
                              +
                              +

                              + handle() + + +

                              + + +

                              Executes the current command.

                              + + + protected + handle() : int + +
                              +
                              + +

                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                              +
                              + + + + + + +
                              +
                              Return values
                              + int + — +

                              0 if everything went fine, or an exit code

                              +
                              + +
                              + +
                              +
                              +

                              + initialize() + + +

                              + + +

                              Initializes the command after the input has been bound and before the input +is validated.

                              + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                              +
                              + +

                              This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                              +
                              + +
                              Parameters
                              +
                              +
                              + $input + : InputInterface +
                              +
                              + +
                              +
                              + $output + : OutputInterface +
                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + see +
                              +
                              + InputInterface::bind() + + +
                              +
                              + see +
                              +
                              + InputInterface::validate() + + +
                              +
                              + + + + +
                              +
                              +

                              + interact() + + +

                              + + +

                              Interacts with the user.

                              + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                              +
                              + +

                              This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                              +
                              + +
                              Parameters
                              +
                              +
                              + $input + : InputInterface +
                              +
                              + +
                              +
                              + $output + : OutputInterface +
                              +
                              + +
                              +
                              + + + + + + +
                              +
                              +

                              + validateName() + + +

                              + + +

                              Validates a command name.

                              + + + private + validateName(string $name) : mixed + +
                              +
                              + +

                              It must be non-empty and parts can optionally be separated by ":".

                              +
                              + +
                              Parameters
                              +
                              +
                              + $name + : string +
                              +
                              + +
                              +
                              + + +
                              + Tags + + +
                              +
                              +
                              + throws +
                              +
                              + InvalidArgumentException + +

                              When the name is invalid

                              +
                              + +
                              +
                              + + + + +
                              +
                              + +
                              +
                              +
                              +
                              +
                              
                              +        
                              + +
                              +
                              + + + +
                              +
                              +
                              + +
                              + On this page + + +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Search results

                              + +
                              +
                              +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateControllerCommand.html b/src/public/api/classes/Aloe-Command-GenerateControllerCommand.html new file mode 100644 index 00000000..104da89d --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateControllerCommand.html @@ -0,0 +1,5338 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                +

                                Leaf PHP

                                + + + + + +
                                + +
                                +
                                + + + + +
                                +
                                + + +
                                +

                                + GenerateControllerCommand + + + extends Command + + +
                                + in package + +
                                + + +

                                + +
                                + + +
                                + + + +

                                Base class for Aloe Commands.

                                + + + + + + + + + +

                                + Table of Contents + + +

                                + + + + + + + +

                                + Constants + + +

                                +
                                +
                                + FAILURE + +  = 1 +
                                + +
                                + INVALID + +  = 2 +
                                + +
                                + SUCCESS + +  = 0 +
                                + +
                                + + +

                                + Properties + + +

                                +
                                +
                                + $description + +  : mixed +
                                +
                                Description for command
                                + +
                                + $help + +  : mixed +
                                +
                                Help for command
                                + +
                                + $defaultDescription + +  : string|null +
                                + +
                                + $defaultName + +  : string|null +
                                + +
                                + $input + +  : InputInterface +
                                +
                                The input object
                                + +
                                + $output + +  : OutputInterface +
                                +
                                The output object
                                + +
                                + $aliases + +  : mixed +
                                + +
                                + $application + +  : mixed +
                                + +
                                + $code + +  : mixed +
                                + +
                                + $definition + +  : mixed +
                                + +
                                + $fullDefinition + +  : mixed +
                                + +
                                + $helperSet + +  : mixed +
                                + +
                                + $hidden + +  : mixed +
                                + +
                                + $ignoreValidationErrors + +  : mixed +
                                + +
                                + $name + +  : mixed +
                                +
                                The name of command to run in console
                                + +
                                + $processTitle + +  : mixed +
                                + +
                                + $synopsis + +  : mixed +
                                + +
                                + $usages + +  : mixed +
                                + +
                                + +

                                + Methods + + +

                                +
                                +
                                + __construct() + +  : mixed +
                                + +
                                + addArgument() + +  : $this +
                                +
                                Adds an argument.
                                + +
                                + addOption() + +  : $this +
                                +
                                Adds an option.
                                + +
                                + addUsage() + +  : $this +
                                +
                                Add a command usage example, it'll be prefixed with the command name.
                                + +
                                + argument() + +  : mixed +
                                +
                                Returns the argument value for a given argument name.
                                + +
                                + arguments() + +  : mixed +
                                +
                                Returns all the given arguments merged with the default values.
                                + +
                                + ask() + +  : mixed +
                                +
                                Ask a question
                                + +
                                + askMultiline() + +  : mixed +
                                +
                                Ask a question
                                + +
                                + askRaw() + +  : mixed +
                                +
                                Ask a question
                                + +
                                + autoComplete() + +  : mixed +
                                +
                                Ask a question with auto completion
                                + +
                                + choice() + +  : mixed +
                                +
                                Ask a question with possible answers
                                + +
                                + comment() + +  : mixed +
                                +
                                Output some data as a comment
                                + +
                                + complete() + +  : void +
                                +
                                Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                + +
                                + confirm() + +  : mixed +
                                +
                                Prompt user for confirmation
                                + +
                                + error() + +  : mixed +
                                +
                                Output some data as a error
                                + +
                                + getAliases() + +  : array<string|int, mixed> +
                                +
                                Returns the aliases for the command.
                                + +
                                + getApplication() + +  : Application|null +
                                +
                                Gets the application instance for this command.
                                + +
                                + getDefaultDescription() + +  : string|null +
                                + +
                                + getDefaultName() + +  : string|null +
                                + +
                                + getDefinition() + +  : InputDefinition +
                                +
                                Gets the InputDefinition attached to this Command.
                                + +
                                + getDescription() + +  : string +
                                +
                                Returns the description for the command.
                                + +
                                + getHelp() + +  : string +
                                +
                                Returns the help for the command.
                                + +
                                + getHelper() + +  : mixed +
                                +
                                Gets a helper instance by name.
                                + +
                                + getHelperSet() + +  : HelperSet|null +
                                +
                                Gets the helper set.
                                + +
                                + getName() + +  : string|null +
                                +
                                Returns the command name.
                                + +
                                + getNativeDefinition() + +  : InputDefinition +
                                +
                                Gets the InputDefinition to be used to create representations of this Command.
                                + +
                                + getProcessedHelp() + +  : string +
                                +
                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                + +
                                + getSynopsis() + +  : string +
                                +
                                Returns the synopsis for the command.
                                + +
                                + getUsages() + +  : array<string|int, mixed> +
                                +
                                Returns alternative usages of the command.
                                + +
                                + ignoreValidationErrors() + +  : mixed +
                                +
                                Ignores validation errors.
                                + +
                                + info() + +  : mixed +
                                +
                                Output some data as a info
                                + +
                                + input() + +  : mixed +
                                +
                                Get an argument or return the input object
                                + +
                                + isEnabled() + +  : bool +
                                +
                                Checks whether the command is enabled or not in the current environment.
                                + +
                                + isHidden() + +  : bool +
                                + +
                                + link() + +  : mixed +
                                +
                                Output some data as a link
                                + +
                                + multiChoice() + +  : mixed +
                                +
                                Ask a question with possible answers + multiple choice
                                + +
                                + option() + +  : mixed +
                                +
                                Get an input option
                                + +
                                + options() + +  : mixed +
                                +
                                Get all input options
                                + +
                                + output() + +  : mixed +
                                +
                                Output data or return the output object
                                + +
                                + question() + +  : mixed +
                                +
                                Output some data as a question
                                + +
                                + run() + +  : int +
                                +
                                Runs the command.
                                + +
                                + runProcess() + +  : mixed +
                                +
                                Run a new cli process
                                + +
                                + secret() + +  : mixed +
                                +
                                Prompt user for input but hide keystrokes
                                + +
                                + setAliases() + +  : $this +
                                +
                                Sets the aliases for the command.
                                + +
                                + setApplication() + +  : mixed +
                                + +
                                + setArgument() + +  : mixed +
                                +
                                Add a new argument
                                + +
                                + setCode() + +  : $this +
                                +
                                Sets the code to execute when running this command.
                                + +
                                + setDefinition() + +  : $this +
                                +
                                Sets an array of argument and option instances.
                                + +
                                + setDescription() + +  : $this +
                                +
                                Sets the description for the command.
                                + +
                                + setHelp() + +  : $this +
                                +
                                Sets the help for the command.
                                + +
                                + setHelperSet() + +  : mixed +
                                + +
                                + setHidden() + +  : $this +
                                + +
                                + setName() + +  : $this +
                                +
                                Sets the name of the command.
                                + +
                                + setOption() + +  : mixed +
                                +
                                Add a new option
                                + +
                                + setProcessTitle() + +  : $this +
                                +
                                Sets the process title of the command.
                                + +
                                + write() + +  : mixed +
                                +
                                Output some data
                                + +
                                + writeln() + +  : mixed +
                                +
                                Output some data
                                + +
                                + config() + +  : mixed +
                                + +
                                + configure() + +  : mixed +
                                +
                                Configures the current command.
                                + +
                                + execute() + +  : int +
                                +
                                Executes the current command.
                                + +
                                + generateController() + +  : mixed +
                                + +
                                + generateExtraFiles() + +  : mixed +
                                + +
                                + handle() + +  : int +
                                +
                                Executes the current command.
                                + +
                                + initialize() + +  : mixed +
                                +
                                Initializes the command after the input has been bound and before the input +is validated.
                                + +
                                + interact() + +  : mixed +
                                +
                                Interacts with the user.
                                + +
                                + validateName() + +  : mixed +
                                +
                                Validates a command name.
                                + +
                                + + + + +
                                +

                                + Constants + + +

                                +
                                +

                                + FAILURE + + +

                                + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                +
                                +

                                + INVALID + + +

                                + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                +
                                +

                                + SUCCESS + + +

                                + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                +
                                + + +
                                +

                                + Properties + + +

                                +
                                +

                                + $description + + + + +

                                + + +

                                Description for command

                                + + + + public + mixed + $description + = 'Create a new controller class' + + + + + + + +
                                +
                                +

                                + $help + + + + +

                                + + +

                                Help for command

                                + + + + public + mixed + $help + = 'Create a new controller class' + + + + + + + +
                                +
                                +

                                + $defaultDescription + + + + +

                                + + + + + + protected + static string|null + $defaultDescription + + + +

                                The default command description

                                +
                                + + + + + +
                                +
                                +

                                + $defaultName + + + + +

                                + + + + + + protected + static string|null + $defaultName + = 'g:controller' + + +

                                The default command name

                                +
                                + + + + + +
                                +
                                +

                                + $input + + + + +

                                + + +

                                The input object

                                + + + + protected + InputInterface + $input + + + + + + + + +
                                +
                                +

                                + $output + + + + +

                                + + +

                                The output object

                                + + + + protected + OutputInterface + $output + + + + + + + + +
                                +
                                +

                                + $aliases + + + + +

                                + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                +
                                +

                                + $application + + + + +

                                + + + + + + private + mixed + $application + + + + + + + + +
                                +
                                +

                                + $code + + + + +

                                + + + + + + private + mixed + $code + + + + + + + + +
                                +
                                +

                                + $definition + + + + +

                                + + + + + + private + mixed + $definition + + + + + + + + +
                                +
                                +

                                + $fullDefinition + + + + +

                                + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                +
                                +

                                + $helperSet + + + + +

                                + + + + + + private + mixed + $helperSet + + + + + + + + +
                                +
                                +

                                + $hidden + + + + +

                                + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                +
                                +

                                + $ignoreValidationErrors + + + + +

                                + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                +
                                +

                                + $name + + + + +

                                + + +

                                The name of command to run in console

                                + + + + private + mixed + $name + + + + + + + + +
                                +
                                +

                                + $processTitle + + + + +

                                + + + + + + private + mixed + $processTitle + + + + + + + + +
                                +
                                +

                                + $synopsis + + + + +

                                + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                +
                                +

                                + $usages + + + + +

                                + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                +
                                + +
                                +

                                + Methods + + +

                                +
                                +

                                + __construct() + + +

                                + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string|null + = null
                                +
                                +

                                The name of the command; passing null means it must be set in configure()

                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + LogicException + +

                                When the command name is empty

                                +
                                + +
                                +
                                + + + + +
                                +
                                +

                                + addArgument() + + +

                                + + +

                                Adds an argument.

                                + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + $mode + : int|null + = null
                                +
                                +

                                The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                +
                                + +
                                +
                                + $description + : string + = ''
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                +

                                The default value (for InputArgument::OPTIONAL mode only)

                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + +

                                When argument mode is not valid

                                +
                                + +
                                +
                                + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + addOption() + + +

                                + + +

                                Adds an option.

                                + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + $shortcut + : string|array<string|int, mixed>|null + = null
                                +
                                +

                                The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                +
                                + +
                                +
                                + $mode + : int|null + = null
                                +
                                +

                                The option mode: One of the InputOption::VALUE_* constants

                                +
                                + +
                                +
                                + $description + : string + = ''
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                +

                                The default value (must be null for InputOption::VALUE_NONE)

                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + +

                                If option mode is invalid or incompatible

                                +
                                + +
                                +
                                + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + addUsage() + + +

                                + + +

                                Add a command usage example, it'll be prefixed with the command name.

                                + + + public + addUsage(string $usage) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $usage + : string +
                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + argument() + + +

                                + + +

                                Returns the argument value for a given argument name.

                                + + + public + argument(string $name) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + arguments() + + +

                                + + +

                                Returns all the given arguments merged with the default values.

                                + + + public + arguments() : mixed + +
                                +
                                + + + + + + + + +
                                +
                                +

                                + ask() + + +

                                + + +

                                Ask a question

                                + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + askMultiline() + + +

                                + + +

                                Ask a question

                                + + + public + askMultiline(string $question) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + askRaw() + + +

                                + + +

                                Ask a question

                                + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + autoComplete() + + +

                                + + +

                                Ask a question with auto completion

                                + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + $potentialAnswers + : array<string|int, mixed> +
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + choice() + + +

                                + + +

                                Ask a question with possible answers

                                + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + $choices + : array<string|int, mixed> +
                                +
                                + +
                                +
                                + $errorMessage + : string + = 'Invalid choice'
                                +
                                + +
                                +
                                + $default + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + comment() + + +

                                + + +

                                Output some data as a comment

                                + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $messages + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                + +
                                +

                                + confirm() + + +

                                + + +

                                Prompt user for confirmation

                                + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : mixed +
                                +
                                + +
                                +
                                + $param + : mixed + = false
                                +
                                + +
                                +
                                + $regex + : mixed + = '/^y/i'
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + error() + + +

                                + + +

                                Output some data as a error

                                + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $messages + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + getAliases() + + +

                                + + +

                                Returns the aliases for the command.

                                + + + public + getAliases() : array<string|int, mixed> + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + array<string|int, mixed> +
                                + +
                                +
                                +

                                + getApplication() + + +

                                + + +

                                Gets the application instance for this command.

                                + + + public + getApplication() : Application|null + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + Application|null +
                                + +
                                +
                                +

                                + getDefaultDescription() + + +

                                + + + + + public + static getDefaultDescription() : string|null + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + string|null +
                                + +
                                +
                                +

                                + getDefaultName() + + +

                                + + + + + public + static getDefaultName() : string|null + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + string|null +
                                + +
                                +
                                +

                                + getDefinition() + + +

                                + + +

                                Gets the InputDefinition attached to this Command.

                                + + + public + getDefinition() : InputDefinition + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + InputDefinition +
                                + +
                                +
                                +

                                + getDescription() + + +

                                + + +

                                Returns the description for the command.

                                + + + public + getDescription() : string + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + string +
                                + +
                                +
                                +

                                + getHelp() + + +

                                + + +

                                Returns the help for the command.

                                + + + public + getHelp() : string + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + string +
                                + +
                                +
                                +

                                + getHelper() + + +

                                + + +

                                Gets a helper instance by name.

                                + + + public + getHelper(string $name) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + LogicException + +

                                if no HelperSet is defined

                                +
                                + +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + +

                                if the helper is not defined

                                +
                                + +
                                +
                                + + + + +
                                +
                                +

                                + getHelperSet() + + +

                                + + +

                                Gets the helper set.

                                + + + public + getHelperSet() : HelperSet|null + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + HelperSet|null +
                                + +
                                +
                                +

                                + getName() + + +

                                + + +

                                Returns the command name.

                                + + + public + getName() : string|null + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + string|null +
                                + +
                                +
                                +

                                + getNativeDefinition() + + +

                                + + +

                                Gets the InputDefinition to be used to create representations of this Command.

                                + + + public + getNativeDefinition() : InputDefinition + +
                                +
                                + +

                                Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                +

                                This method is not part of public API and should not be used directly.

                                +
                                + + + + + + +
                                +
                                Return values
                                + InputDefinition +
                                + +
                                +
                                +

                                + getProcessedHelp() + + +

                                + + +

                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                + + + public + getProcessedHelp() : string + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + string +
                                + +
                                +
                                +

                                + getSynopsis() + + +

                                + + +

                                Returns the synopsis for the command.

                                + + + public + getSynopsis([bool $short = false ]) : string + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $short + : bool + = false
                                +
                                +

                                Whether to show the short version of the synopsis (with options folded) or not

                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + string +
                                + +
                                +
                                +

                                + getUsages() + + +

                                + + +

                                Returns alternative usages of the command.

                                + + + public + getUsages() : array<string|int, mixed> + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + array<string|int, mixed> +
                                + +
                                +
                                +

                                + ignoreValidationErrors() + + +

                                + + +

                                Ignores validation errors.

                                + + + public + ignoreValidationErrors() : mixed + +
                                +
                                + +

                                This is mainly useful for the help command.

                                +
                                + + + + + + + +
                                +
                                +

                                + info() + + +

                                + + +

                                Output some data as a info

                                + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $messages + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + input() + + +

                                + + +

                                Get an argument or return the input object

                                + + + public + input([string $data = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $data + : string + = null
                                +
                                +

                                The argument to return

                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + isEnabled() + + +

                                + + +

                                Checks whether the command is enabled or not in the current environment.

                                + + + public + isEnabled() : bool + +
                                +
                                + +

                                Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                +
                                + + + + + + +
                                +
                                Return values
                                + bool +
                                + +
                                +
                                +

                                + isHidden() + + +

                                + + + + + public + isHidden() : bool + +
                                +
                                + + + + + + + +
                                +
                                Return values
                                + bool + — +

                                whether the command should be publicly shown or not

                                +
                                + +
                                + +
                                +
                                + + + +

                                Output some data as a link

                                + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $link + : mixed +
                                +
                                + +
                                +
                                + $display + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + multiChoice() + + +

                                + + +

                                Ask a question with possible answers + multiple choice

                                + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + $choices + : array<string|int, mixed> +
                                +
                                + +
                                +
                                + $errorMessage + : string + = 'Invalid choice'
                                +
                                + +
                                +
                                + $default + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + option() + + +

                                + + +

                                Get an input option

                                + + + public + option(string $name) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + options() + + +

                                + + +

                                Get all input options

                                + + + public + options(string $name) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + output() + + +

                                + + +

                                Output data or return the output object

                                + + + public + output([string $data = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $data + : string + = null
                                +
                                +

                                The argument to return

                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + question() + + +

                                + + +

                                Output some data as a question

                                + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $messages + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + run() + + +

                                + + +

                                Runs the command.

                                + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                +
                                + +

                                The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                +
                                + +
                                Parameters
                                +
                                +
                                + $input + : InputInterface +
                                +
                                + +
                                +
                                + $output + : OutputInterface +
                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + Exception + +

                                When binding input fails. Bypass this by calling .

                                +
                                + +
                                +
                                + see +
                                +
                                + setCode() + + +
                                +
                                + see +
                                +
                                + execute() + + +
                                +
                                + + + +
                                +
                                Return values
                                + int + — +

                                The command exit code

                                +
                                + +
                                + +
                                +
                                +

                                + runProcess() + + +

                                + + +

                                Run a new cli process

                                + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $process + : array<string|int, mixed> +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + secret() + + +

                                + + +

                                Prompt user for input but hide keystrokes

                                + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $question + : string +
                                +
                                + +
                                +
                                + $useFallback + : bool + = false
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + setAliases() + + +

                                + + +

                                Sets the aliases for the command.

                                + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $aliases + : array<string|int, string> +
                                +
                                +

                                An array of aliases for the command

                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + +

                                When an alias is invalid

                                +
                                + +
                                +
                                + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setApplication() + + +

                                + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $application + : Application|null + = null
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + setArgument() + + +

                                + + +

                                Add a new argument

                                + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : mixed +
                                +
                                + +
                                +
                                + $mode + : mixed + = null
                                +
                                + +
                                +
                                + $description + : mixed + = ''
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + setCode() + + +

                                + + +

                                Sets the code to execute when running this command.

                                + + + public + setCode(callable $code) : $this + +
                                +
                                + +

                                If this method is used, it overrides the code defined +in the execute() method.

                                +
                                + +
                                Parameters
                                +
                                +
                                + $code + : callable +
                                +
                                +

                                A callable(InputInterface $input, OutputInterface $output)

                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + + +
                                +
                                + see +
                                +
                                + execute() + + +
                                +
                                + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setDefinition() + + +

                                + + +

                                Sets an array of argument and option instances.

                                + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $definition + : array<string|int, mixed>|InputDefinition +
                                +
                                +

                                An array of argument and option instances or a definition instance

                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setDescription() + + +

                                + + +

                                Sets the description for the command.

                                + + + public + setDescription(string $description) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $description + : string +
                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setHelp() + + +

                                + + +

                                Sets the help for the command.

                                + + + public + setHelp(string $help) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $help + : string +
                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setHelperSet() + + +

                                + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $helperSet + : HelperSet +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + setHidden() + + +

                                + + + + + public + setHidden(bool $hidden) : $this + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $hidden + : bool +
                                +
                                +

                                Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + final +
                                +
                                + +

                                since Symfony 5.1

                                +
                                + +
                                +
                                + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setName() + + +

                                + + +

                                Sets the name of the command.

                                + + + public + setName(string $name) : $this + +
                                +
                                + +

                                This method can set both the namespace and the name if +you separate them by a colon (:)

                                +
                                $command->setName('foo:bar');
                                +
                                +
                                + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + +

                                When the name is invalid

                                +
                                + +
                                +
                                + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + setOption() + + +

                                + + +

                                Add a new option

                                + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $name + : mixed +
                                +
                                + +
                                +
                                + $shortcut + : mixed + = null
                                +
                                + +
                                +
                                + $mode + : mixed + = null
                                +
                                + +
                                +
                                + $description + : mixed + = ''
                                +
                                + +
                                +
                                + $default + : mixed + = null
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + setProcessTitle() + + +

                                + + +

                                Sets the process title of the command.

                                + + + public + setProcessTitle(string $title) : $this + +
                                +
                                + +

                                This feature should be used only when creating a long process command, +like a daemon.

                                +
                                + +
                                Parameters
                                +
                                +
                                + $title + : string +
                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + $this +
                                + +
                                +
                                +

                                + write() + + +

                                + + +

                                Output some data

                                + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $messages + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + writeln() + + +

                                + + +

                                Output some data

                                + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $messages + : mixed +
                                +
                                + +
                                +
                                + $options + : mixed + = 0
                                +
                                + +
                                +
                                + + + + + + +
                                + +
                                +

                                + configure() + + +

                                + + +

                                Configures the current command.

                                + + + protected + configure() : mixed + +
                                +
                                + + + + + + + + +
                                +
                                +

                                + execute() + + +

                                + + +

                                Executes the current command.

                                + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                +
                                + +

                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                +
                                + +
                                Parameters
                                +
                                +
                                + $input + : InputInterface +
                                +
                                + +
                                +
                                + $output + : OutputInterface +
                                +
                                + +
                                +
                                + + + + + +
                                +
                                Return values
                                + int + — +

                                0 if everything went fine, or an exit code

                                +
                                + +
                                + +
                                +
                                +

                                + generateController() + + +

                                + + + + + protected + generateController(mixed $controllerFile, mixed $controller, mixed $modelName) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $controllerFile + : mixed +
                                +
                                + +
                                +
                                + $controller + : mixed +
                                +
                                + +
                                +
                                + $modelName + : mixed +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + generateExtraFiles() + + +

                                + + + + + protected + generateExtraFiles(mixed $modelName) : mixed + +
                                +
                                + + +
                                Parameters
                                +
                                +
                                + $modelName + : mixed +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + handle() + + +

                                + + +

                                Executes the current command.

                                + + + protected + handle() : int + +
                                +
                                + +

                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                +
                                + + + + + + +
                                +
                                Return values
                                + int + — +

                                0 if everything went fine, or an exit code

                                +
                                + +
                                + +
                                +
                                +

                                + initialize() + + +

                                + + +

                                Initializes the command after the input has been bound and before the input +is validated.

                                + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                +
                                + +

                                This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                +
                                + +
                                Parameters
                                +
                                +
                                + $input + : InputInterface +
                                +
                                + +
                                +
                                + $output + : OutputInterface +
                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + see +
                                +
                                + InputInterface::bind() + + +
                                +
                                + see +
                                +
                                + InputInterface::validate() + + +
                                +
                                + + + + +
                                +
                                +

                                + interact() + + +

                                + + +

                                Interacts with the user.

                                + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                +
                                + +

                                This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                +
                                + +
                                Parameters
                                +
                                +
                                + $input + : InputInterface +
                                +
                                + +
                                +
                                + $output + : OutputInterface +
                                +
                                + +
                                +
                                + + + + + + +
                                +
                                +

                                + validateName() + + +

                                + + +

                                Validates a command name.

                                + + + private + validateName(string $name) : mixed + +
                                +
                                + +

                                It must be non-empty and parts can optionally be separated by ":".

                                +
                                + +
                                Parameters
                                +
                                +
                                + $name + : string +
                                +
                                + +
                                +
                                + + +
                                + Tags + + +
                                +
                                +
                                + throws +
                                +
                                + InvalidArgumentException + +

                                When the name is invalid

                                +
                                + +
                                +
                                + + + + +
                                +
                                + +
                                +
                                +
                                +
                                +
                                
                                +        
                                + +
                                +
                                + + + +
                                +
                                +
                                + +
                                + On this page + + +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Search results

                                + +
                                +
                                +
                                  +
                                  +
                                  +
                                  +
                                  + + +
                                  + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateHelperCommand.html b/src/public/api/classes/Aloe-Command-GenerateHelperCommand.html new file mode 100644 index 00000000..17c481c5 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateHelperCommand.html @@ -0,0 +1,5273 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                  +

                                  Leaf PHP

                                  + + + + + +
                                  + +
                                  +
                                  + + + + +
                                  +
                                  + + +
                                  +

                                  + GenerateHelperCommand + + + extends Command + + +
                                  + in package + +
                                  + + +

                                  + +
                                  + + +
                                  + + + +

                                  Base class for Aloe Commands.

                                  + + + + + + + + + +

                                  + Table of Contents + + +

                                  + + + + + + + +

                                  + Constants + + +

                                  +
                                  +
                                  + FAILURE + +  = 1 +
                                  + +
                                  + INVALID + +  = 2 +
                                  + +
                                  + SUCCESS + +  = 0 +
                                  + +
                                  + + +

                                  + Properties + + +

                                  +
                                  +
                                  + $description + +  : mixed +
                                  +
                                  Description for command
                                  + +
                                  + $help + +  : mixed +
                                  +
                                  Help for command
                                  + +
                                  + $defaultDescription + +  : string|null +
                                  + +
                                  + $defaultName + +  : string|null +
                                  + +
                                  + $input + +  : InputInterface +
                                  +
                                  The input object
                                  + +
                                  + $output + +  : OutputInterface +
                                  +
                                  The output object
                                  + +
                                  + $aliases + +  : mixed +
                                  + +
                                  + $application + +  : mixed +
                                  + +
                                  + $code + +  : mixed +
                                  + +
                                  + $definition + +  : mixed +
                                  + +
                                  + $fullDefinition + +  : mixed +
                                  + +
                                  + $helperSet + +  : mixed +
                                  + +
                                  + $hidden + +  : mixed +
                                  + +
                                  + $ignoreValidationErrors + +  : mixed +
                                  + +
                                  + $name + +  : mixed +
                                  +
                                  The name of command to run in console
                                  + +
                                  + $processTitle + +  : mixed +
                                  + +
                                  + $synopsis + +  : mixed +
                                  + +
                                  + $usages + +  : mixed +
                                  + +
                                  + +

                                  + Methods + + +

                                  +
                                  +
                                  + __construct() + +  : mixed +
                                  + +
                                  + addArgument() + +  : $this +
                                  +
                                  Adds an argument.
                                  + +
                                  + addOption() + +  : $this +
                                  +
                                  Adds an option.
                                  + +
                                  + addUsage() + +  : $this +
                                  +
                                  Add a command usage example, it'll be prefixed with the command name.
                                  + +
                                  + argument() + +  : mixed +
                                  +
                                  Returns the argument value for a given argument name.
                                  + +
                                  + arguments() + +  : mixed +
                                  +
                                  Returns all the given arguments merged with the default values.
                                  + +
                                  + ask() + +  : mixed +
                                  +
                                  Ask a question
                                  + +
                                  + askMultiline() + +  : mixed +
                                  +
                                  Ask a question
                                  + +
                                  + askRaw() + +  : mixed +
                                  +
                                  Ask a question
                                  + +
                                  + autoComplete() + +  : mixed +
                                  +
                                  Ask a question with auto completion
                                  + +
                                  + choice() + +  : mixed +
                                  +
                                  Ask a question with possible answers
                                  + +
                                  + comment() + +  : mixed +
                                  +
                                  Output some data as a comment
                                  + +
                                  + complete() + +  : void +
                                  +
                                  Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                  + +
                                  + confirm() + +  : mixed +
                                  +
                                  Prompt user for confirmation
                                  + +
                                  + error() + +  : mixed +
                                  +
                                  Output some data as a error
                                  + +
                                  + getAliases() + +  : array<string|int, mixed> +
                                  +
                                  Returns the aliases for the command.
                                  + +
                                  + getApplication() + +  : Application|null +
                                  +
                                  Gets the application instance for this command.
                                  + +
                                  + getDefaultDescription() + +  : string|null +
                                  + +
                                  + getDefaultName() + +  : string|null +
                                  + +
                                  + getDefinition() + +  : InputDefinition +
                                  +
                                  Gets the InputDefinition attached to this Command.
                                  + +
                                  + getDescription() + +  : string +
                                  +
                                  Returns the description for the command.
                                  + +
                                  + getHelp() + +  : string +
                                  +
                                  Returns the help for the command.
                                  + +
                                  + getHelper() + +  : mixed +
                                  +
                                  Gets a helper instance by name.
                                  + +
                                  + getHelperSet() + +  : HelperSet|null +
                                  +
                                  Gets the helper set.
                                  + +
                                  + getName() + +  : string|null +
                                  +
                                  Returns the command name.
                                  + +
                                  + getNativeDefinition() + +  : InputDefinition +
                                  +
                                  Gets the InputDefinition to be used to create representations of this Command.
                                  + +
                                  + getProcessedHelp() + +  : string +
                                  +
                                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                  + +
                                  + getSynopsis() + +  : string +
                                  +
                                  Returns the synopsis for the command.
                                  + +
                                  + getUsages() + +  : array<string|int, mixed> +
                                  +
                                  Returns alternative usages of the command.
                                  + +
                                  + ignoreValidationErrors() + +  : mixed +
                                  +
                                  Ignores validation errors.
                                  + +
                                  + info() + +  : mixed +
                                  +
                                  Output some data as a info
                                  + +
                                  + input() + +  : mixed +
                                  +
                                  Get an argument or return the input object
                                  + +
                                  + isEnabled() + +  : bool +
                                  +
                                  Checks whether the command is enabled or not in the current environment.
                                  + +
                                  + isHidden() + +  : bool +
                                  + +
                                  + link() + +  : mixed +
                                  +
                                  Output some data as a link
                                  + +
                                  + mapNames() + +  : mixed +
                                  + +
                                  + multiChoice() + +  : mixed +
                                  +
                                  Ask a question with possible answers + multiple choice
                                  + +
                                  + option() + +  : mixed +
                                  +
                                  Get an input option
                                  + +
                                  + options() + +  : mixed +
                                  +
                                  Get all input options
                                  + +
                                  + output() + +  : mixed +
                                  +
                                  Output data or return the output object
                                  + +
                                  + question() + +  : mixed +
                                  +
                                  Output some data as a question
                                  + +
                                  + run() + +  : int +
                                  +
                                  Runs the command.
                                  + +
                                  + runProcess() + +  : mixed +
                                  +
                                  Run a new cli process
                                  + +
                                  + secret() + +  : mixed +
                                  +
                                  Prompt user for input but hide keystrokes
                                  + +
                                  + setAliases() + +  : $this +
                                  +
                                  Sets the aliases for the command.
                                  + +
                                  + setApplication() + +  : mixed +
                                  + +
                                  + setArgument() + +  : mixed +
                                  +
                                  Add a new argument
                                  + +
                                  + setCode() + +  : $this +
                                  +
                                  Sets the code to execute when running this command.
                                  + +
                                  + setDefinition() + +  : $this +
                                  +
                                  Sets an array of argument and option instances.
                                  + +
                                  + setDescription() + +  : $this +
                                  +
                                  Sets the description for the command.
                                  + +
                                  + setHelp() + +  : $this +
                                  +
                                  Sets the help for the command.
                                  + +
                                  + setHelperSet() + +  : mixed +
                                  + +
                                  + setHidden() + +  : $this +
                                  + +
                                  + setName() + +  : $this +
                                  +
                                  Sets the name of the command.
                                  + +
                                  + setOption() + +  : mixed +
                                  +
                                  Add a new option
                                  + +
                                  + setProcessTitle() + +  : $this +
                                  +
                                  Sets the process title of the command.
                                  + +
                                  + write() + +  : mixed +
                                  +
                                  Output some data
                                  + +
                                  + writeln() + +  : mixed +
                                  +
                                  Output some data
                                  + +
                                  + config() + +  : mixed +
                                  + +
                                  + configure() + +  : mixed +
                                  +
                                  Configures the current command.
                                  + +
                                  + execute() + +  : int +
                                  +
                                  Executes the current command.
                                  + +
                                  + handle() + +  : int +
                                  +
                                  Executes the current command.
                                  + +
                                  + initialize() + +  : mixed +
                                  +
                                  Initializes the command after the input has been bound and before the input +is validated.
                                  + +
                                  + interact() + +  : mixed +
                                  +
                                  Interacts with the user.
                                  + +
                                  + validateName() + +  : mixed +
                                  +
                                  Validates a command name.
                                  + +
                                  + + + + +
                                  +

                                  + Constants + + +

                                  +
                                  +

                                  + FAILURE + + +

                                  + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                  +
                                  +

                                  + INVALID + + +

                                  + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                  +
                                  +

                                  + SUCCESS + + +

                                  + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                  +
                                  + + +
                                  +

                                  + Properties + + +

                                  +
                                  +

                                  + $description + + + + +

                                  + + +

                                  Description for command

                                  + + + + public + mixed + $description + = 'Create a new helper class' + + + + + + + +
                                  +
                                  +

                                  + $help + + + + +

                                  + + +

                                  Help for command

                                  + + + + public + mixed + $help + = 'Create a new helper class' + + + + + + + +
                                  +
                                  +

                                  + $defaultDescription + + + + +

                                  + + + + + + protected + static string|null + $defaultDescription + + + +

                                  The default command description

                                  +
                                  + + + + + +
                                  +
                                  +

                                  + $defaultName + + + + +

                                  + + + + + + protected + static string|null + $defaultName + = 'g:helper' + + +

                                  The default command name

                                  +
                                  + + + + + +
                                  +
                                  +

                                  + $input + + + + +

                                  + + +

                                  The input object

                                  + + + + protected + InputInterface + $input + + + + + + + + +
                                  +
                                  +

                                  + $output + + + + +

                                  + + +

                                  The output object

                                  + + + + protected + OutputInterface + $output + + + + + + + + +
                                  +
                                  +

                                  + $aliases + + + + +

                                  + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                  +
                                  +

                                  + $application + + + + +

                                  + + + + + + private + mixed + $application + + + + + + + + +
                                  +
                                  +

                                  + $code + + + + +

                                  + + + + + + private + mixed + $code + + + + + + + + +
                                  +
                                  +

                                  + $definition + + + + +

                                  + + + + + + private + mixed + $definition + + + + + + + + +
                                  +
                                  +

                                  + $fullDefinition + + + + +

                                  + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                  +
                                  +

                                  + $helperSet + + + + +

                                  + + + + + + private + mixed + $helperSet + + + + + + + + +
                                  +
                                  +

                                  + $hidden + + + + +

                                  + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                  +
                                  +

                                  + $ignoreValidationErrors + + + + +

                                  + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                  +
                                  +

                                  + $name + + + + +

                                  + + +

                                  The name of command to run in console

                                  + + + + private + mixed + $name + + + + + + + + +
                                  +
                                  +

                                  + $processTitle + + + + +

                                  + + + + + + private + mixed + $processTitle + + + + + + + + +
                                  +
                                  +

                                  + $synopsis + + + + +

                                  + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                  +
                                  +

                                  + $usages + + + + +

                                  + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                  +
                                  + +
                                  +

                                  + Methods + + +

                                  +
                                  +

                                  + __construct() + + +

                                  + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string|null + = null
                                  +
                                  +

                                  The name of the command; passing null means it must be set in configure()

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + LogicException + +

                                  When the command name is empty

                                  +
                                  + +
                                  +
                                  + + + + +
                                  +
                                  +

                                  + addArgument() + + +

                                  + + +

                                  Adds an argument.

                                  + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + $mode + : int|null + = null
                                  +
                                  +

                                  The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                  +
                                  + +
                                  +
                                  + $description + : string + = ''
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  +

                                  The default value (for InputArgument::OPTIONAL mode only)

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + +

                                  When argument mode is not valid

                                  +
                                  + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + addOption() + + +

                                  + + +

                                  Adds an option.

                                  + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + $shortcut + : string|array<string|int, mixed>|null + = null
                                  +
                                  +

                                  The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                  +
                                  + +
                                  +
                                  + $mode + : int|null + = null
                                  +
                                  +

                                  The option mode: One of the InputOption::VALUE_* constants

                                  +
                                  + +
                                  +
                                  + $description + : string + = ''
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  +

                                  The default value (must be null for InputOption::VALUE_NONE)

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + +

                                  If option mode is invalid or incompatible

                                  +
                                  + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + addUsage() + + +

                                  + + +

                                  Add a command usage example, it'll be prefixed with the command name.

                                  + + + public + addUsage(string $usage) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $usage + : string +
                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + argument() + + +

                                  + + +

                                  Returns the argument value for a given argument name.

                                  + + + public + argument(string $name) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + arguments() + + +

                                  + + +

                                  Returns all the given arguments merged with the default values.

                                  + + + public + arguments() : mixed + +
                                  +
                                  + + + + + + + + +
                                  +
                                  +

                                  + ask() + + +

                                  + + +

                                  Ask a question

                                  + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + askMultiline() + + +

                                  + + +

                                  Ask a question

                                  + + + public + askMultiline(string $question) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + askRaw() + + +

                                  + + +

                                  Ask a question

                                  + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + autoComplete() + + +

                                  + + +

                                  Ask a question with auto completion

                                  + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + $potentialAnswers + : array<string|int, mixed> +
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + choice() + + +

                                  + + +

                                  Ask a question with possible answers

                                  + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + $choices + : array<string|int, mixed> +
                                  +
                                  + +
                                  +
                                  + $errorMessage + : string + = 'Invalid choice'
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + comment() + + +

                                  + + +

                                  Output some data as a comment

                                  + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $messages + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  + +
                                  +

                                  + confirm() + + +

                                  + + +

                                  Prompt user for confirmation

                                  + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : mixed +
                                  +
                                  + +
                                  +
                                  + $param + : mixed + = false
                                  +
                                  + +
                                  +
                                  + $regex + : mixed + = '/^y/i'
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + error() + + +

                                  + + +

                                  Output some data as a error

                                  + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $messages + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + getAliases() + + +

                                  + + +

                                  Returns the aliases for the command.

                                  + + + public + getAliases() : array<string|int, mixed> + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + array<string|int, mixed> +
                                  + +
                                  +
                                  +

                                  + getApplication() + + +

                                  + + +

                                  Gets the application instance for this command.

                                  + + + public + getApplication() : Application|null + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + Application|null +
                                  + +
                                  +
                                  +

                                  + getDefaultDescription() + + +

                                  + + + + + public + static getDefaultDescription() : string|null + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + string|null +
                                  + +
                                  +
                                  +

                                  + getDefaultName() + + +

                                  + + + + + public + static getDefaultName() : string|null + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + string|null +
                                  + +
                                  +
                                  +

                                  + getDefinition() + + +

                                  + + +

                                  Gets the InputDefinition attached to this Command.

                                  + + + public + getDefinition() : InputDefinition + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + InputDefinition +
                                  + +
                                  +
                                  +

                                  + getDescription() + + +

                                  + + +

                                  Returns the description for the command.

                                  + + + public + getDescription() : string + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + string +
                                  + +
                                  +
                                  +

                                  + getHelp() + + +

                                  + + +

                                  Returns the help for the command.

                                  + + + public + getHelp() : string + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + string +
                                  + +
                                  +
                                  +

                                  + getHelper() + + +

                                  + + +

                                  Gets a helper instance by name.

                                  + + + public + getHelper(string $name) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + LogicException + +

                                  if no HelperSet is defined

                                  +
                                  + +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + +

                                  if the helper is not defined

                                  +
                                  + +
                                  +
                                  + + + + +
                                  +
                                  +

                                  + getHelperSet() + + +

                                  + + +

                                  Gets the helper set.

                                  + + + public + getHelperSet() : HelperSet|null + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + HelperSet|null +
                                  + +
                                  +
                                  +

                                  + getName() + + +

                                  + + +

                                  Returns the command name.

                                  + + + public + getName() : string|null + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + string|null +
                                  + +
                                  +
                                  +

                                  + getNativeDefinition() + + +

                                  + + +

                                  Gets the InputDefinition to be used to create representations of this Command.

                                  + + + public + getNativeDefinition() : InputDefinition + +
                                  +
                                  + +

                                  Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                  +

                                  This method is not part of public API and should not be used directly.

                                  +
                                  + + + + + + +
                                  +
                                  Return values
                                  + InputDefinition +
                                  + +
                                  +
                                  +

                                  + getProcessedHelp() + + +

                                  + + +

                                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                  + + + public + getProcessedHelp() : string + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + string +
                                  + +
                                  +
                                  +

                                  + getSynopsis() + + +

                                  + + +

                                  Returns the synopsis for the command.

                                  + + + public + getSynopsis([bool $short = false ]) : string + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $short + : bool + = false
                                  +
                                  +

                                  Whether to show the short version of the synopsis (with options folded) or not

                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + string +
                                  + +
                                  +
                                  +

                                  + getUsages() + + +

                                  + + +

                                  Returns alternative usages of the command.

                                  + + + public + getUsages() : array<string|int, mixed> + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + array<string|int, mixed> +
                                  + +
                                  +
                                  +

                                  + ignoreValidationErrors() + + +

                                  + + +

                                  Ignores validation errors.

                                  + + + public + ignoreValidationErrors() : mixed + +
                                  +
                                  + +

                                  This is mainly useful for the help command.

                                  +
                                  + + + + + + + +
                                  +
                                  +

                                  + info() + + +

                                  + + +

                                  Output some data as a info

                                  + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $messages + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + input() + + +

                                  + + +

                                  Get an argument or return the input object

                                  + + + public + input([string $data = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $data + : string + = null
                                  +
                                  +

                                  The argument to return

                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + isEnabled() + + +

                                  + + +

                                  Checks whether the command is enabled or not in the current environment.

                                  + + + public + isEnabled() : bool + +
                                  +
                                  + +

                                  Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                  +
                                  + + + + + + +
                                  +
                                  Return values
                                  + bool +
                                  + +
                                  +
                                  +

                                  + isHidden() + + +

                                  + + + + + public + isHidden() : bool + +
                                  +
                                  + + + + + + + +
                                  +
                                  Return values
                                  + bool + — +

                                  whether the command should be publicly shown or not

                                  +
                                  + +
                                  + +
                                  +
                                  + + + +

                                  Output some data as a link

                                  + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $link + : mixed +
                                  +
                                  + +
                                  +
                                  + $display + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + mapNames() + + +

                                  + + + + + public + mapNames(mixed $helperName) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $helperName + : mixed +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + multiChoice() + + +

                                  + + +

                                  Ask a question with possible answers + multiple choice

                                  + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + $choices + : array<string|int, mixed> +
                                  +
                                  + +
                                  +
                                  + $errorMessage + : string + = 'Invalid choice'
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + option() + + +

                                  + + +

                                  Get an input option

                                  + + + public + option(string $name) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + options() + + +

                                  + + +

                                  Get all input options

                                  + + + public + options(string $name) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + output() + + +

                                  + + +

                                  Output data or return the output object

                                  + + + public + output([string $data = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $data + : string + = null
                                  +
                                  +

                                  The argument to return

                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + question() + + +

                                  + + +

                                  Output some data as a question

                                  + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $messages + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + run() + + +

                                  + + +

                                  Runs the command.

                                  + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                  +
                                  + +

                                  The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $input + : InputInterface +
                                  +
                                  + +
                                  +
                                  + $output + : OutputInterface +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + Exception + +

                                  When binding input fails. Bypass this by calling .

                                  +
                                  + +
                                  +
                                  + see +
                                  +
                                  + setCode() + + +
                                  +
                                  + see +
                                  +
                                  + execute() + + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + int + — +

                                  The command exit code

                                  +
                                  + +
                                  + +
                                  +
                                  +

                                  + runProcess() + + +

                                  + + +

                                  Run a new cli process

                                  + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $process + : array<string|int, mixed> +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + secret() + + +

                                  + + +

                                  Prompt user for input but hide keystrokes

                                  + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $question + : string +
                                  +
                                  + +
                                  +
                                  + $useFallback + : bool + = false
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + setAliases() + + +

                                  + + +

                                  Sets the aliases for the command.

                                  + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $aliases + : array<string|int, string> +
                                  +
                                  +

                                  An array of aliases for the command

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + +

                                  When an alias is invalid

                                  +
                                  + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setApplication() + + +

                                  + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $application + : Application|null + = null
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + setArgument() + + +

                                  + + +

                                  Add a new argument

                                  + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : mixed +
                                  +
                                  + +
                                  +
                                  + $mode + : mixed + = null
                                  +
                                  + +
                                  +
                                  + $description + : mixed + = ''
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + setCode() + + +

                                  + + +

                                  Sets the code to execute when running this command.

                                  + + + public + setCode(callable $code) : $this + +
                                  +
                                  + +

                                  If this method is used, it overrides the code defined +in the execute() method.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $code + : callable +
                                  +
                                  +

                                  A callable(InputInterface $input, OutputInterface $output)

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + + +
                                  +
                                  + see +
                                  +
                                  + execute() + + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setDefinition() + + +

                                  + + +

                                  Sets an array of argument and option instances.

                                  + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $definition + : array<string|int, mixed>|InputDefinition +
                                  +
                                  +

                                  An array of argument and option instances or a definition instance

                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setDescription() + + +

                                  + + +

                                  Sets the description for the command.

                                  + + + public + setDescription(string $description) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $description + : string +
                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setHelp() + + +

                                  + + +

                                  Sets the help for the command.

                                  + + + public + setHelp(string $help) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $help + : string +
                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setHelperSet() + + +

                                  + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $helperSet + : HelperSet +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + setHidden() + + +

                                  + + + + + public + setHidden(bool $hidden) : $this + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $hidden + : bool +
                                  +
                                  +

                                  Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + final +
                                  +
                                  + +

                                  since Symfony 5.1

                                  +
                                  + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setName() + + +

                                  + + +

                                  Sets the name of the command.

                                  + + + public + setName(string $name) : $this + +
                                  +
                                  + +

                                  This method can set both the namespace and the name if +you separate them by a colon (:)

                                  +
                                  $command->setName('foo:bar');
                                  +
                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + +

                                  When the name is invalid

                                  +
                                  + +
                                  +
                                  + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + setOption() + + +

                                  + + +

                                  Add a new option

                                  + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $name + : mixed +
                                  +
                                  + +
                                  +
                                  + $shortcut + : mixed + = null
                                  +
                                  + +
                                  +
                                  + $mode + : mixed + = null
                                  +
                                  + +
                                  +
                                  + $description + : mixed + = ''
                                  +
                                  + +
                                  +
                                  + $default + : mixed + = null
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + setProcessTitle() + + +

                                  + + +

                                  Sets the process title of the command.

                                  + + + public + setProcessTitle(string $title) : $this + +
                                  +
                                  + +

                                  This feature should be used only when creating a long process command, +like a daemon.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $title + : string +
                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + $this +
                                  + +
                                  +
                                  +

                                  + write() + + +

                                  + + +

                                  Output some data

                                  + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $messages + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + writeln() + + +

                                  + + +

                                  Output some data

                                  + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                  +
                                  + + +
                                  Parameters
                                  +
                                  +
                                  + $messages + : mixed +
                                  +
                                  + +
                                  +
                                  + $options + : mixed + = 0
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  + +
                                  +

                                  + configure() + + +

                                  + + +

                                  Configures the current command.

                                  + + + protected + configure() : mixed + +
                                  +
                                  + + + + + + + + +
                                  +
                                  +

                                  + execute() + + +

                                  + + +

                                  Executes the current command.

                                  + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                  +
                                  + +

                                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $input + : InputInterface +
                                  +
                                  + +
                                  +
                                  + $output + : OutputInterface +
                                  +
                                  + +
                                  +
                                  + + + + + +
                                  +
                                  Return values
                                  + int + — +

                                  0 if everything went fine, or an exit code

                                  +
                                  + +
                                  + +
                                  +
                                  +

                                  + handle() + + +

                                  + + +

                                  Executes the current command.

                                  + + + protected + handle() : int + +
                                  +
                                  + +

                                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                  +
                                  + + + + + + +
                                  +
                                  Return values
                                  + int + — +

                                  0 if everything went fine, or an exit code

                                  +
                                  + +
                                  + +
                                  +
                                  +

                                  + initialize() + + +

                                  + + +

                                  Initializes the command after the input has been bound and before the input +is validated.

                                  + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                  +
                                  + +

                                  This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $input + : InputInterface +
                                  +
                                  + +
                                  +
                                  + $output + : OutputInterface +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + see +
                                  +
                                  + InputInterface::bind() + + +
                                  +
                                  + see +
                                  +
                                  + InputInterface::validate() + + +
                                  +
                                  + + + + +
                                  +
                                  +

                                  + interact() + + +

                                  + + +

                                  Interacts with the user.

                                  + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                  +
                                  + +

                                  This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $input + : InputInterface +
                                  +
                                  + +
                                  +
                                  + $output + : OutputInterface +
                                  +
                                  + +
                                  +
                                  + + + + + + +
                                  +
                                  +

                                  + validateName() + + +

                                  + + +

                                  Validates a command name.

                                  + + + private + validateName(string $name) : mixed + +
                                  +
                                  + +

                                  It must be non-empty and parts can optionally be separated by ":".

                                  +
                                  + +
                                  Parameters
                                  +
                                  +
                                  + $name + : string +
                                  +
                                  + +
                                  +
                                  + + +
                                  + Tags + + +
                                  +
                                  +
                                  + throws +
                                  +
                                  + InvalidArgumentException + +

                                  When the name is invalid

                                  +
                                  + +
                                  +
                                  + + + + +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  
                                  +        
                                  + +
                                  +
                                  + + + +
                                  +
                                  +
                                  + +
                                  + On this page + + +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  Search results

                                  + +
                                  +
                                  +
                                    +
                                    +
                                    +
                                    +
                                    + + +
                                    + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateMailerCommand.html b/src/public/api/classes/Aloe-Command-GenerateMailerCommand.html new file mode 100644 index 00000000..1188ba1b --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateMailerCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                    +

                                    Leaf PHP

                                    + + + + + +
                                    + +
                                    +
                                    + + + + +
                                    +
                                    + + +
                                    +

                                    + GenerateMailerCommand + + + extends Command + + +
                                    + in package + +
                                    + + +

                                    + +
                                    + + +
                                    + + + +

                                    Base class for Aloe Commands.

                                    + + + + + + + + + +

                                    + Table of Contents + + +

                                    + + + + + + + +

                                    + Constants + + +

                                    +
                                    +
                                    + FAILURE + +  = 1 +
                                    + +
                                    + INVALID + +  = 2 +
                                    + +
                                    + SUCCESS + +  = 0 +
                                    + +
                                    + + +

                                    + Properties + + +

                                    +
                                    +
                                    + $description + +  : mixed +
                                    +
                                    Description for command
                                    + +
                                    + $help + +  : mixed +
                                    +
                                    Help for command
                                    + +
                                    + $defaultDescription + +  : string|null +
                                    + +
                                    + $defaultName + +  : string|null +
                                    + +
                                    + $input + +  : InputInterface +
                                    +
                                    The input object
                                    + +
                                    + $output + +  : OutputInterface +
                                    +
                                    The output object
                                    + +
                                    + $aliases + +  : mixed +
                                    + +
                                    + $application + +  : mixed +
                                    + +
                                    + $code + +  : mixed +
                                    + +
                                    + $definition + +  : mixed +
                                    + +
                                    + $fullDefinition + +  : mixed +
                                    + +
                                    + $helperSet + +  : mixed +
                                    + +
                                    + $hidden + +  : mixed +
                                    + +
                                    + $ignoreValidationErrors + +  : mixed +
                                    + +
                                    + $name + +  : mixed +
                                    +
                                    The name of command to run in console
                                    + +
                                    + $processTitle + +  : mixed +
                                    + +
                                    + $synopsis + +  : mixed +
                                    + +
                                    + $usages + +  : mixed +
                                    + +
                                    + +

                                    + Methods + + +

                                    +
                                    +
                                    + __construct() + +  : mixed +
                                    + +
                                    + addArgument() + +  : $this +
                                    +
                                    Adds an argument.
                                    + +
                                    + addOption() + +  : $this +
                                    +
                                    Adds an option.
                                    + +
                                    + addUsage() + +  : $this +
                                    +
                                    Add a command usage example, it'll be prefixed with the command name.
                                    + +
                                    + argument() + +  : mixed +
                                    +
                                    Returns the argument value for a given argument name.
                                    + +
                                    + arguments() + +  : mixed +
                                    +
                                    Returns all the given arguments merged with the default values.
                                    + +
                                    + ask() + +  : mixed +
                                    +
                                    Ask a question
                                    + +
                                    + askMultiline() + +  : mixed +
                                    +
                                    Ask a question
                                    + +
                                    + askRaw() + +  : mixed +
                                    +
                                    Ask a question
                                    + +
                                    + autoComplete() + +  : mixed +
                                    +
                                    Ask a question with auto completion
                                    + +
                                    + choice() + +  : mixed +
                                    +
                                    Ask a question with possible answers
                                    + +
                                    + comment() + +  : mixed +
                                    +
                                    Output some data as a comment
                                    + +
                                    + complete() + +  : void +
                                    +
                                    Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                    + +
                                    + confirm() + +  : mixed +
                                    +
                                    Prompt user for confirmation
                                    + +
                                    + error() + +  : mixed +
                                    +
                                    Output some data as a error
                                    + +
                                    + getAliases() + +  : array<string|int, mixed> +
                                    +
                                    Returns the aliases for the command.
                                    + +
                                    + getApplication() + +  : Application|null +
                                    +
                                    Gets the application instance for this command.
                                    + +
                                    + getDefaultDescription() + +  : string|null +
                                    + +
                                    + getDefaultName() + +  : string|null +
                                    + +
                                    + getDefinition() + +  : InputDefinition +
                                    +
                                    Gets the InputDefinition attached to this Command.
                                    + +
                                    + getDescription() + +  : string +
                                    +
                                    Returns the description for the command.
                                    + +
                                    + getHelp() + +  : string +
                                    +
                                    Returns the help for the command.
                                    + +
                                    + getHelper() + +  : mixed +
                                    +
                                    Gets a helper instance by name.
                                    + +
                                    + getHelperSet() + +  : HelperSet|null +
                                    +
                                    Gets the helper set.
                                    + +
                                    + getName() + +  : string|null +
                                    +
                                    Returns the command name.
                                    + +
                                    + getNativeDefinition() + +  : InputDefinition +
                                    +
                                    Gets the InputDefinition to be used to create representations of this Command.
                                    + +
                                    + getProcessedHelp() + +  : string +
                                    +
                                    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                    + +
                                    + getSynopsis() + +  : string +
                                    +
                                    Returns the synopsis for the command.
                                    + +
                                    + getUsages() + +  : array<string|int, mixed> +
                                    +
                                    Returns alternative usages of the command.
                                    + +
                                    + ignoreValidationErrors() + +  : mixed +
                                    +
                                    Ignores validation errors.
                                    + +
                                    + info() + +  : mixed +
                                    +
                                    Output some data as a info
                                    + +
                                    + input() + +  : mixed +
                                    +
                                    Get an argument or return the input object
                                    + +
                                    + isEnabled() + +  : bool +
                                    +
                                    Checks whether the command is enabled or not in the current environment.
                                    + +
                                    + isHidden() + +  : bool +
                                    + +
                                    + link() + +  : mixed +
                                    +
                                    Output some data as a link
                                    + +
                                    + multiChoice() + +  : mixed +
                                    +
                                    Ask a question with possible answers + multiple choice
                                    + +
                                    + option() + +  : mixed +
                                    +
                                    Get an input option
                                    + +
                                    + options() + +  : mixed +
                                    +
                                    Get all input options
                                    + +
                                    + output() + +  : mixed +
                                    +
                                    Output data or return the output object
                                    + +
                                    + question() + +  : mixed +
                                    +
                                    Output some data as a question
                                    + +
                                    + run() + +  : int +
                                    +
                                    Runs the command.
                                    + +
                                    + runProcess() + +  : mixed +
                                    +
                                    Run a new cli process
                                    + +
                                    + secret() + +  : mixed +
                                    +
                                    Prompt user for input but hide keystrokes
                                    + +
                                    + setAliases() + +  : $this +
                                    +
                                    Sets the aliases for the command.
                                    + +
                                    + setApplication() + +  : mixed +
                                    + +
                                    + setArgument() + +  : mixed +
                                    +
                                    Add a new argument
                                    + +
                                    + setCode() + +  : $this +
                                    +
                                    Sets the code to execute when running this command.
                                    + +
                                    + setDefinition() + +  : $this +
                                    +
                                    Sets an array of argument and option instances.
                                    + +
                                    + setDescription() + +  : $this +
                                    +
                                    Sets the description for the command.
                                    + +
                                    + setHelp() + +  : $this +
                                    +
                                    Sets the help for the command.
                                    + +
                                    + setHelperSet() + +  : mixed +
                                    + +
                                    + setHidden() + +  : $this +
                                    + +
                                    + setName() + +  : $this +
                                    +
                                    Sets the name of the command.
                                    + +
                                    + setOption() + +  : mixed +
                                    +
                                    Add a new option
                                    + +
                                    + setProcessTitle() + +  : $this +
                                    +
                                    Sets the process title of the command.
                                    + +
                                    + write() + +  : mixed +
                                    +
                                    Output some data
                                    + +
                                    + writeln() + +  : mixed +
                                    +
                                    Output some data
                                    + +
                                    + config() + +  : mixed +
                                    + +
                                    + configure() + +  : mixed +
                                    +
                                    Configures the current command.
                                    + +
                                    + execute() + +  : int +
                                    +
                                    Executes the current command.
                                    + +
                                    + handle() + +  : int +
                                    +
                                    Executes the current command.
                                    + +
                                    + initialize() + +  : mixed +
                                    +
                                    Initializes the command after the input has been bound and before the input +is validated.
                                    + +
                                    + interact() + +  : mixed +
                                    +
                                    Interacts with the user.
                                    + +
                                    + validateName() + +  : mixed +
                                    +
                                    Validates a command name.
                                    + +
                                    + + + + +
                                    +

                                    + Constants + + +

                                    +
                                    +

                                    + FAILURE + + +

                                    + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                    +
                                    +

                                    + INVALID + + +

                                    + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                    +
                                    +

                                    + SUCCESS + + +

                                    + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                    +
                                    + + +
                                    +

                                    + Properties + + +

                                    +
                                    +

                                    + $description + + + + +

                                    + + +

                                    Description for command

                                    + + + + public + mixed + $description + = 'Create a new mailer' + + + + + + + +
                                    +
                                    +

                                    + $help + + + + +

                                    + + +

                                    Help for command

                                    + + + + public + mixed + $help + = 'Create a new mailer' + + + + + + + +
                                    +
                                    +

                                    + $defaultDescription + + + + +

                                    + + + + + + protected + static string|null + $defaultDescription + + + +

                                    The default command description

                                    +
                                    + + + + + +
                                    +
                                    +

                                    + $defaultName + + + + +

                                    + + + + + + protected + static string|null + $defaultName + = 'g:mailer' + + +

                                    The default command name

                                    +
                                    + + + + + +
                                    +
                                    +

                                    + $input + + + + +

                                    + + +

                                    The input object

                                    + + + + protected + InputInterface + $input + + + + + + + + +
                                    +
                                    +

                                    + $output + + + + +

                                    + + +

                                    The output object

                                    + + + + protected + OutputInterface + $output + + + + + + + + +
                                    +
                                    +

                                    + $aliases + + + + +

                                    + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                    +
                                    +

                                    + $application + + + + +

                                    + + + + + + private + mixed + $application + + + + + + + + +
                                    +
                                    +

                                    + $code + + + + +

                                    + + + + + + private + mixed + $code + + + + + + + + +
                                    +
                                    +

                                    + $definition + + + + +

                                    + + + + + + private + mixed + $definition + + + + + + + + +
                                    +
                                    +

                                    + $fullDefinition + + + + +

                                    + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                    +
                                    +

                                    + $helperSet + + + + +

                                    + + + + + + private + mixed + $helperSet + + + + + + + + +
                                    +
                                    +

                                    + $hidden + + + + +

                                    + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                    +
                                    +

                                    + $ignoreValidationErrors + + + + +

                                    + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                    +
                                    +

                                    + $name + + + + +

                                    + + +

                                    The name of command to run in console

                                    + + + + private + mixed + $name + + + + + + + + +
                                    +
                                    +

                                    + $processTitle + + + + +

                                    + + + + + + private + mixed + $processTitle + + + + + + + + +
                                    +
                                    +

                                    + $synopsis + + + + +

                                    + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                    +
                                    +

                                    + $usages + + + + +

                                    + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                    +
                                    + +
                                    +

                                    + Methods + + +

                                    +
                                    +

                                    + __construct() + + +

                                    + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string|null + = null
                                    +
                                    +

                                    The name of the command; passing null means it must be set in configure()

                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + LogicException + +

                                    When the command name is empty

                                    +
                                    + +
                                    +
                                    + + + + +
                                    +
                                    +

                                    + addArgument() + + +

                                    + + +

                                    Adds an argument.

                                    + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + $mode + : int|null + = null
                                    +
                                    +

                                    The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                    +
                                    + +
                                    +
                                    + $description + : string + = ''
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    +

                                    The default value (for InputArgument::OPTIONAL mode only)

                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + +

                                    When argument mode is not valid

                                    +
                                    + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + addOption() + + +

                                    + + +

                                    Adds an option.

                                    + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + $shortcut + : string|array<string|int, mixed>|null + = null
                                    +
                                    +

                                    The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                    +
                                    + +
                                    +
                                    + $mode + : int|null + = null
                                    +
                                    +

                                    The option mode: One of the InputOption::VALUE_* constants

                                    +
                                    + +
                                    +
                                    + $description + : string + = ''
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    +

                                    The default value (must be null for InputOption::VALUE_NONE)

                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + +

                                    If option mode is invalid or incompatible

                                    +
                                    + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + addUsage() + + +

                                    + + +

                                    Add a command usage example, it'll be prefixed with the command name.

                                    + + + public + addUsage(string $usage) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $usage + : string +
                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + argument() + + +

                                    + + +

                                    Returns the argument value for a given argument name.

                                    + + + public + argument(string $name) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + arguments() + + +

                                    + + +

                                    Returns all the given arguments merged with the default values.

                                    + + + public + arguments() : mixed + +
                                    +
                                    + + + + + + + + +
                                    +
                                    +

                                    + ask() + + +

                                    + + +

                                    Ask a question

                                    + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + askMultiline() + + +

                                    + + +

                                    Ask a question

                                    + + + public + askMultiline(string $question) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + askRaw() + + +

                                    + + +

                                    Ask a question

                                    + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + autoComplete() + + +

                                    + + +

                                    Ask a question with auto completion

                                    + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + $potentialAnswers + : array<string|int, mixed> +
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + choice() + + +

                                    + + +

                                    Ask a question with possible answers

                                    + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + $choices + : array<string|int, mixed> +
                                    +
                                    + +
                                    +
                                    + $errorMessage + : string + = 'Invalid choice'
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + comment() + + +

                                    + + +

                                    Output some data as a comment

                                    + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $messages + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    + +
                                    +

                                    + confirm() + + +

                                    + + +

                                    Prompt user for confirmation

                                    + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : mixed +
                                    +
                                    + +
                                    +
                                    + $param + : mixed + = false
                                    +
                                    + +
                                    +
                                    + $regex + : mixed + = '/^y/i'
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + error() + + +

                                    + + +

                                    Output some data as a error

                                    + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $messages + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + getAliases() + + +

                                    + + +

                                    Returns the aliases for the command.

                                    + + + public + getAliases() : array<string|int, mixed> + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + array<string|int, mixed> +
                                    + +
                                    +
                                    +

                                    + getApplication() + + +

                                    + + +

                                    Gets the application instance for this command.

                                    + + + public + getApplication() : Application|null + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + Application|null +
                                    + +
                                    +
                                    +

                                    + getDefaultDescription() + + +

                                    + + + + + public + static getDefaultDescription() : string|null + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + string|null +
                                    + +
                                    +
                                    +

                                    + getDefaultName() + + +

                                    + + + + + public + static getDefaultName() : string|null + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + string|null +
                                    + +
                                    +
                                    +

                                    + getDefinition() + + +

                                    + + +

                                    Gets the InputDefinition attached to this Command.

                                    + + + public + getDefinition() : InputDefinition + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + InputDefinition +
                                    + +
                                    +
                                    +

                                    + getDescription() + + +

                                    + + +

                                    Returns the description for the command.

                                    + + + public + getDescription() : string + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + string +
                                    + +
                                    +
                                    +

                                    + getHelp() + + +

                                    + + +

                                    Returns the help for the command.

                                    + + + public + getHelp() : string + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + string +
                                    + +
                                    +
                                    +

                                    + getHelper() + + +

                                    + + +

                                    Gets a helper instance by name.

                                    + + + public + getHelper(string $name) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + LogicException + +

                                    if no HelperSet is defined

                                    +
                                    + +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + +

                                    if the helper is not defined

                                    +
                                    + +
                                    +
                                    + + + + +
                                    +
                                    +

                                    + getHelperSet() + + +

                                    + + +

                                    Gets the helper set.

                                    + + + public + getHelperSet() : HelperSet|null + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + HelperSet|null +
                                    + +
                                    +
                                    +

                                    + getName() + + +

                                    + + +

                                    Returns the command name.

                                    + + + public + getName() : string|null + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + string|null +
                                    + +
                                    +
                                    +

                                    + getNativeDefinition() + + +

                                    + + +

                                    Gets the InputDefinition to be used to create representations of this Command.

                                    + + + public + getNativeDefinition() : InputDefinition + +
                                    +
                                    + +

                                    Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                    +

                                    This method is not part of public API and should not be used directly.

                                    +
                                    + + + + + + +
                                    +
                                    Return values
                                    + InputDefinition +
                                    + +
                                    +
                                    +

                                    + getProcessedHelp() + + +

                                    + + +

                                    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                    + + + public + getProcessedHelp() : string + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + string +
                                    + +
                                    +
                                    +

                                    + getSynopsis() + + +

                                    + + +

                                    Returns the synopsis for the command.

                                    + + + public + getSynopsis([bool $short = false ]) : string + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $short + : bool + = false
                                    +
                                    +

                                    Whether to show the short version of the synopsis (with options folded) or not

                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + string +
                                    + +
                                    +
                                    +

                                    + getUsages() + + +

                                    + + +

                                    Returns alternative usages of the command.

                                    + + + public + getUsages() : array<string|int, mixed> + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + array<string|int, mixed> +
                                    + +
                                    +
                                    +

                                    + ignoreValidationErrors() + + +

                                    + + +

                                    Ignores validation errors.

                                    + + + public + ignoreValidationErrors() : mixed + +
                                    +
                                    + +

                                    This is mainly useful for the help command.

                                    +
                                    + + + + + + + +
                                    +
                                    +

                                    + info() + + +

                                    + + +

                                    Output some data as a info

                                    + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $messages + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + input() + + +

                                    + + +

                                    Get an argument or return the input object

                                    + + + public + input([string $data = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $data + : string + = null
                                    +
                                    +

                                    The argument to return

                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + isEnabled() + + +

                                    + + +

                                    Checks whether the command is enabled or not in the current environment.

                                    + + + public + isEnabled() : bool + +
                                    +
                                    + +

                                    Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                    +
                                    + + + + + + +
                                    +
                                    Return values
                                    + bool +
                                    + +
                                    +
                                    +

                                    + isHidden() + + +

                                    + + + + + public + isHidden() : bool + +
                                    +
                                    + + + + + + + +
                                    +
                                    Return values
                                    + bool + — +

                                    whether the command should be publicly shown or not

                                    +
                                    + +
                                    + +
                                    +
                                    + + + +

                                    Output some data as a link

                                    + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $link + : mixed +
                                    +
                                    + +
                                    +
                                    + $display + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + multiChoice() + + +

                                    + + +

                                    Ask a question with possible answers + multiple choice

                                    + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + $choices + : array<string|int, mixed> +
                                    +
                                    + +
                                    +
                                    + $errorMessage + : string + = 'Invalid choice'
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + option() + + +

                                    + + +

                                    Get an input option

                                    + + + public + option(string $name) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + options() + + +

                                    + + +

                                    Get all input options

                                    + + + public + options(string $name) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + output() + + +

                                    + + +

                                    Output data or return the output object

                                    + + + public + output([string $data = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $data + : string + = null
                                    +
                                    +

                                    The argument to return

                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + question() + + +

                                    + + +

                                    Output some data as a question

                                    + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $messages + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + run() + + +

                                    + + +

                                    Runs the command.

                                    + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                    +
                                    + +

                                    The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $input + : InputInterface +
                                    +
                                    + +
                                    +
                                    + $output + : OutputInterface +
                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + Exception + +

                                    When binding input fails. Bypass this by calling .

                                    +
                                    + +
                                    +
                                    + see +
                                    +
                                    + setCode() + + +
                                    +
                                    + see +
                                    +
                                    + execute() + + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + int + — +

                                    The command exit code

                                    +
                                    + +
                                    + +
                                    +
                                    +

                                    + runProcess() + + +

                                    + + +

                                    Run a new cli process

                                    + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $process + : array<string|int, mixed> +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + secret() + + +

                                    + + +

                                    Prompt user for input but hide keystrokes

                                    + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $question + : string +
                                    +
                                    + +
                                    +
                                    + $useFallback + : bool + = false
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + setAliases() + + +

                                    + + +

                                    Sets the aliases for the command.

                                    + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $aliases + : array<string|int, string> +
                                    +
                                    +

                                    An array of aliases for the command

                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + +

                                    When an alias is invalid

                                    +
                                    + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setApplication() + + +

                                    + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $application + : Application|null + = null
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + setArgument() + + +

                                    + + +

                                    Add a new argument

                                    + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : mixed +
                                    +
                                    + +
                                    +
                                    + $mode + : mixed + = null
                                    +
                                    + +
                                    +
                                    + $description + : mixed + = ''
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + setCode() + + +

                                    + + +

                                    Sets the code to execute when running this command.

                                    + + + public + setCode(callable $code) : $this + +
                                    +
                                    + +

                                    If this method is used, it overrides the code defined +in the execute() method.

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $code + : callable +
                                    +
                                    +

                                    A callable(InputInterface $input, OutputInterface $output)

                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + + +
                                    +
                                    + see +
                                    +
                                    + execute() + + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setDefinition() + + +

                                    + + +

                                    Sets an array of argument and option instances.

                                    + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $definition + : array<string|int, mixed>|InputDefinition +
                                    +
                                    +

                                    An array of argument and option instances or a definition instance

                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setDescription() + + +

                                    + + +

                                    Sets the description for the command.

                                    + + + public + setDescription(string $description) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $description + : string +
                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setHelp() + + +

                                    + + +

                                    Sets the help for the command.

                                    + + + public + setHelp(string $help) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $help + : string +
                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setHelperSet() + + +

                                    + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $helperSet + : HelperSet +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + setHidden() + + +

                                    + + + + + public + setHidden(bool $hidden) : $this + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $hidden + : bool +
                                    +
                                    +

                                    Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + final +
                                    +
                                    + +

                                    since Symfony 5.1

                                    +
                                    + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setName() + + +

                                    + + +

                                    Sets the name of the command.

                                    + + + public + setName(string $name) : $this + +
                                    +
                                    + +

                                    This method can set both the namespace and the name if +you separate them by a colon (:)

                                    +
                                    $command->setName('foo:bar');
                                    +
                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + +

                                    When the name is invalid

                                    +
                                    + +
                                    +
                                    + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + setOption() + + +

                                    + + +

                                    Add a new option

                                    + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $name + : mixed +
                                    +
                                    + +
                                    +
                                    + $shortcut + : mixed + = null
                                    +
                                    + +
                                    +
                                    + $mode + : mixed + = null
                                    +
                                    + +
                                    +
                                    + $description + : mixed + = ''
                                    +
                                    + +
                                    +
                                    + $default + : mixed + = null
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + setProcessTitle() + + +

                                    + + +

                                    Sets the process title of the command.

                                    + + + public + setProcessTitle(string $title) : $this + +
                                    +
                                    + +

                                    This feature should be used only when creating a long process command, +like a daemon.

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $title + : string +
                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + $this +
                                    + +
                                    +
                                    +

                                    + write() + + +

                                    + + +

                                    Output some data

                                    + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $messages + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + writeln() + + +

                                    + + +

                                    Output some data

                                    + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                    +
                                    + + +
                                    Parameters
                                    +
                                    +
                                    + $messages + : mixed +
                                    +
                                    + +
                                    +
                                    + $options + : mixed + = 0
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    + +
                                    +

                                    + configure() + + +

                                    + + +

                                    Configures the current command.

                                    + + + protected + configure() : mixed + +
                                    +
                                    + + + + + + + + +
                                    +
                                    +

                                    + execute() + + +

                                    + + +

                                    Executes the current command.

                                    + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                    +
                                    + +

                                    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $input + : InputInterface +
                                    +
                                    + +
                                    +
                                    + $output + : OutputInterface +
                                    +
                                    + +
                                    +
                                    + + + + + +
                                    +
                                    Return values
                                    + int + — +

                                    0 if everything went fine, or an exit code

                                    +
                                    + +
                                    + +
                                    +
                                    +

                                    + handle() + + +

                                    + + +

                                    Executes the current command.

                                    + + + protected + handle() : int + +
                                    +
                                    + +

                                    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                    +
                                    + + + + + + +
                                    +
                                    Return values
                                    + int + — +

                                    0 if everything went fine, or an exit code

                                    +
                                    + +
                                    + +
                                    +
                                    +

                                    + initialize() + + +

                                    + + +

                                    Initializes the command after the input has been bound and before the input +is validated.

                                    + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                    +
                                    + +

                                    This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $input + : InputInterface +
                                    +
                                    + +
                                    +
                                    + $output + : OutputInterface +
                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + see +
                                    +
                                    + InputInterface::bind() + + +
                                    +
                                    + see +
                                    +
                                    + InputInterface::validate() + + +
                                    +
                                    + + + + +
                                    +
                                    +

                                    + interact() + + +

                                    + + +

                                    Interacts with the user.

                                    + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                    +
                                    + +

                                    This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $input + : InputInterface +
                                    +
                                    + +
                                    +
                                    + $output + : OutputInterface +
                                    +
                                    + +
                                    +
                                    + + + + + + +
                                    +
                                    +

                                    + validateName() + + +

                                    + + +

                                    Validates a command name.

                                    + + + private + validateName(string $name) : mixed + +
                                    +
                                    + +

                                    It must be non-empty and parts can optionally be separated by ":".

                                    +
                                    + +
                                    Parameters
                                    +
                                    +
                                    + $name + : string +
                                    +
                                    + +
                                    +
                                    + + +
                                    + Tags + + +
                                    +
                                    +
                                    + throws +
                                    +
                                    + InvalidArgumentException + +

                                    When the name is invalid

                                    +
                                    + +
                                    +
                                    + + + + +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +
                                    
                                    +        
                                    + +
                                    +
                                    + + + +
                                    +
                                    +
                                    + +
                                    + On this page + + +
                                    + +
                                    +
                                    +
                                    +
                                    +
                                    +

                                    Search results

                                    + +
                                    +
                                    +
                                      +
                                      +
                                      +
                                      +
                                      + + +
                                      + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateMiddlewareCommand.html b/src/public/api/classes/Aloe-Command-GenerateMiddlewareCommand.html new file mode 100644 index 00000000..ff64072e --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateMiddlewareCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                      +

                                      Leaf PHP

                                      + + + + + +
                                      + +
                                      +
                                      + + + + +
                                      +
                                      + + +
                                      +

                                      + GenerateMiddlewareCommand + + + extends Command + + +
                                      + in package + +
                                      + + +

                                      + +
                                      + + +
                                      + + + +

                                      Base class for Aloe Commands.

                                      + + + + + + + + + +

                                      + Table of Contents + + +

                                      + + + + + + + +

                                      + Constants + + +

                                      +
                                      +
                                      + FAILURE + +  = 1 +
                                      + +
                                      + INVALID + +  = 2 +
                                      + +
                                      + SUCCESS + +  = 0 +
                                      + +
                                      + + +

                                      + Properties + + +

                                      +
                                      +
                                      + $description + +  : mixed +
                                      +
                                      Description for command
                                      + +
                                      + $help + +  : mixed +
                                      +
                                      Help for command
                                      + +
                                      + $defaultDescription + +  : string|null +
                                      + +
                                      + $defaultName + +  : string|null +
                                      + +
                                      + $input + +  : InputInterface +
                                      +
                                      The input object
                                      + +
                                      + $output + +  : OutputInterface +
                                      +
                                      The output object
                                      + +
                                      + $aliases + +  : mixed +
                                      + +
                                      + $application + +  : mixed +
                                      + +
                                      + $code + +  : mixed +
                                      + +
                                      + $definition + +  : mixed +
                                      + +
                                      + $fullDefinition + +  : mixed +
                                      + +
                                      + $helperSet + +  : mixed +
                                      + +
                                      + $hidden + +  : mixed +
                                      + +
                                      + $ignoreValidationErrors + +  : mixed +
                                      + +
                                      + $name + +  : mixed +
                                      +
                                      The name of command to run in console
                                      + +
                                      + $processTitle + +  : mixed +
                                      + +
                                      + $synopsis + +  : mixed +
                                      + +
                                      + $usages + +  : mixed +
                                      + +
                                      + +

                                      + Methods + + +

                                      +
                                      +
                                      + __construct() + +  : mixed +
                                      + +
                                      + addArgument() + +  : $this +
                                      +
                                      Adds an argument.
                                      + +
                                      + addOption() + +  : $this +
                                      +
                                      Adds an option.
                                      + +
                                      + addUsage() + +  : $this +
                                      +
                                      Add a command usage example, it'll be prefixed with the command name.
                                      + +
                                      + argument() + +  : mixed +
                                      +
                                      Returns the argument value for a given argument name.
                                      + +
                                      + arguments() + +  : mixed +
                                      +
                                      Returns all the given arguments merged with the default values.
                                      + +
                                      + ask() + +  : mixed +
                                      +
                                      Ask a question
                                      + +
                                      + askMultiline() + +  : mixed +
                                      +
                                      Ask a question
                                      + +
                                      + askRaw() + +  : mixed +
                                      +
                                      Ask a question
                                      + +
                                      + autoComplete() + +  : mixed +
                                      +
                                      Ask a question with auto completion
                                      + +
                                      + choice() + +  : mixed +
                                      +
                                      Ask a question with possible answers
                                      + +
                                      + comment() + +  : mixed +
                                      +
                                      Output some data as a comment
                                      + +
                                      + complete() + +  : void +
                                      +
                                      Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                      + +
                                      + confirm() + +  : mixed +
                                      +
                                      Prompt user for confirmation
                                      + +
                                      + error() + +  : mixed +
                                      +
                                      Output some data as a error
                                      + +
                                      + getAliases() + +  : array<string|int, mixed> +
                                      +
                                      Returns the aliases for the command.
                                      + +
                                      + getApplication() + +  : Application|null +
                                      +
                                      Gets the application instance for this command.
                                      + +
                                      + getDefaultDescription() + +  : string|null +
                                      + +
                                      + getDefaultName() + +  : string|null +
                                      + +
                                      + getDefinition() + +  : InputDefinition +
                                      +
                                      Gets the InputDefinition attached to this Command.
                                      + +
                                      + getDescription() + +  : string +
                                      +
                                      Returns the description for the command.
                                      + +
                                      + getHelp() + +  : string +
                                      +
                                      Returns the help for the command.
                                      + +
                                      + getHelper() + +  : mixed +
                                      +
                                      Gets a helper instance by name.
                                      + +
                                      + getHelperSet() + +  : HelperSet|null +
                                      +
                                      Gets the helper set.
                                      + +
                                      + getName() + +  : string|null +
                                      +
                                      Returns the command name.
                                      + +
                                      + getNativeDefinition() + +  : InputDefinition +
                                      +
                                      Gets the InputDefinition to be used to create representations of this Command.
                                      + +
                                      + getProcessedHelp() + +  : string +
                                      +
                                      Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                      + +
                                      + getSynopsis() + +  : string +
                                      +
                                      Returns the synopsis for the command.
                                      + +
                                      + getUsages() + +  : array<string|int, mixed> +
                                      +
                                      Returns alternative usages of the command.
                                      + +
                                      + ignoreValidationErrors() + +  : mixed +
                                      +
                                      Ignores validation errors.
                                      + +
                                      + info() + +  : mixed +
                                      +
                                      Output some data as a info
                                      + +
                                      + input() + +  : mixed +
                                      +
                                      Get an argument or return the input object
                                      + +
                                      + isEnabled() + +  : bool +
                                      +
                                      Checks whether the command is enabled or not in the current environment.
                                      + +
                                      + isHidden() + +  : bool +
                                      + +
                                      + link() + +  : mixed +
                                      +
                                      Output some data as a link
                                      + +
                                      + multiChoice() + +  : mixed +
                                      +
                                      Ask a question with possible answers + multiple choice
                                      + +
                                      + option() + +  : mixed +
                                      +
                                      Get an input option
                                      + +
                                      + options() + +  : mixed +
                                      +
                                      Get all input options
                                      + +
                                      + output() + +  : mixed +
                                      +
                                      Output data or return the output object
                                      + +
                                      + question() + +  : mixed +
                                      +
                                      Output some data as a question
                                      + +
                                      + run() + +  : int +
                                      +
                                      Runs the command.
                                      + +
                                      + runProcess() + +  : mixed +
                                      +
                                      Run a new cli process
                                      + +
                                      + secret() + +  : mixed +
                                      +
                                      Prompt user for input but hide keystrokes
                                      + +
                                      + setAliases() + +  : $this +
                                      +
                                      Sets the aliases for the command.
                                      + +
                                      + setApplication() + +  : mixed +
                                      + +
                                      + setArgument() + +  : mixed +
                                      +
                                      Add a new argument
                                      + +
                                      + setCode() + +  : $this +
                                      +
                                      Sets the code to execute when running this command.
                                      + +
                                      + setDefinition() + +  : $this +
                                      +
                                      Sets an array of argument and option instances.
                                      + +
                                      + setDescription() + +  : $this +
                                      +
                                      Sets the description for the command.
                                      + +
                                      + setHelp() + +  : $this +
                                      +
                                      Sets the help for the command.
                                      + +
                                      + setHelperSet() + +  : mixed +
                                      + +
                                      + setHidden() + +  : $this +
                                      + +
                                      + setName() + +  : $this +
                                      +
                                      Sets the name of the command.
                                      + +
                                      + setOption() + +  : mixed +
                                      +
                                      Add a new option
                                      + +
                                      + setProcessTitle() + +  : $this +
                                      +
                                      Sets the process title of the command.
                                      + +
                                      + write() + +  : mixed +
                                      +
                                      Output some data
                                      + +
                                      + writeln() + +  : mixed +
                                      +
                                      Output some data
                                      + +
                                      + config() + +  : mixed +
                                      + +
                                      + configure() + +  : mixed +
                                      +
                                      Configures the current command.
                                      + +
                                      + execute() + +  : int +
                                      +
                                      Executes the current command.
                                      + +
                                      + handle() + +  : int +
                                      +
                                      Executes the current command.
                                      + +
                                      + initialize() + +  : mixed +
                                      +
                                      Initializes the command after the input has been bound and before the input +is validated.
                                      + +
                                      + interact() + +  : mixed +
                                      +
                                      Interacts with the user.
                                      + +
                                      + validateName() + +  : mixed +
                                      +
                                      Validates a command name.
                                      + +
                                      + + + + +
                                      +

                                      + Constants + + +

                                      +
                                      +

                                      + FAILURE + + +

                                      + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                      +
                                      +

                                      + INVALID + + +

                                      + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                      +
                                      +

                                      + SUCCESS + + +

                                      + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                      +
                                      + + +
                                      +

                                      + Properties + + +

                                      +
                                      +

                                      + $description + + + + +

                                      + + +

                                      Description for command

                                      + + + + public + mixed + $description + = 'Create a new application middleware' + + + + + + + +
                                      +
                                      +

                                      + $help + + + + +

                                      + + +

                                      Help for command

                                      + + + + public + mixed + $help + = 'Create a new application middleware' + + + + + + + +
                                      +
                                      +

                                      + $defaultDescription + + + + +

                                      + + + + + + protected + static string|null + $defaultDescription + + + +

                                      The default command description

                                      +
                                      + + + + + +
                                      +
                                      +

                                      + $defaultName + + + + +

                                      + + + + + + protected + static string|null + $defaultName + = 'g:middleware' + + +

                                      The default command name

                                      +
                                      + + + + + +
                                      +
                                      +

                                      + $input + + + + +

                                      + + +

                                      The input object

                                      + + + + protected + InputInterface + $input + + + + + + + + +
                                      +
                                      +

                                      + $output + + + + +

                                      + + +

                                      The output object

                                      + + + + protected + OutputInterface + $output + + + + + + + + +
                                      +
                                      +

                                      + $aliases + + + + +

                                      + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                      +
                                      +

                                      + $application + + + + +

                                      + + + + + + private + mixed + $application + + + + + + + + +
                                      +
                                      +

                                      + $code + + + + +

                                      + + + + + + private + mixed + $code + + + + + + + + +
                                      +
                                      +

                                      + $definition + + + + +

                                      + + + + + + private + mixed + $definition + + + + + + + + +
                                      +
                                      +

                                      + $fullDefinition + + + + +

                                      + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                      +
                                      +

                                      + $helperSet + + + + +

                                      + + + + + + private + mixed + $helperSet + + + + + + + + +
                                      +
                                      +

                                      + $hidden + + + + +

                                      + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                      +
                                      +

                                      + $ignoreValidationErrors + + + + +

                                      + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                      +
                                      +

                                      + $name + + + + +

                                      + + +

                                      The name of command to run in console

                                      + + + + private + mixed + $name + + + + + + + + +
                                      +
                                      +

                                      + $processTitle + + + + +

                                      + + + + + + private + mixed + $processTitle + + + + + + + + +
                                      +
                                      +

                                      + $synopsis + + + + +

                                      + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                      +
                                      +

                                      + $usages + + + + +

                                      + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                      +
                                      + +
                                      +

                                      + Methods + + +

                                      +
                                      +

                                      + __construct() + + +

                                      + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string|null + = null
                                      +
                                      +

                                      The name of the command; passing null means it must be set in configure()

                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + LogicException + +

                                      When the command name is empty

                                      +
                                      + +
                                      +
                                      + + + + +
                                      +
                                      +

                                      + addArgument() + + +

                                      + + +

                                      Adds an argument.

                                      + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + $mode + : int|null + = null
                                      +
                                      +

                                      The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                      +
                                      + +
                                      +
                                      + $description + : string + = ''
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      +

                                      The default value (for InputArgument::OPTIONAL mode only)

                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + +

                                      When argument mode is not valid

                                      +
                                      + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + addOption() + + +

                                      + + +

                                      Adds an option.

                                      + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + $shortcut + : string|array<string|int, mixed>|null + = null
                                      +
                                      +

                                      The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                      +
                                      + +
                                      +
                                      + $mode + : int|null + = null
                                      +
                                      +

                                      The option mode: One of the InputOption::VALUE_* constants

                                      +
                                      + +
                                      +
                                      + $description + : string + = ''
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      +

                                      The default value (must be null for InputOption::VALUE_NONE)

                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + +

                                      If option mode is invalid or incompatible

                                      +
                                      + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + addUsage() + + +

                                      + + +

                                      Add a command usage example, it'll be prefixed with the command name.

                                      + + + public + addUsage(string $usage) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $usage + : string +
                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + argument() + + +

                                      + + +

                                      Returns the argument value for a given argument name.

                                      + + + public + argument(string $name) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + arguments() + + +

                                      + + +

                                      Returns all the given arguments merged with the default values.

                                      + + + public + arguments() : mixed + +
                                      +
                                      + + + + + + + + +
                                      +
                                      +

                                      + ask() + + +

                                      + + +

                                      Ask a question

                                      + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + askMultiline() + + +

                                      + + +

                                      Ask a question

                                      + + + public + askMultiline(string $question) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + askRaw() + + +

                                      + + +

                                      Ask a question

                                      + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + autoComplete() + + +

                                      + + +

                                      Ask a question with auto completion

                                      + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + $potentialAnswers + : array<string|int, mixed> +
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + choice() + + +

                                      + + +

                                      Ask a question with possible answers

                                      + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + $choices + : array<string|int, mixed> +
                                      +
                                      + +
                                      +
                                      + $errorMessage + : string + = 'Invalid choice'
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + comment() + + +

                                      + + +

                                      Output some data as a comment

                                      + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $messages + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      + +
                                      +

                                      + confirm() + + +

                                      + + +

                                      Prompt user for confirmation

                                      + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : mixed +
                                      +
                                      + +
                                      +
                                      + $param + : mixed + = false
                                      +
                                      + +
                                      +
                                      + $regex + : mixed + = '/^y/i'
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + error() + + +

                                      + + +

                                      Output some data as a error

                                      + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $messages + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + getAliases() + + +

                                      + + +

                                      Returns the aliases for the command.

                                      + + + public + getAliases() : array<string|int, mixed> + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + array<string|int, mixed> +
                                      + +
                                      +
                                      +

                                      + getApplication() + + +

                                      + + +

                                      Gets the application instance for this command.

                                      + + + public + getApplication() : Application|null + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + Application|null +
                                      + +
                                      +
                                      +

                                      + getDefaultDescription() + + +

                                      + + + + + public + static getDefaultDescription() : string|null + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + string|null +
                                      + +
                                      +
                                      +

                                      + getDefaultName() + + +

                                      + + + + + public + static getDefaultName() : string|null + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + string|null +
                                      + +
                                      +
                                      +

                                      + getDefinition() + + +

                                      + + +

                                      Gets the InputDefinition attached to this Command.

                                      + + + public + getDefinition() : InputDefinition + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + InputDefinition +
                                      + +
                                      +
                                      +

                                      + getDescription() + + +

                                      + + +

                                      Returns the description for the command.

                                      + + + public + getDescription() : string + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + string +
                                      + +
                                      +
                                      +

                                      + getHelp() + + +

                                      + + +

                                      Returns the help for the command.

                                      + + + public + getHelp() : string + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + string +
                                      + +
                                      +
                                      +

                                      + getHelper() + + +

                                      + + +

                                      Gets a helper instance by name.

                                      + + + public + getHelper(string $name) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + LogicException + +

                                      if no HelperSet is defined

                                      +
                                      + +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + +

                                      if the helper is not defined

                                      +
                                      + +
                                      +
                                      + + + + +
                                      +
                                      +

                                      + getHelperSet() + + +

                                      + + +

                                      Gets the helper set.

                                      + + + public + getHelperSet() : HelperSet|null + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + HelperSet|null +
                                      + +
                                      +
                                      +

                                      + getName() + + +

                                      + + +

                                      Returns the command name.

                                      + + + public + getName() : string|null + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + string|null +
                                      + +
                                      +
                                      +

                                      + getNativeDefinition() + + +

                                      + + +

                                      Gets the InputDefinition to be used to create representations of this Command.

                                      + + + public + getNativeDefinition() : InputDefinition + +
                                      +
                                      + +

                                      Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                      +

                                      This method is not part of public API and should not be used directly.

                                      +
                                      + + + + + + +
                                      +
                                      Return values
                                      + InputDefinition +
                                      + +
                                      +
                                      +

                                      + getProcessedHelp() + + +

                                      + + +

                                      Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                      + + + public + getProcessedHelp() : string + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + string +
                                      + +
                                      +
                                      +

                                      + getSynopsis() + + +

                                      + + +

                                      Returns the synopsis for the command.

                                      + + + public + getSynopsis([bool $short = false ]) : string + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $short + : bool + = false
                                      +
                                      +

                                      Whether to show the short version of the synopsis (with options folded) or not

                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + string +
                                      + +
                                      +
                                      +

                                      + getUsages() + + +

                                      + + +

                                      Returns alternative usages of the command.

                                      + + + public + getUsages() : array<string|int, mixed> + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + array<string|int, mixed> +
                                      + +
                                      +
                                      +

                                      + ignoreValidationErrors() + + +

                                      + + +

                                      Ignores validation errors.

                                      + + + public + ignoreValidationErrors() : mixed + +
                                      +
                                      + +

                                      This is mainly useful for the help command.

                                      +
                                      + + + + + + + +
                                      +
                                      +

                                      + info() + + +

                                      + + +

                                      Output some data as a info

                                      + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $messages + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + input() + + +

                                      + + +

                                      Get an argument or return the input object

                                      + + + public + input([string $data = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $data + : string + = null
                                      +
                                      +

                                      The argument to return

                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + isEnabled() + + +

                                      + + +

                                      Checks whether the command is enabled or not in the current environment.

                                      + + + public + isEnabled() : bool + +
                                      +
                                      + +

                                      Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                      +
                                      + + + + + + +
                                      +
                                      Return values
                                      + bool +
                                      + +
                                      +
                                      +

                                      + isHidden() + + +

                                      + + + + + public + isHidden() : bool + +
                                      +
                                      + + + + + + + +
                                      +
                                      Return values
                                      + bool + — +

                                      whether the command should be publicly shown or not

                                      +
                                      + +
                                      + +
                                      +
                                      + + + +

                                      Output some data as a link

                                      + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $link + : mixed +
                                      +
                                      + +
                                      +
                                      + $display + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + multiChoice() + + +

                                      + + +

                                      Ask a question with possible answers + multiple choice

                                      + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + $choices + : array<string|int, mixed> +
                                      +
                                      + +
                                      +
                                      + $errorMessage + : string + = 'Invalid choice'
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + option() + + +

                                      + + +

                                      Get an input option

                                      + + + public + option(string $name) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + options() + + +

                                      + + +

                                      Get all input options

                                      + + + public + options(string $name) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + output() + + +

                                      + + +

                                      Output data or return the output object

                                      + + + public + output([string $data = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $data + : string + = null
                                      +
                                      +

                                      The argument to return

                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + question() + + +

                                      + + +

                                      Output some data as a question

                                      + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $messages + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + run() + + +

                                      + + +

                                      Runs the command.

                                      + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                      +
                                      + +

                                      The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $input + : InputInterface +
                                      +
                                      + +
                                      +
                                      + $output + : OutputInterface +
                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + Exception + +

                                      When binding input fails. Bypass this by calling .

                                      +
                                      + +
                                      +
                                      + see +
                                      +
                                      + setCode() + + +
                                      +
                                      + see +
                                      +
                                      + execute() + + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + int + — +

                                      The command exit code

                                      +
                                      + +
                                      + +
                                      +
                                      +

                                      + runProcess() + + +

                                      + + +

                                      Run a new cli process

                                      + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $process + : array<string|int, mixed> +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + secret() + + +

                                      + + +

                                      Prompt user for input but hide keystrokes

                                      + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $question + : string +
                                      +
                                      + +
                                      +
                                      + $useFallback + : bool + = false
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + setAliases() + + +

                                      + + +

                                      Sets the aliases for the command.

                                      + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $aliases + : array<string|int, string> +
                                      +
                                      +

                                      An array of aliases for the command

                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + +

                                      When an alias is invalid

                                      +
                                      + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setApplication() + + +

                                      + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $application + : Application|null + = null
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + setArgument() + + +

                                      + + +

                                      Add a new argument

                                      + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : mixed +
                                      +
                                      + +
                                      +
                                      + $mode + : mixed + = null
                                      +
                                      + +
                                      +
                                      + $description + : mixed + = ''
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + setCode() + + +

                                      + + +

                                      Sets the code to execute when running this command.

                                      + + + public + setCode(callable $code) : $this + +
                                      +
                                      + +

                                      If this method is used, it overrides the code defined +in the execute() method.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $code + : callable +
                                      +
                                      +

                                      A callable(InputInterface $input, OutputInterface $output)

                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + + +
                                      +
                                      + see +
                                      +
                                      + execute() + + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setDefinition() + + +

                                      + + +

                                      Sets an array of argument and option instances.

                                      + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $definition + : array<string|int, mixed>|InputDefinition +
                                      +
                                      +

                                      An array of argument and option instances or a definition instance

                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setDescription() + + +

                                      + + +

                                      Sets the description for the command.

                                      + + + public + setDescription(string $description) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $description + : string +
                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setHelp() + + +

                                      + + +

                                      Sets the help for the command.

                                      + + + public + setHelp(string $help) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $help + : string +
                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setHelperSet() + + +

                                      + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $helperSet + : HelperSet +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + setHidden() + + +

                                      + + + + + public + setHidden(bool $hidden) : $this + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $hidden + : bool +
                                      +
                                      +

                                      Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + final +
                                      +
                                      + +

                                      since Symfony 5.1

                                      +
                                      + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setName() + + +

                                      + + +

                                      Sets the name of the command.

                                      + + + public + setName(string $name) : $this + +
                                      +
                                      + +

                                      This method can set both the namespace and the name if +you separate them by a colon (:)

                                      +
                                      $command->setName('foo:bar');
                                      +
                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + +

                                      When the name is invalid

                                      +
                                      + +
                                      +
                                      + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + setOption() + + +

                                      + + +

                                      Add a new option

                                      + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $name + : mixed +
                                      +
                                      + +
                                      +
                                      + $shortcut + : mixed + = null
                                      +
                                      + +
                                      +
                                      + $mode + : mixed + = null
                                      +
                                      + +
                                      +
                                      + $description + : mixed + = ''
                                      +
                                      + +
                                      +
                                      + $default + : mixed + = null
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + setProcessTitle() + + +

                                      + + +

                                      Sets the process title of the command.

                                      + + + public + setProcessTitle(string $title) : $this + +
                                      +
                                      + +

                                      This feature should be used only when creating a long process command, +like a daemon.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $title + : string +
                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + $this +
                                      + +
                                      +
                                      +

                                      + write() + + +

                                      + + +

                                      Output some data

                                      + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $messages + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + writeln() + + +

                                      + + +

                                      Output some data

                                      + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                      +
                                      + + +
                                      Parameters
                                      +
                                      +
                                      + $messages + : mixed +
                                      +
                                      + +
                                      +
                                      + $options + : mixed + = 0
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      + +
                                      +

                                      + configure() + + +

                                      + + +

                                      Configures the current command.

                                      + + + protected + configure() : mixed + +
                                      +
                                      + + + + + + + + +
                                      +
                                      +

                                      + execute() + + +

                                      + + +

                                      Executes the current command.

                                      + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                      +
                                      + +

                                      This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $input + : InputInterface +
                                      +
                                      + +
                                      +
                                      + $output + : OutputInterface +
                                      +
                                      + +
                                      +
                                      + + + + + +
                                      +
                                      Return values
                                      + int + — +

                                      0 if everything went fine, or an exit code

                                      +
                                      + +
                                      + +
                                      +
                                      +

                                      + handle() + + +

                                      + + +

                                      Executes the current command.

                                      + + + protected + handle() : int + +
                                      +
                                      + +

                                      This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                      +
                                      + + + + + + +
                                      +
                                      Return values
                                      + int + — +

                                      0 if everything went fine, or an exit code

                                      +
                                      + +
                                      + +
                                      +
                                      +

                                      + initialize() + + +

                                      + + +

                                      Initializes the command after the input has been bound and before the input +is validated.

                                      + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                      +
                                      + +

                                      This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $input + : InputInterface +
                                      +
                                      + +
                                      +
                                      + $output + : OutputInterface +
                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + see +
                                      +
                                      + InputInterface::bind() + + +
                                      +
                                      + see +
                                      +
                                      + InputInterface::validate() + + +
                                      +
                                      + + + + +
                                      +
                                      +

                                      + interact() + + +

                                      + + +

                                      Interacts with the user.

                                      + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                      +
                                      + +

                                      This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $input + : InputInterface +
                                      +
                                      + +
                                      +
                                      + $output + : OutputInterface +
                                      +
                                      + +
                                      +
                                      + + + + + + +
                                      +
                                      +

                                      + validateName() + + +

                                      + + +

                                      Validates a command name.

                                      + + + private + validateName(string $name) : mixed + +
                                      +
                                      + +

                                      It must be non-empty and parts can optionally be separated by ":".

                                      +
                                      + +
                                      Parameters
                                      +
                                      +
                                      + $name + : string +
                                      +
                                      + +
                                      +
                                      + + +
                                      + Tags + + +
                                      +
                                      +
                                      + throws +
                                      +
                                      + InvalidArgumentException + +

                                      When the name is invalid

                                      +
                                      + +
                                      +
                                      + + + + +
                                      +
                                      + +
                                      +
                                      +
                                      +
                                      +
                                      
                                      +        
                                      + +
                                      +
                                      + + + +
                                      +
                                      +
                                      + +
                                      + On this page + + +
                                      + +
                                      +
                                      +
                                      +
                                      +
                                      +

                                      Search results

                                      + +
                                      +
                                      +
                                        +
                                        +
                                        +
                                        +
                                        + + +
                                        + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateModelCommand.html b/src/public/api/classes/Aloe-Command-GenerateModelCommand.html new file mode 100644 index 00000000..08b6b2aa --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateModelCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                        +

                                        Leaf PHP

                                        + + + + + +
                                        + +
                                        +
                                        + + + + +
                                        +
                                        + + +
                                        +

                                        + GenerateModelCommand + + + extends Command + + +
                                        + in package + +
                                        + + +

                                        + +
                                        + + +
                                        + + + +

                                        Base class for Aloe Commands.

                                        + + + + + + + + + +

                                        + Table of Contents + + +

                                        + + + + + + + +

                                        + Constants + + +

                                        +
                                        +
                                        + FAILURE + +  = 1 +
                                        + +
                                        + INVALID + +  = 2 +
                                        + +
                                        + SUCCESS + +  = 0 +
                                        + +
                                        + + +

                                        + Properties + + +

                                        +
                                        +
                                        + $description + +  : mixed +
                                        +
                                        Description for command
                                        + +
                                        + $help + +  : mixed +
                                        +
                                        Help for command
                                        + +
                                        + $defaultDescription + +  : string|null +
                                        + +
                                        + $defaultName + +  : string|null +
                                        + +
                                        + $input + +  : InputInterface +
                                        +
                                        The input object
                                        + +
                                        + $output + +  : OutputInterface +
                                        +
                                        The output object
                                        + +
                                        + $aliases + +  : mixed +
                                        + +
                                        + $application + +  : mixed +
                                        + +
                                        + $code + +  : mixed +
                                        + +
                                        + $definition + +  : mixed +
                                        + +
                                        + $fullDefinition + +  : mixed +
                                        + +
                                        + $helperSet + +  : mixed +
                                        + +
                                        + $hidden + +  : mixed +
                                        + +
                                        + $ignoreValidationErrors + +  : mixed +
                                        + +
                                        + $name + +  : mixed +
                                        +
                                        The name of command to run in console
                                        + +
                                        + $processTitle + +  : mixed +
                                        + +
                                        + $synopsis + +  : mixed +
                                        + +
                                        + $usages + +  : mixed +
                                        + +
                                        + +

                                        + Methods + + +

                                        +
                                        +
                                        + __construct() + +  : mixed +
                                        + +
                                        + addArgument() + +  : $this +
                                        +
                                        Adds an argument.
                                        + +
                                        + addOption() + +  : $this +
                                        +
                                        Adds an option.
                                        + +
                                        + addUsage() + +  : $this +
                                        +
                                        Add a command usage example, it'll be prefixed with the command name.
                                        + +
                                        + argument() + +  : mixed +
                                        +
                                        Returns the argument value for a given argument name.
                                        + +
                                        + arguments() + +  : mixed +
                                        +
                                        Returns all the given arguments merged with the default values.
                                        + +
                                        + ask() + +  : mixed +
                                        +
                                        Ask a question
                                        + +
                                        + askMultiline() + +  : mixed +
                                        +
                                        Ask a question
                                        + +
                                        + askRaw() + +  : mixed +
                                        +
                                        Ask a question
                                        + +
                                        + autoComplete() + +  : mixed +
                                        +
                                        Ask a question with auto completion
                                        + +
                                        + choice() + +  : mixed +
                                        +
                                        Ask a question with possible answers
                                        + +
                                        + comment() + +  : mixed +
                                        +
                                        Output some data as a comment
                                        + +
                                        + complete() + +  : void +
                                        +
                                        Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                        + +
                                        + confirm() + +  : mixed +
                                        +
                                        Prompt user for confirmation
                                        + +
                                        + error() + +  : mixed +
                                        +
                                        Output some data as a error
                                        + +
                                        + getAliases() + +  : array<string|int, mixed> +
                                        +
                                        Returns the aliases for the command.
                                        + +
                                        + getApplication() + +  : Application|null +
                                        +
                                        Gets the application instance for this command.
                                        + +
                                        + getDefaultDescription() + +  : string|null +
                                        + +
                                        + getDefaultName() + +  : string|null +
                                        + +
                                        + getDefinition() + +  : InputDefinition +
                                        +
                                        Gets the InputDefinition attached to this Command.
                                        + +
                                        + getDescription() + +  : string +
                                        +
                                        Returns the description for the command.
                                        + +
                                        + getHelp() + +  : string +
                                        +
                                        Returns the help for the command.
                                        + +
                                        + getHelper() + +  : mixed +
                                        +
                                        Gets a helper instance by name.
                                        + +
                                        + getHelperSet() + +  : HelperSet|null +
                                        +
                                        Gets the helper set.
                                        + +
                                        + getName() + +  : string|null +
                                        +
                                        Returns the command name.
                                        + +
                                        + getNativeDefinition() + +  : InputDefinition +
                                        +
                                        Gets the InputDefinition to be used to create representations of this Command.
                                        + +
                                        + getProcessedHelp() + +  : string +
                                        +
                                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                        + +
                                        + getSynopsis() + +  : string +
                                        +
                                        Returns the synopsis for the command.
                                        + +
                                        + getUsages() + +  : array<string|int, mixed> +
                                        +
                                        Returns alternative usages of the command.
                                        + +
                                        + ignoreValidationErrors() + +  : mixed +
                                        +
                                        Ignores validation errors.
                                        + +
                                        + info() + +  : mixed +
                                        +
                                        Output some data as a info
                                        + +
                                        + input() + +  : mixed +
                                        +
                                        Get an argument or return the input object
                                        + +
                                        + isEnabled() + +  : bool +
                                        +
                                        Checks whether the command is enabled or not in the current environment.
                                        + +
                                        + isHidden() + +  : bool +
                                        + +
                                        + link() + +  : mixed +
                                        +
                                        Output some data as a link
                                        + +
                                        + multiChoice() + +  : mixed +
                                        +
                                        Ask a question with possible answers + multiple choice
                                        + +
                                        + option() + +  : mixed +
                                        +
                                        Get an input option
                                        + +
                                        + options() + +  : mixed +
                                        +
                                        Get all input options
                                        + +
                                        + output() + +  : mixed +
                                        +
                                        Output data or return the output object
                                        + +
                                        + question() + +  : mixed +
                                        +
                                        Output some data as a question
                                        + +
                                        + run() + +  : int +
                                        +
                                        Runs the command.
                                        + +
                                        + runProcess() + +  : mixed +
                                        +
                                        Run a new cli process
                                        + +
                                        + secret() + +  : mixed +
                                        +
                                        Prompt user for input but hide keystrokes
                                        + +
                                        + setAliases() + +  : $this +
                                        +
                                        Sets the aliases for the command.
                                        + +
                                        + setApplication() + +  : mixed +
                                        + +
                                        + setArgument() + +  : mixed +
                                        +
                                        Add a new argument
                                        + +
                                        + setCode() + +  : $this +
                                        +
                                        Sets the code to execute when running this command.
                                        + +
                                        + setDefinition() + +  : $this +
                                        +
                                        Sets an array of argument and option instances.
                                        + +
                                        + setDescription() + +  : $this +
                                        +
                                        Sets the description for the command.
                                        + +
                                        + setHelp() + +  : $this +
                                        +
                                        Sets the help for the command.
                                        + +
                                        + setHelperSet() + +  : mixed +
                                        + +
                                        + setHidden() + +  : $this +
                                        + +
                                        + setName() + +  : $this +
                                        +
                                        Sets the name of the command.
                                        + +
                                        + setOption() + +  : mixed +
                                        +
                                        Add a new option
                                        + +
                                        + setProcessTitle() + +  : $this +
                                        +
                                        Sets the process title of the command.
                                        + +
                                        + write() + +  : mixed +
                                        +
                                        Output some data
                                        + +
                                        + writeln() + +  : mixed +
                                        +
                                        Output some data
                                        + +
                                        + config() + +  : mixed +
                                        + +
                                        + configure() + +  : mixed +
                                        +
                                        Configures the current command.
                                        + +
                                        + execute() + +  : int +
                                        +
                                        Executes the current command.
                                        + +
                                        + handle() + +  : int +
                                        +
                                        Executes the current command.
                                        + +
                                        + initialize() + +  : mixed +
                                        +
                                        Initializes the command after the input has been bound and before the input +is validated.
                                        + +
                                        + interact() + +  : mixed +
                                        +
                                        Interacts with the user.
                                        + +
                                        + validateName() + +  : mixed +
                                        +
                                        Validates a command name.
                                        + +
                                        + + + + +
                                        +

                                        + Constants + + +

                                        +
                                        +

                                        + FAILURE + + +

                                        + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                        +
                                        +

                                        + INVALID + + +

                                        + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                        +
                                        +

                                        + SUCCESS + + +

                                        + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                        +
                                        + + +
                                        +

                                        + Properties + + +

                                        +
                                        +

                                        + $description + + + + +

                                        + + +

                                        Description for command

                                        + + + + public + mixed + $description + = 'Create a new model class' + + + + + + + +
                                        +
                                        +

                                        + $help + + + + +

                                        + + +

                                        Help for command

                                        + + + + public + mixed + $help + = 'Create a new model class' + + + + + + + +
                                        +
                                        +

                                        + $defaultDescription + + + + +

                                        + + + + + + protected + static string|null + $defaultDescription + + + +

                                        The default command description

                                        +
                                        + + + + + +
                                        +
                                        +

                                        + $defaultName + + + + +

                                        + + + + + + protected + static string|null + $defaultName + = 'g:model' + + +

                                        The default command name

                                        +
                                        + + + + + +
                                        +
                                        +

                                        + $input + + + + +

                                        + + +

                                        The input object

                                        + + + + protected + InputInterface + $input + + + + + + + + +
                                        +
                                        +

                                        + $output + + + + +

                                        + + +

                                        The output object

                                        + + + + protected + OutputInterface + $output + + + + + + + + +
                                        +
                                        +

                                        + $aliases + + + + +

                                        + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                        +
                                        +

                                        + $application + + + + +

                                        + + + + + + private + mixed + $application + + + + + + + + +
                                        +
                                        +

                                        + $code + + + + +

                                        + + + + + + private + mixed + $code + + + + + + + + +
                                        +
                                        +

                                        + $definition + + + + +

                                        + + + + + + private + mixed + $definition + + + + + + + + +
                                        +
                                        +

                                        + $fullDefinition + + + + +

                                        + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                        +
                                        +

                                        + $helperSet + + + + +

                                        + + + + + + private + mixed + $helperSet + + + + + + + + +
                                        +
                                        +

                                        + $hidden + + + + +

                                        + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                        +
                                        +

                                        + $ignoreValidationErrors + + + + +

                                        + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                        +
                                        +

                                        + $name + + + + +

                                        + + +

                                        The name of command to run in console

                                        + + + + private + mixed + $name + + + + + + + + +
                                        +
                                        +

                                        + $processTitle + + + + +

                                        + + + + + + private + mixed + $processTitle + + + + + + + + +
                                        +
                                        +

                                        + $synopsis + + + + +

                                        + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                        +
                                        +

                                        + $usages + + + + +

                                        + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                        +
                                        + +
                                        +

                                        + Methods + + +

                                        +
                                        +

                                        + __construct() + + +

                                        + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string|null + = null
                                        +
                                        +

                                        The name of the command; passing null means it must be set in configure()

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + LogicException + +

                                        When the command name is empty

                                        +
                                        + +
                                        +
                                        + + + + +
                                        +
                                        +

                                        + addArgument() + + +

                                        + + +

                                        Adds an argument.

                                        + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + $mode + : int|null + = null
                                        +
                                        +

                                        The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                        +
                                        + +
                                        +
                                        + $description + : string + = ''
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        +

                                        The default value (for InputArgument::OPTIONAL mode only)

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + +

                                        When argument mode is not valid

                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + addOption() + + +

                                        + + +

                                        Adds an option.

                                        + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + $shortcut + : string|array<string|int, mixed>|null + = null
                                        +
                                        +

                                        The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                        +
                                        + +
                                        +
                                        + $mode + : int|null + = null
                                        +
                                        +

                                        The option mode: One of the InputOption::VALUE_* constants

                                        +
                                        + +
                                        +
                                        + $description + : string + = ''
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        +

                                        The default value (must be null for InputOption::VALUE_NONE)

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + +

                                        If option mode is invalid or incompatible

                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + addUsage() + + +

                                        + + +

                                        Add a command usage example, it'll be prefixed with the command name.

                                        + + + public + addUsage(string $usage) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $usage + : string +
                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + argument() + + +

                                        + + +

                                        Returns the argument value for a given argument name.

                                        + + + public + argument(string $name) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + arguments() + + +

                                        + + +

                                        Returns all the given arguments merged with the default values.

                                        + + + public + arguments() : mixed + +
                                        +
                                        + + + + + + + + +
                                        +
                                        +

                                        + ask() + + +

                                        + + +

                                        Ask a question

                                        + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + askMultiline() + + +

                                        + + +

                                        Ask a question

                                        + + + public + askMultiline(string $question) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + askRaw() + + +

                                        + + +

                                        Ask a question

                                        + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + autoComplete() + + +

                                        + + +

                                        Ask a question with auto completion

                                        + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + $potentialAnswers + : array<string|int, mixed> +
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + choice() + + +

                                        + + +

                                        Ask a question with possible answers

                                        + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + $choices + : array<string|int, mixed> +
                                        +
                                        + +
                                        +
                                        + $errorMessage + : string + = 'Invalid choice'
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + comment() + + +

                                        + + +

                                        Output some data as a comment

                                        + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $messages + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        + +
                                        +

                                        + confirm() + + +

                                        + + +

                                        Prompt user for confirmation

                                        + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : mixed +
                                        +
                                        + +
                                        +
                                        + $param + : mixed + = false
                                        +
                                        + +
                                        +
                                        + $regex + : mixed + = '/^y/i'
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + error() + + +

                                        + + +

                                        Output some data as a error

                                        + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $messages + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + getAliases() + + +

                                        + + +

                                        Returns the aliases for the command.

                                        + + + public + getAliases() : array<string|int, mixed> + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + array<string|int, mixed> +
                                        + +
                                        +
                                        +

                                        + getApplication() + + +

                                        + + +

                                        Gets the application instance for this command.

                                        + + + public + getApplication() : Application|null + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + Application|null +
                                        + +
                                        +
                                        +

                                        + getDefaultDescription() + + +

                                        + + + + + public + static getDefaultDescription() : string|null + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + string|null +
                                        + +
                                        +
                                        +

                                        + getDefaultName() + + +

                                        + + + + + public + static getDefaultName() : string|null + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + string|null +
                                        + +
                                        +
                                        +

                                        + getDefinition() + + +

                                        + + +

                                        Gets the InputDefinition attached to this Command.

                                        + + + public + getDefinition() : InputDefinition + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + InputDefinition +
                                        + +
                                        +
                                        +

                                        + getDescription() + + +

                                        + + +

                                        Returns the description for the command.

                                        + + + public + getDescription() : string + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + string +
                                        + +
                                        +
                                        +

                                        + getHelp() + + +

                                        + + +

                                        Returns the help for the command.

                                        + + + public + getHelp() : string + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + string +
                                        + +
                                        +
                                        +

                                        + getHelper() + + +

                                        + + +

                                        Gets a helper instance by name.

                                        + + + public + getHelper(string $name) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + LogicException + +

                                        if no HelperSet is defined

                                        +
                                        + +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + +

                                        if the helper is not defined

                                        +
                                        + +
                                        +
                                        + + + + +
                                        +
                                        +

                                        + getHelperSet() + + +

                                        + + +

                                        Gets the helper set.

                                        + + + public + getHelperSet() : HelperSet|null + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + HelperSet|null +
                                        + +
                                        +
                                        +

                                        + getName() + + +

                                        + + +

                                        Returns the command name.

                                        + + + public + getName() : string|null + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + string|null +
                                        + +
                                        +
                                        +

                                        + getNativeDefinition() + + +

                                        + + +

                                        Gets the InputDefinition to be used to create representations of this Command.

                                        + + + public + getNativeDefinition() : InputDefinition + +
                                        +
                                        + +

                                        Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                        +

                                        This method is not part of public API and should not be used directly.

                                        +
                                        + + + + + + +
                                        +
                                        Return values
                                        + InputDefinition +
                                        + +
                                        +
                                        +

                                        + getProcessedHelp() + + +

                                        + + +

                                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                        + + + public + getProcessedHelp() : string + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + string +
                                        + +
                                        +
                                        +

                                        + getSynopsis() + + +

                                        + + +

                                        Returns the synopsis for the command.

                                        + + + public + getSynopsis([bool $short = false ]) : string + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $short + : bool + = false
                                        +
                                        +

                                        Whether to show the short version of the synopsis (with options folded) or not

                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + string +
                                        + +
                                        +
                                        +

                                        + getUsages() + + +

                                        + + +

                                        Returns alternative usages of the command.

                                        + + + public + getUsages() : array<string|int, mixed> + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + array<string|int, mixed> +
                                        + +
                                        +
                                        +

                                        + ignoreValidationErrors() + + +

                                        + + +

                                        Ignores validation errors.

                                        + + + public + ignoreValidationErrors() : mixed + +
                                        +
                                        + +

                                        This is mainly useful for the help command.

                                        +
                                        + + + + + + + +
                                        +
                                        +

                                        + info() + + +

                                        + + +

                                        Output some data as a info

                                        + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $messages + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + input() + + +

                                        + + +

                                        Get an argument or return the input object

                                        + + + public + input([string $data = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $data + : string + = null
                                        +
                                        +

                                        The argument to return

                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + isEnabled() + + +

                                        + + +

                                        Checks whether the command is enabled or not in the current environment.

                                        + + + public + isEnabled() : bool + +
                                        +
                                        + +

                                        Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                        +
                                        + + + + + + +
                                        +
                                        Return values
                                        + bool +
                                        + +
                                        +
                                        +

                                        + isHidden() + + +

                                        + + + + + public + isHidden() : bool + +
                                        +
                                        + + + + + + + +
                                        +
                                        Return values
                                        + bool + — +

                                        whether the command should be publicly shown or not

                                        +
                                        + +
                                        + +
                                        +
                                        + + + +

                                        Output some data as a link

                                        + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $link + : mixed +
                                        +
                                        + +
                                        +
                                        + $display + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + multiChoice() + + +

                                        + + +

                                        Ask a question with possible answers + multiple choice

                                        + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + $choices + : array<string|int, mixed> +
                                        +
                                        + +
                                        +
                                        + $errorMessage + : string + = 'Invalid choice'
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + option() + + +

                                        + + +

                                        Get an input option

                                        + + + public + option(string $name) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + options() + + +

                                        + + +

                                        Get all input options

                                        + + + public + options(string $name) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + output() + + +

                                        + + +

                                        Output data or return the output object

                                        + + + public + output([string $data = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $data + : string + = null
                                        +
                                        +

                                        The argument to return

                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + question() + + +

                                        + + +

                                        Output some data as a question

                                        + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $messages + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + run() + + +

                                        + + +

                                        Runs the command.

                                        + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                        +
                                        + +

                                        The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $input + : InputInterface +
                                        +
                                        + +
                                        +
                                        + $output + : OutputInterface +
                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + Exception + +

                                        When binding input fails. Bypass this by calling .

                                        +
                                        + +
                                        +
                                        + see +
                                        +
                                        + setCode() + + +
                                        +
                                        + see +
                                        +
                                        + execute() + + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + int + — +

                                        The command exit code

                                        +
                                        + +
                                        + +
                                        +
                                        +

                                        + runProcess() + + +

                                        + + +

                                        Run a new cli process

                                        + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $process + : array<string|int, mixed> +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + secret() + + +

                                        + + +

                                        Prompt user for input but hide keystrokes

                                        + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $question + : string +
                                        +
                                        + +
                                        +
                                        + $useFallback + : bool + = false
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + setAliases() + + +

                                        + + +

                                        Sets the aliases for the command.

                                        + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $aliases + : array<string|int, string> +
                                        +
                                        +

                                        An array of aliases for the command

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + +

                                        When an alias is invalid

                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setApplication() + + +

                                        + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $application + : Application|null + = null
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + setArgument() + + +

                                        + + +

                                        Add a new argument

                                        + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : mixed +
                                        +
                                        + +
                                        +
                                        + $mode + : mixed + = null
                                        +
                                        + +
                                        +
                                        + $description + : mixed + = ''
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + setCode() + + +

                                        + + +

                                        Sets the code to execute when running this command.

                                        + + + public + setCode(callable $code) : $this + +
                                        +
                                        + +

                                        If this method is used, it overrides the code defined +in the execute() method.

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $code + : callable +
                                        +
                                        +

                                        A callable(InputInterface $input, OutputInterface $output)

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + + +
                                        +
                                        + see +
                                        +
                                        + execute() + + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setDefinition() + + +

                                        + + +

                                        Sets an array of argument and option instances.

                                        + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $definition + : array<string|int, mixed>|InputDefinition +
                                        +
                                        +

                                        An array of argument and option instances or a definition instance

                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setDescription() + + +

                                        + + +

                                        Sets the description for the command.

                                        + + + public + setDescription(string $description) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $description + : string +
                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setHelp() + + +

                                        + + +

                                        Sets the help for the command.

                                        + + + public + setHelp(string $help) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $help + : string +
                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setHelperSet() + + +

                                        + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $helperSet + : HelperSet +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + setHidden() + + +

                                        + + + + + public + setHidden(bool $hidden) : $this + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $hidden + : bool +
                                        +
                                        +

                                        Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + final +
                                        +
                                        + +

                                        since Symfony 5.1

                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setName() + + +

                                        + + +

                                        Sets the name of the command.

                                        + + + public + setName(string $name) : $this + +
                                        +
                                        + +

                                        This method can set both the namespace and the name if +you separate them by a colon (:)

                                        +
                                        $command->setName('foo:bar');
                                        +
                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + +

                                        When the name is invalid

                                        +
                                        + +
                                        +
                                        + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + setOption() + + +

                                        + + +

                                        Add a new option

                                        + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $name + : mixed +
                                        +
                                        + +
                                        +
                                        + $shortcut + : mixed + = null
                                        +
                                        + +
                                        +
                                        + $mode + : mixed + = null
                                        +
                                        + +
                                        +
                                        + $description + : mixed + = ''
                                        +
                                        + +
                                        +
                                        + $default + : mixed + = null
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + setProcessTitle() + + +

                                        + + +

                                        Sets the process title of the command.

                                        + + + public + setProcessTitle(string $title) : $this + +
                                        +
                                        + +

                                        This feature should be used only when creating a long process command, +like a daemon.

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $title + : string +
                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + $this +
                                        + +
                                        +
                                        +

                                        + write() + + +

                                        + + +

                                        Output some data

                                        + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $messages + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + writeln() + + +

                                        + + +

                                        Output some data

                                        + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                        +
                                        + + +
                                        Parameters
                                        +
                                        +
                                        + $messages + : mixed +
                                        +
                                        + +
                                        +
                                        + $options + : mixed + = 0
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + config() + + +

                                        + + + + + protected + config() : mixed + +
                                        +
                                        + + + + + + + + +
                                        +
                                        +

                                        + configure() + + +

                                        + + +

                                        Configures the current command.

                                        + + + protected + configure() : mixed + +
                                        +
                                        + + + + + + + + +
                                        +
                                        +

                                        + execute() + + +

                                        + + +

                                        Executes the current command.

                                        + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                        +
                                        + +

                                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $input + : InputInterface +
                                        +
                                        + +
                                        +
                                        + $output + : OutputInterface +
                                        +
                                        + +
                                        +
                                        + + + + + +
                                        +
                                        Return values
                                        + int + — +

                                        0 if everything went fine, or an exit code

                                        +
                                        + +
                                        + +
                                        +
                                        +

                                        + handle() + + +

                                        + + +

                                        Executes the current command.

                                        + + + protected + handle() : int + +
                                        +
                                        + +

                                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                        +
                                        + + + + + + +
                                        +
                                        Return values
                                        + int + — +

                                        0 if everything went fine, or an exit code

                                        +
                                        + +
                                        + +
                                        +
                                        +

                                        + initialize() + + +

                                        + + +

                                        Initializes the command after the input has been bound and before the input +is validated.

                                        + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                        +
                                        + +

                                        This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $input + : InputInterface +
                                        +
                                        + +
                                        +
                                        + $output + : OutputInterface +
                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + see +
                                        +
                                        + InputInterface::bind() + + +
                                        +
                                        + see +
                                        +
                                        + InputInterface::validate() + + +
                                        +
                                        + + + + +
                                        +
                                        +

                                        + interact() + + +

                                        + + +

                                        Interacts with the user.

                                        + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                        +
                                        + +

                                        This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $input + : InputInterface +
                                        +
                                        + +
                                        +
                                        + $output + : OutputInterface +
                                        +
                                        + +
                                        +
                                        + + + + + + +
                                        +
                                        +

                                        + validateName() + + +

                                        + + +

                                        Validates a command name.

                                        + + + private + validateName(string $name) : mixed + +
                                        +
                                        + +

                                        It must be non-empty and parts can optionally be separated by ":".

                                        +
                                        + +
                                        Parameters
                                        +
                                        +
                                        + $name + : string +
                                        +
                                        + +
                                        +
                                        + + +
                                        + Tags + + +
                                        +
                                        +
                                        + throws +
                                        +
                                        + InvalidArgumentException + +

                                        When the name is invalid

                                        +
                                        + +
                                        +
                                        + + + + +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        
                                        +        
                                        + +
                                        +
                                        + + + +
                                        +
                                        +
                                        + +
                                        + On this page + + +
                                        + +
                                        +
                                        +
                                        +
                                        +
                                        +

                                        Search results

                                        + +
                                        +
                                        +
                                          +
                                          +
                                          +
                                          +
                                          + + +
                                          + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateSchemaCommand.html b/src/public/api/classes/Aloe-Command-GenerateSchemaCommand.html new file mode 100644 index 00000000..1c5870fd --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateSchemaCommand.html @@ -0,0 +1,5273 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                          +

                                          Leaf PHP

                                          + + + + + +
                                          + +
                                          +
                                          + + + + +
                                          +
                                          + + +
                                          +

                                          + GenerateSchemaCommand + + + extends Command + + +
                                          + in package + +
                                          + + +

                                          + +
                                          + + +
                                          + + + +

                                          Base class for Aloe Commands.

                                          + + + + + + + + + +

                                          + Table of Contents + + +

                                          + + + + + + + +

                                          + Constants + + +

                                          +
                                          +
                                          + FAILURE + +  = 1 +
                                          + +
                                          + INVALID + +  = 2 +
                                          + +
                                          + SUCCESS + +  = 0 +
                                          + +
                                          + + +

                                          + Properties + + +

                                          +
                                          +
                                          + $description + +  : mixed +
                                          +
                                          Description for command
                                          + +
                                          + $help + +  : mixed +
                                          +
                                          Help for command
                                          + +
                                          + $defaultDescription + +  : string|null +
                                          + +
                                          + $defaultName + +  : string|null +
                                          + +
                                          + $input + +  : InputInterface +
                                          +
                                          The input object
                                          + +
                                          + $output + +  : OutputInterface +
                                          +
                                          The output object
                                          + +
                                          + $aliases + +  : mixed +
                                          + +
                                          + $application + +  : mixed +
                                          + +
                                          + $code + +  : mixed +
                                          + +
                                          + $definition + +  : mixed +
                                          + +
                                          + $fullDefinition + +  : mixed +
                                          + +
                                          + $helperSet + +  : mixed +
                                          + +
                                          + $hidden + +  : mixed +
                                          + +
                                          + $ignoreValidationErrors + +  : mixed +
                                          + +
                                          + $name + +  : mixed +
                                          +
                                          The name of command to run in console
                                          + +
                                          + $processTitle + +  : mixed +
                                          + +
                                          + $synopsis + +  : mixed +
                                          + +
                                          + $usages + +  : mixed +
                                          + +
                                          + +

                                          + Methods + + +

                                          +
                                          +
                                          + __construct() + +  : mixed +
                                          + +
                                          + addArgument() + +  : $this +
                                          +
                                          Adds an argument.
                                          + +
                                          + addOption() + +  : $this +
                                          +
                                          Adds an option.
                                          + +
                                          + addUsage() + +  : $this +
                                          +
                                          Add a command usage example, it'll be prefixed with the command name.
                                          + +
                                          + argument() + +  : mixed +
                                          +
                                          Returns the argument value for a given argument name.
                                          + +
                                          + arguments() + +  : mixed +
                                          +
                                          Returns all the given arguments merged with the default values.
                                          + +
                                          + ask() + +  : mixed +
                                          +
                                          Ask a question
                                          + +
                                          + askMultiline() + +  : mixed +
                                          +
                                          Ask a question
                                          + +
                                          + askRaw() + +  : mixed +
                                          +
                                          Ask a question
                                          + +
                                          + autoComplete() + +  : mixed +
                                          +
                                          Ask a question with auto completion
                                          + +
                                          + choice() + +  : mixed +
                                          +
                                          Ask a question with possible answers
                                          + +
                                          + comment() + +  : mixed +
                                          +
                                          Output some data as a comment
                                          + +
                                          + complete() + +  : void +
                                          +
                                          Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                          + +
                                          + confirm() + +  : mixed +
                                          +
                                          Prompt user for confirmation
                                          + +
                                          + error() + +  : mixed +
                                          +
                                          Output some data as a error
                                          + +
                                          + getAliases() + +  : array<string|int, mixed> +
                                          +
                                          Returns the aliases for the command.
                                          + +
                                          + getApplication() + +  : Application|null +
                                          +
                                          Gets the application instance for this command.
                                          + +
                                          + getDefaultDescription() + +  : string|null +
                                          + +
                                          + getDefaultName() + +  : string|null +
                                          + +
                                          + getDefinition() + +  : InputDefinition +
                                          +
                                          Gets the InputDefinition attached to this Command.
                                          + +
                                          + getDescription() + +  : string +
                                          +
                                          Returns the description for the command.
                                          + +
                                          + getHelp() + +  : string +
                                          +
                                          Returns the help for the command.
                                          + +
                                          + getHelper() + +  : mixed +
                                          +
                                          Gets a helper instance by name.
                                          + +
                                          + getHelperSet() + +  : HelperSet|null +
                                          +
                                          Gets the helper set.
                                          + +
                                          + getName() + +  : string|null +
                                          +
                                          Returns the command name.
                                          + +
                                          + getNativeDefinition() + +  : InputDefinition +
                                          +
                                          Gets the InputDefinition to be used to create representations of this Command.
                                          + +
                                          + getProcessedHelp() + +  : string +
                                          +
                                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                          + +
                                          + getSynopsis() + +  : string +
                                          +
                                          Returns the synopsis for the command.
                                          + +
                                          + getUsages() + +  : array<string|int, mixed> +
                                          +
                                          Returns alternative usages of the command.
                                          + +
                                          + ignoreValidationErrors() + +  : mixed +
                                          +
                                          Ignores validation errors.
                                          + +
                                          + info() + +  : mixed +
                                          +
                                          Output some data as a info
                                          + +
                                          + input() + +  : mixed +
                                          +
                                          Get an argument or return the input object
                                          + +
                                          + isEnabled() + +  : bool +
                                          +
                                          Checks whether the command is enabled or not in the current environment.
                                          + +
                                          + isHidden() + +  : bool +
                                          + +
                                          + link() + +  : mixed +
                                          +
                                          Output some data as a link
                                          + +
                                          + multiChoice() + +  : mixed +
                                          +
                                          Ask a question with possible answers + multiple choice
                                          + +
                                          + option() + +  : mixed +
                                          +
                                          Get an input option
                                          + +
                                          + options() + +  : mixed +
                                          +
                                          Get all input options
                                          + +
                                          + output() + +  : mixed +
                                          +
                                          Output data or return the output object
                                          + +
                                          + question() + +  : mixed +
                                          +
                                          Output some data as a question
                                          + +
                                          + run() + +  : int +
                                          +
                                          Runs the command.
                                          + +
                                          + runProcess() + +  : mixed +
                                          +
                                          Run a new cli process
                                          + +
                                          + secret() + +  : mixed +
                                          +
                                          Prompt user for input but hide keystrokes
                                          + +
                                          + setAliases() + +  : $this +
                                          +
                                          Sets the aliases for the command.
                                          + +
                                          + setApplication() + +  : mixed +
                                          + +
                                          + setArgument() + +  : mixed +
                                          +
                                          Add a new argument
                                          + +
                                          + setCode() + +  : $this +
                                          +
                                          Sets the code to execute when running this command.
                                          + +
                                          + setDefinition() + +  : $this +
                                          +
                                          Sets an array of argument and option instances.
                                          + +
                                          + setDescription() + +  : $this +
                                          +
                                          Sets the description for the command.
                                          + +
                                          + setHelp() + +  : $this +
                                          +
                                          Sets the help for the command.
                                          + +
                                          + setHelperSet() + +  : mixed +
                                          + +
                                          + setHidden() + +  : $this +
                                          + +
                                          + setName() + +  : $this +
                                          +
                                          Sets the name of the command.
                                          + +
                                          + setOption() + +  : mixed +
                                          +
                                          Add a new option
                                          + +
                                          + setProcessTitle() + +  : $this +
                                          +
                                          Sets the process title of the command.
                                          + +
                                          + write() + +  : mixed +
                                          +
                                          Output some data
                                          + +
                                          + writeln() + +  : mixed +
                                          +
                                          Output some data
                                          + +
                                          + config() + +  : mixed +
                                          + +
                                          + configure() + +  : mixed +
                                          +
                                          Configures the current command.
                                          + +
                                          + execute() + +  : int +
                                          +
                                          Executes the current command.
                                          + +
                                          + generateExtraFiles() + +  : mixed +
                                          + +
                                          + handle() + +  : int +
                                          +
                                          Executes the current command.
                                          + +
                                          + initialize() + +  : mixed +
                                          +
                                          Initializes the command after the input has been bound and before the input +is validated.
                                          + +
                                          + interact() + +  : mixed +
                                          +
                                          Interacts with the user.
                                          + +
                                          + validateName() + +  : mixed +
                                          +
                                          Validates a command name.
                                          + +
                                          + + + + +
                                          +

                                          + Constants + + +

                                          +
                                          +

                                          + FAILURE + + +

                                          + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                          +
                                          +

                                          + INVALID + + +

                                          + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                          +
                                          +

                                          + SUCCESS + + +

                                          + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                          +
                                          + + +
                                          +

                                          + Properties + + +

                                          +
                                          +

                                          + $description + + + + +

                                          + + +

                                          Description for command

                                          + + + + public + mixed + $description + = 'Create a new schema file' + + + + + + + +
                                          +
                                          +

                                          + $help + + + + +

                                          + + +

                                          Help for command

                                          + + + + public + mixed + $help + = 'Generate a new database schema file' + + + + + + + +
                                          +
                                          +

                                          + $defaultDescription + + + + +

                                          + + + + + + protected + static string|null + $defaultDescription + + + +

                                          The default command description

                                          +
                                          + + + + + +
                                          +
                                          +

                                          + $defaultName + + + + +

                                          + + + + + + protected + static string|null + $defaultName + = 'g:schema' + + +

                                          The default command name

                                          +
                                          + + + + + +
                                          +
                                          +

                                          + $input + + + + +

                                          + + +

                                          The input object

                                          + + + + protected + InputInterface + $input + + + + + + + + +
                                          +
                                          +

                                          + $output + + + + +

                                          + + +

                                          The output object

                                          + + + + protected + OutputInterface + $output + + + + + + + + +
                                          +
                                          +

                                          + $aliases + + + + +

                                          + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                          +
                                          +

                                          + $application + + + + +

                                          + + + + + + private + mixed + $application + + + + + + + + +
                                          +
                                          +

                                          + $code + + + + +

                                          + + + + + + private + mixed + $code + + + + + + + + +
                                          +
                                          +

                                          + $definition + + + + +

                                          + + + + + + private + mixed + $definition + + + + + + + + +
                                          +
                                          +

                                          + $fullDefinition + + + + +

                                          + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                          +
                                          +

                                          + $helperSet + + + + +

                                          + + + + + + private + mixed + $helperSet + + + + + + + + +
                                          +
                                          +

                                          + $hidden + + + + +

                                          + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                          +
                                          +

                                          + $ignoreValidationErrors + + + + +

                                          + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                          +
                                          +

                                          + $name + + + + +

                                          + + +

                                          The name of command to run in console

                                          + + + + private + mixed + $name + + + + + + + + +
                                          +
                                          +

                                          + $processTitle + + + + +

                                          + + + + + + private + mixed + $processTitle + + + + + + + + +
                                          +
                                          +

                                          + $synopsis + + + + +

                                          + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                          +
                                          +

                                          + $usages + + + + +

                                          + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                          +
                                          + +
                                          +

                                          + Methods + + +

                                          +
                                          +

                                          + __construct() + + +

                                          + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string|null + = null
                                          +
                                          +

                                          The name of the command; passing null means it must be set in configure()

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + LogicException + +

                                          When the command name is empty

                                          +
                                          + +
                                          +
                                          + + + + +
                                          +
                                          +

                                          + addArgument() + + +

                                          + + +

                                          Adds an argument.

                                          + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + $mode + : int|null + = null
                                          +
                                          +

                                          The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                          +
                                          + +
                                          +
                                          + $description + : string + = ''
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          +

                                          The default value (for InputArgument::OPTIONAL mode only)

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + +

                                          When argument mode is not valid

                                          +
                                          + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + addOption() + + +

                                          + + +

                                          Adds an option.

                                          + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + $shortcut + : string|array<string|int, mixed>|null + = null
                                          +
                                          +

                                          The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                          +
                                          + +
                                          +
                                          + $mode + : int|null + = null
                                          +
                                          +

                                          The option mode: One of the InputOption::VALUE_* constants

                                          +
                                          + +
                                          +
                                          + $description + : string + = ''
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          +

                                          The default value (must be null for InputOption::VALUE_NONE)

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + +

                                          If option mode is invalid or incompatible

                                          +
                                          + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + addUsage() + + +

                                          + + +

                                          Add a command usage example, it'll be prefixed with the command name.

                                          + + + public + addUsage(string $usage) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $usage + : string +
                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + argument() + + +

                                          + + +

                                          Returns the argument value for a given argument name.

                                          + + + public + argument(string $name) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + arguments() + + +

                                          + + +

                                          Returns all the given arguments merged with the default values.

                                          + + + public + arguments() : mixed + +
                                          +
                                          + + + + + + + + +
                                          +
                                          +

                                          + ask() + + +

                                          + + +

                                          Ask a question

                                          + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + askMultiline() + + +

                                          + + +

                                          Ask a question

                                          + + + public + askMultiline(string $question) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + askRaw() + + +

                                          + + +

                                          Ask a question

                                          + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + autoComplete() + + +

                                          + + +

                                          Ask a question with auto completion

                                          + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + $potentialAnswers + : array<string|int, mixed> +
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + choice() + + +

                                          + + +

                                          Ask a question with possible answers

                                          + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + $choices + : array<string|int, mixed> +
                                          +
                                          + +
                                          +
                                          + $errorMessage + : string + = 'Invalid choice'
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + comment() + + +

                                          + + +

                                          Output some data as a comment

                                          + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $messages + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          + +
                                          +

                                          + confirm() + + +

                                          + + +

                                          Prompt user for confirmation

                                          + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : mixed +
                                          +
                                          + +
                                          +
                                          + $param + : mixed + = false
                                          +
                                          + +
                                          +
                                          + $regex + : mixed + = '/^y/i'
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + error() + + +

                                          + + +

                                          Output some data as a error

                                          + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $messages + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + getAliases() + + +

                                          + + +

                                          Returns the aliases for the command.

                                          + + + public + getAliases() : array<string|int, mixed> + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + array<string|int, mixed> +
                                          + +
                                          +
                                          +

                                          + getApplication() + + +

                                          + + +

                                          Gets the application instance for this command.

                                          + + + public + getApplication() : Application|null + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + Application|null +
                                          + +
                                          +
                                          +

                                          + getDefaultDescription() + + +

                                          + + + + + public + static getDefaultDescription() : string|null + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + string|null +
                                          + +
                                          +
                                          +

                                          + getDefaultName() + + +

                                          + + + + + public + static getDefaultName() : string|null + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + string|null +
                                          + +
                                          +
                                          +

                                          + getDefinition() + + +

                                          + + +

                                          Gets the InputDefinition attached to this Command.

                                          + + + public + getDefinition() : InputDefinition + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + InputDefinition +
                                          + +
                                          +
                                          +

                                          + getDescription() + + +

                                          + + +

                                          Returns the description for the command.

                                          + + + public + getDescription() : string + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + string +
                                          + +
                                          +
                                          +

                                          + getHelp() + + +

                                          + + +

                                          Returns the help for the command.

                                          + + + public + getHelp() : string + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + string +
                                          + +
                                          +
                                          +

                                          + getHelper() + + +

                                          + + +

                                          Gets a helper instance by name.

                                          + + + public + getHelper(string $name) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + LogicException + +

                                          if no HelperSet is defined

                                          +
                                          + +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + +

                                          if the helper is not defined

                                          +
                                          + +
                                          +
                                          + + + + +
                                          +
                                          +

                                          + getHelperSet() + + +

                                          + + +

                                          Gets the helper set.

                                          + + + public + getHelperSet() : HelperSet|null + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + HelperSet|null +
                                          + +
                                          +
                                          +

                                          + getName() + + +

                                          + + +

                                          Returns the command name.

                                          + + + public + getName() : string|null + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + string|null +
                                          + +
                                          +
                                          +

                                          + getNativeDefinition() + + +

                                          + + +

                                          Gets the InputDefinition to be used to create representations of this Command.

                                          + + + public + getNativeDefinition() : InputDefinition + +
                                          +
                                          + +

                                          Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                          +

                                          This method is not part of public API and should not be used directly.

                                          +
                                          + + + + + + +
                                          +
                                          Return values
                                          + InputDefinition +
                                          + +
                                          +
                                          +

                                          + getProcessedHelp() + + +

                                          + + +

                                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                          + + + public + getProcessedHelp() : string + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + string +
                                          + +
                                          +
                                          +

                                          + getSynopsis() + + +

                                          + + +

                                          Returns the synopsis for the command.

                                          + + + public + getSynopsis([bool $short = false ]) : string + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $short + : bool + = false
                                          +
                                          +

                                          Whether to show the short version of the synopsis (with options folded) or not

                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + string +
                                          + +
                                          +
                                          +

                                          + getUsages() + + +

                                          + + +

                                          Returns alternative usages of the command.

                                          + + + public + getUsages() : array<string|int, mixed> + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + array<string|int, mixed> +
                                          + +
                                          +
                                          +

                                          + ignoreValidationErrors() + + +

                                          + + +

                                          Ignores validation errors.

                                          + + + public + ignoreValidationErrors() : mixed + +
                                          +
                                          + +

                                          This is mainly useful for the help command.

                                          +
                                          + + + + + + + +
                                          +
                                          +

                                          + info() + + +

                                          + + +

                                          Output some data as a info

                                          + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $messages + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + input() + + +

                                          + + +

                                          Get an argument or return the input object

                                          + + + public + input([string $data = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $data + : string + = null
                                          +
                                          +

                                          The argument to return

                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + isEnabled() + + +

                                          + + +

                                          Checks whether the command is enabled or not in the current environment.

                                          + + + public + isEnabled() : bool + +
                                          +
                                          + +

                                          Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                          +
                                          + + + + + + +
                                          +
                                          Return values
                                          + bool +
                                          + +
                                          +
                                          +

                                          + isHidden() + + +

                                          + + + + + public + isHidden() : bool + +
                                          +
                                          + + + + + + + +
                                          +
                                          Return values
                                          + bool + — +

                                          whether the command should be publicly shown or not

                                          +
                                          + +
                                          + +
                                          +
                                          + + + +

                                          Output some data as a link

                                          + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $link + : mixed +
                                          +
                                          + +
                                          +
                                          + $display + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + multiChoice() + + +

                                          + + +

                                          Ask a question with possible answers + multiple choice

                                          + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + $choices + : array<string|int, mixed> +
                                          +
                                          + +
                                          +
                                          + $errorMessage + : string + = 'Invalid choice'
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + option() + + +

                                          + + +

                                          Get an input option

                                          + + + public + option(string $name) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + options() + + +

                                          + + +

                                          Get all input options

                                          + + + public + options(string $name) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + output() + + +

                                          + + +

                                          Output data or return the output object

                                          + + + public + output([string $data = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $data + : string + = null
                                          +
                                          +

                                          The argument to return

                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + question() + + +

                                          + + +

                                          Output some data as a question

                                          + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $messages + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + run() + + +

                                          + + +

                                          Runs the command.

                                          + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                          +
                                          + +

                                          The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $input + : InputInterface +
                                          +
                                          + +
                                          +
                                          + $output + : OutputInterface +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + Exception + +

                                          When binding input fails. Bypass this by calling .

                                          +
                                          + +
                                          +
                                          + see +
                                          +
                                          + setCode() + + +
                                          +
                                          + see +
                                          +
                                          + execute() + + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + int + — +

                                          The command exit code

                                          +
                                          + +
                                          + +
                                          +
                                          +

                                          + runProcess() + + +

                                          + + +

                                          Run a new cli process

                                          + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $process + : array<string|int, mixed> +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + secret() + + +

                                          + + +

                                          Prompt user for input but hide keystrokes

                                          + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $question + : string +
                                          +
                                          + +
                                          +
                                          + $useFallback + : bool + = false
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + setAliases() + + +

                                          + + +

                                          Sets the aliases for the command.

                                          + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $aliases + : array<string|int, string> +
                                          +
                                          +

                                          An array of aliases for the command

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + +

                                          When an alias is invalid

                                          +
                                          + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setApplication() + + +

                                          + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $application + : Application|null + = null
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + setArgument() + + +

                                          + + +

                                          Add a new argument

                                          + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : mixed +
                                          +
                                          + +
                                          +
                                          + $mode + : mixed + = null
                                          +
                                          + +
                                          +
                                          + $description + : mixed + = ''
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + setCode() + + +

                                          + + +

                                          Sets the code to execute when running this command.

                                          + + + public + setCode(callable $code) : $this + +
                                          +
                                          + +

                                          If this method is used, it overrides the code defined +in the execute() method.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $code + : callable +
                                          +
                                          +

                                          A callable(InputInterface $input, OutputInterface $output)

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + + +
                                          +
                                          + see +
                                          +
                                          + execute() + + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setDefinition() + + +

                                          + + +

                                          Sets an array of argument and option instances.

                                          + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $definition + : array<string|int, mixed>|InputDefinition +
                                          +
                                          +

                                          An array of argument and option instances or a definition instance

                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setDescription() + + +

                                          + + +

                                          Sets the description for the command.

                                          + + + public + setDescription(string $description) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $description + : string +
                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setHelp() + + +

                                          + + +

                                          Sets the help for the command.

                                          + + + public + setHelp(string $help) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $help + : string +
                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setHelperSet() + + +

                                          + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $helperSet + : HelperSet +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + setHidden() + + +

                                          + + + + + public + setHidden(bool $hidden) : $this + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $hidden + : bool +
                                          +
                                          +

                                          Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + final +
                                          +
                                          + +

                                          since Symfony 5.1

                                          +
                                          + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setName() + + +

                                          + + +

                                          Sets the name of the command.

                                          + + + public + setName(string $name) : $this + +
                                          +
                                          + +

                                          This method can set both the namespace and the name if +you separate them by a colon (:)

                                          +
                                          $command->setName('foo:bar');
                                          +
                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + +

                                          When the name is invalid

                                          +
                                          + +
                                          +
                                          + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + setOption() + + +

                                          + + +

                                          Add a new option

                                          + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $name + : mixed +
                                          +
                                          + +
                                          +
                                          + $shortcut + : mixed + = null
                                          +
                                          + +
                                          +
                                          + $mode + : mixed + = null
                                          +
                                          + +
                                          +
                                          + $description + : mixed + = ''
                                          +
                                          + +
                                          +
                                          + $default + : mixed + = null
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + setProcessTitle() + + +

                                          + + +

                                          Sets the process title of the command.

                                          + + + public + setProcessTitle(string $title) : $this + +
                                          +
                                          + +

                                          This feature should be used only when creating a long process command, +like a daemon.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $title + : string +
                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + $this +
                                          + +
                                          +
                                          +

                                          + write() + + +

                                          + + +

                                          Output some data

                                          + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $messages + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + writeln() + + +

                                          + + +

                                          Output some data

                                          + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $messages + : mixed +
                                          +
                                          + +
                                          +
                                          + $options + : mixed + = 0
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          + +
                                          +

                                          + configure() + + +

                                          + + +

                                          Configures the current command.

                                          + + + protected + configure() : mixed + +
                                          +
                                          + + + + + + + + +
                                          +
                                          +

                                          + execute() + + +

                                          + + +

                                          Executes the current command.

                                          + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                          +
                                          + +

                                          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $input + : InputInterface +
                                          +
                                          + +
                                          +
                                          + $output + : OutputInterface +
                                          +
                                          + +
                                          +
                                          + + + + + +
                                          +
                                          Return values
                                          + int + — +

                                          0 if everything went fine, or an exit code

                                          +
                                          + +
                                          + +
                                          +
                                          +

                                          + generateExtraFiles() + + +

                                          + + + + + protected + generateExtraFiles(mixed $modelName) : mixed + +
                                          +
                                          + + +
                                          Parameters
                                          +
                                          +
                                          + $modelName + : mixed +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + handle() + + +

                                          + + +

                                          Executes the current command.

                                          + + + protected + handle() : int + +
                                          +
                                          + +

                                          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                          +
                                          + + + + + + +
                                          +
                                          Return values
                                          + int + — +

                                          0 if everything went fine, or an exit code

                                          +
                                          + +
                                          + +
                                          +
                                          +

                                          + initialize() + + +

                                          + + +

                                          Initializes the command after the input has been bound and before the input +is validated.

                                          + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                          +
                                          + +

                                          This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $input + : InputInterface +
                                          +
                                          + +
                                          +
                                          + $output + : OutputInterface +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + see +
                                          +
                                          + InputInterface::bind() + + +
                                          +
                                          + see +
                                          +
                                          + InputInterface::validate() + + +
                                          +
                                          + + + + +
                                          +
                                          +

                                          + interact() + + +

                                          + + +

                                          Interacts with the user.

                                          + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                          +
                                          + +

                                          This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $input + : InputInterface +
                                          +
                                          + +
                                          +
                                          + $output + : OutputInterface +
                                          +
                                          + +
                                          +
                                          + + + + + + +
                                          +
                                          +

                                          + validateName() + + +

                                          + + +

                                          Validates a command name.

                                          + + + private + validateName(string $name) : mixed + +
                                          +
                                          + +

                                          It must be non-empty and parts can optionally be separated by ":".

                                          +
                                          + +
                                          Parameters
                                          +
                                          +
                                          + $name + : string +
                                          +
                                          + +
                                          +
                                          + + +
                                          + Tags + + +
                                          +
                                          +
                                          + throws +
                                          +
                                          + InvalidArgumentException + +

                                          When the name is invalid

                                          +
                                          + +
                                          +
                                          + + + + +
                                          +
                                          + +
                                          +
                                          +
                                          +
                                          +
                                          
                                          +        
                                          + +
                                          +
                                          + + + +
                                          +
                                          +
                                          + +
                                          + On this page + + +
                                          + +
                                          +
                                          +
                                          +
                                          +
                                          +

                                          Search results

                                          + +
                                          +
                                          +
                                            +
                                            +
                                            +
                                            +
                                            + + +
                                            + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-GenerateTemplateCommand.html b/src/public/api/classes/Aloe-Command-GenerateTemplateCommand.html new file mode 100644 index 00000000..61599ed8 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-GenerateTemplateCommand.html @@ -0,0 +1,5357 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                            +

                                            Leaf PHP

                                            + + + + + +
                                            + +
                                            +
                                            + + + + +
                                            +
                                            + + +
                                            +

                                            + GenerateTemplateCommand + + + extends Command + + +
                                            + in package + +
                                            + + +

                                            + +
                                            + + +
                                            + + + +

                                            Base class for Aloe Commands.

                                            + + + + + + + + + +

                                            + Table of Contents + + +

                                            + + + + + + + +

                                            + Constants + + +

                                            +
                                            +
                                            + FAILURE + +  = 1 +
                                            + +
                                            + INVALID + +  = 2 +
                                            + +
                                            + SUCCESS + +  = 0 +
                                            + +
                                            + + +

                                            + Properties + + +

                                            +
                                            +
                                            + $description + +  : mixed +
                                            +
                                            Description for command
                                            + +
                                            + $help + +  : mixed +
                                            +
                                            Help for command
                                            + +
                                            + $defaultDescription + +  : string|null +
                                            + +
                                            + $defaultName + +  : string|null +
                                            + +
                                            + $input + +  : InputInterface +
                                            +
                                            The input object
                                            + +
                                            + $output + +  : OutputInterface +
                                            +
                                            The output object
                                            + +
                                            + $type + +  : mixed +
                                            + +
                                            + $aliases + +  : mixed +
                                            + +
                                            + $application + +  : mixed +
                                            + +
                                            + $code + +  : mixed +
                                            + +
                                            + $definition + +  : mixed +
                                            + +
                                            + $fullDefinition + +  : mixed +
                                            + +
                                            + $helperSet + +  : mixed +
                                            + +
                                            + $hidden + +  : mixed +
                                            + +
                                            + $ignoreValidationErrors + +  : mixed +
                                            + +
                                            + $name + +  : mixed +
                                            +
                                            The name of command to run in console
                                            + +
                                            + $processTitle + +  : mixed +
                                            + +
                                            + $synopsis + +  : mixed +
                                            + +
                                            + $usages + +  : mixed +
                                            + +
                                            + +

                                            + Methods + + +

                                            +
                                            +
                                            + __construct() + +  : mixed +
                                            + +
                                            + addArgument() + +  : $this +
                                            +
                                            Adds an argument.
                                            + +
                                            + addOption() + +  : $this +
                                            +
                                            Adds an option.
                                            + +
                                            + addUsage() + +  : $this +
                                            +
                                            Add a command usage example, it'll be prefixed with the command name.
                                            + +
                                            + argument() + +  : mixed +
                                            +
                                            Returns the argument value for a given argument name.
                                            + +
                                            + arguments() + +  : mixed +
                                            +
                                            Returns all the given arguments merged with the default values.
                                            + +
                                            + ask() + +  : mixed +
                                            +
                                            Ask a question
                                            + +
                                            + askMultiline() + +  : mixed +
                                            +
                                            Ask a question
                                            + +
                                            + askRaw() + +  : mixed +
                                            +
                                            Ask a question
                                            + +
                                            + autoComplete() + +  : mixed +
                                            +
                                            Ask a question with auto completion
                                            + +
                                            + choice() + +  : mixed +
                                            +
                                            Ask a question with possible answers
                                            + +
                                            + comment() + +  : mixed +
                                            +
                                            Output some data as a comment
                                            + +
                                            + complete() + +  : void +
                                            +
                                            Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                            + +
                                            + confirm() + +  : mixed +
                                            +
                                            Prompt user for confirmation
                                            + +
                                            + error() + +  : mixed +
                                            +
                                            Output some data as a error
                                            + +
                                            + getAliases() + +  : array<string|int, mixed> +
                                            +
                                            Returns the aliases for the command.
                                            + +
                                            + getApplication() + +  : Application|null +
                                            +
                                            Gets the application instance for this command.
                                            + +
                                            + getDefaultDescription() + +  : string|null +
                                            + +
                                            + getDefaultName() + +  : string|null +
                                            + +
                                            + getDefinition() + +  : InputDefinition +
                                            +
                                            Gets the InputDefinition attached to this Command.
                                            + +
                                            + getDescription() + +  : string +
                                            +
                                            Returns the description for the command.
                                            + +
                                            + getHelp() + +  : string +
                                            +
                                            Returns the help for the command.
                                            + +
                                            + getHelper() + +  : mixed +
                                            +
                                            Gets a helper instance by name.
                                            + +
                                            + getHelperSet() + +  : HelperSet|null +
                                            +
                                            Gets the helper set.
                                            + +
                                            + getName() + +  : string|null +
                                            +
                                            Returns the command name.
                                            + +
                                            + getNativeDefinition() + +  : InputDefinition +
                                            +
                                            Gets the InputDefinition to be used to create representations of this Command.
                                            + +
                                            + getProcessedHelp() + +  : string +
                                            +
                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                            + +
                                            + getSynopsis() + +  : string +
                                            +
                                            Returns the synopsis for the command.
                                            + +
                                            + getUsages() + +  : array<string|int, mixed> +
                                            +
                                            Returns alternative usages of the command.
                                            + +
                                            + ignoreValidationErrors() + +  : mixed +
                                            +
                                            Ignores validation errors.
                                            + +
                                            + info() + +  : mixed +
                                            +
                                            Output some data as a info
                                            + +
                                            + input() + +  : mixed +
                                            +
                                            Get an argument or return the input object
                                            + +
                                            + isEnabled() + +  : bool +
                                            +
                                            Checks whether the command is enabled or not in the current environment.
                                            + +
                                            + isHidden() + +  : bool +
                                            + +
                                            + link() + +  : mixed +
                                            +
                                            Output some data as a link
                                            + +
                                            + multiChoice() + +  : mixed +
                                            +
                                            Ask a question with possible answers + multiple choice
                                            + +
                                            + option() + +  : mixed +
                                            +
                                            Get an input option
                                            + +
                                            + options() + +  : mixed +
                                            +
                                            Get all input options
                                            + +
                                            + output() + +  : mixed +
                                            +
                                            Output data or return the output object
                                            + +
                                            + question() + +  : mixed +
                                            +
                                            Output some data as a question
                                            + +
                                            + run() + +  : int +
                                            +
                                            Runs the command.
                                            + +
                                            + runProcess() + +  : mixed +
                                            +
                                            Run a new cli process
                                            + +
                                            + secret() + +  : mixed +
                                            +
                                            Prompt user for input but hide keystrokes
                                            + +
                                            + setAliases() + +  : $this +
                                            +
                                            Sets the aliases for the command.
                                            + +
                                            + setApplication() + +  : mixed +
                                            + +
                                            + setArgument() + +  : mixed +
                                            +
                                            Add a new argument
                                            + +
                                            + setCode() + +  : $this +
                                            +
                                            Sets the code to execute when running this command.
                                            + +
                                            + setDefinition() + +  : $this +
                                            +
                                            Sets an array of argument and option instances.
                                            + +
                                            + setDescription() + +  : $this +
                                            +
                                            Sets the description for the command.
                                            + +
                                            + setHelp() + +  : $this +
                                            +
                                            Sets the help for the command.
                                            + +
                                            + setHelperSet() + +  : mixed +
                                            + +
                                            + setHidden() + +  : $this +
                                            + +
                                            + setName() + +  : $this +
                                            +
                                            Sets the name of the command.
                                            + +
                                            + setOption() + +  : mixed +
                                            +
                                            Add a new option
                                            + +
                                            + setProcessTitle() + +  : $this +
                                            +
                                            Sets the process title of the command.
                                            + +
                                            + write() + +  : mixed +
                                            +
                                            Output some data
                                            + +
                                            + writeln() + +  : mixed +
                                            +
                                            Output some data
                                            + +
                                            + config() + +  : mixed +
                                            + +
                                            + configure() + +  : mixed +
                                            +
                                            Configures the current command.
                                            + +
                                            + execute() + +  : int +
                                            +
                                            Executes the current command.
                                            + +
                                            + generateTemplateData() + +  : mixed +
                                            + +
                                            + getTemplateName() + +  : mixed +
                                            + +
                                            + handle() + +  : int +
                                            +
                                            Executes the current command.
                                            + +
                                            + initialize() + +  : mixed +
                                            +
                                            Initializes the command after the input has been bound and before the input +is validated.
                                            + +
                                            + interact() + +  : mixed +
                                            +
                                            Interacts with the user.
                                            + +
                                            + validateName() + +  : mixed +
                                            +
                                            Validates a command name.
                                            + +
                                            + + + + +
                                            +

                                            + Constants + + +

                                            +
                                            +

                                            + FAILURE + + +

                                            + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                            +
                                            +

                                            + INVALID + + +

                                            + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                            +
                                            +

                                            + SUCCESS + + +

                                            + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                            +
                                            + + +
                                            +

                                            + Properties + + +

                                            +
                                            +

                                            + $description + + + + +

                                            + + +

                                            Description for command

                                            + + + + public + mixed + $description + = 'Create a new view file' + + + + + + + +
                                            +
                                            +

                                            + $help + + + + +

                                            + + +

                                            Help for command

                                            + + + + public + mixed + $help + = 'Create a new basic view file' + + + + + + + +
                                            +
                                            +

                                            + $defaultDescription + + + + +

                                            + + + + + + protected + static string|null + $defaultDescription + + + +

                                            The default command description

                                            +
                                            + + + + + +
                                            +
                                            +

                                            + $defaultName + + + + +

                                            + + + + + + protected + static string|null + $defaultName + = 'g:template' + + +

                                            The default command name

                                            +
                                            + + + + + +
                                            +
                                            +

                                            + $input + + + + +

                                            + + +

                                            The input object

                                            + + + + protected + InputInterface + $input + + + + + + + + +
                                            +
                                            +

                                            + $output + + + + +

                                            + + +

                                            The output object

                                            + + + + protected + OutputInterface + $output + + + + + + + + +
                                            + +
                                            +

                                            + $aliases + + + + +

                                            + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                            +
                                            +

                                            + $application + + + + +

                                            + + + + + + private + mixed + $application + + + + + + + + +
                                            +
                                            +

                                            + $code + + + + +

                                            + + + + + + private + mixed + $code + + + + + + + + +
                                            +
                                            +

                                            + $definition + + + + +

                                            + + + + + + private + mixed + $definition + + + + + + + + +
                                            +
                                            +

                                            + $fullDefinition + + + + +

                                            + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                            +
                                            +

                                            + $helperSet + + + + +

                                            + + + + + + private + mixed + $helperSet + + + + + + + + +
                                            +
                                            +

                                            + $hidden + + + + +

                                            + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                            +
                                            +

                                            + $ignoreValidationErrors + + + + +

                                            + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                            +
                                            +

                                            + $name + + + + +

                                            + + +

                                            The name of command to run in console

                                            + + + + private + mixed + $name + + + + + + + + +
                                            +
                                            +

                                            + $processTitle + + + + +

                                            + + + + + + private + mixed + $processTitle + + + + + + + + +
                                            +
                                            +

                                            + $synopsis + + + + +

                                            + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                            +
                                            +

                                            + $usages + + + + +

                                            + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                            +
                                            + +
                                            +

                                            + Methods + + +

                                            +
                                            +

                                            + __construct() + + +

                                            + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string|null + = null
                                            +
                                            +

                                            The name of the command; passing null means it must be set in configure()

                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + LogicException + +

                                            When the command name is empty

                                            +
                                            + +
                                            +
                                            + + + + +
                                            +
                                            +

                                            + addArgument() + + +

                                            + + +

                                            Adds an argument.

                                            + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + $mode + : int|null + = null
                                            +
                                            +

                                            The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                            +
                                            + +
                                            +
                                            + $description + : string + = ''
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            +

                                            The default value (for InputArgument::OPTIONAL mode only)

                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + +

                                            When argument mode is not valid

                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + addOption() + + +

                                            + + +

                                            Adds an option.

                                            + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + $shortcut + : string|array<string|int, mixed>|null + = null
                                            +
                                            +

                                            The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                            +
                                            + +
                                            +
                                            + $mode + : int|null + = null
                                            +
                                            +

                                            The option mode: One of the InputOption::VALUE_* constants

                                            +
                                            + +
                                            +
                                            + $description + : string + = ''
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            +

                                            The default value (must be null for InputOption::VALUE_NONE)

                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + +

                                            If option mode is invalid or incompatible

                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + addUsage() + + +

                                            + + +

                                            Add a command usage example, it'll be prefixed with the command name.

                                            + + + public + addUsage(string $usage) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $usage + : string +
                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + argument() + + +

                                            + + +

                                            Returns the argument value for a given argument name.

                                            + + + public + argument(string $name) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + arguments() + + +

                                            + + +

                                            Returns all the given arguments merged with the default values.

                                            + + + public + arguments() : mixed + +
                                            +
                                            + + + + + + + + +
                                            +
                                            +

                                            + ask() + + +

                                            + + +

                                            Ask a question

                                            + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + askMultiline() + + +

                                            + + +

                                            Ask a question

                                            + + + public + askMultiline(string $question) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + askRaw() + + +

                                            + + +

                                            Ask a question

                                            + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + autoComplete() + + +

                                            + + +

                                            Ask a question with auto completion

                                            + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + $potentialAnswers + : array<string|int, mixed> +
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + choice() + + +

                                            + + +

                                            Ask a question with possible answers

                                            + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + $choices + : array<string|int, mixed> +
                                            +
                                            + +
                                            +
                                            + $errorMessage + : string + = 'Invalid choice'
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + comment() + + +

                                            + + +

                                            Output some data as a comment

                                            + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $messages + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            + +
                                            +

                                            + confirm() + + +

                                            + + +

                                            Prompt user for confirmation

                                            + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : mixed +
                                            +
                                            + +
                                            +
                                            + $param + : mixed + = false
                                            +
                                            + +
                                            +
                                            + $regex + : mixed + = '/^y/i'
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + error() + + +

                                            + + +

                                            Output some data as a error

                                            + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $messages + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + getAliases() + + +

                                            + + +

                                            Returns the aliases for the command.

                                            + + + public + getAliases() : array<string|int, mixed> + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + array<string|int, mixed> +
                                            + +
                                            +
                                            +

                                            + getApplication() + + +

                                            + + +

                                            Gets the application instance for this command.

                                            + + + public + getApplication() : Application|null + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + Application|null +
                                            + +
                                            +
                                            +

                                            + getDefaultDescription() + + +

                                            + + + + + public + static getDefaultDescription() : string|null + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + string|null +
                                            + +
                                            +
                                            +

                                            + getDefaultName() + + +

                                            + + + + + public + static getDefaultName() : string|null + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + string|null +
                                            + +
                                            +
                                            +

                                            + getDefinition() + + +

                                            + + +

                                            Gets the InputDefinition attached to this Command.

                                            + + + public + getDefinition() : InputDefinition + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + InputDefinition +
                                            + +
                                            +
                                            +

                                            + getDescription() + + +

                                            + + +

                                            Returns the description for the command.

                                            + + + public + getDescription() : string + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + string +
                                            + +
                                            +
                                            +

                                            + getHelp() + + +

                                            + + +

                                            Returns the help for the command.

                                            + + + public + getHelp() : string + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + string +
                                            + +
                                            +
                                            +

                                            + getHelper() + + +

                                            + + +

                                            Gets a helper instance by name.

                                            + + + public + getHelper(string $name) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + LogicException + +

                                            if no HelperSet is defined

                                            +
                                            + +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + +

                                            if the helper is not defined

                                            +
                                            + +
                                            +
                                            + + + + +
                                            +
                                            +

                                            + getHelperSet() + + +

                                            + + +

                                            Gets the helper set.

                                            + + + public + getHelperSet() : HelperSet|null + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + HelperSet|null +
                                            + +
                                            +
                                            +

                                            + getName() + + +

                                            + + +

                                            Returns the command name.

                                            + + + public + getName() : string|null + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + string|null +
                                            + +
                                            +
                                            +

                                            + getNativeDefinition() + + +

                                            + + +

                                            Gets the InputDefinition to be used to create representations of this Command.

                                            + + + public + getNativeDefinition() : InputDefinition + +
                                            +
                                            + +

                                            Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                            +

                                            This method is not part of public API and should not be used directly.

                                            +
                                            + + + + + + +
                                            +
                                            Return values
                                            + InputDefinition +
                                            + +
                                            +
                                            +

                                            + getProcessedHelp() + + +

                                            + + +

                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                            + + + public + getProcessedHelp() : string + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + string +
                                            + +
                                            +
                                            +

                                            + getSynopsis() + + +

                                            + + +

                                            Returns the synopsis for the command.

                                            + + + public + getSynopsis([bool $short = false ]) : string + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $short + : bool + = false
                                            +
                                            +

                                            Whether to show the short version of the synopsis (with options folded) or not

                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + string +
                                            + +
                                            +
                                            +

                                            + getUsages() + + +

                                            + + +

                                            Returns alternative usages of the command.

                                            + + + public + getUsages() : array<string|int, mixed> + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + array<string|int, mixed> +
                                            + +
                                            +
                                            +

                                            + ignoreValidationErrors() + + +

                                            + + +

                                            Ignores validation errors.

                                            + + + public + ignoreValidationErrors() : mixed + +
                                            +
                                            + +

                                            This is mainly useful for the help command.

                                            +
                                            + + + + + + + +
                                            +
                                            +

                                            + info() + + +

                                            + + +

                                            Output some data as a info

                                            + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $messages + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + input() + + +

                                            + + +

                                            Get an argument or return the input object

                                            + + + public + input([string $data = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $data + : string + = null
                                            +
                                            +

                                            The argument to return

                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + isEnabled() + + +

                                            + + +

                                            Checks whether the command is enabled or not in the current environment.

                                            + + + public + isEnabled() : bool + +
                                            +
                                            + +

                                            Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                            +
                                            + + + + + + +
                                            +
                                            Return values
                                            + bool +
                                            + +
                                            +
                                            +

                                            + isHidden() + + +

                                            + + + + + public + isHidden() : bool + +
                                            +
                                            + + + + + + + +
                                            +
                                            Return values
                                            + bool + — +

                                            whether the command should be publicly shown or not

                                            +
                                            + +
                                            + +
                                            +
                                            + + + +

                                            Output some data as a link

                                            + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $link + : mixed +
                                            +
                                            + +
                                            +
                                            + $display + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + multiChoice() + + +

                                            + + +

                                            Ask a question with possible answers + multiple choice

                                            + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + $choices + : array<string|int, mixed> +
                                            +
                                            + +
                                            +
                                            + $errorMessage + : string + = 'Invalid choice'
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + option() + + +

                                            + + +

                                            Get an input option

                                            + + + public + option(string $name) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + options() + + +

                                            + + +

                                            Get all input options

                                            + + + public + options(string $name) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + output() + + +

                                            + + +

                                            Output data or return the output object

                                            + + + public + output([string $data = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $data + : string + = null
                                            +
                                            +

                                            The argument to return

                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + question() + + +

                                            + + +

                                            Output some data as a question

                                            + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $messages + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + run() + + +

                                            + + +

                                            Runs the command.

                                            + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                            +
                                            + +

                                            The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $input + : InputInterface +
                                            +
                                            + +
                                            +
                                            + $output + : OutputInterface +
                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + Exception + +

                                            When binding input fails. Bypass this by calling .

                                            +
                                            + +
                                            +
                                            + see +
                                            +
                                            + setCode() + + +
                                            +
                                            + see +
                                            +
                                            + execute() + + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + int + — +

                                            The command exit code

                                            +
                                            + +
                                            + +
                                            +
                                            +

                                            + runProcess() + + +

                                            + + +

                                            Run a new cli process

                                            + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $process + : array<string|int, mixed> +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + secret() + + +

                                            + + +

                                            Prompt user for input but hide keystrokes

                                            + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $question + : string +
                                            +
                                            + +
                                            +
                                            + $useFallback + : bool + = false
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + setAliases() + + +

                                            + + +

                                            Sets the aliases for the command.

                                            + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $aliases + : array<string|int, string> +
                                            +
                                            +

                                            An array of aliases for the command

                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + +

                                            When an alias is invalid

                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setApplication() + + +

                                            + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $application + : Application|null + = null
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + setArgument() + + +

                                            + + +

                                            Add a new argument

                                            + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : mixed +
                                            +
                                            + +
                                            +
                                            + $mode + : mixed + = null
                                            +
                                            + +
                                            +
                                            + $description + : mixed + = ''
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + setCode() + + +

                                            + + +

                                            Sets the code to execute when running this command.

                                            + + + public + setCode(callable $code) : $this + +
                                            +
                                            + +

                                            If this method is used, it overrides the code defined +in the execute() method.

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $code + : callable +
                                            +
                                            +

                                            A callable(InputInterface $input, OutputInterface $output)

                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + + +
                                            +
                                            + see +
                                            +
                                            + execute() + + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setDefinition() + + +

                                            + + +

                                            Sets an array of argument and option instances.

                                            + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $definition + : array<string|int, mixed>|InputDefinition +
                                            +
                                            +

                                            An array of argument and option instances or a definition instance

                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setDescription() + + +

                                            + + +

                                            Sets the description for the command.

                                            + + + public + setDescription(string $description) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $description + : string +
                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setHelp() + + +

                                            + + +

                                            Sets the help for the command.

                                            + + + public + setHelp(string $help) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $help + : string +
                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setHelperSet() + + +

                                            + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $helperSet + : HelperSet +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + setHidden() + + +

                                            + + + + + public + setHidden(bool $hidden) : $this + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $hidden + : bool +
                                            +
                                            +

                                            Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + final +
                                            +
                                            + +

                                            since Symfony 5.1

                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setName() + + +

                                            + + +

                                            Sets the name of the command.

                                            + + + public + setName(string $name) : $this + +
                                            +
                                            + +

                                            This method can set both the namespace and the name if +you separate them by a colon (:)

                                            +
                                            $command->setName('foo:bar');
                                            +
                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + +

                                            When the name is invalid

                                            +
                                            + +
                                            +
                                            + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + setOption() + + +

                                            + + +

                                            Add a new option

                                            + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $name + : mixed +
                                            +
                                            + +
                                            +
                                            + $shortcut + : mixed + = null
                                            +
                                            + +
                                            +
                                            + $mode + : mixed + = null
                                            +
                                            + +
                                            +
                                            + $description + : mixed + = ''
                                            +
                                            + +
                                            +
                                            + $default + : mixed + = null
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + setProcessTitle() + + +

                                            + + +

                                            Sets the process title of the command.

                                            + + + public + setProcessTitle(string $title) : $this + +
                                            +
                                            + +

                                            This feature should be used only when creating a long process command, +like a daemon.

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $title + : string +
                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + $this +
                                            + +
                                            +
                                            +

                                            + write() + + +

                                            + + +

                                            Output some data

                                            + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $messages + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + writeln() + + +

                                            + + +

                                            Output some data

                                            + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $messages + : mixed +
                                            +
                                            + +
                                            +
                                            + $options + : mixed + = 0
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            + +
                                            +

                                            + configure() + + +

                                            + + +

                                            Configures the current command.

                                            + + + protected + configure() : mixed + +
                                            +
                                            + + + + + + + + +
                                            +
                                            +

                                            + execute() + + +

                                            + + +

                                            Executes the current command.

                                            + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                            +
                                            + +

                                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $input + : InputInterface +
                                            +
                                            + +
                                            +
                                            + $output + : OutputInterface +
                                            +
                                            + +
                                            +
                                            + + + + + +
                                            +
                                            Return values
                                            + int + — +

                                            0 if everything went fine, or an exit code

                                            +
                                            + +
                                            + +
                                            +
                                            +

                                            + generateTemplateData() + + +

                                            + + + + + protected + generateTemplateData() : mixed + +
                                            +
                                            + + + + + + + + +
                                            +
                                            +

                                            + getTemplateName() + + +

                                            + + + + + protected + getTemplateName(mixed $templateName) : mixed + +
                                            +
                                            + + +
                                            Parameters
                                            +
                                            +
                                            + $templateName + : mixed +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + handle() + + +

                                            + + +

                                            Executes the current command.

                                            + + + protected + handle() : int + +
                                            +
                                            + +

                                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                            +
                                            + + + + + + +
                                            +
                                            Return values
                                            + int + — +

                                            0 if everything went fine, or an exit code

                                            +
                                            + +
                                            + +
                                            +
                                            +

                                            + initialize() + + +

                                            + + +

                                            Initializes the command after the input has been bound and before the input +is validated.

                                            + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                            +
                                            + +

                                            This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $input + : InputInterface +
                                            +
                                            + +
                                            +
                                            + $output + : OutputInterface +
                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + see +
                                            +
                                            + InputInterface::bind() + + +
                                            +
                                            + see +
                                            +
                                            + InputInterface::validate() + + +
                                            +
                                            + + + + +
                                            +
                                            +

                                            + interact() + + +

                                            + + +

                                            Interacts with the user.

                                            + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                            +
                                            + +

                                            This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $input + : InputInterface +
                                            +
                                            + +
                                            +
                                            + $output + : OutputInterface +
                                            +
                                            + +
                                            +
                                            + + + + + + +
                                            +
                                            +

                                            + validateName() + + +

                                            + + +

                                            Validates a command name.

                                            + + + private + validateName(string $name) : mixed + +
                                            +
                                            + +

                                            It must be non-empty and parts can optionally be separated by ":".

                                            +
                                            + +
                                            Parameters
                                            +
                                            +
                                            + $name + : string +
                                            +
                                            + +
                                            +
                                            + + +
                                            + Tags + + +
                                            +
                                            +
                                            + throws +
                                            +
                                            + InvalidArgumentException + +

                                            When the name is invalid

                                            +
                                            + +
                                            +
                                            + + + + +
                                            +
                                            + +
                                            +
                                            +
                                            +
                                            +
                                            
                                            +        
                                            + +
                                            +
                                            + + + +
                                            +
                                            +
                                            + +
                                            + On this page + + +
                                            + +
                                            +
                                            +
                                            +
                                            +
                                            +

                                            Search results

                                            + +
                                            +
                                            +
                                              +
                                              +
                                              +
                                              +
                                              + + +
                                              + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-InteractCommand.html b/src/public/api/classes/Aloe-Command-InteractCommand.html new file mode 100644 index 00000000..1f6fafda --- /dev/null +++ b/src/public/api/classes/Aloe-Command-InteractCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                              +

                                              Leaf PHP

                                              + + + + + +
                                              + +
                                              +
                                              + + + + +
                                              +
                                              + + +
                                              +

                                              + InteractCommand + + + extends Command + + +
                                              + in package + +
                                              + + +

                                              + +
                                              + + +
                                              + + + +

                                              Base class for Aloe Commands.

                                              + + + + + + + + + +

                                              + Table of Contents + + +

                                              + + + + + + + +

                                              + Constants + + +

                                              +
                                              +
                                              + FAILURE + +  = 1 +
                                              + +
                                              + INVALID + +  = 2 +
                                              + +
                                              + SUCCESS + +  = 0 +
                                              + +
                                              + + +

                                              + Properties + + +

                                              +
                                              +
                                              + $description + +  : mixed +
                                              +
                                              Description for command
                                              + +
                                              + $help + +  : mixed +
                                              +
                                              Help for command
                                              + +
                                              + $defaultDescription + +  : string|null +
                                              + +
                                              + $defaultName + +  : string|null +
                                              + +
                                              + $input + +  : InputInterface +
                                              +
                                              The input object
                                              + +
                                              + $output + +  : OutputInterface +
                                              +
                                              The output object
                                              + +
                                              + $aliases + +  : mixed +
                                              + +
                                              + $application + +  : mixed +
                                              + +
                                              + $code + +  : mixed +
                                              + +
                                              + $definition + +  : mixed +
                                              + +
                                              + $fullDefinition + +  : mixed +
                                              + +
                                              + $helperSet + +  : mixed +
                                              + +
                                              + $hidden + +  : mixed +
                                              + +
                                              + $ignoreValidationErrors + +  : mixed +
                                              + +
                                              + $name + +  : mixed +
                                              +
                                              The name of command to run in console
                                              + +
                                              + $processTitle + +  : mixed +
                                              + +
                                              + $synopsis + +  : mixed +
                                              + +
                                              + $usages + +  : mixed +
                                              + +
                                              + +

                                              + Methods + + +

                                              +
                                              +
                                              + __construct() + +  : mixed +
                                              + +
                                              + addArgument() + +  : $this +
                                              +
                                              Adds an argument.
                                              + +
                                              + addOption() + +  : $this +
                                              +
                                              Adds an option.
                                              + +
                                              + addUsage() + +  : $this +
                                              +
                                              Add a command usage example, it'll be prefixed with the command name.
                                              + +
                                              + argument() + +  : mixed +
                                              +
                                              Returns the argument value for a given argument name.
                                              + +
                                              + arguments() + +  : mixed +
                                              +
                                              Returns all the given arguments merged with the default values.
                                              + +
                                              + ask() + +  : mixed +
                                              +
                                              Ask a question
                                              + +
                                              + askMultiline() + +  : mixed +
                                              +
                                              Ask a question
                                              + +
                                              + askRaw() + +  : mixed +
                                              +
                                              Ask a question
                                              + +
                                              + autoComplete() + +  : mixed +
                                              +
                                              Ask a question with auto completion
                                              + +
                                              + choice() + +  : mixed +
                                              +
                                              Ask a question with possible answers
                                              + +
                                              + comment() + +  : mixed +
                                              +
                                              Output some data as a comment
                                              + +
                                              + complete() + +  : void +
                                              +
                                              Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                              + +
                                              + confirm() + +  : mixed +
                                              +
                                              Prompt user for confirmation
                                              + +
                                              + error() + +  : mixed +
                                              +
                                              Output some data as a error
                                              + +
                                              + getAliases() + +  : array<string|int, mixed> +
                                              +
                                              Returns the aliases for the command.
                                              + +
                                              + getApplication() + +  : Application|null +
                                              +
                                              Gets the application instance for this command.
                                              + +
                                              + getDefaultDescription() + +  : string|null +
                                              + +
                                              + getDefaultName() + +  : string|null +
                                              + +
                                              + getDefinition() + +  : InputDefinition +
                                              +
                                              Gets the InputDefinition attached to this Command.
                                              + +
                                              + getDescription() + +  : string +
                                              +
                                              Returns the description for the command.
                                              + +
                                              + getHelp() + +  : string +
                                              +
                                              Returns the help for the command.
                                              + +
                                              + getHelper() + +  : mixed +
                                              +
                                              Gets a helper instance by name.
                                              + +
                                              + getHelperSet() + +  : HelperSet|null +
                                              +
                                              Gets the helper set.
                                              + +
                                              + getName() + +  : string|null +
                                              +
                                              Returns the command name.
                                              + +
                                              + getNativeDefinition() + +  : InputDefinition +
                                              +
                                              Gets the InputDefinition to be used to create representations of this Command.
                                              + +
                                              + getProcessedHelp() + +  : string +
                                              +
                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                              + +
                                              + getSynopsis() + +  : string +
                                              +
                                              Returns the synopsis for the command.
                                              + +
                                              + getUsages() + +  : array<string|int, mixed> +
                                              +
                                              Returns alternative usages of the command.
                                              + +
                                              + ignoreValidationErrors() + +  : mixed +
                                              +
                                              Ignores validation errors.
                                              + +
                                              + info() + +  : mixed +
                                              +
                                              Output some data as a info
                                              + +
                                              + input() + +  : mixed +
                                              +
                                              Get an argument or return the input object
                                              + +
                                              + isEnabled() + +  : bool +
                                              +
                                              Checks whether the command is enabled or not in the current environment.
                                              + +
                                              + isHidden() + +  : bool +
                                              + +
                                              + link() + +  : mixed +
                                              +
                                              Output some data as a link
                                              + +
                                              + multiChoice() + +  : mixed +
                                              +
                                              Ask a question with possible answers + multiple choice
                                              + +
                                              + option() + +  : mixed +
                                              +
                                              Get an input option
                                              + +
                                              + options() + +  : mixed +
                                              +
                                              Get all input options
                                              + +
                                              + output() + +  : mixed +
                                              +
                                              Output data or return the output object
                                              + +
                                              + question() + +  : mixed +
                                              +
                                              Output some data as a question
                                              + +
                                              + run() + +  : int +
                                              +
                                              Runs the command.
                                              + +
                                              + runProcess() + +  : mixed +
                                              +
                                              Run a new cli process
                                              + +
                                              + secret() + +  : mixed +
                                              +
                                              Prompt user for input but hide keystrokes
                                              + +
                                              + setAliases() + +  : $this +
                                              +
                                              Sets the aliases for the command.
                                              + +
                                              + setApplication() + +  : mixed +
                                              + +
                                              + setArgument() + +  : mixed +
                                              +
                                              Add a new argument
                                              + +
                                              + setCode() + +  : $this +
                                              +
                                              Sets the code to execute when running this command.
                                              + +
                                              + setDefinition() + +  : $this +
                                              +
                                              Sets an array of argument and option instances.
                                              + +
                                              + setDescription() + +  : $this +
                                              +
                                              Sets the description for the command.
                                              + +
                                              + setHelp() + +  : $this +
                                              +
                                              Sets the help for the command.
                                              + +
                                              + setHelperSet() + +  : mixed +
                                              + +
                                              + setHidden() + +  : $this +
                                              + +
                                              + setName() + +  : $this +
                                              +
                                              Sets the name of the command.
                                              + +
                                              + setOption() + +  : mixed +
                                              +
                                              Add a new option
                                              + +
                                              + setProcessTitle() + +  : $this +
                                              +
                                              Sets the process title of the command.
                                              + +
                                              + write() + +  : mixed +
                                              +
                                              Output some data
                                              + +
                                              + writeln() + +  : mixed +
                                              +
                                              Output some data
                                              + +
                                              + config() + +  : mixed +
                                              + +
                                              + configure() + +  : mixed +
                                              +
                                              Configures the current command.
                                              + +
                                              + execute() + +  : int +
                                              +
                                              Executes the current command.
                                              + +
                                              + handle() + +  : int +
                                              +
                                              Executes the current command.
                                              + +
                                              + initialize() + +  : mixed +
                                              +
                                              Initializes the command after the input has been bound and before the input +is validated.
                                              + +
                                              + interact() + +  : mixed +
                                              +
                                              Interacts with the user.
                                              + +
                                              + validateName() + +  : mixed +
                                              +
                                              Validates a command name.
                                              + +
                                              + + + + +
                                              +

                                              + Constants + + +

                                              +
                                              +

                                              + FAILURE + + +

                                              + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                              +
                                              +

                                              + INVALID + + +

                                              + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                              +
                                              +

                                              + SUCCESS + + +

                                              + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                              +
                                              + + +
                                              +

                                              + Properties + + +

                                              +
                                              +

                                              + $description + + + + +

                                              + + +

                                              Description for command

                                              + + + + public + mixed + $description + = 'Interact with your application' + + + + + + + +
                                              +
                                              +

                                              + $help + + + + +

                                              + + +

                                              Help for command

                                              + + + + public + mixed + $help + = 'Interact with your application' + + + + + + + +
                                              +
                                              +

                                              + $defaultDescription + + + + +

                                              + + + + + + protected + static string|null + $defaultDescription + + + +

                                              The default command description

                                              +
                                              + + + + + +
                                              +
                                              +

                                              + $defaultName + + + + +

                                              + + + + + + protected + static string|null + $defaultName + = 'interact' + + +

                                              The default command name

                                              +
                                              + + + + + +
                                              +
                                              +

                                              + $input + + + + +

                                              + + +

                                              The input object

                                              + + + + protected + InputInterface + $input + + + + + + + + +
                                              +
                                              +

                                              + $output + + + + +

                                              + + +

                                              The output object

                                              + + + + protected + OutputInterface + $output + + + + + + + + +
                                              +
                                              +

                                              + $aliases + + + + +

                                              + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                              +
                                              +

                                              + $application + + + + +

                                              + + + + + + private + mixed + $application + + + + + + + + +
                                              +
                                              +

                                              + $code + + + + +

                                              + + + + + + private + mixed + $code + + + + + + + + +
                                              +
                                              +

                                              + $definition + + + + +

                                              + + + + + + private + mixed + $definition + + + + + + + + +
                                              +
                                              +

                                              + $fullDefinition + + + + +

                                              + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                              +
                                              +

                                              + $helperSet + + + + +

                                              + + + + + + private + mixed + $helperSet + + + + + + + + +
                                              +
                                              +

                                              + $hidden + + + + +

                                              + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                              +
                                              +

                                              + $ignoreValidationErrors + + + + +

                                              + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                              +
                                              +

                                              + $name + + + + +

                                              + + +

                                              The name of command to run in console

                                              + + + + private + mixed + $name + + + + + + + + +
                                              +
                                              +

                                              + $processTitle + + + + +

                                              + + + + + + private + mixed + $processTitle + + + + + + + + +
                                              +
                                              +

                                              + $synopsis + + + + +

                                              + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                              +
                                              +

                                              + $usages + + + + +

                                              + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                              +
                                              + +
                                              +

                                              + Methods + + +

                                              +
                                              +

                                              + __construct() + + +

                                              + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string|null + = null
                                              +
                                              +

                                              The name of the command; passing null means it must be set in configure()

                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + LogicException + +

                                              When the command name is empty

                                              +
                                              + +
                                              +
                                              + + + + +
                                              +
                                              +

                                              + addArgument() + + +

                                              + + +

                                              Adds an argument.

                                              + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + $mode + : int|null + = null
                                              +
                                              +

                                              The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                              +
                                              + +
                                              +
                                              + $description + : string + = ''
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              +

                                              The default value (for InputArgument::OPTIONAL mode only)

                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              When argument mode is not valid

                                              +
                                              + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + addOption() + + +

                                              + + +

                                              Adds an option.

                                              + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + $shortcut + : string|array<string|int, mixed>|null + = null
                                              +
                                              +

                                              The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                              +
                                              + +
                                              +
                                              + $mode + : int|null + = null
                                              +
                                              +

                                              The option mode: One of the InputOption::VALUE_* constants

                                              +
                                              + +
                                              +
                                              + $description + : string + = ''
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              +

                                              The default value (must be null for InputOption::VALUE_NONE)

                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              If option mode is invalid or incompatible

                                              +
                                              + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + addUsage() + + +

                                              + + +

                                              Add a command usage example, it'll be prefixed with the command name.

                                              + + + public + addUsage(string $usage) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $usage + : string +
                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + argument() + + +

                                              + + +

                                              Returns the argument value for a given argument name.

                                              + + + public + argument(string $name) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + arguments() + + +

                                              + + +

                                              Returns all the given arguments merged with the default values.

                                              + + + public + arguments() : mixed + +
                                              +
                                              + + + + + + + + +
                                              +
                                              +

                                              + ask() + + +

                                              + + +

                                              Ask a question

                                              + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + askMultiline() + + +

                                              + + +

                                              Ask a question

                                              + + + public + askMultiline(string $question) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + askRaw() + + +

                                              + + +

                                              Ask a question

                                              + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + autoComplete() + + +

                                              + + +

                                              Ask a question with auto completion

                                              + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + $potentialAnswers + : array<string|int, mixed> +
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + choice() + + +

                                              + + +

                                              Ask a question with possible answers

                                              + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + $choices + : array<string|int, mixed> +
                                              +
                                              + +
                                              +
                                              + $errorMessage + : string + = 'Invalid choice'
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + comment() + + +

                                              + + +

                                              Output some data as a comment

                                              + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $messages + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              + +
                                              +

                                              + confirm() + + +

                                              + + +

                                              Prompt user for confirmation

                                              + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : mixed +
                                              +
                                              + +
                                              +
                                              + $param + : mixed + = false
                                              +
                                              + +
                                              +
                                              + $regex + : mixed + = '/^y/i'
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + error() + + +

                                              + + +

                                              Output some data as a error

                                              + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $messages + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + getAliases() + + +

                                              + + +

                                              Returns the aliases for the command.

                                              + + + public + getAliases() : array<string|int, mixed> + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + array<string|int, mixed> +
                                              + +
                                              +
                                              +

                                              + getApplication() + + +

                                              + + +

                                              Gets the application instance for this command.

                                              + + + public + getApplication() : Application|null + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + Application|null +
                                              + +
                                              +
                                              +

                                              + getDefaultDescription() + + +

                                              + + + + + public + static getDefaultDescription() : string|null + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + string|null +
                                              + +
                                              +
                                              +

                                              + getDefaultName() + + +

                                              + + + + + public + static getDefaultName() : string|null + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + string|null +
                                              + +
                                              +
                                              +

                                              + getDefinition() + + +

                                              + + +

                                              Gets the InputDefinition attached to this Command.

                                              + + + public + getDefinition() : InputDefinition + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + InputDefinition +
                                              + +
                                              +
                                              +

                                              + getDescription() + + +

                                              + + +

                                              Returns the description for the command.

                                              + + + public + getDescription() : string + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + string +
                                              + +
                                              +
                                              +

                                              + getHelp() + + +

                                              + + +

                                              Returns the help for the command.

                                              + + + public + getHelp() : string + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + string +
                                              + +
                                              +
                                              +

                                              + getHelper() + + +

                                              + + +

                                              Gets a helper instance by name.

                                              + + + public + getHelper(string $name) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + LogicException + +

                                              if no HelperSet is defined

                                              +
                                              + +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              if the helper is not defined

                                              +
                                              + +
                                              +
                                              + + + + +
                                              +
                                              +

                                              + getHelperSet() + + +

                                              + + +

                                              Gets the helper set.

                                              + + + public + getHelperSet() : HelperSet|null + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + HelperSet|null +
                                              + +
                                              +
                                              +

                                              + getName() + + +

                                              + + +

                                              Returns the command name.

                                              + + + public + getName() : string|null + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + string|null +
                                              + +
                                              +
                                              +

                                              + getNativeDefinition() + + +

                                              + + +

                                              Gets the InputDefinition to be used to create representations of this Command.

                                              + + + public + getNativeDefinition() : InputDefinition + +
                                              +
                                              + +

                                              Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                              +

                                              This method is not part of public API and should not be used directly.

                                              +
                                              + + + + + + +
                                              +
                                              Return values
                                              + InputDefinition +
                                              + +
                                              +
                                              +

                                              + getProcessedHelp() + + +

                                              + + +

                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                              + + + public + getProcessedHelp() : string + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + string +
                                              + +
                                              +
                                              +

                                              + getSynopsis() + + +

                                              + + +

                                              Returns the synopsis for the command.

                                              + + + public + getSynopsis([bool $short = false ]) : string + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $short + : bool + = false
                                              +
                                              +

                                              Whether to show the short version of the synopsis (with options folded) or not

                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + string +
                                              + +
                                              +
                                              +

                                              + getUsages() + + +

                                              + + +

                                              Returns alternative usages of the command.

                                              + + + public + getUsages() : array<string|int, mixed> + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + array<string|int, mixed> +
                                              + +
                                              +
                                              +

                                              + ignoreValidationErrors() + + +

                                              + + +

                                              Ignores validation errors.

                                              + + + public + ignoreValidationErrors() : mixed + +
                                              +
                                              + +

                                              This is mainly useful for the help command.

                                              +
                                              + + + + + + + +
                                              +
                                              +

                                              + info() + + +

                                              + + +

                                              Output some data as a info

                                              + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $messages + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + input() + + +

                                              + + +

                                              Get an argument or return the input object

                                              + + + public + input([string $data = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $data + : string + = null
                                              +
                                              +

                                              The argument to return

                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + isEnabled() + + +

                                              + + +

                                              Checks whether the command is enabled or not in the current environment.

                                              + + + public + isEnabled() : bool + +
                                              +
                                              + +

                                              Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                              +
                                              + + + + + + +
                                              +
                                              Return values
                                              + bool +
                                              + +
                                              +
                                              +

                                              + isHidden() + + +

                                              + + + + + public + isHidden() : bool + +
                                              +
                                              + + + + + + + +
                                              +
                                              Return values
                                              + bool + — +

                                              whether the command should be publicly shown or not

                                              +
                                              + +
                                              + +
                                              +
                                              + + + +

                                              Output some data as a link

                                              + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $link + : mixed +
                                              +
                                              + +
                                              +
                                              + $display + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + multiChoice() + + +

                                              + + +

                                              Ask a question with possible answers + multiple choice

                                              + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + $choices + : array<string|int, mixed> +
                                              +
                                              + +
                                              +
                                              + $errorMessage + : string + = 'Invalid choice'
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + option() + + +

                                              + + +

                                              Get an input option

                                              + + + public + option(string $name) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + options() + + +

                                              + + +

                                              Get all input options

                                              + + + public + options(string $name) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + output() + + +

                                              + + +

                                              Output data or return the output object

                                              + + + public + output([string $data = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $data + : string + = null
                                              +
                                              +

                                              The argument to return

                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + question() + + +

                                              + + +

                                              Output some data as a question

                                              + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $messages + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + run() + + +

                                              + + +

                                              Runs the command.

                                              + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                              +
                                              + +

                                              The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $input + : InputInterface +
                                              +
                                              + +
                                              +
                                              + $output + : OutputInterface +
                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + Exception + +

                                              When binding input fails. Bypass this by calling .

                                              +
                                              + +
                                              +
                                              + see +
                                              +
                                              + setCode() + + +
                                              +
                                              + see +
                                              +
                                              + execute() + + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + int + — +

                                              The command exit code

                                              +
                                              + +
                                              + +
                                              +
                                              +

                                              + runProcess() + + +

                                              + + +

                                              Run a new cli process

                                              + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $process + : array<string|int, mixed> +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + secret() + + +

                                              + + +

                                              Prompt user for input but hide keystrokes

                                              + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $question + : string +
                                              +
                                              + +
                                              +
                                              + $useFallback + : bool + = false
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + setAliases() + + +

                                              + + +

                                              Sets the aliases for the command.

                                              + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $aliases + : array<string|int, string> +
                                              +
                                              +

                                              An array of aliases for the command

                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              When an alias is invalid

                                              +
                                              + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setApplication() + + +

                                              + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $application + : Application|null + = null
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + setArgument() + + +

                                              + + +

                                              Add a new argument

                                              + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : mixed +
                                              +
                                              + +
                                              +
                                              + $mode + : mixed + = null
                                              +
                                              + +
                                              +
                                              + $description + : mixed + = ''
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + setCode() + + +

                                              + + +

                                              Sets the code to execute when running this command.

                                              + + + public + setCode(callable $code) : $this + +
                                              +
                                              + +

                                              If this method is used, it overrides the code defined +in the execute() method.

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $code + : callable +
                                              +
                                              +

                                              A callable(InputInterface $input, OutputInterface $output)

                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + + +
                                              +
                                              + see +
                                              +
                                              + execute() + + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setDefinition() + + +

                                              + + +

                                              Sets an array of argument and option instances.

                                              + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $definition + : array<string|int, mixed>|InputDefinition +
                                              +
                                              +

                                              An array of argument and option instances or a definition instance

                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setDescription() + + +

                                              + + +

                                              Sets the description for the command.

                                              + + + public + setDescription(string $description) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $description + : string +
                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setHelp() + + +

                                              + + +

                                              Sets the help for the command.

                                              + + + public + setHelp(string $help) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $help + : string +
                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setHelperSet() + + +

                                              + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $helperSet + : HelperSet +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + setHidden() + + +

                                              + + + + + public + setHidden(bool $hidden) : $this + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $hidden + : bool +
                                              +
                                              +

                                              Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + final +
                                              +
                                              + +

                                              since Symfony 5.1

                                              +
                                              + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setName() + + +

                                              + + +

                                              Sets the name of the command.

                                              + + + public + setName(string $name) : $this + +
                                              +
                                              + +

                                              This method can set both the namespace and the name if +you separate them by a colon (:)

                                              +
                                              $command->setName('foo:bar');
                                              +
                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              When the name is invalid

                                              +
                                              + +
                                              +
                                              + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + setOption() + + +

                                              + + +

                                              Add a new option

                                              + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $name + : mixed +
                                              +
                                              + +
                                              +
                                              + $shortcut + : mixed + = null
                                              +
                                              + +
                                              +
                                              + $mode + : mixed + = null
                                              +
                                              + +
                                              +
                                              + $description + : mixed + = ''
                                              +
                                              + +
                                              +
                                              + $default + : mixed + = null
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + setProcessTitle() + + +

                                              + + +

                                              Sets the process title of the command.

                                              + + + public + setProcessTitle(string $title) : $this + +
                                              +
                                              + +

                                              This feature should be used only when creating a long process command, +like a daemon.

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $title + : string +
                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + $this +
                                              + +
                                              +
                                              +

                                              + write() + + +

                                              + + +

                                              Output some data

                                              + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $messages + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + writeln() + + +

                                              + + +

                                              Output some data

                                              + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                              +
                                              + + +
                                              Parameters
                                              +
                                              +
                                              + $messages + : mixed +
                                              +
                                              + +
                                              +
                                              + $options + : mixed + = 0
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + config() + + +

                                              + + + + + protected + config() : mixed + +
                                              +
                                              + + + + + + + + +
                                              +
                                              +

                                              + configure() + + +

                                              + + +

                                              Configures the current command.

                                              + + + protected + configure() : mixed + +
                                              +
                                              + + + + + + + + +
                                              +
                                              +

                                              + execute() + + +

                                              + + +

                                              Executes the current command.

                                              + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                              +
                                              + +

                                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $input + : InputInterface +
                                              +
                                              + +
                                              +
                                              + $output + : OutputInterface +
                                              +
                                              + +
                                              +
                                              + + + + + +
                                              +
                                              Return values
                                              + int + — +

                                              0 if everything went fine, or an exit code

                                              +
                                              + +
                                              + +
                                              +
                                              +

                                              + handle() + + +

                                              + + +

                                              Executes the current command.

                                              + + + protected + handle() : int + +
                                              +
                                              + +

                                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                              +
                                              + + + + + + +
                                              +
                                              Return values
                                              + int + — +

                                              0 if everything went fine, or an exit code

                                              +
                                              + +
                                              + +
                                              +
                                              +

                                              + initialize() + + +

                                              + + +

                                              Initializes the command after the input has been bound and before the input +is validated.

                                              + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                              +
                                              + +

                                              This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $input + : InputInterface +
                                              +
                                              + +
                                              +
                                              + $output + : OutputInterface +
                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + see +
                                              +
                                              + InputInterface::bind() + + +
                                              +
                                              + see +
                                              +
                                              + InputInterface::validate() + + +
                                              +
                                              + + + + +
                                              +
                                              +

                                              + interact() + + +

                                              + + +

                                              Interacts with the user.

                                              + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                              +
                                              + +

                                              This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $input + : InputInterface +
                                              +
                                              + +
                                              +
                                              + $output + : OutputInterface +
                                              +
                                              + +
                                              +
                                              + + + + + + +
                                              +
                                              +

                                              + validateName() + + +

                                              + + +

                                              Validates a command name.

                                              + + + private + validateName(string $name) : mixed + +
                                              +
                                              + +

                                              It must be non-empty and parts can optionally be separated by ":".

                                              +
                                              + +
                                              Parameters
                                              +
                                              +
                                              + $name + : string +
                                              +
                                              + +
                                              +
                                              + + +
                                              + Tags + + +
                                              +
                                              +
                                              + throws +
                                              +
                                              + InvalidArgumentException + +

                                              When the name is invalid

                                              +
                                              + +
                                              +
                                              + + + + +
                                              +
                                              + +
                                              +
                                              +
                                              +
                                              +
                                              
                                              +        
                                              + +
                                              +
                                              + + + +
                                              +
                                              +
                                              + +
                                              + On this page + + +
                                              + +
                                              +
                                              +
                                              +
                                              +
                                              +

                                              Search results

                                              + +
                                              +
                                              +
                                                +
                                                +
                                                +
                                                +
                                                + + +
                                                + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-KeyGenerateCommand.html b/src/public/api/classes/Aloe-Command-KeyGenerateCommand.html new file mode 100644 index 00000000..33cbc605 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-KeyGenerateCommand.html @@ -0,0 +1,3608 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                +

                                                Leaf PHP

                                                + + + + + +
                                                + +
                                                +
                                                + + + + +
                                                +
                                                + + +
                                                +

                                                + KeyGenerateCommand + + + extends Command + + +
                                                + in package + +
                                                + + +

                                                + +
                                                + + +
                                                + + + +

                                                Base class for all commands.

                                                + + + + + + + + + +

                                                + Table of Contents + + +

                                                + + + + + + + +

                                                + Constants + + +

                                                +
                                                +
                                                + FAILURE + +  = 1 +
                                                + +
                                                + INVALID + +  = 2 +
                                                + +
                                                + SUCCESS + +  = 0 +
                                                + +
                                                + + +

                                                + Properties + + +

                                                +
                                                +
                                                + $defaultDescription + +  : string|null +
                                                + +
                                                + $defaultName + +  : string|null +
                                                + +
                                                + $aliases + +  : mixed +
                                                + +
                                                + $application + +  : mixed +
                                                + +
                                                + $code + +  : mixed +
                                                + +
                                                + $definition + +  : mixed +
                                                + +
                                                + $description + +  : mixed +
                                                + +
                                                + $fullDefinition + +  : mixed +
                                                + +
                                                + $help + +  : mixed +
                                                + +
                                                + $helperSet + +  : mixed +
                                                + +
                                                + $hidden + +  : mixed +
                                                + +
                                                + $ignoreValidationErrors + +  : mixed +
                                                + +
                                                + $name + +  : mixed +
                                                + +
                                                + $processTitle + +  : mixed +
                                                + +
                                                + $synopsis + +  : mixed +
                                                + +
                                                + $usages + +  : mixed +
                                                + +
                                                + +

                                                + Methods + + +

                                                +
                                                +
                                                + __construct() + +  : mixed +
                                                + +
                                                + addArgument() + +  : $this +
                                                +
                                                Adds an argument.
                                                + +
                                                + addOption() + +  : $this +
                                                +
                                                Adds an option.
                                                + +
                                                + addUsage() + +  : $this +
                                                +
                                                Add a command usage example, it'll be prefixed with the command name.
                                                + +
                                                + complete() + +  : void +
                                                +
                                                Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                + +
                                                + getAliases() + +  : array<string|int, mixed> +
                                                +
                                                Returns the aliases for the command.
                                                + +
                                                + getApplication() + +  : Application|null +
                                                +
                                                Gets the application instance for this command.
                                                + +
                                                + getDefaultDescription() + +  : string|null +
                                                + +
                                                + getDefaultName() + +  : string|null +
                                                + +
                                                + getDefinition() + +  : InputDefinition +
                                                +
                                                Gets the InputDefinition attached to this Command.
                                                + +
                                                + getDescription() + +  : string +
                                                +
                                                Returns the description for the command.
                                                + +
                                                + getHelp() + +  : string +
                                                +
                                                Returns the help for the command.
                                                + +
                                                + getHelper() + +  : mixed +
                                                +
                                                Gets a helper instance by name.
                                                + +
                                                + getHelperSet() + +  : HelperSet|null +
                                                +
                                                Gets the helper set.
                                                + +
                                                + getName() + +  : string|null +
                                                +
                                                Returns the command name.
                                                + +
                                                + getNativeDefinition() + +  : InputDefinition +
                                                +
                                                Gets the InputDefinition to be used to create representations of this Command.
                                                + +
                                                + getProcessedHelp() + +  : string +
                                                +
                                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                + +
                                                + getSynopsis() + +  : string +
                                                +
                                                Returns the synopsis for the command.
                                                + +
                                                + getUsages() + +  : array<string|int, mixed> +
                                                +
                                                Returns alternative usages of the command.
                                                + +
                                                + ignoreValidationErrors() + +  : mixed +
                                                +
                                                Ignores validation errors.
                                                + +
                                                + isEnabled() + +  : bool +
                                                +
                                                Checks whether the command is enabled or not in the current environment.
                                                + +
                                                + isHidden() + +  : bool +
                                                + +
                                                + run() + +  : int +
                                                +
                                                Runs the command.
                                                + +
                                                + setAliases() + +  : $this +
                                                +
                                                Sets the aliases for the command.
                                                + +
                                                + setApplication() + +  : mixed +
                                                + +
                                                + setCode() + +  : $this +
                                                +
                                                Sets the code to execute when running this command.
                                                + +
                                                + setDefinition() + +  : $this +
                                                +
                                                Sets an array of argument and option instances.
                                                + +
                                                + setDescription() + +  : $this +
                                                +
                                                Sets the description for the command.
                                                + +
                                                + setHelp() + +  : $this +
                                                +
                                                Sets the help for the command.
                                                + +
                                                + setHelperSet() + +  : mixed +
                                                + +
                                                + setHidden() + +  : $this +
                                                + +
                                                + setName() + +  : $this +
                                                +
                                                Sets the name of the command.
                                                + +
                                                + setProcessTitle() + +  : $this +
                                                +
                                                Sets the process title of the command.
                                                + +
                                                + configure() + +  : mixed +
                                                +
                                                Configures the current command.
                                                + +
                                                + execute() + +  : int +
                                                +
                                                Executes the current command.
                                                + +
                                                + generateKey() + +  : mixed +
                                                + +
                                                + initialize() + +  : mixed +
                                                +
                                                Initializes the command after the input has been bound and before the input +is validated.
                                                + +
                                                + interact() + +  : mixed +
                                                +
                                                Interacts with the user.
                                                + +
                                                + validateName() + +  : mixed +
                                                +
                                                Validates a command name.
                                                + +
                                                + + + + +
                                                +

                                                + Constants + + +

                                                +
                                                +

                                                + FAILURE + + +

                                                + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                +
                                                +

                                                + INVALID + + +

                                                + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                +
                                                +

                                                + SUCCESS + + +

                                                + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                +
                                                + + +
                                                +

                                                + Properties + + +

                                                +
                                                +

                                                + $defaultDescription + + + + +

                                                + + + + + + protected + static string|null + $defaultDescription + + + +

                                                The default command description

                                                +
                                                + + + + + +
                                                +
                                                +

                                                + $defaultName + + + + +

                                                + + + + + + protected + static string|null + $defaultName + = 'key:generate' + + +

                                                The default command name

                                                +
                                                + + + + + +
                                                +
                                                +

                                                + $aliases + + + + +

                                                + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                +
                                                +

                                                + $application + + + + +

                                                + + + + + + private + mixed + $application + + + + + + + + +
                                                +
                                                +

                                                + $code + + + + +

                                                + + + + + + private + mixed + $code + + + + + + + + +
                                                +
                                                +

                                                + $definition + + + + +

                                                + + + + + + private + mixed + $definition + + + + + + + + +
                                                +
                                                +

                                                + $description + + + + +

                                                + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                +
                                                +

                                                + $fullDefinition + + + + +

                                                + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                +
                                                +

                                                + $help + + + + +

                                                + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                +
                                                +

                                                + $helperSet + + + + +

                                                + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                +
                                                +

                                                + $hidden + + + + +

                                                + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                +
                                                +

                                                + $ignoreValidationErrors + + + + +

                                                + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                +
                                                +

                                                + $name + + + + +

                                                + + + + + + private + mixed + $name + + + + + + + + +
                                                +
                                                +

                                                + $processTitle + + + + +

                                                + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                +
                                                +

                                                + $synopsis + + + + +

                                                + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                +
                                                +

                                                + $usages + + + + +

                                                + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                +
                                                + +
                                                +

                                                + Methods + + +

                                                +
                                                +

                                                + __construct() + + +

                                                + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $name + : string|null + = null
                                                +
                                                +

                                                The name of the command; passing null means it must be set in configure()

                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + LogicException + +

                                                When the command name is empty

                                                +
                                                + +
                                                +
                                                + + + + +
                                                +
                                                +

                                                + addArgument() + + +

                                                + + +

                                                Adds an argument.

                                                + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $name + : string +
                                                +
                                                + +
                                                +
                                                + $mode + : int|null + = null
                                                +
                                                +

                                                The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                +
                                                + +
                                                +
                                                + $description + : string + = ''
                                                +
                                                + +
                                                +
                                                + $default + : mixed + = null
                                                +
                                                +

                                                The default value (for InputArgument::OPTIONAL mode only)

                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + +

                                                When argument mode is not valid

                                                +
                                                + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + addOption() + + +

                                                + + +

                                                Adds an option.

                                                + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $name + : string +
                                                +
                                                + +
                                                +
                                                + $shortcut + : string|array<string|int, mixed>|null + = null
                                                +
                                                +

                                                The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                +
                                                + +
                                                +
                                                + $mode + : int|null + = null
                                                +
                                                +

                                                The option mode: One of the InputOption::VALUE_* constants

                                                +
                                                + +
                                                +
                                                + $description + : string + = ''
                                                +
                                                + +
                                                +
                                                + $default + : mixed + = null
                                                +
                                                +

                                                The default value (must be null for InputOption::VALUE_NONE)

                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + +

                                                If option mode is invalid or incompatible

                                                +
                                                + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + addUsage() + + +

                                                + + +

                                                Add a command usage example, it'll be prefixed with the command name.

                                                + + + public + addUsage(string $usage) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $usage + : string +
                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                + +
                                                +

                                                + getAliases() + + +

                                                + + +

                                                Returns the aliases for the command.

                                                + + + public + getAliases() : array<string|int, mixed> + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + array<string|int, mixed> +
                                                + +
                                                +
                                                +

                                                + getApplication() + + +

                                                + + +

                                                Gets the application instance for this command.

                                                + + + public + getApplication() : Application|null + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + Application|null +
                                                + +
                                                +
                                                +

                                                + getDefaultDescription() + + +

                                                + + + + + public + static getDefaultDescription() : string|null + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + string|null +
                                                + +
                                                +
                                                +

                                                + getDefaultName() + + +

                                                + + + + + public + static getDefaultName() : string|null + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + string|null +
                                                + +
                                                +
                                                +

                                                + getDefinition() + + +

                                                + + +

                                                Gets the InputDefinition attached to this Command.

                                                + + + public + getDefinition() : InputDefinition + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + InputDefinition +
                                                + +
                                                +
                                                +

                                                + getDescription() + + +

                                                + + +

                                                Returns the description for the command.

                                                + + + public + getDescription() : string + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + string +
                                                + +
                                                +
                                                +

                                                + getHelp() + + +

                                                + + +

                                                Returns the help for the command.

                                                + + + public + getHelp() : string + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + string +
                                                + +
                                                +
                                                +

                                                + getHelper() + + +

                                                + + +

                                                Gets a helper instance by name.

                                                + + + public + getHelper(string $name) : mixed + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $name + : string +
                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + LogicException + +

                                                if no HelperSet is defined

                                                +
                                                + +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + +

                                                if the helper is not defined

                                                +
                                                + +
                                                +
                                                + + + + +
                                                +
                                                +

                                                + getHelperSet() + + +

                                                + + +

                                                Gets the helper set.

                                                + + + public + getHelperSet() : HelperSet|null + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + HelperSet|null +
                                                + +
                                                +
                                                +

                                                + getName() + + +

                                                + + +

                                                Returns the command name.

                                                + + + public + getName() : string|null + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + string|null +
                                                + +
                                                +
                                                +

                                                + getNativeDefinition() + + +

                                                + + +

                                                Gets the InputDefinition to be used to create representations of this Command.

                                                + + + public + getNativeDefinition() : InputDefinition + +
                                                +
                                                + +

                                                Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                +

                                                This method is not part of public API and should not be used directly.

                                                +
                                                + + + + + + +
                                                +
                                                Return values
                                                + InputDefinition +
                                                + +
                                                +
                                                +

                                                + getProcessedHelp() + + +

                                                + + +

                                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                + + + public + getProcessedHelp() : string + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + string +
                                                + +
                                                +
                                                +

                                                + getSynopsis() + + +

                                                + + +

                                                Returns the synopsis for the command.

                                                + + + public + getSynopsis([bool $short = false ]) : string + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $short + : bool + = false
                                                +
                                                +

                                                Whether to show the short version of the synopsis (with options folded) or not

                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + string +
                                                + +
                                                +
                                                +

                                                + getUsages() + + +

                                                + + +

                                                Returns alternative usages of the command.

                                                + + + public + getUsages() : array<string|int, mixed> + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + array<string|int, mixed> +
                                                + +
                                                +
                                                +

                                                + ignoreValidationErrors() + + +

                                                + + +

                                                Ignores validation errors.

                                                + + + public + ignoreValidationErrors() : mixed + +
                                                +
                                                + +

                                                This is mainly useful for the help command.

                                                +
                                                + + + + + + + +
                                                +
                                                +

                                                + isEnabled() + + +

                                                + + +

                                                Checks whether the command is enabled or not in the current environment.

                                                + + + public + isEnabled() : bool + +
                                                +
                                                + +

                                                Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                +
                                                + + + + + + +
                                                +
                                                Return values
                                                + bool +
                                                + +
                                                +
                                                +

                                                + isHidden() + + +

                                                + + + + + public + isHidden() : bool + +
                                                +
                                                + + + + + + + +
                                                +
                                                Return values
                                                + bool + — +

                                                whether the command should be publicly shown or not

                                                +
                                                + +
                                                + +
                                                +
                                                +

                                                + run() + + +

                                                + + +

                                                Runs the command.

                                                + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                +
                                                + +

                                                The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $input + : InputInterface +
                                                +
                                                + +
                                                +
                                                + $output + : OutputInterface +
                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + ExceptionInterface + +

                                                When input binding fails. Bypass this by calling .

                                                +
                                                + +
                                                +
                                                + see +
                                                +
                                                + setCode() + + +
                                                +
                                                + see +
                                                +
                                                + execute() + + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + int + — +

                                                The command exit code

                                                +
                                                + +
                                                + +
                                                +
                                                +

                                                + setAliases() + + +

                                                + + +

                                                Sets the aliases for the command.

                                                + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $aliases + : array<string|int, string> +
                                                +
                                                +

                                                An array of aliases for the command

                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + +

                                                When an alias is invalid

                                                +
                                                + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setApplication() + + +

                                                + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $application + : Application|null + = null
                                                +
                                                + +
                                                +
                                                + + + + + + +
                                                +
                                                +

                                                + setCode() + + +

                                                + + +

                                                Sets the code to execute when running this command.

                                                + + + public + setCode(callable $code) : $this + +
                                                +
                                                + +

                                                If this method is used, it overrides the code defined +in the execute() method.

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $code + : callable +
                                                +
                                                +

                                                A callable(InputInterface $input, OutputInterface $output)

                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + + +
                                                +
                                                + see +
                                                +
                                                + execute() + + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setDefinition() + + +

                                                + + +

                                                Sets an array of argument and option instances.

                                                + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $definition + : array<string|int, mixed>|InputDefinition +
                                                +
                                                +

                                                An array of argument and option instances or a definition instance

                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setDescription() + + +

                                                + + +

                                                Sets the description for the command.

                                                + + + public + setDescription(string $description) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $description + : string +
                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setHelp() + + +

                                                + + +

                                                Sets the help for the command.

                                                + + + public + setHelp(string $help) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $help + : string +
                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setHelperSet() + + +

                                                + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $helperSet + : HelperSet +
                                                +
                                                + +
                                                +
                                                + + + + + + +
                                                +
                                                +

                                                + setHidden() + + +

                                                + + + + + public + setHidden(bool $hidden) : $this + +
                                                +
                                                + + +
                                                Parameters
                                                +
                                                +
                                                + $hidden + : bool +
                                                +
                                                +

                                                Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + final +
                                                +
                                                + +

                                                since Symfony 5.1

                                                +
                                                + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setName() + + +

                                                + + +

                                                Sets the name of the command.

                                                + + + public + setName(string $name) : $this + +
                                                +
                                                + +

                                                This method can set both the namespace and the name if +you separate them by a colon (:)

                                                +
                                                $command->setName('foo:bar');
                                                +
                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $name + : string +
                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + +

                                                When the name is invalid

                                                +
                                                + +
                                                +
                                                + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + setProcessTitle() + + +

                                                + + +

                                                Sets the process title of the command.

                                                + + + public + setProcessTitle(string $title) : $this + +
                                                +
                                                + +

                                                This feature should be used only when creating a long process command, +like a daemon.

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $title + : string +
                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + $this +
                                                + +
                                                +
                                                +

                                                + configure() + + +

                                                + + +

                                                Configures the current command.

                                                + + + protected + configure() : mixed + +
                                                +
                                                + + + + + + + + +
                                                +
                                                +

                                                + execute() + + +

                                                + + +

                                                Executes the current command.

                                                + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                +
                                                + +

                                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $input + : InputInterface +
                                                +
                                                + +
                                                +
                                                + $output + : OutputInterface +
                                                +
                                                + +
                                                +
                                                + + + + + +
                                                +
                                                Return values
                                                + int + — +

                                                0 if everything went fine, or an exit code

                                                +
                                                + +
                                                + +
                                                +
                                                +

                                                + generateKey() + + +

                                                + + + + + protected + generateKey() : mixed + +
                                                +
                                                + + + + + + + + +
                                                +
                                                +

                                                + initialize() + + +

                                                + + +

                                                Initializes the command after the input has been bound and before the input +is validated.

                                                + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                +
                                                + +

                                                This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $input + : InputInterface +
                                                +
                                                + +
                                                +
                                                + $output + : OutputInterface +
                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + see +
                                                +
                                                + InputInterface::bind() + + +
                                                +
                                                + see +
                                                +
                                                + InputInterface::validate() + + +
                                                +
                                                + + + + +
                                                +
                                                +

                                                + interact() + + +

                                                + + +

                                                Interacts with the user.

                                                + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                +
                                                + +

                                                This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $input + : InputInterface +
                                                +
                                                + +
                                                +
                                                + $output + : OutputInterface +
                                                +
                                                + +
                                                +
                                                + + + + + + +
                                                +
                                                +

                                                + validateName() + + +

                                                + + +

                                                Validates a command name.

                                                + + + private + validateName(string $name) : mixed + +
                                                +
                                                + +

                                                It must be non-empty and parts can optionally be separated by ":".

                                                +
                                                + +
                                                Parameters
                                                +
                                                +
                                                + $name + : string +
                                                +
                                                + +
                                                +
                                                + + +
                                                + Tags + + +
                                                +
                                                +
                                                + throws +
                                                +
                                                + InvalidArgumentException + +

                                                When the name is invalid

                                                +
                                                + +
                                                +
                                                + + + + +
                                                +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                
                                                +        
                                                + +
                                                +
                                                + + + +
                                                +
                                                +
                                                + +
                                                + On this page + + +
                                                + +
                                                +
                                                +
                                                +
                                                +
                                                +

                                                Search results

                                                + +
                                                +
                                                +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + + +
                                                  + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-LinkCommand.html b/src/public/api/classes/Aloe-Command-LinkCommand.html new file mode 100644 index 00000000..6437878d --- /dev/null +++ b/src/public/api/classes/Aloe-Command-LinkCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                  +

                                                  Leaf PHP

                                                  + + + + + +
                                                  + +
                                                  +
                                                  + + + + +
                                                  +
                                                  + + +
                                                  +

                                                  + LinkCommand + + + extends Command + + +
                                                  + in package + +
                                                  + + +

                                                  + +
                                                  + + +
                                                  + + + +

                                                  Base class for Aloe Commands.

                                                  + + + + + + + + + +

                                                  + Table of Contents + + +

                                                  + + + + + + + +

                                                  + Constants + + +

                                                  +
                                                  +
                                                  + FAILURE + +  = 1 +
                                                  + +
                                                  + INVALID + +  = 2 +
                                                  + +
                                                  + SUCCESS + +  = 0 +
                                                  + +
                                                  + + +

                                                  + Properties + + +

                                                  +
                                                  +
                                                  + $description + +  : mixed +
                                                  +
                                                  Description for command
                                                  + +
                                                  + $help + +  : mixed +
                                                  +
                                                  Help for command
                                                  + +
                                                  + $defaultDescription + +  : string|null +
                                                  + +
                                                  + $defaultName + +  : string|null +
                                                  + +
                                                  + $input + +  : InputInterface +
                                                  +
                                                  The input object
                                                  + +
                                                  + $output + +  : OutputInterface +
                                                  +
                                                  The output object
                                                  + +
                                                  + $aliases + +  : mixed +
                                                  + +
                                                  + $application + +  : mixed +
                                                  + +
                                                  + $code + +  : mixed +
                                                  + +
                                                  + $definition + +  : mixed +
                                                  + +
                                                  + $fullDefinition + +  : mixed +
                                                  + +
                                                  + $helperSet + +  : mixed +
                                                  + +
                                                  + $hidden + +  : mixed +
                                                  + +
                                                  + $ignoreValidationErrors + +  : mixed +
                                                  + +
                                                  + $name + +  : mixed +
                                                  +
                                                  The name of command to run in console
                                                  + +
                                                  + $processTitle + +  : mixed +
                                                  + +
                                                  + $synopsis + +  : mixed +
                                                  + +
                                                  + $usages + +  : mixed +
                                                  + +
                                                  + +

                                                  + Methods + + +

                                                  +
                                                  +
                                                  + __construct() + +  : mixed +
                                                  + +
                                                  + addArgument() + +  : $this +
                                                  +
                                                  Adds an argument.
                                                  + +
                                                  + addOption() + +  : $this +
                                                  +
                                                  Adds an option.
                                                  + +
                                                  + addUsage() + +  : $this +
                                                  +
                                                  Add a command usage example, it'll be prefixed with the command name.
                                                  + +
                                                  + argument() + +  : mixed +
                                                  +
                                                  Returns the argument value for a given argument name.
                                                  + +
                                                  + arguments() + +  : mixed +
                                                  +
                                                  Returns all the given arguments merged with the default values.
                                                  + +
                                                  + ask() + +  : mixed +
                                                  +
                                                  Ask a question
                                                  + +
                                                  + askMultiline() + +  : mixed +
                                                  +
                                                  Ask a question
                                                  + +
                                                  + askRaw() + +  : mixed +
                                                  +
                                                  Ask a question
                                                  + +
                                                  + autoComplete() + +  : mixed +
                                                  +
                                                  Ask a question with auto completion
                                                  + +
                                                  + choice() + +  : mixed +
                                                  +
                                                  Ask a question with possible answers
                                                  + +
                                                  + comment() + +  : mixed +
                                                  +
                                                  Output some data as a comment
                                                  + +
                                                  + complete() + +  : void +
                                                  +
                                                  Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                  + +
                                                  + confirm() + +  : mixed +
                                                  +
                                                  Prompt user for confirmation
                                                  + +
                                                  + error() + +  : mixed +
                                                  +
                                                  Output some data as a error
                                                  + +
                                                  + getAliases() + +  : array<string|int, mixed> +
                                                  +
                                                  Returns the aliases for the command.
                                                  + +
                                                  + getApplication() + +  : Application|null +
                                                  +
                                                  Gets the application instance for this command.
                                                  + +
                                                  + getDefaultDescription() + +  : string|null +
                                                  + +
                                                  + getDefaultName() + +  : string|null +
                                                  + +
                                                  + getDefinition() + +  : InputDefinition +
                                                  +
                                                  Gets the InputDefinition attached to this Command.
                                                  + +
                                                  + getDescription() + +  : string +
                                                  +
                                                  Returns the description for the command.
                                                  + +
                                                  + getHelp() + +  : string +
                                                  +
                                                  Returns the help for the command.
                                                  + +
                                                  + getHelper() + +  : mixed +
                                                  +
                                                  Gets a helper instance by name.
                                                  + +
                                                  + getHelperSet() + +  : HelperSet|null +
                                                  +
                                                  Gets the helper set.
                                                  + +
                                                  + getName() + +  : string|null +
                                                  +
                                                  Returns the command name.
                                                  + +
                                                  + getNativeDefinition() + +  : InputDefinition +
                                                  +
                                                  Gets the InputDefinition to be used to create representations of this Command.
                                                  + +
                                                  + getProcessedHelp() + +  : string +
                                                  +
                                                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                  + +
                                                  + getSynopsis() + +  : string +
                                                  +
                                                  Returns the synopsis for the command.
                                                  + +
                                                  + getUsages() + +  : array<string|int, mixed> +
                                                  +
                                                  Returns alternative usages of the command.
                                                  + +
                                                  + ignoreValidationErrors() + +  : mixed +
                                                  +
                                                  Ignores validation errors.
                                                  + +
                                                  + info() + +  : mixed +
                                                  +
                                                  Output some data as a info
                                                  + +
                                                  + input() + +  : mixed +
                                                  +
                                                  Get an argument or return the input object
                                                  + +
                                                  + isEnabled() + +  : bool +
                                                  +
                                                  Checks whether the command is enabled or not in the current environment.
                                                  + +
                                                  + isHidden() + +  : bool +
                                                  + +
                                                  + link() + +  : mixed +
                                                  +
                                                  Output some data as a link
                                                  + +
                                                  + multiChoice() + +  : mixed +
                                                  +
                                                  Ask a question with possible answers + multiple choice
                                                  + +
                                                  + option() + +  : mixed +
                                                  +
                                                  Get an input option
                                                  + +
                                                  + options() + +  : mixed +
                                                  +
                                                  Get all input options
                                                  + +
                                                  + output() + +  : mixed +
                                                  +
                                                  Output data or return the output object
                                                  + +
                                                  + question() + +  : mixed +
                                                  +
                                                  Output some data as a question
                                                  + +
                                                  + run() + +  : int +
                                                  +
                                                  Runs the command.
                                                  + +
                                                  + runProcess() + +  : mixed +
                                                  +
                                                  Run a new cli process
                                                  + +
                                                  + secret() + +  : mixed +
                                                  +
                                                  Prompt user for input but hide keystrokes
                                                  + +
                                                  + setAliases() + +  : $this +
                                                  +
                                                  Sets the aliases for the command.
                                                  + +
                                                  + setApplication() + +  : mixed +
                                                  + +
                                                  + setArgument() + +  : mixed +
                                                  +
                                                  Add a new argument
                                                  + +
                                                  + setCode() + +  : $this +
                                                  +
                                                  Sets the code to execute when running this command.
                                                  + +
                                                  + setDefinition() + +  : $this +
                                                  +
                                                  Sets an array of argument and option instances.
                                                  + +
                                                  + setDescription() + +  : $this +
                                                  +
                                                  Sets the description for the command.
                                                  + +
                                                  + setHelp() + +  : $this +
                                                  +
                                                  Sets the help for the command.
                                                  + +
                                                  + setHelperSet() + +  : mixed +
                                                  + +
                                                  + setHidden() + +  : $this +
                                                  + +
                                                  + setName() + +  : $this +
                                                  +
                                                  Sets the name of the command.
                                                  + +
                                                  + setOption() + +  : mixed +
                                                  +
                                                  Add a new option
                                                  + +
                                                  + setProcessTitle() + +  : $this +
                                                  +
                                                  Sets the process title of the command.
                                                  + +
                                                  + write() + +  : mixed +
                                                  +
                                                  Output some data
                                                  + +
                                                  + writeln() + +  : mixed +
                                                  +
                                                  Output some data
                                                  + +
                                                  + config() + +  : mixed +
                                                  + +
                                                  + configure() + +  : mixed +
                                                  +
                                                  Configures the current command.
                                                  + +
                                                  + execute() + +  : int +
                                                  +
                                                  Executes the current command.
                                                  + +
                                                  + handle() + +  : int +
                                                  +
                                                  Executes the current command.
                                                  + +
                                                  + initialize() + +  : mixed +
                                                  +
                                                  Initializes the command after the input has been bound and before the input +is validated.
                                                  + +
                                                  + interact() + +  : mixed +
                                                  +
                                                  Interacts with the user.
                                                  + +
                                                  + validateName() + +  : mixed +
                                                  +
                                                  Validates a command name.
                                                  + +
                                                  + + + + +
                                                  +

                                                  + Constants + + +

                                                  +
                                                  +

                                                  + FAILURE + + +

                                                  + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                  +
                                                  +

                                                  + INVALID + + +

                                                  + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                  +
                                                  +

                                                  + SUCCESS + + +

                                                  + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                  +
                                                  + + +
                                                  +

                                                  + Properties + + +

                                                  +
                                                  +

                                                  + $description + + + + +

                                                  + + +

                                                  Description for command

                                                  + + + + public + mixed + $description + = 'Create a symbolic link for the storage directory' + + + + + + + +
                                                  +
                                                  +

                                                  + $help + + + + +

                                                  + + +

                                                  Help for command

                                                  + + + + public + mixed + $help + = 'Create a symbolic link for the storage directory' + + + + + + + +
                                                  +
                                                  +

                                                  + $defaultDescription + + + + +

                                                  + + + + + + protected + static string|null + $defaultDescription + + + +

                                                  The default command description

                                                  +
                                                  + + + + + +
                                                  +
                                                  +

                                                  + $defaultName + + + + +

                                                  + + + + + + protected + static string|null + $defaultName + = 'link' + + +

                                                  The default command name

                                                  +
                                                  + + + + + +
                                                  +
                                                  +

                                                  + $input + + + + +

                                                  + + +

                                                  The input object

                                                  + + + + protected + InputInterface + $input + + + + + + + + +
                                                  +
                                                  +

                                                  + $output + + + + +

                                                  + + +

                                                  The output object

                                                  + + + + protected + OutputInterface + $output + + + + + + + + +
                                                  +
                                                  +

                                                  + $aliases + + + + +

                                                  + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                  +
                                                  +

                                                  + $application + + + + +

                                                  + + + + + + private + mixed + $application + + + + + + + + +
                                                  +
                                                  +

                                                  + $code + + + + +

                                                  + + + + + + private + mixed + $code + + + + + + + + +
                                                  +
                                                  +

                                                  + $definition + + + + +

                                                  + + + + + + private + mixed + $definition + + + + + + + + +
                                                  +
                                                  +

                                                  + $fullDefinition + + + + +

                                                  + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                  +
                                                  +

                                                  + $helperSet + + + + +

                                                  + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                  +
                                                  +

                                                  + $hidden + + + + +

                                                  + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                  +
                                                  +

                                                  + $ignoreValidationErrors + + + + +

                                                  + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                  +
                                                  +

                                                  + $name + + + + +

                                                  + + +

                                                  The name of command to run in console

                                                  + + + + private + mixed + $name + + + + + + + + +
                                                  +
                                                  +

                                                  + $processTitle + + + + +

                                                  + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                  +
                                                  +

                                                  + $synopsis + + + + +

                                                  + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                  +
                                                  +

                                                  + $usages + + + + +

                                                  + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                  +
                                                  + +
                                                  +

                                                  + Methods + + +

                                                  +
                                                  +

                                                  + __construct() + + +

                                                  + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string|null + = null
                                                  +
                                                  +

                                                  The name of the command; passing null means it must be set in configure()

                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + LogicException + +

                                                  When the command name is empty

                                                  +
                                                  + +
                                                  +
                                                  + + + + +
                                                  +
                                                  +

                                                  + addArgument() + + +

                                                  + + +

                                                  Adds an argument.

                                                  + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $mode + : int|null + = null
                                                  +
                                                  +

                                                  The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                  +
                                                  + +
                                                  +
                                                  + $description + : string + = ''
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  +

                                                  The default value (for InputArgument::OPTIONAL mode only)

                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + +

                                                  When argument mode is not valid

                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + addOption() + + +

                                                  + + +

                                                  Adds an option.

                                                  + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $shortcut + : string|array<string|int, mixed>|null + = null
                                                  +
                                                  +

                                                  The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                  +
                                                  + +
                                                  +
                                                  + $mode + : int|null + = null
                                                  +
                                                  +

                                                  The option mode: One of the InputOption::VALUE_* constants

                                                  +
                                                  + +
                                                  +
                                                  + $description + : string + = ''
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  +

                                                  The default value (must be null for InputOption::VALUE_NONE)

                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + +

                                                  If option mode is invalid or incompatible

                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + addUsage() + + +

                                                  + + +

                                                  Add a command usage example, it'll be prefixed with the command name.

                                                  + + + public + addUsage(string $usage) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $usage + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + argument() + + +

                                                  + + +

                                                  Returns the argument value for a given argument name.

                                                  + + + public + argument(string $name) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + arguments() + + +

                                                  + + +

                                                  Returns all the given arguments merged with the default values.

                                                  + + + public + arguments() : mixed + +
                                                  +
                                                  + + + + + + + + +
                                                  +
                                                  +

                                                  + ask() + + +

                                                  + + +

                                                  Ask a question

                                                  + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + askMultiline() + + +

                                                  + + +

                                                  Ask a question

                                                  + + + public + askMultiline(string $question) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + askRaw() + + +

                                                  + + +

                                                  Ask a question

                                                  + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + autoComplete() + + +

                                                  + + +

                                                  Ask a question with auto completion

                                                  + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $potentialAnswers + : array<string|int, mixed> +
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + choice() + + +

                                                  + + +

                                                  Ask a question with possible answers

                                                  + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $choices + : array<string|int, mixed> +
                                                  +
                                                  + +
                                                  +
                                                  + $errorMessage + : string + = 'Invalid choice'
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + comment() + + +

                                                  + + +

                                                  Output some data as a comment

                                                  + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $messages + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  + +
                                                  +

                                                  + confirm() + + +

                                                  + + +

                                                  Prompt user for confirmation

                                                  + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $param + : mixed + = false
                                                  +
                                                  + +
                                                  +
                                                  + $regex + : mixed + = '/^y/i'
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + error() + + +

                                                  + + +

                                                  Output some data as a error

                                                  + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $messages + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + getAliases() + + +

                                                  + + +

                                                  Returns the aliases for the command.

                                                  + + + public + getAliases() : array<string|int, mixed> + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + array<string|int, mixed> +
                                                  + +
                                                  +
                                                  +

                                                  + getApplication() + + +

                                                  + + +

                                                  Gets the application instance for this command.

                                                  + + + public + getApplication() : Application|null + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + Application|null +
                                                  + +
                                                  +
                                                  +

                                                  + getDefaultDescription() + + +

                                                  + + + + + public + static getDefaultDescription() : string|null + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + string|null +
                                                  + +
                                                  +
                                                  +

                                                  + getDefaultName() + + +

                                                  + + + + + public + static getDefaultName() : string|null + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + string|null +
                                                  + +
                                                  +
                                                  +

                                                  + getDefinition() + + +

                                                  + + +

                                                  Gets the InputDefinition attached to this Command.

                                                  + + + public + getDefinition() : InputDefinition + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + InputDefinition +
                                                  + +
                                                  +
                                                  +

                                                  + getDescription() + + +

                                                  + + +

                                                  Returns the description for the command.

                                                  + + + public + getDescription() : string + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + string +
                                                  + +
                                                  +
                                                  +

                                                  + getHelp() + + +

                                                  + + +

                                                  Returns the help for the command.

                                                  + + + public + getHelp() : string + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + string +
                                                  + +
                                                  +
                                                  +

                                                  + getHelper() + + +

                                                  + + +

                                                  Gets a helper instance by name.

                                                  + + + public + getHelper(string $name) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + LogicException + +

                                                  if no HelperSet is defined

                                                  +
                                                  + +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + +

                                                  if the helper is not defined

                                                  +
                                                  + +
                                                  +
                                                  + + + + +
                                                  +
                                                  +

                                                  + getHelperSet() + + +

                                                  + + +

                                                  Gets the helper set.

                                                  + + + public + getHelperSet() : HelperSet|null + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + HelperSet|null +
                                                  + +
                                                  +
                                                  +

                                                  + getName() + + +

                                                  + + +

                                                  Returns the command name.

                                                  + + + public + getName() : string|null + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + string|null +
                                                  + +
                                                  +
                                                  +

                                                  + getNativeDefinition() + + +

                                                  + + +

                                                  Gets the InputDefinition to be used to create representations of this Command.

                                                  + + + public + getNativeDefinition() : InputDefinition + +
                                                  +
                                                  + +

                                                  Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                  +

                                                  This method is not part of public API and should not be used directly.

                                                  +
                                                  + + + + + + +
                                                  +
                                                  Return values
                                                  + InputDefinition +
                                                  + +
                                                  +
                                                  +

                                                  + getProcessedHelp() + + +

                                                  + + +

                                                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                  + + + public + getProcessedHelp() : string + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + string +
                                                  + +
                                                  +
                                                  +

                                                  + getSynopsis() + + +

                                                  + + +

                                                  Returns the synopsis for the command.

                                                  + + + public + getSynopsis([bool $short = false ]) : string + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $short + : bool + = false
                                                  +
                                                  +

                                                  Whether to show the short version of the synopsis (with options folded) or not

                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + string +
                                                  + +
                                                  +
                                                  +

                                                  + getUsages() + + +

                                                  + + +

                                                  Returns alternative usages of the command.

                                                  + + + public + getUsages() : array<string|int, mixed> + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + array<string|int, mixed> +
                                                  + +
                                                  +
                                                  +

                                                  + ignoreValidationErrors() + + +

                                                  + + +

                                                  Ignores validation errors.

                                                  + + + public + ignoreValidationErrors() : mixed + +
                                                  +
                                                  + +

                                                  This is mainly useful for the help command.

                                                  +
                                                  + + + + + + + +
                                                  +
                                                  +

                                                  + info() + + +

                                                  + + +

                                                  Output some data as a info

                                                  + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $messages + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + input() + + +

                                                  + + +

                                                  Get an argument or return the input object

                                                  + + + public + input([string $data = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $data + : string + = null
                                                  +
                                                  +

                                                  The argument to return

                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + isEnabled() + + +

                                                  + + +

                                                  Checks whether the command is enabled or not in the current environment.

                                                  + + + public + isEnabled() : bool + +
                                                  +
                                                  + +

                                                  Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                  +
                                                  + + + + + + +
                                                  +
                                                  Return values
                                                  + bool +
                                                  + +
                                                  +
                                                  +

                                                  + isHidden() + + +

                                                  + + + + + public + isHidden() : bool + +
                                                  +
                                                  + + + + + + + +
                                                  +
                                                  Return values
                                                  + bool + — +

                                                  whether the command should be publicly shown or not

                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  + + + +

                                                  Output some data as a link

                                                  + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $link + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $display + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + multiChoice() + + +

                                                  + + +

                                                  Ask a question with possible answers + multiple choice

                                                  + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $choices + : array<string|int, mixed> +
                                                  +
                                                  + +
                                                  +
                                                  + $errorMessage + : string + = 'Invalid choice'
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + option() + + +

                                                  + + +

                                                  Get an input option

                                                  + + + public + option(string $name) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + options() + + +

                                                  + + +

                                                  Get all input options

                                                  + + + public + options(string $name) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + output() + + +

                                                  + + +

                                                  Output data or return the output object

                                                  + + + public + output([string $data = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $data + : string + = null
                                                  +
                                                  +

                                                  The argument to return

                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + question() + + +

                                                  + + +

                                                  Output some data as a question

                                                  + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $messages + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + run() + + +

                                                  + + +

                                                  Runs the command.

                                                  + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                  +
                                                  + +

                                                  The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $input + : InputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + $output + : OutputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + Exception + +

                                                  When binding input fails. Bypass this by calling .

                                                  +
                                                  + +
                                                  +
                                                  + see +
                                                  +
                                                  + setCode() + + +
                                                  +
                                                  + see +
                                                  +
                                                  + execute() + + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + int + — +

                                                  The command exit code

                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +

                                                  + runProcess() + + +

                                                  + + +

                                                  Run a new cli process

                                                  + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $process + : array<string|int, mixed> +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + secret() + + +

                                                  + + +

                                                  Prompt user for input but hide keystrokes

                                                  + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $question + : string +
                                                  +
                                                  + +
                                                  +
                                                  + $useFallback + : bool + = false
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + setAliases() + + +

                                                  + + +

                                                  Sets the aliases for the command.

                                                  + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $aliases + : array<string|int, string> +
                                                  +
                                                  +

                                                  An array of aliases for the command

                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + +

                                                  When an alias is invalid

                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setApplication() + + +

                                                  + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $application + : Application|null + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + setArgument() + + +

                                                  + + +

                                                  Add a new argument

                                                  + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $mode + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + $description + : mixed + = ''
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + setCode() + + +

                                                  + + +

                                                  Sets the code to execute when running this command.

                                                  + + + public + setCode(callable $code) : $this + +
                                                  +
                                                  + +

                                                  If this method is used, it overrides the code defined +in the execute() method.

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $code + : callable +
                                                  +
                                                  +

                                                  A callable(InputInterface $input, OutputInterface $output)

                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + + +
                                                  +
                                                  + see +
                                                  +
                                                  + execute() + + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setDefinition() + + +

                                                  + + +

                                                  Sets an array of argument and option instances.

                                                  + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $definition + : array<string|int, mixed>|InputDefinition +
                                                  +
                                                  +

                                                  An array of argument and option instances or a definition instance

                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setDescription() + + +

                                                  + + +

                                                  Sets the description for the command.

                                                  + + + public + setDescription(string $description) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $description + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setHelp() + + +

                                                  + + +

                                                  Sets the help for the command.

                                                  + + + public + setHelp(string $help) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $help + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setHelperSet() + + +

                                                  + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $helperSet + : HelperSet +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + setHidden() + + +

                                                  + + + + + public + setHidden(bool $hidden) : $this + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $hidden + : bool +
                                                  +
                                                  +

                                                  Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + final +
                                                  +
                                                  + +

                                                  since Symfony 5.1

                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setName() + + +

                                                  + + +

                                                  Sets the name of the command.

                                                  + + + public + setName(string $name) : $this + +
                                                  +
                                                  + +

                                                  This method can set both the namespace and the name if +you separate them by a colon (:)

                                                  +
                                                  $command->setName('foo:bar');
                                                  +
                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + +

                                                  When the name is invalid

                                                  +
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + setOption() + + +

                                                  + + +

                                                  Add a new option

                                                  + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $shortcut + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + $mode + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + $description + : mixed + = ''
                                                  +
                                                  + +
                                                  +
                                                  + $default + : mixed + = null
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + setProcessTitle() + + +

                                                  + + +

                                                  Sets the process title of the command.

                                                  + + + public + setProcessTitle(string $title) : $this + +
                                                  +
                                                  + +

                                                  This feature should be used only when creating a long process command, +like a daemon.

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $title + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + $this +
                                                  + +
                                                  +
                                                  +

                                                  + write() + + +

                                                  + + +

                                                  Output some data

                                                  + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $messages + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + writeln() + + +

                                                  + + +

                                                  Output some data

                                                  + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                  +
                                                  + + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $messages + : mixed +
                                                  +
                                                  + +
                                                  +
                                                  + $options + : mixed + = 0
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + config() + + +

                                                  + + + + + protected + config() : mixed + +
                                                  +
                                                  + + + + + + + + +
                                                  +
                                                  +

                                                  + configure() + + +

                                                  + + +

                                                  Configures the current command.

                                                  + + + protected + configure() : mixed + +
                                                  +
                                                  + + + + + + + + +
                                                  +
                                                  +

                                                  + execute() + + +

                                                  + + +

                                                  Executes the current command.

                                                  + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                  +
                                                  + +

                                                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $input + : InputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + $output + : OutputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + +
                                                  +
                                                  Return values
                                                  + int + — +

                                                  0 if everything went fine, or an exit code

                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +

                                                  + handle() + + +

                                                  + + +

                                                  Executes the current command.

                                                  + + + protected + handle() : int + +
                                                  +
                                                  + +

                                                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                  +
                                                  + + + + + + +
                                                  +
                                                  Return values
                                                  + int + — +

                                                  0 if everything went fine, or an exit code

                                                  +
                                                  + +
                                                  + +
                                                  +
                                                  +

                                                  + initialize() + + +

                                                  + + +

                                                  Initializes the command after the input has been bound and before the input +is validated.

                                                  + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                  +
                                                  + +

                                                  This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $input + : InputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + $output + : OutputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + see +
                                                  +
                                                  + InputInterface::bind() + + +
                                                  +
                                                  + see +
                                                  +
                                                  + InputInterface::validate() + + +
                                                  +
                                                  + + + + +
                                                  +
                                                  +

                                                  + interact() + + +

                                                  + + +

                                                  Interacts with the user.

                                                  + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                  +
                                                  + +

                                                  This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $input + : InputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + $output + : OutputInterface +
                                                  +
                                                  + +
                                                  +
                                                  + + + + + + +
                                                  +
                                                  +

                                                  + validateName() + + +

                                                  + + +

                                                  Validates a command name.

                                                  + + + private + validateName(string $name) : mixed + +
                                                  +
                                                  + +

                                                  It must be non-empty and parts can optionally be separated by ":".

                                                  +
                                                  + +
                                                  Parameters
                                                  +
                                                  +
                                                  + $name + : string +
                                                  +
                                                  + +
                                                  +
                                                  + + +
                                                  + Tags + + +
                                                  +
                                                  +
                                                  + throws +
                                                  +
                                                  + InvalidArgumentException + +

                                                  When the name is invalid

                                                  +
                                                  + +
                                                  +
                                                  + + + + +
                                                  +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  
                                                  +        
                                                  + +
                                                  +
                                                  + + + +
                                                  +
                                                  +
                                                  + +
                                                  + On this page + + +
                                                  + +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  +

                                                  Search results

                                                  + +
                                                  +
                                                  +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + +
                                                    + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ScaffoldAuthCommand.html b/src/public/api/classes/Aloe-Command-ScaffoldAuthCommand.html new file mode 100644 index 00000000..faeb6cd2 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ScaffoldAuthCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                    +

                                                    Leaf PHP

                                                    + + + + + +
                                                    + +
                                                    +
                                                    + + + + +
                                                    +
                                                    + + +
                                                    +

                                                    + ScaffoldAuthCommand + + + extends Command + + +
                                                    + in package + +
                                                    + + +

                                                    + +
                                                    + + +
                                                    + + + +

                                                    Base class for Aloe Commands.

                                                    + + + + + + + + + +

                                                    + Table of Contents + + +

                                                    + + + + + + + +

                                                    + Constants + + +

                                                    +
                                                    +
                                                    + FAILURE + +  = 1 +
                                                    + +
                                                    + INVALID + +  = 2 +
                                                    + +
                                                    + SUCCESS + +  = 0 +
                                                    + +
                                                    + + +

                                                    + Properties + + +

                                                    +
                                                    +
                                                    + $description + +  : mixed +
                                                    +
                                                    Description for command
                                                    + +
                                                    + $help + +  : mixed +
                                                    +
                                                    Help for command
                                                    + +
                                                    + $defaultDescription + +  : string|null +
                                                    + +
                                                    + $defaultName + +  : string|null +
                                                    + +
                                                    + $input + +  : InputInterface +
                                                    +
                                                    The input object
                                                    + +
                                                    + $output + +  : OutputInterface +
                                                    +
                                                    The output object
                                                    + +
                                                    + $aliases + +  : mixed +
                                                    + +
                                                    + $application + +  : mixed +
                                                    + +
                                                    + $code + +  : mixed +
                                                    + +
                                                    + $definition + +  : mixed +
                                                    + +
                                                    + $fullDefinition + +  : mixed +
                                                    + +
                                                    + $helperSet + +  : mixed +
                                                    + +
                                                    + $hidden + +  : mixed +
                                                    + +
                                                    + $ignoreValidationErrors + +  : mixed +
                                                    + +
                                                    + $name + +  : mixed +
                                                    +
                                                    The name of command to run in console
                                                    + +
                                                    + $processTitle + +  : mixed +
                                                    + +
                                                    + $synopsis + +  : mixed +
                                                    + +
                                                    + $usages + +  : mixed +
                                                    + +
                                                    + +

                                                    + Methods + + +

                                                    +
                                                    +
                                                    + __construct() + +  : mixed +
                                                    + +
                                                    + addArgument() + +  : $this +
                                                    +
                                                    Adds an argument.
                                                    + +
                                                    + addOption() + +  : $this +
                                                    +
                                                    Adds an option.
                                                    + +
                                                    + addUsage() + +  : $this +
                                                    +
                                                    Add a command usage example, it'll be prefixed with the command name.
                                                    + +
                                                    + argument() + +  : mixed +
                                                    +
                                                    Returns the argument value for a given argument name.
                                                    + +
                                                    + arguments() + +  : mixed +
                                                    +
                                                    Returns all the given arguments merged with the default values.
                                                    + +
                                                    + ask() + +  : mixed +
                                                    +
                                                    Ask a question
                                                    + +
                                                    + askMultiline() + +  : mixed +
                                                    +
                                                    Ask a question
                                                    + +
                                                    + askRaw() + +  : mixed +
                                                    +
                                                    Ask a question
                                                    + +
                                                    + autoComplete() + +  : mixed +
                                                    +
                                                    Ask a question with auto completion
                                                    + +
                                                    + choice() + +  : mixed +
                                                    +
                                                    Ask a question with possible answers
                                                    + +
                                                    + comment() + +  : mixed +
                                                    +
                                                    Output some data as a comment
                                                    + +
                                                    + complete() + +  : void +
                                                    +
                                                    Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                    + +
                                                    + confirm() + +  : mixed +
                                                    +
                                                    Prompt user for confirmation
                                                    + +
                                                    + error() + +  : mixed +
                                                    +
                                                    Output some data as a error
                                                    + +
                                                    + getAliases() + +  : array<string|int, mixed> +
                                                    +
                                                    Returns the aliases for the command.
                                                    + +
                                                    + getApplication() + +  : Application|null +
                                                    +
                                                    Gets the application instance for this command.
                                                    + +
                                                    + getDefaultDescription() + +  : string|null +
                                                    + +
                                                    + getDefaultName() + +  : string|null +
                                                    + +
                                                    + getDefinition() + +  : InputDefinition +
                                                    +
                                                    Gets the InputDefinition attached to this Command.
                                                    + +
                                                    + getDescription() + +  : string +
                                                    +
                                                    Returns the description for the command.
                                                    + +
                                                    + getHelp() + +  : string +
                                                    +
                                                    Returns the help for the command.
                                                    + +
                                                    + getHelper() + +  : mixed +
                                                    +
                                                    Gets a helper instance by name.
                                                    + +
                                                    + getHelperSet() + +  : HelperSet|null +
                                                    +
                                                    Gets the helper set.
                                                    + +
                                                    + getName() + +  : string|null +
                                                    +
                                                    Returns the command name.
                                                    + +
                                                    + getNativeDefinition() + +  : InputDefinition +
                                                    +
                                                    Gets the InputDefinition to be used to create representations of this Command.
                                                    + +
                                                    + getProcessedHelp() + +  : string +
                                                    +
                                                    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                    + +
                                                    + getSynopsis() + +  : string +
                                                    +
                                                    Returns the synopsis for the command.
                                                    + +
                                                    + getUsages() + +  : array<string|int, mixed> +
                                                    +
                                                    Returns alternative usages of the command.
                                                    + +
                                                    + ignoreValidationErrors() + +  : mixed +
                                                    +
                                                    Ignores validation errors.
                                                    + +
                                                    + info() + +  : mixed +
                                                    +
                                                    Output some data as a info
                                                    + +
                                                    + input() + +  : mixed +
                                                    +
                                                    Get an argument or return the input object
                                                    + +
                                                    + isEnabled() + +  : bool +
                                                    +
                                                    Checks whether the command is enabled or not in the current environment.
                                                    + +
                                                    + isHidden() + +  : bool +
                                                    + +
                                                    + link() + +  : mixed +
                                                    +
                                                    Output some data as a link
                                                    + +
                                                    + multiChoice() + +  : mixed +
                                                    +
                                                    Ask a question with possible answers + multiple choice
                                                    + +
                                                    + option() + +  : mixed +
                                                    +
                                                    Get an input option
                                                    + +
                                                    + options() + +  : mixed +
                                                    +
                                                    Get all input options
                                                    + +
                                                    + output() + +  : mixed +
                                                    +
                                                    Output data or return the output object
                                                    + +
                                                    + question() + +  : mixed +
                                                    +
                                                    Output some data as a question
                                                    + +
                                                    + run() + +  : int +
                                                    +
                                                    Runs the command.
                                                    + +
                                                    + runProcess() + +  : mixed +
                                                    +
                                                    Run a new cli process
                                                    + +
                                                    + secret() + +  : mixed +
                                                    +
                                                    Prompt user for input but hide keystrokes
                                                    + +
                                                    + setAliases() + +  : $this +
                                                    +
                                                    Sets the aliases for the command.
                                                    + +
                                                    + setApplication() + +  : mixed +
                                                    + +
                                                    + setArgument() + +  : mixed +
                                                    +
                                                    Add a new argument
                                                    + +
                                                    + setCode() + +  : $this +
                                                    +
                                                    Sets the code to execute when running this command.
                                                    + +
                                                    + setDefinition() + +  : $this +
                                                    +
                                                    Sets an array of argument and option instances.
                                                    + +
                                                    + setDescription() + +  : $this +
                                                    +
                                                    Sets the description for the command.
                                                    + +
                                                    + setHelp() + +  : $this +
                                                    +
                                                    Sets the help for the command.
                                                    + +
                                                    + setHelperSet() + +  : mixed +
                                                    + +
                                                    + setHidden() + +  : $this +
                                                    + +
                                                    + setName() + +  : $this +
                                                    +
                                                    Sets the name of the command.
                                                    + +
                                                    + setOption() + +  : mixed +
                                                    +
                                                    Add a new option
                                                    + +
                                                    + setProcessTitle() + +  : $this +
                                                    +
                                                    Sets the process title of the command.
                                                    + +
                                                    + write() + +  : mixed +
                                                    +
                                                    Output some data
                                                    + +
                                                    + writeln() + +  : mixed +
                                                    +
                                                    Output some data
                                                    + +
                                                    + config() + +  : mixed +
                                                    + +
                                                    + configure() + +  : mixed +
                                                    +
                                                    Configures the current command.
                                                    + +
                                                    + execute() + +  : int +
                                                    +
                                                    Executes the current command.
                                                    + +
                                                    + handle() + +  : int +
                                                    +
                                                    Executes the current command.
                                                    + +
                                                    + initialize() + +  : mixed +
                                                    +
                                                    Initializes the command after the input has been bound and before the input +is validated.
                                                    + +
                                                    + interact() + +  : mixed +
                                                    +
                                                    Interacts with the user.
                                                    + +
                                                    + validateName() + +  : mixed +
                                                    +
                                                    Validates a command name.
                                                    + +
                                                    + + + + +
                                                    +

                                                    + Constants + + +

                                                    +
                                                    +

                                                    + FAILURE + + +

                                                    + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                    +
                                                    +

                                                    + INVALID + + +

                                                    + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                    +
                                                    +

                                                    + SUCCESS + + +

                                                    + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                    +
                                                    + + +
                                                    +

                                                    + Properties + + +

                                                    +
                                                    +

                                                    + $description + + + + +

                                                    + + +

                                                    Description for command

                                                    + + + + public + mixed + $description + = 'Scaffold basic app authentication' + + + + + + + +
                                                    +
                                                    +

                                                    + $help + + + + +

                                                    + + +

                                                    Help for command

                                                    + + + + public + mixed + $help + = 'Create basic views, routes and controllers for authentication' + + + + + + + +
                                                    +
                                                    +

                                                    + $defaultDescription + + + + +

                                                    + + + + + + protected + static string|null + $defaultDescription + + + +

                                                    The default command description

                                                    +
                                                    + + + + + +
                                                    +
                                                    +

                                                    + $defaultName + + + + +

                                                    + + + + + + protected + static string|null + $defaultName + = 'scaffold:auth' + + +

                                                    The default command name

                                                    +
                                                    + + + + + +
                                                    +
                                                    +

                                                    + $input + + + + +

                                                    + + +

                                                    The input object

                                                    + + + + protected + InputInterface + $input + + + + + + + + +
                                                    +
                                                    +

                                                    + $output + + + + +

                                                    + + +

                                                    The output object

                                                    + + + + protected + OutputInterface + $output + + + + + + + + +
                                                    +
                                                    +

                                                    + $aliases + + + + +

                                                    + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                    +
                                                    +

                                                    + $application + + + + +

                                                    + + + + + + private + mixed + $application + + + + + + + + +
                                                    +
                                                    +

                                                    + $code + + + + +

                                                    + + + + + + private + mixed + $code + + + + + + + + +
                                                    +
                                                    +

                                                    + $definition + + + + +

                                                    + + + + + + private + mixed + $definition + + + + + + + + +
                                                    +
                                                    +

                                                    + $fullDefinition + + + + +

                                                    + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                    +
                                                    +

                                                    + $helperSet + + + + +

                                                    + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                    +
                                                    +

                                                    + $hidden + + + + +

                                                    + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                    +
                                                    +

                                                    + $ignoreValidationErrors + + + + +

                                                    + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                    +
                                                    +

                                                    + $name + + + + +

                                                    + + +

                                                    The name of command to run in console

                                                    + + + + private + mixed + $name + + + + + + + + +
                                                    +
                                                    +

                                                    + $processTitle + + + + +

                                                    + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                    +
                                                    +

                                                    + $synopsis + + + + +

                                                    + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                    +
                                                    +

                                                    + $usages + + + + +

                                                    + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                    +
                                                    + +
                                                    +

                                                    + Methods + + +

                                                    +
                                                    +

                                                    + __construct() + + +

                                                    + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string|null + = null
                                                    +
                                                    +

                                                    The name of the command; passing null means it must be set in configure()

                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + LogicException + +

                                                    When the command name is empty

                                                    +
                                                    + +
                                                    +
                                                    + + + + +
                                                    +
                                                    +

                                                    + addArgument() + + +

                                                    + + +

                                                    Adds an argument.

                                                    + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $mode + : int|null + = null
                                                    +
                                                    +

                                                    The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                    +
                                                    + +
                                                    +
                                                    + $description + : string + = ''
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    +

                                                    The default value (for InputArgument::OPTIONAL mode only)

                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + +

                                                    When argument mode is not valid

                                                    +
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + addOption() + + +

                                                    + + +

                                                    Adds an option.

                                                    + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $shortcut + : string|array<string|int, mixed>|null + = null
                                                    +
                                                    +

                                                    The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                    +
                                                    + +
                                                    +
                                                    + $mode + : int|null + = null
                                                    +
                                                    +

                                                    The option mode: One of the InputOption::VALUE_* constants

                                                    +
                                                    + +
                                                    +
                                                    + $description + : string + = ''
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    +

                                                    The default value (must be null for InputOption::VALUE_NONE)

                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + +

                                                    If option mode is invalid or incompatible

                                                    +
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + addUsage() + + +

                                                    + + +

                                                    Add a command usage example, it'll be prefixed with the command name.

                                                    + + + public + addUsage(string $usage) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $usage + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + argument() + + +

                                                    + + +

                                                    Returns the argument value for a given argument name.

                                                    + + + public + argument(string $name) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + arguments() + + +

                                                    + + +

                                                    Returns all the given arguments merged with the default values.

                                                    + + + public + arguments() : mixed + +
                                                    +
                                                    + + + + + + + + +
                                                    +
                                                    +

                                                    + ask() + + +

                                                    + + +

                                                    Ask a question

                                                    + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + askMultiline() + + +

                                                    + + +

                                                    Ask a question

                                                    + + + public + askMultiline(string $question) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + askRaw() + + +

                                                    + + +

                                                    Ask a question

                                                    + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + autoComplete() + + +

                                                    + + +

                                                    Ask a question with auto completion

                                                    + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $potentialAnswers + : array<string|int, mixed> +
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + choice() + + +

                                                    + + +

                                                    Ask a question with possible answers

                                                    + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $choices + : array<string|int, mixed> +
                                                    +
                                                    + +
                                                    +
                                                    + $errorMessage + : string + = 'Invalid choice'
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + comment() + + +

                                                    + + +

                                                    Output some data as a comment

                                                    + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $messages + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    + +
                                                    +

                                                    + confirm() + + +

                                                    + + +

                                                    Prompt user for confirmation

                                                    + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $param + : mixed + = false
                                                    +
                                                    + +
                                                    +
                                                    + $regex + : mixed + = '/^y/i'
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + error() + + +

                                                    + + +

                                                    Output some data as a error

                                                    + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $messages + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + getAliases() + + +

                                                    + + +

                                                    Returns the aliases for the command.

                                                    + + + public + getAliases() : array<string|int, mixed> + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + array<string|int, mixed> +
                                                    + +
                                                    +
                                                    +

                                                    + getApplication() + + +

                                                    + + +

                                                    Gets the application instance for this command.

                                                    + + + public + getApplication() : Application|null + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + Application|null +
                                                    + +
                                                    +
                                                    +

                                                    + getDefaultDescription() + + +

                                                    + + + + + public + static getDefaultDescription() : string|null + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + string|null +
                                                    + +
                                                    +
                                                    +

                                                    + getDefaultName() + + +

                                                    + + + + + public + static getDefaultName() : string|null + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + string|null +
                                                    + +
                                                    +
                                                    +

                                                    + getDefinition() + + +

                                                    + + +

                                                    Gets the InputDefinition attached to this Command.

                                                    + + + public + getDefinition() : InputDefinition + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + InputDefinition +
                                                    + +
                                                    +
                                                    +

                                                    + getDescription() + + +

                                                    + + +

                                                    Returns the description for the command.

                                                    + + + public + getDescription() : string + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + string +
                                                    + +
                                                    +
                                                    +

                                                    + getHelp() + + +

                                                    + + +

                                                    Returns the help for the command.

                                                    + + + public + getHelp() : string + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + string +
                                                    + +
                                                    +
                                                    +

                                                    + getHelper() + + +

                                                    + + +

                                                    Gets a helper instance by name.

                                                    + + + public + getHelper(string $name) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + LogicException + +

                                                    if no HelperSet is defined

                                                    +
                                                    + +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + +

                                                    if the helper is not defined

                                                    +
                                                    + +
                                                    +
                                                    + + + + +
                                                    +
                                                    +

                                                    + getHelperSet() + + +

                                                    + + +

                                                    Gets the helper set.

                                                    + + + public + getHelperSet() : HelperSet|null + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + HelperSet|null +
                                                    + +
                                                    +
                                                    +

                                                    + getName() + + +

                                                    + + +

                                                    Returns the command name.

                                                    + + + public + getName() : string|null + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + string|null +
                                                    + +
                                                    +
                                                    +

                                                    + getNativeDefinition() + + +

                                                    + + +

                                                    Gets the InputDefinition to be used to create representations of this Command.

                                                    + + + public + getNativeDefinition() : InputDefinition + +
                                                    +
                                                    + +

                                                    Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                    +

                                                    This method is not part of public API and should not be used directly.

                                                    +
                                                    + + + + + + +
                                                    +
                                                    Return values
                                                    + InputDefinition +
                                                    + +
                                                    +
                                                    +

                                                    + getProcessedHelp() + + +

                                                    + + +

                                                    Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                    + + + public + getProcessedHelp() : string + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + string +
                                                    + +
                                                    +
                                                    +

                                                    + getSynopsis() + + +

                                                    + + +

                                                    Returns the synopsis for the command.

                                                    + + + public + getSynopsis([bool $short = false ]) : string + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $short + : bool + = false
                                                    +
                                                    +

                                                    Whether to show the short version of the synopsis (with options folded) or not

                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + string +
                                                    + +
                                                    +
                                                    +

                                                    + getUsages() + + +

                                                    + + +

                                                    Returns alternative usages of the command.

                                                    + + + public + getUsages() : array<string|int, mixed> + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + array<string|int, mixed> +
                                                    + +
                                                    +
                                                    +

                                                    + ignoreValidationErrors() + + +

                                                    + + +

                                                    Ignores validation errors.

                                                    + + + public + ignoreValidationErrors() : mixed + +
                                                    +
                                                    + +

                                                    This is mainly useful for the help command.

                                                    +
                                                    + + + + + + + +
                                                    +
                                                    +

                                                    + info() + + +

                                                    + + +

                                                    Output some data as a info

                                                    + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $messages + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + input() + + +

                                                    + + +

                                                    Get an argument or return the input object

                                                    + + + public + input([string $data = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $data + : string + = null
                                                    +
                                                    +

                                                    The argument to return

                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + isEnabled() + + +

                                                    + + +

                                                    Checks whether the command is enabled or not in the current environment.

                                                    + + + public + isEnabled() : bool + +
                                                    +
                                                    + +

                                                    Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                    +
                                                    + + + + + + +
                                                    +
                                                    Return values
                                                    + bool +
                                                    + +
                                                    +
                                                    +

                                                    + isHidden() + + +

                                                    + + + + + public + isHidden() : bool + +
                                                    +
                                                    + + + + + + + +
                                                    +
                                                    Return values
                                                    + bool + — +

                                                    whether the command should be publicly shown or not

                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    + + + +

                                                    Output some data as a link

                                                    + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $link + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $display + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + multiChoice() + + +

                                                    + + +

                                                    Ask a question with possible answers + multiple choice

                                                    + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $choices + : array<string|int, mixed> +
                                                    +
                                                    + +
                                                    +
                                                    + $errorMessage + : string + = 'Invalid choice'
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + option() + + +

                                                    + + +

                                                    Get an input option

                                                    + + + public + option(string $name) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + options() + + +

                                                    + + +

                                                    Get all input options

                                                    + + + public + options(string $name) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + output() + + +

                                                    + + +

                                                    Output data or return the output object

                                                    + + + public + output([string $data = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $data + : string + = null
                                                    +
                                                    +

                                                    The argument to return

                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + question() + + +

                                                    + + +

                                                    Output some data as a question

                                                    + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $messages + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + run() + + +

                                                    + + +

                                                    Runs the command.

                                                    + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                    +
                                                    + +

                                                    The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $input + : InputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + $output + : OutputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + Exception + +

                                                    When binding input fails. Bypass this by calling .

                                                    +
                                                    + +
                                                    +
                                                    + see +
                                                    +
                                                    + setCode() + + +
                                                    +
                                                    + see +
                                                    +
                                                    + execute() + + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + int + — +

                                                    The command exit code

                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +

                                                    + runProcess() + + +

                                                    + + +

                                                    Run a new cli process

                                                    + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $process + : array<string|int, mixed> +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + secret() + + +

                                                    + + +

                                                    Prompt user for input but hide keystrokes

                                                    + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $question + : string +
                                                    +
                                                    + +
                                                    +
                                                    + $useFallback + : bool + = false
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + setAliases() + + +

                                                    + + +

                                                    Sets the aliases for the command.

                                                    + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $aliases + : array<string|int, string> +
                                                    +
                                                    +

                                                    An array of aliases for the command

                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + +

                                                    When an alias is invalid

                                                    +
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setApplication() + + +

                                                    + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $application + : Application|null + = null
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + setArgument() + + +

                                                    + + +

                                                    Add a new argument

                                                    + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $mode + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + $description + : mixed + = ''
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + setCode() + + +

                                                    + + +

                                                    Sets the code to execute when running this command.

                                                    + + + public + setCode(callable $code) : $this + +
                                                    +
                                                    + +

                                                    If this method is used, it overrides the code defined +in the execute() method.

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $code + : callable +
                                                    +
                                                    +

                                                    A callable(InputInterface $input, OutputInterface $output)

                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + + +
                                                    +
                                                    + see +
                                                    +
                                                    + execute() + + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setDefinition() + + +

                                                    + + +

                                                    Sets an array of argument and option instances.

                                                    + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $definition + : array<string|int, mixed>|InputDefinition +
                                                    +
                                                    +

                                                    An array of argument and option instances or a definition instance

                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setDescription() + + +

                                                    + + +

                                                    Sets the description for the command.

                                                    + + + public + setDescription(string $description) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $description + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setHelp() + + +

                                                    + + +

                                                    Sets the help for the command.

                                                    + + + public + setHelp(string $help) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $help + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setHelperSet() + + +

                                                    + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $helperSet + : HelperSet +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + setHidden() + + +

                                                    + + + + + public + setHidden(bool $hidden) : $this + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $hidden + : bool +
                                                    +
                                                    +

                                                    Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + final +
                                                    +
                                                    + +

                                                    since Symfony 5.1

                                                    +
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setName() + + +

                                                    + + +

                                                    Sets the name of the command.

                                                    + + + public + setName(string $name) : $this + +
                                                    +
                                                    + +

                                                    This method can set both the namespace and the name if +you separate them by a colon (:)

                                                    +
                                                    $command->setName('foo:bar');
                                                    +
                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + +

                                                    When the name is invalid

                                                    +
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + setOption() + + +

                                                    + + +

                                                    Add a new option

                                                    + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $shortcut + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + $mode + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + $description + : mixed + = ''
                                                    +
                                                    + +
                                                    +
                                                    + $default + : mixed + = null
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + setProcessTitle() + + +

                                                    + + +

                                                    Sets the process title of the command.

                                                    + + + public + setProcessTitle(string $title) : $this + +
                                                    +
                                                    + +

                                                    This feature should be used only when creating a long process command, +like a daemon.

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $title + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + $this +
                                                    + +
                                                    +
                                                    +

                                                    + write() + + +

                                                    + + +

                                                    Output some data

                                                    + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $messages + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + writeln() + + +

                                                    + + +

                                                    Output some data

                                                    + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                    +
                                                    + + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $messages + : mixed +
                                                    +
                                                    + +
                                                    +
                                                    + $options + : mixed + = 0
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + config() + + +

                                                    + + + + + protected + config() : mixed + +
                                                    +
                                                    + + + + + + + + +
                                                    +
                                                    +

                                                    + configure() + + +

                                                    + + +

                                                    Configures the current command.

                                                    + + + protected + configure() : mixed + +
                                                    +
                                                    + + + + + + + + +
                                                    +
                                                    +

                                                    + execute() + + +

                                                    + + +

                                                    Executes the current command.

                                                    + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                    +
                                                    + +

                                                    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $input + : InputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + $output + : OutputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + +
                                                    +
                                                    Return values
                                                    + int + — +

                                                    0 if everything went fine, or an exit code

                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +

                                                    + handle() + + +

                                                    + + +

                                                    Executes the current command.

                                                    + + + protected + handle() : int + +
                                                    +
                                                    + +

                                                    This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                    +
                                                    + + + + + + +
                                                    +
                                                    Return values
                                                    + int + — +

                                                    0 if everything went fine, or an exit code

                                                    +
                                                    + +
                                                    + +
                                                    +
                                                    +

                                                    + initialize() + + +

                                                    + + +

                                                    Initializes the command after the input has been bound and before the input +is validated.

                                                    + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                    +
                                                    + +

                                                    This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $input + : InputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + $output + : OutputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + see +
                                                    +
                                                    + InputInterface::bind() + + +
                                                    +
                                                    + see +
                                                    +
                                                    + InputInterface::validate() + + +
                                                    +
                                                    + + + + +
                                                    +
                                                    +

                                                    + interact() + + +

                                                    + + +

                                                    Interacts with the user.

                                                    + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                    +
                                                    + +

                                                    This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $input + : InputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + $output + : OutputInterface +
                                                    +
                                                    + +
                                                    +
                                                    + + + + + + +
                                                    +
                                                    +

                                                    + validateName() + + +

                                                    + + +

                                                    Validates a command name.

                                                    + + + private + validateName(string $name) : mixed + +
                                                    +
                                                    + +

                                                    It must be non-empty and parts can optionally be separated by ":".

                                                    +
                                                    + +
                                                    Parameters
                                                    +
                                                    +
                                                    + $name + : string +
                                                    +
                                                    + +
                                                    +
                                                    + + +
                                                    + Tags + + +
                                                    +
                                                    +
                                                    + throws +
                                                    +
                                                    + InvalidArgumentException + +

                                                    When the name is invalid

                                                    +
                                                    + +
                                                    +
                                                    + + + + +
                                                    +
                                                    + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    
                                                    +        
                                                    + +
                                                    +
                                                    + + + +
                                                    +
                                                    +
                                                    + +
                                                    + On this page + + +
                                                    + +
                                                    +
                                                    +
                                                    +
                                                    +
                                                    +

                                                    Search results

                                                    + +
                                                    +
                                                    +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      + + +
                                                      + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ScaffoldMailCommand.html b/src/public/api/classes/Aloe-Command-ScaffoldMailCommand.html new file mode 100644 index 00000000..2a7a5a6a --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ScaffoldMailCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                      +

                                                      Leaf PHP

                                                      + + + + + +
                                                      + +
                                                      +
                                                      + + + + +
                                                      +
                                                      + + +
                                                      +

                                                      + ScaffoldMailCommand + + + extends Command + + +
                                                      + in package + +
                                                      + + +

                                                      + +
                                                      + + +
                                                      + + + +

                                                      Base class for Aloe Commands.

                                                      + + + + + + + + + +

                                                      + Table of Contents + + +

                                                      + + + + + + + +

                                                      + Constants + + +

                                                      +
                                                      +
                                                      + FAILURE + +  = 1 +
                                                      + +
                                                      + INVALID + +  = 2 +
                                                      + +
                                                      + SUCCESS + +  = 0 +
                                                      + +
                                                      + + +

                                                      + Properties + + +

                                                      +
                                                      +
                                                      + $description + +  : mixed +
                                                      +
                                                      Description for command
                                                      + +
                                                      + $help + +  : mixed +
                                                      +
                                                      Help for command
                                                      + +
                                                      + $defaultDescription + +  : string|null +
                                                      + +
                                                      + $defaultName + +  : string|null +
                                                      + +
                                                      + $input + +  : InputInterface +
                                                      +
                                                      The input object
                                                      + +
                                                      + $output + +  : OutputInterface +
                                                      +
                                                      The output object
                                                      + +
                                                      + $aliases + +  : mixed +
                                                      + +
                                                      + $application + +  : mixed +
                                                      + +
                                                      + $code + +  : mixed +
                                                      + +
                                                      + $definition + +  : mixed +
                                                      + +
                                                      + $fullDefinition + +  : mixed +
                                                      + +
                                                      + $helperSet + +  : mixed +
                                                      + +
                                                      + $hidden + +  : mixed +
                                                      + +
                                                      + $ignoreValidationErrors + +  : mixed +
                                                      + +
                                                      + $name + +  : mixed +
                                                      +
                                                      The name of command to run in console
                                                      + +
                                                      + $processTitle + +  : mixed +
                                                      + +
                                                      + $synopsis + +  : mixed +
                                                      + +
                                                      + $usages + +  : mixed +
                                                      + +
                                                      + +

                                                      + Methods + + +

                                                      +
                                                      +
                                                      + __construct() + +  : mixed +
                                                      + +
                                                      + addArgument() + +  : $this +
                                                      +
                                                      Adds an argument.
                                                      + +
                                                      + addOption() + +  : $this +
                                                      +
                                                      Adds an option.
                                                      + +
                                                      + addUsage() + +  : $this +
                                                      +
                                                      Add a command usage example, it'll be prefixed with the command name.
                                                      + +
                                                      + argument() + +  : mixed +
                                                      +
                                                      Returns the argument value for a given argument name.
                                                      + +
                                                      + arguments() + +  : mixed +
                                                      +
                                                      Returns all the given arguments merged with the default values.
                                                      + +
                                                      + ask() + +  : mixed +
                                                      +
                                                      Ask a question
                                                      + +
                                                      + askMultiline() + +  : mixed +
                                                      +
                                                      Ask a question
                                                      + +
                                                      + askRaw() + +  : mixed +
                                                      +
                                                      Ask a question
                                                      + +
                                                      + autoComplete() + +  : mixed +
                                                      +
                                                      Ask a question with auto completion
                                                      + +
                                                      + choice() + +  : mixed +
                                                      +
                                                      Ask a question with possible answers
                                                      + +
                                                      + comment() + +  : mixed +
                                                      +
                                                      Output some data as a comment
                                                      + +
                                                      + complete() + +  : void +
                                                      +
                                                      Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                      + +
                                                      + confirm() + +  : mixed +
                                                      +
                                                      Prompt user for confirmation
                                                      + +
                                                      + error() + +  : mixed +
                                                      +
                                                      Output some data as a error
                                                      + +
                                                      + getAliases() + +  : array<string|int, mixed> +
                                                      +
                                                      Returns the aliases for the command.
                                                      + +
                                                      + getApplication() + +  : Application|null +
                                                      +
                                                      Gets the application instance for this command.
                                                      + +
                                                      + getDefaultDescription() + +  : string|null +
                                                      + +
                                                      + getDefaultName() + +  : string|null +
                                                      + +
                                                      + getDefinition() + +  : InputDefinition +
                                                      +
                                                      Gets the InputDefinition attached to this Command.
                                                      + +
                                                      + getDescription() + +  : string +
                                                      +
                                                      Returns the description for the command.
                                                      + +
                                                      + getHelp() + +  : string +
                                                      +
                                                      Returns the help for the command.
                                                      + +
                                                      + getHelper() + +  : mixed +
                                                      +
                                                      Gets a helper instance by name.
                                                      + +
                                                      + getHelperSet() + +  : HelperSet|null +
                                                      +
                                                      Gets the helper set.
                                                      + +
                                                      + getName() + +  : string|null +
                                                      +
                                                      Returns the command name.
                                                      + +
                                                      + getNativeDefinition() + +  : InputDefinition +
                                                      +
                                                      Gets the InputDefinition to be used to create representations of this Command.
                                                      + +
                                                      + getProcessedHelp() + +  : string +
                                                      +
                                                      Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                      + +
                                                      + getSynopsis() + +  : string +
                                                      +
                                                      Returns the synopsis for the command.
                                                      + +
                                                      + getUsages() + +  : array<string|int, mixed> +
                                                      +
                                                      Returns alternative usages of the command.
                                                      + +
                                                      + ignoreValidationErrors() + +  : mixed +
                                                      +
                                                      Ignores validation errors.
                                                      + +
                                                      + info() + +  : mixed +
                                                      +
                                                      Output some data as a info
                                                      + +
                                                      + input() + +  : mixed +
                                                      +
                                                      Get an argument or return the input object
                                                      + +
                                                      + isEnabled() + +  : bool +
                                                      +
                                                      Checks whether the command is enabled or not in the current environment.
                                                      + +
                                                      + isHidden() + +  : bool +
                                                      + +
                                                      + link() + +  : mixed +
                                                      +
                                                      Output some data as a link
                                                      + +
                                                      + multiChoice() + +  : mixed +
                                                      +
                                                      Ask a question with possible answers + multiple choice
                                                      + +
                                                      + option() + +  : mixed +
                                                      +
                                                      Get an input option
                                                      + +
                                                      + options() + +  : mixed +
                                                      +
                                                      Get all input options
                                                      + +
                                                      + output() + +  : mixed +
                                                      +
                                                      Output data or return the output object
                                                      + +
                                                      + question() + +  : mixed +
                                                      +
                                                      Output some data as a question
                                                      + +
                                                      + run() + +  : int +
                                                      +
                                                      Runs the command.
                                                      + +
                                                      + runProcess() + +  : mixed +
                                                      +
                                                      Run a new cli process
                                                      + +
                                                      + secret() + +  : mixed +
                                                      +
                                                      Prompt user for input but hide keystrokes
                                                      + +
                                                      + setAliases() + +  : $this +
                                                      +
                                                      Sets the aliases for the command.
                                                      + +
                                                      + setApplication() + +  : mixed +
                                                      + +
                                                      + setArgument() + +  : mixed +
                                                      +
                                                      Add a new argument
                                                      + +
                                                      + setCode() + +  : $this +
                                                      +
                                                      Sets the code to execute when running this command.
                                                      + +
                                                      + setDefinition() + +  : $this +
                                                      +
                                                      Sets an array of argument and option instances.
                                                      + +
                                                      + setDescription() + +  : $this +
                                                      +
                                                      Sets the description for the command.
                                                      + +
                                                      + setHelp() + +  : $this +
                                                      +
                                                      Sets the help for the command.
                                                      + +
                                                      + setHelperSet() + +  : mixed +
                                                      + +
                                                      + setHidden() + +  : $this +
                                                      + +
                                                      + setName() + +  : $this +
                                                      +
                                                      Sets the name of the command.
                                                      + +
                                                      + setOption() + +  : mixed +
                                                      +
                                                      Add a new option
                                                      + +
                                                      + setProcessTitle() + +  : $this +
                                                      +
                                                      Sets the process title of the command.
                                                      + +
                                                      + write() + +  : mixed +
                                                      +
                                                      Output some data
                                                      + +
                                                      + writeln() + +  : mixed +
                                                      +
                                                      Output some data
                                                      + +
                                                      + config() + +  : mixed +
                                                      + +
                                                      + configure() + +  : mixed +
                                                      +
                                                      Configures the current command.
                                                      + +
                                                      + execute() + +  : int +
                                                      +
                                                      Executes the current command.
                                                      + +
                                                      + handle() + +  : int +
                                                      +
                                                      Executes the current command.
                                                      + +
                                                      + initialize() + +  : mixed +
                                                      +
                                                      Initializes the command after the input has been bound and before the input +is validated.
                                                      + +
                                                      + interact() + +  : mixed +
                                                      +
                                                      Interacts with the user.
                                                      + +
                                                      + validateName() + +  : mixed +
                                                      +
                                                      Validates a command name.
                                                      + +
                                                      + + + + +
                                                      +

                                                      + Constants + + +

                                                      +
                                                      +

                                                      + FAILURE + + +

                                                      + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                      +
                                                      +

                                                      + INVALID + + +

                                                      + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                      +
                                                      +

                                                      + SUCCESS + + +

                                                      + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                      +
                                                      + + +
                                                      +

                                                      + Properties + + +

                                                      +
                                                      +

                                                      + $description + + + + +

                                                      + + +

                                                      Description for command

                                                      + + + + public + mixed + $description + = 'Install leaf mail and setup mail config' + + + + + + + +
                                                      +
                                                      +

                                                      + $help + + + + +

                                                      + + +

                                                      Help for command

                                                      + + + + public + mixed + $help + = 'Install leaf mail and setup mail config' + + + + + + + +
                                                      +
                                                      +

                                                      + $defaultDescription + + + + +

                                                      + + + + + + protected + static string|null + $defaultDescription + + + +

                                                      The default command description

                                                      +
                                                      + + + + + +
                                                      +
                                                      +

                                                      + $defaultName + + + + +

                                                      + + + + + + protected + static string|null + $defaultName + = 'scaffold:mail' + + +

                                                      The default command name

                                                      +
                                                      + + + + + +
                                                      +
                                                      +

                                                      + $input + + + + +

                                                      + + +

                                                      The input object

                                                      + + + + protected + InputInterface + $input + + + + + + + + +
                                                      +
                                                      +

                                                      + $output + + + + +

                                                      + + +

                                                      The output object

                                                      + + + + protected + OutputInterface + $output + + + + + + + + +
                                                      +
                                                      +

                                                      + $aliases + + + + +

                                                      + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                      +
                                                      +

                                                      + $application + + + + +

                                                      + + + + + + private + mixed + $application + + + + + + + + +
                                                      +
                                                      +

                                                      + $code + + + + +

                                                      + + + + + + private + mixed + $code + + + + + + + + +
                                                      +
                                                      +

                                                      + $definition + + + + +

                                                      + + + + + + private + mixed + $definition + + + + + + + + +
                                                      +
                                                      +

                                                      + $fullDefinition + + + + +

                                                      + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                      +
                                                      +

                                                      + $helperSet + + + + +

                                                      + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                      +
                                                      +

                                                      + $hidden + + + + +

                                                      + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                      +
                                                      +

                                                      + $ignoreValidationErrors + + + + +

                                                      + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                      +
                                                      +

                                                      + $name + + + + +

                                                      + + +

                                                      The name of command to run in console

                                                      + + + + private + mixed + $name + + + + + + + + +
                                                      +
                                                      +

                                                      + $processTitle + + + + +

                                                      + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                      +
                                                      +

                                                      + $synopsis + + + + +

                                                      + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                      +
                                                      +

                                                      + $usages + + + + +

                                                      + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                      +
                                                      + +
                                                      +

                                                      + Methods + + +

                                                      +
                                                      +

                                                      + __construct() + + +

                                                      + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string|null + = null
                                                      +
                                                      +

                                                      The name of the command; passing null means it must be set in configure()

                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + LogicException + +

                                                      When the command name is empty

                                                      +
                                                      + +
                                                      +
                                                      + + + + +
                                                      +
                                                      +

                                                      + addArgument() + + +

                                                      + + +

                                                      Adds an argument.

                                                      + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $mode + : int|null + = null
                                                      +
                                                      +

                                                      The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                      +
                                                      + +
                                                      +
                                                      + $description + : string + = ''
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      +

                                                      The default value (for InputArgument::OPTIONAL mode only)

                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + +

                                                      When argument mode is not valid

                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + addOption() + + +

                                                      + + +

                                                      Adds an option.

                                                      + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $shortcut + : string|array<string|int, mixed>|null + = null
                                                      +
                                                      +

                                                      The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                      +
                                                      + +
                                                      +
                                                      + $mode + : int|null + = null
                                                      +
                                                      +

                                                      The option mode: One of the InputOption::VALUE_* constants

                                                      +
                                                      + +
                                                      +
                                                      + $description + : string + = ''
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      +

                                                      The default value (must be null for InputOption::VALUE_NONE)

                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + +

                                                      If option mode is invalid or incompatible

                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + addUsage() + + +

                                                      + + +

                                                      Add a command usage example, it'll be prefixed with the command name.

                                                      + + + public + addUsage(string $usage) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $usage + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + argument() + + +

                                                      + + +

                                                      Returns the argument value for a given argument name.

                                                      + + + public + argument(string $name) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + arguments() + + +

                                                      + + +

                                                      Returns all the given arguments merged with the default values.

                                                      + + + public + arguments() : mixed + +
                                                      +
                                                      + + + + + + + + +
                                                      +
                                                      +

                                                      + ask() + + +

                                                      + + +

                                                      Ask a question

                                                      + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + askMultiline() + + +

                                                      + + +

                                                      Ask a question

                                                      + + + public + askMultiline(string $question) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + askRaw() + + +

                                                      + + +

                                                      Ask a question

                                                      + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + autoComplete() + + +

                                                      + + +

                                                      Ask a question with auto completion

                                                      + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $potentialAnswers + : array<string|int, mixed> +
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + choice() + + +

                                                      + + +

                                                      Ask a question with possible answers

                                                      + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $choices + : array<string|int, mixed> +
                                                      +
                                                      + +
                                                      +
                                                      + $errorMessage + : string + = 'Invalid choice'
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + comment() + + +

                                                      + + +

                                                      Output some data as a comment

                                                      + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $messages + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      + +
                                                      +

                                                      + confirm() + + +

                                                      + + +

                                                      Prompt user for confirmation

                                                      + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $param + : mixed + = false
                                                      +
                                                      + +
                                                      +
                                                      + $regex + : mixed + = '/^y/i'
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + error() + + +

                                                      + + +

                                                      Output some data as a error

                                                      + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $messages + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + getAliases() + + +

                                                      + + +

                                                      Returns the aliases for the command.

                                                      + + + public + getAliases() : array<string|int, mixed> + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + array<string|int, mixed> +
                                                      + +
                                                      +
                                                      +

                                                      + getApplication() + + +

                                                      + + +

                                                      Gets the application instance for this command.

                                                      + + + public + getApplication() : Application|null + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + Application|null +
                                                      + +
                                                      +
                                                      +

                                                      + getDefaultDescription() + + +

                                                      + + + + + public + static getDefaultDescription() : string|null + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + string|null +
                                                      + +
                                                      +
                                                      +

                                                      + getDefaultName() + + +

                                                      + + + + + public + static getDefaultName() : string|null + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + string|null +
                                                      + +
                                                      +
                                                      +

                                                      + getDefinition() + + +

                                                      + + +

                                                      Gets the InputDefinition attached to this Command.

                                                      + + + public + getDefinition() : InputDefinition + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + InputDefinition +
                                                      + +
                                                      +
                                                      +

                                                      + getDescription() + + +

                                                      + + +

                                                      Returns the description for the command.

                                                      + + + public + getDescription() : string + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + string +
                                                      + +
                                                      +
                                                      +

                                                      + getHelp() + + +

                                                      + + +

                                                      Returns the help for the command.

                                                      + + + public + getHelp() : string + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + string +
                                                      + +
                                                      +
                                                      +

                                                      + getHelper() + + +

                                                      + + +

                                                      Gets a helper instance by name.

                                                      + + + public + getHelper(string $name) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + LogicException + +

                                                      if no HelperSet is defined

                                                      +
                                                      + +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + +

                                                      if the helper is not defined

                                                      +
                                                      + +
                                                      +
                                                      + + + + +
                                                      +
                                                      +

                                                      + getHelperSet() + + +

                                                      + + +

                                                      Gets the helper set.

                                                      + + + public + getHelperSet() : HelperSet|null + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + HelperSet|null +
                                                      + +
                                                      +
                                                      +

                                                      + getName() + + +

                                                      + + +

                                                      Returns the command name.

                                                      + + + public + getName() : string|null + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + string|null +
                                                      + +
                                                      +
                                                      +

                                                      + getNativeDefinition() + + +

                                                      + + +

                                                      Gets the InputDefinition to be used to create representations of this Command.

                                                      + + + public + getNativeDefinition() : InputDefinition + +
                                                      +
                                                      + +

                                                      Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                      +

                                                      This method is not part of public API and should not be used directly.

                                                      +
                                                      + + + + + + +
                                                      +
                                                      Return values
                                                      + InputDefinition +
                                                      + +
                                                      +
                                                      +

                                                      + getProcessedHelp() + + +

                                                      + + +

                                                      Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                      + + + public + getProcessedHelp() : string + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + string +
                                                      + +
                                                      +
                                                      +

                                                      + getSynopsis() + + +

                                                      + + +

                                                      Returns the synopsis for the command.

                                                      + + + public + getSynopsis([bool $short = false ]) : string + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $short + : bool + = false
                                                      +
                                                      +

                                                      Whether to show the short version of the synopsis (with options folded) or not

                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + string +
                                                      + +
                                                      +
                                                      +

                                                      + getUsages() + + +

                                                      + + +

                                                      Returns alternative usages of the command.

                                                      + + + public + getUsages() : array<string|int, mixed> + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + array<string|int, mixed> +
                                                      + +
                                                      +
                                                      +

                                                      + ignoreValidationErrors() + + +

                                                      + + +

                                                      Ignores validation errors.

                                                      + + + public + ignoreValidationErrors() : mixed + +
                                                      +
                                                      + +

                                                      This is mainly useful for the help command.

                                                      +
                                                      + + + + + + + +
                                                      +
                                                      +

                                                      + info() + + +

                                                      + + +

                                                      Output some data as a info

                                                      + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $messages + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + input() + + +

                                                      + + +

                                                      Get an argument or return the input object

                                                      + + + public + input([string $data = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $data + : string + = null
                                                      +
                                                      +

                                                      The argument to return

                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + isEnabled() + + +

                                                      + + +

                                                      Checks whether the command is enabled or not in the current environment.

                                                      + + + public + isEnabled() : bool + +
                                                      +
                                                      + +

                                                      Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                      +
                                                      + + + + + + +
                                                      +
                                                      Return values
                                                      + bool +
                                                      + +
                                                      +
                                                      +

                                                      + isHidden() + + +

                                                      + + + + + public + isHidden() : bool + +
                                                      +
                                                      + + + + + + + +
                                                      +
                                                      Return values
                                                      + bool + — +

                                                      whether the command should be publicly shown or not

                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      + + + +

                                                      Output some data as a link

                                                      + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $link + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $display + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + multiChoice() + + +

                                                      + + +

                                                      Ask a question with possible answers + multiple choice

                                                      + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $choices + : array<string|int, mixed> +
                                                      +
                                                      + +
                                                      +
                                                      + $errorMessage + : string + = 'Invalid choice'
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + option() + + +

                                                      + + +

                                                      Get an input option

                                                      + + + public + option(string $name) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + options() + + +

                                                      + + +

                                                      Get all input options

                                                      + + + public + options(string $name) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + output() + + +

                                                      + + +

                                                      Output data or return the output object

                                                      + + + public + output([string $data = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $data + : string + = null
                                                      +
                                                      +

                                                      The argument to return

                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + question() + + +

                                                      + + +

                                                      Output some data as a question

                                                      + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $messages + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + run() + + +

                                                      + + +

                                                      Runs the command.

                                                      + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                      +
                                                      + +

                                                      The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $input + : InputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + $output + : OutputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + Exception + +

                                                      When binding input fails. Bypass this by calling .

                                                      +
                                                      + +
                                                      +
                                                      + see +
                                                      +
                                                      + setCode() + + +
                                                      +
                                                      + see +
                                                      +
                                                      + execute() + + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + int + — +

                                                      The command exit code

                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +

                                                      + runProcess() + + +

                                                      + + +

                                                      Run a new cli process

                                                      + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $process + : array<string|int, mixed> +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + secret() + + +

                                                      + + +

                                                      Prompt user for input but hide keystrokes

                                                      + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $question + : string +
                                                      +
                                                      + +
                                                      +
                                                      + $useFallback + : bool + = false
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + setAliases() + + +

                                                      + + +

                                                      Sets the aliases for the command.

                                                      + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $aliases + : array<string|int, string> +
                                                      +
                                                      +

                                                      An array of aliases for the command

                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + +

                                                      When an alias is invalid

                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setApplication() + + +

                                                      + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $application + : Application|null + = null
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + setArgument() + + +

                                                      + + +

                                                      Add a new argument

                                                      + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $mode + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + $description + : mixed + = ''
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + setCode() + + +

                                                      + + +

                                                      Sets the code to execute when running this command.

                                                      + + + public + setCode(callable $code) : $this + +
                                                      +
                                                      + +

                                                      If this method is used, it overrides the code defined +in the execute() method.

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $code + : callable +
                                                      +
                                                      +

                                                      A callable(InputInterface $input, OutputInterface $output)

                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + + +
                                                      +
                                                      + see +
                                                      +
                                                      + execute() + + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setDefinition() + + +

                                                      + + +

                                                      Sets an array of argument and option instances.

                                                      + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $definition + : array<string|int, mixed>|InputDefinition +
                                                      +
                                                      +

                                                      An array of argument and option instances or a definition instance

                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setDescription() + + +

                                                      + + +

                                                      Sets the description for the command.

                                                      + + + public + setDescription(string $description) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $description + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setHelp() + + +

                                                      + + +

                                                      Sets the help for the command.

                                                      + + + public + setHelp(string $help) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $help + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setHelperSet() + + +

                                                      + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $helperSet + : HelperSet +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + setHidden() + + +

                                                      + + + + + public + setHidden(bool $hidden) : $this + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $hidden + : bool +
                                                      +
                                                      +

                                                      Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + final +
                                                      +
                                                      + +

                                                      since Symfony 5.1

                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setName() + + +

                                                      + + +

                                                      Sets the name of the command.

                                                      + + + public + setName(string $name) : $this + +
                                                      +
                                                      + +

                                                      This method can set both the namespace and the name if +you separate them by a colon (:)

                                                      +
                                                      $command->setName('foo:bar');
                                                      +
                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + +

                                                      When the name is invalid

                                                      +
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + setOption() + + +

                                                      + + +

                                                      Add a new option

                                                      + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $shortcut + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + $mode + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + $description + : mixed + = ''
                                                      +
                                                      + +
                                                      +
                                                      + $default + : mixed + = null
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + setProcessTitle() + + +

                                                      + + +

                                                      Sets the process title of the command.

                                                      + + + public + setProcessTitle(string $title) : $this + +
                                                      +
                                                      + +

                                                      This feature should be used only when creating a long process command, +like a daemon.

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $title + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + $this +
                                                      + +
                                                      +
                                                      +

                                                      + write() + + +

                                                      + + +

                                                      Output some data

                                                      + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $messages + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + writeln() + + +

                                                      + + +

                                                      Output some data

                                                      + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                      +
                                                      + + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $messages + : mixed +
                                                      +
                                                      + +
                                                      +
                                                      + $options + : mixed + = 0
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + config() + + +

                                                      + + + + + protected + config() : mixed + +
                                                      +
                                                      + + + + + + + + +
                                                      +
                                                      +

                                                      + configure() + + +

                                                      + + +

                                                      Configures the current command.

                                                      + + + protected + configure() : mixed + +
                                                      +
                                                      + + + + + + + + +
                                                      +
                                                      +

                                                      + execute() + + +

                                                      + + +

                                                      Executes the current command.

                                                      + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                      +
                                                      + +

                                                      This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $input + : InputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + $output + : OutputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + +
                                                      +
                                                      Return values
                                                      + int + — +

                                                      0 if everything went fine, or an exit code

                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +

                                                      + handle() + + +

                                                      + + +

                                                      Executes the current command.

                                                      + + + protected + handle() : int + +
                                                      +
                                                      + +

                                                      This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                      +
                                                      + + + + + + +
                                                      +
                                                      Return values
                                                      + int + — +

                                                      0 if everything went fine, or an exit code

                                                      +
                                                      + +
                                                      + +
                                                      +
                                                      +

                                                      + initialize() + + +

                                                      + + +

                                                      Initializes the command after the input has been bound and before the input +is validated.

                                                      + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                      +
                                                      + +

                                                      This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $input + : InputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + $output + : OutputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + see +
                                                      +
                                                      + InputInterface::bind() + + +
                                                      +
                                                      + see +
                                                      +
                                                      + InputInterface::validate() + + +
                                                      +
                                                      + + + + +
                                                      +
                                                      +

                                                      + interact() + + +

                                                      + + +

                                                      Interacts with the user.

                                                      + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                      +
                                                      + +

                                                      This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $input + : InputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + $output + : OutputInterface +
                                                      +
                                                      + +
                                                      +
                                                      + + + + + + +
                                                      +
                                                      +

                                                      + validateName() + + +

                                                      + + +

                                                      Validates a command name.

                                                      + + + private + validateName(string $name) : mixed + +
                                                      +
                                                      + +

                                                      It must be non-empty and parts can optionally be separated by ":".

                                                      +
                                                      + +
                                                      Parameters
                                                      +
                                                      +
                                                      + $name + : string +
                                                      +
                                                      + +
                                                      +
                                                      + + +
                                                      + Tags + + +
                                                      +
                                                      +
                                                      + throws +
                                                      +
                                                      + InvalidArgumentException + +

                                                      When the name is invalid

                                                      +
                                                      + +
                                                      +
                                                      + + + + +
                                                      +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      
                                                      +        
                                                      + +
                                                      +
                                                      + + + +
                                                      +
                                                      +
                                                      + +
                                                      + On this page + + +
                                                      + +
                                                      +
                                                      +
                                                      +
                                                      +
                                                      +

                                                      Search results

                                                      + +
                                                      +
                                                      +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        + + +
                                                        + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ServeCommand.html b/src/public/api/classes/Aloe-Command-ServeCommand.html new file mode 100644 index 00000000..829868d1 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ServeCommand.html @@ -0,0 +1,5222 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                        +

                                                        Leaf PHP

                                                        + + + + + +
                                                        + +
                                                        +
                                                        + + + + +
                                                        +
                                                        + + +
                                                        +

                                                        + ServeCommand + + + extends Command + + +
                                                        + in package + +
                                                        + + +

                                                        + +
                                                        + + +
                                                        + + + +

                                                        Base class for Aloe Commands.

                                                        + + + + + + + + + +

                                                        + Table of Contents + + +

                                                        + + + + + + + +

                                                        + Constants + + +

                                                        +
                                                        +
                                                        + FAILURE + +  = 1 +
                                                        + +
                                                        + INVALID + +  = 2 +
                                                        + +
                                                        + SUCCESS + +  = 0 +
                                                        + +
                                                        + + +

                                                        + Properties + + +

                                                        +
                                                        +
                                                        + $description + +  : mixed +
                                                        +
                                                        Description for command
                                                        + +
                                                        + $help + +  : mixed +
                                                        +
                                                        Help for command
                                                        + +
                                                        + $defaultDescription + +  : string|null +
                                                        + +
                                                        + $defaultName + +  : string|null +
                                                        + +
                                                        + $input + +  : InputInterface +
                                                        +
                                                        The input object
                                                        + +
                                                        + $output + +  : OutputInterface +
                                                        +
                                                        The output object
                                                        + +
                                                        + $aliases + +  : mixed +
                                                        + +
                                                        + $application + +  : mixed +
                                                        + +
                                                        + $code + +  : mixed +
                                                        + +
                                                        + $definition + +  : mixed +
                                                        + +
                                                        + $fullDefinition + +  : mixed +
                                                        + +
                                                        + $helperSet + +  : mixed +
                                                        + +
                                                        + $hidden + +  : mixed +
                                                        + +
                                                        + $ignoreValidationErrors + +  : mixed +
                                                        + +
                                                        + $name + +  : mixed +
                                                        +
                                                        The name of command to run in console
                                                        + +
                                                        + $processTitle + +  : mixed +
                                                        + +
                                                        + $synopsis + +  : mixed +
                                                        + +
                                                        + $usages + +  : mixed +
                                                        + +
                                                        + +

                                                        + Methods + + +

                                                        +
                                                        +
                                                        + __construct() + +  : mixed +
                                                        + +
                                                        + addArgument() + +  : $this +
                                                        +
                                                        Adds an argument.
                                                        + +
                                                        + addOption() + +  : $this +
                                                        +
                                                        Adds an option.
                                                        + +
                                                        + addUsage() + +  : $this +
                                                        +
                                                        Add a command usage example, it'll be prefixed with the command name.
                                                        + +
                                                        + argument() + +  : mixed +
                                                        +
                                                        Returns the argument value for a given argument name.
                                                        + +
                                                        + arguments() + +  : mixed +
                                                        +
                                                        Returns all the given arguments merged with the default values.
                                                        + +
                                                        + ask() + +  : mixed +
                                                        +
                                                        Ask a question
                                                        + +
                                                        + askMultiline() + +  : mixed +
                                                        +
                                                        Ask a question
                                                        + +
                                                        + askRaw() + +  : mixed +
                                                        +
                                                        Ask a question
                                                        + +
                                                        + autoComplete() + +  : mixed +
                                                        +
                                                        Ask a question with auto completion
                                                        + +
                                                        + choice() + +  : mixed +
                                                        +
                                                        Ask a question with possible answers
                                                        + +
                                                        + comment() + +  : mixed +
                                                        +
                                                        Output some data as a comment
                                                        + +
                                                        + complete() + +  : void +
                                                        +
                                                        Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                        + +
                                                        + confirm() + +  : mixed +
                                                        +
                                                        Prompt user for confirmation
                                                        + +
                                                        + error() + +  : mixed +
                                                        +
                                                        Output some data as a error
                                                        + +
                                                        + getAliases() + +  : array<string|int, mixed> +
                                                        +
                                                        Returns the aliases for the command.
                                                        + +
                                                        + getApplication() + +  : Application|null +
                                                        +
                                                        Gets the application instance for this command.
                                                        + +
                                                        + getDefaultDescription() + +  : string|null +
                                                        + +
                                                        + getDefaultName() + +  : string|null +
                                                        + +
                                                        + getDefinition() + +  : InputDefinition +
                                                        +
                                                        Gets the InputDefinition attached to this Command.
                                                        + +
                                                        + getDescription() + +  : string +
                                                        +
                                                        Returns the description for the command.
                                                        + +
                                                        + getHelp() + +  : string +
                                                        +
                                                        Returns the help for the command.
                                                        + +
                                                        + getHelper() + +  : mixed +
                                                        +
                                                        Gets a helper instance by name.
                                                        + +
                                                        + getHelperSet() + +  : HelperSet|null +
                                                        +
                                                        Gets the helper set.
                                                        + +
                                                        + getName() + +  : string|null +
                                                        +
                                                        Returns the command name.
                                                        + +
                                                        + getNativeDefinition() + +  : InputDefinition +
                                                        +
                                                        Gets the InputDefinition to be used to create representations of this Command.
                                                        + +
                                                        + getProcessedHelp() + +  : string +
                                                        +
                                                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                        + +
                                                        + getSynopsis() + +  : string +
                                                        +
                                                        Returns the synopsis for the command.
                                                        + +
                                                        + getUsages() + +  : array<string|int, mixed> +
                                                        +
                                                        Returns alternative usages of the command.
                                                        + +
                                                        + ignoreValidationErrors() + +  : mixed +
                                                        +
                                                        Ignores validation errors.
                                                        + +
                                                        + info() + +  : mixed +
                                                        +
                                                        Output some data as a info
                                                        + +
                                                        + input() + +  : mixed +
                                                        +
                                                        Get an argument or return the input object
                                                        + +
                                                        + isEnabled() + +  : bool +
                                                        +
                                                        Checks whether the command is enabled or not in the current environment.
                                                        + +
                                                        + isHidden() + +  : bool +
                                                        + +
                                                        + link() + +  : mixed +
                                                        +
                                                        Output some data as a link
                                                        + +
                                                        + multiChoice() + +  : mixed +
                                                        +
                                                        Ask a question with possible answers + multiple choice
                                                        + +
                                                        + option() + +  : mixed +
                                                        +
                                                        Get an input option
                                                        + +
                                                        + options() + +  : mixed +
                                                        +
                                                        Get all input options
                                                        + +
                                                        + output() + +  : mixed +
                                                        +
                                                        Output data or return the output object
                                                        + +
                                                        + question() + +  : mixed +
                                                        +
                                                        Output some data as a question
                                                        + +
                                                        + run() + +  : int +
                                                        +
                                                        Runs the command.
                                                        + +
                                                        + runProcess() + +  : mixed +
                                                        +
                                                        Run a new cli process
                                                        + +
                                                        + secret() + +  : mixed +
                                                        +
                                                        Prompt user for input but hide keystrokes
                                                        + +
                                                        + setAliases() + +  : $this +
                                                        +
                                                        Sets the aliases for the command.
                                                        + +
                                                        + setApplication() + +  : mixed +
                                                        + +
                                                        + setArgument() + +  : mixed +
                                                        +
                                                        Add a new argument
                                                        + +
                                                        + setCode() + +  : $this +
                                                        +
                                                        Sets the code to execute when running this command.
                                                        + +
                                                        + setDefinition() + +  : $this +
                                                        +
                                                        Sets an array of argument and option instances.
                                                        + +
                                                        + setDescription() + +  : $this +
                                                        +
                                                        Sets the description for the command.
                                                        + +
                                                        + setHelp() + +  : $this +
                                                        +
                                                        Sets the help for the command.
                                                        + +
                                                        + setHelperSet() + +  : mixed +
                                                        + +
                                                        + setHidden() + +  : $this +
                                                        + +
                                                        + setName() + +  : $this +
                                                        +
                                                        Sets the name of the command.
                                                        + +
                                                        + setOption() + +  : mixed +
                                                        +
                                                        Add a new option
                                                        + +
                                                        + setProcessTitle() + +  : $this +
                                                        +
                                                        Sets the process title of the command.
                                                        + +
                                                        + write() + +  : mixed +
                                                        +
                                                        Output some data
                                                        + +
                                                        + writeln() + +  : mixed +
                                                        +
                                                        Output some data
                                                        + +
                                                        + config() + +  : mixed +
                                                        + +
                                                        + configure() + +  : mixed +
                                                        +
                                                        Configures the current command.
                                                        + +
                                                        + execute() + +  : int +
                                                        +
                                                        Executes the current command.
                                                        + +
                                                        + handle() + +  : int +
                                                        +
                                                        Executes the current command.
                                                        + +
                                                        + initialize() + +  : mixed +
                                                        +
                                                        Initializes the command after the input has been bound and before the input +is validated.
                                                        + +
                                                        + interact() + +  : mixed +
                                                        +
                                                        Interacts with the user.
                                                        + +
                                                        + validateName() + +  : mixed +
                                                        +
                                                        Validates a command name.
                                                        + +
                                                        + + + + +
                                                        +

                                                        + Constants + + +

                                                        +
                                                        +

                                                        + FAILURE + + +

                                                        + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                        +
                                                        +

                                                        + INVALID + + +

                                                        + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                        +
                                                        +

                                                        + SUCCESS + + +

                                                        + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                        +
                                                        + + +
                                                        +

                                                        + Properties + + +

                                                        +
                                                        +

                                                        + $description + + + + +

                                                        + + +

                                                        Description for command

                                                        + + + + public + mixed + $description + = 'Start the leaf development server' + + + + + + + +
                                                        +
                                                        +

                                                        + $help + + + + +

                                                        + + +

                                                        Help for command

                                                        + + + + public + mixed + $help + = 'Run your Leaf app on PHP\'s local development server' + + + + + + + +
                                                        +
                                                        +

                                                        + $defaultDescription + + + + +

                                                        + + + + + + protected + static string|null + $defaultDescription + + + +

                                                        The default command description

                                                        +
                                                        + + + + + +
                                                        +
                                                        +

                                                        + $defaultName + + + + +

                                                        + + + + + + protected + static string|null + $defaultName + = 'serve' + + +

                                                        The default command name

                                                        +
                                                        + + + + + +
                                                        +
                                                        +

                                                        + $input + + + + +

                                                        + + +

                                                        The input object

                                                        + + + + protected + InputInterface + $input + + + + + + + + +
                                                        +
                                                        +

                                                        + $output + + + + +

                                                        + + +

                                                        The output object

                                                        + + + + protected + OutputInterface + $output + + + + + + + + +
                                                        +
                                                        +

                                                        + $aliases + + + + +

                                                        + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                        +
                                                        +

                                                        + $application + + + + +

                                                        + + + + + + private + mixed + $application + + + + + + + + +
                                                        +
                                                        +

                                                        + $code + + + + +

                                                        + + + + + + private + mixed + $code + + + + + + + + +
                                                        +
                                                        +

                                                        + $definition + + + + +

                                                        + + + + + + private + mixed + $definition + + + + + + + + +
                                                        +
                                                        +

                                                        + $fullDefinition + + + + +

                                                        + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                        +
                                                        +

                                                        + $helperSet + + + + +

                                                        + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                        +
                                                        +

                                                        + $hidden + + + + +

                                                        + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                        +
                                                        +

                                                        + $ignoreValidationErrors + + + + +

                                                        + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                        +
                                                        +

                                                        + $name + + + + +

                                                        + + +

                                                        The name of command to run in console

                                                        + + + + private + mixed + $name + + + + + + + + +
                                                        +
                                                        +

                                                        + $processTitle + + + + +

                                                        + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                        +
                                                        +

                                                        + $synopsis + + + + +

                                                        + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                        +
                                                        +

                                                        + $usages + + + + +

                                                        + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                        +
                                                        + +
                                                        +

                                                        + Methods + + +

                                                        +
                                                        +

                                                        + __construct() + + +

                                                        + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string|null + = null
                                                        +
                                                        +

                                                        The name of the command; passing null means it must be set in configure()

                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + LogicException + +

                                                        When the command name is empty

                                                        +
                                                        + +
                                                        +
                                                        + + + + +
                                                        +
                                                        +

                                                        + addArgument() + + +

                                                        + + +

                                                        Adds an argument.

                                                        + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $mode + : int|null + = null
                                                        +
                                                        +

                                                        The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                        +
                                                        + +
                                                        +
                                                        + $description + : string + = ''
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        +

                                                        The default value (for InputArgument::OPTIONAL mode only)

                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + +

                                                        When argument mode is not valid

                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + addOption() + + +

                                                        + + +

                                                        Adds an option.

                                                        + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $shortcut + : string|array<string|int, mixed>|null + = null
                                                        +
                                                        +

                                                        The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                        +
                                                        + +
                                                        +
                                                        + $mode + : int|null + = null
                                                        +
                                                        +

                                                        The option mode: One of the InputOption::VALUE_* constants

                                                        +
                                                        + +
                                                        +
                                                        + $description + : string + = ''
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        +

                                                        The default value (must be null for InputOption::VALUE_NONE)

                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + +

                                                        If option mode is invalid or incompatible

                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + addUsage() + + +

                                                        + + +

                                                        Add a command usage example, it'll be prefixed with the command name.

                                                        + + + public + addUsage(string $usage) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $usage + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + argument() + + +

                                                        + + +

                                                        Returns the argument value for a given argument name.

                                                        + + + public + argument(string $name) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + arguments() + + +

                                                        + + +

                                                        Returns all the given arguments merged with the default values.

                                                        + + + public + arguments() : mixed + +
                                                        +
                                                        + + + + + + + + +
                                                        +
                                                        +

                                                        + ask() + + +

                                                        + + +

                                                        Ask a question

                                                        + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + askMultiline() + + +

                                                        + + +

                                                        Ask a question

                                                        + + + public + askMultiline(string $question) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + askRaw() + + +

                                                        + + +

                                                        Ask a question

                                                        + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + autoComplete() + + +

                                                        + + +

                                                        Ask a question with auto completion

                                                        + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $potentialAnswers + : array<string|int, mixed> +
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + choice() + + +

                                                        + + +

                                                        Ask a question with possible answers

                                                        + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $choices + : array<string|int, mixed> +
                                                        +
                                                        + +
                                                        +
                                                        + $errorMessage + : string + = 'Invalid choice'
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + comment() + + +

                                                        + + +

                                                        Output some data as a comment

                                                        + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $messages + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        + +
                                                        +

                                                        + confirm() + + +

                                                        + + +

                                                        Prompt user for confirmation

                                                        + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $param + : mixed + = false
                                                        +
                                                        + +
                                                        +
                                                        + $regex + : mixed + = '/^y/i'
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + error() + + +

                                                        + + +

                                                        Output some data as a error

                                                        + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $messages + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + getAliases() + + +

                                                        + + +

                                                        Returns the aliases for the command.

                                                        + + + public + getAliases() : array<string|int, mixed> + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + array<string|int, mixed> +
                                                        + +
                                                        +
                                                        +

                                                        + getApplication() + + +

                                                        + + +

                                                        Gets the application instance for this command.

                                                        + + + public + getApplication() : Application|null + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + Application|null +
                                                        + +
                                                        +
                                                        +

                                                        + getDefaultDescription() + + +

                                                        + + + + + public + static getDefaultDescription() : string|null + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + string|null +
                                                        + +
                                                        +
                                                        +

                                                        + getDefaultName() + + +

                                                        + + + + + public + static getDefaultName() : string|null + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + string|null +
                                                        + +
                                                        +
                                                        +

                                                        + getDefinition() + + +

                                                        + + +

                                                        Gets the InputDefinition attached to this Command.

                                                        + + + public + getDefinition() : InputDefinition + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + InputDefinition +
                                                        + +
                                                        +
                                                        +

                                                        + getDescription() + + +

                                                        + + +

                                                        Returns the description for the command.

                                                        + + + public + getDescription() : string + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + string +
                                                        + +
                                                        +
                                                        +

                                                        + getHelp() + + +

                                                        + + +

                                                        Returns the help for the command.

                                                        + + + public + getHelp() : string + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + string +
                                                        + +
                                                        +
                                                        +

                                                        + getHelper() + + +

                                                        + + +

                                                        Gets a helper instance by name.

                                                        + + + public + getHelper(string $name) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + LogicException + +

                                                        if no HelperSet is defined

                                                        +
                                                        + +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + +

                                                        if the helper is not defined

                                                        +
                                                        + +
                                                        +
                                                        + + + + +
                                                        +
                                                        +

                                                        + getHelperSet() + + +

                                                        + + +

                                                        Gets the helper set.

                                                        + + + public + getHelperSet() : HelperSet|null + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + HelperSet|null +
                                                        + +
                                                        +
                                                        +

                                                        + getName() + + +

                                                        + + +

                                                        Returns the command name.

                                                        + + + public + getName() : string|null + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + string|null +
                                                        + +
                                                        +
                                                        +

                                                        + getNativeDefinition() + + +

                                                        + + +

                                                        Gets the InputDefinition to be used to create representations of this Command.

                                                        + + + public + getNativeDefinition() : InputDefinition + +
                                                        +
                                                        + +

                                                        Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                        +

                                                        This method is not part of public API and should not be used directly.

                                                        +
                                                        + + + + + + +
                                                        +
                                                        Return values
                                                        + InputDefinition +
                                                        + +
                                                        +
                                                        +

                                                        + getProcessedHelp() + + +

                                                        + + +

                                                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                        + + + public + getProcessedHelp() : string + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + string +
                                                        + +
                                                        +
                                                        +

                                                        + getSynopsis() + + +

                                                        + + +

                                                        Returns the synopsis for the command.

                                                        + + + public + getSynopsis([bool $short = false ]) : string + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $short + : bool + = false
                                                        +
                                                        +

                                                        Whether to show the short version of the synopsis (with options folded) or not

                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + string +
                                                        + +
                                                        +
                                                        +

                                                        + getUsages() + + +

                                                        + + +

                                                        Returns alternative usages of the command.

                                                        + + + public + getUsages() : array<string|int, mixed> + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + array<string|int, mixed> +
                                                        + +
                                                        +
                                                        +

                                                        + ignoreValidationErrors() + + +

                                                        + + +

                                                        Ignores validation errors.

                                                        + + + public + ignoreValidationErrors() : mixed + +
                                                        +
                                                        + +

                                                        This is mainly useful for the help command.

                                                        +
                                                        + + + + + + + +
                                                        +
                                                        +

                                                        + info() + + +

                                                        + + +

                                                        Output some data as a info

                                                        + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $messages + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + input() + + +

                                                        + + +

                                                        Get an argument or return the input object

                                                        + + + public + input([string $data = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $data + : string + = null
                                                        +
                                                        +

                                                        The argument to return

                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + isEnabled() + + +

                                                        + + +

                                                        Checks whether the command is enabled or not in the current environment.

                                                        + + + public + isEnabled() : bool + +
                                                        +
                                                        + +

                                                        Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                        +
                                                        + + + + + + +
                                                        +
                                                        Return values
                                                        + bool +
                                                        + +
                                                        +
                                                        +

                                                        + isHidden() + + +

                                                        + + + + + public + isHidden() : bool + +
                                                        +
                                                        + + + + + + + +
                                                        +
                                                        Return values
                                                        + bool + — +

                                                        whether the command should be publicly shown or not

                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        + + + +

                                                        Output some data as a link

                                                        + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $link + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $display + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + multiChoice() + + +

                                                        + + +

                                                        Ask a question with possible answers + multiple choice

                                                        + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $choices + : array<string|int, mixed> +
                                                        +
                                                        + +
                                                        +
                                                        + $errorMessage + : string + = 'Invalid choice'
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + option() + + +

                                                        + + +

                                                        Get an input option

                                                        + + + public + option(string $name) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + options() + + +

                                                        + + +

                                                        Get all input options

                                                        + + + public + options(string $name) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + output() + + +

                                                        + + +

                                                        Output data or return the output object

                                                        + + + public + output([string $data = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $data + : string + = null
                                                        +
                                                        +

                                                        The argument to return

                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + question() + + +

                                                        + + +

                                                        Output some data as a question

                                                        + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $messages + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + run() + + +

                                                        + + +

                                                        Runs the command.

                                                        + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                        +
                                                        + +

                                                        The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $input + : InputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + $output + : OutputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + Exception + +

                                                        When binding input fails. Bypass this by calling .

                                                        +
                                                        + +
                                                        +
                                                        + see +
                                                        +
                                                        + setCode() + + +
                                                        +
                                                        + see +
                                                        +
                                                        + execute() + + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + int + — +

                                                        The command exit code

                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +

                                                        + runProcess() + + +

                                                        + + +

                                                        Run a new cli process

                                                        + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $process + : array<string|int, mixed> +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + secret() + + +

                                                        + + +

                                                        Prompt user for input but hide keystrokes

                                                        + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $question + : string +
                                                        +
                                                        + +
                                                        +
                                                        + $useFallback + : bool + = false
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + setAliases() + + +

                                                        + + +

                                                        Sets the aliases for the command.

                                                        + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $aliases + : array<string|int, string> +
                                                        +
                                                        +

                                                        An array of aliases for the command

                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + +

                                                        When an alias is invalid

                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setApplication() + + +

                                                        + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $application + : Application|null + = null
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + setArgument() + + +

                                                        + + +

                                                        Add a new argument

                                                        + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $mode + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + $description + : mixed + = ''
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + setCode() + + +

                                                        + + +

                                                        Sets the code to execute when running this command.

                                                        + + + public + setCode(callable $code) : $this + +
                                                        +
                                                        + +

                                                        If this method is used, it overrides the code defined +in the execute() method.

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $code + : callable +
                                                        +
                                                        +

                                                        A callable(InputInterface $input, OutputInterface $output)

                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + + +
                                                        +
                                                        + see +
                                                        +
                                                        + execute() + + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setDefinition() + + +

                                                        + + +

                                                        Sets an array of argument and option instances.

                                                        + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $definition + : array<string|int, mixed>|InputDefinition +
                                                        +
                                                        +

                                                        An array of argument and option instances or a definition instance

                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setDescription() + + +

                                                        + + +

                                                        Sets the description for the command.

                                                        + + + public + setDescription(string $description) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $description + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setHelp() + + +

                                                        + + +

                                                        Sets the help for the command.

                                                        + + + public + setHelp(string $help) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $help + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setHelperSet() + + +

                                                        + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $helperSet + : HelperSet +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + setHidden() + + +

                                                        + + + + + public + setHidden(bool $hidden) : $this + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $hidden + : bool +
                                                        +
                                                        +

                                                        Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + final +
                                                        +
                                                        + +

                                                        since Symfony 5.1

                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setName() + + +

                                                        + + +

                                                        Sets the name of the command.

                                                        + + + public + setName(string $name) : $this + +
                                                        +
                                                        + +

                                                        This method can set both the namespace and the name if +you separate them by a colon (:)

                                                        +
                                                        $command->setName('foo:bar');
                                                        +
                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + +

                                                        When the name is invalid

                                                        +
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + setOption() + + +

                                                        + + +

                                                        Add a new option

                                                        + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $shortcut + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + $mode + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + $description + : mixed + = ''
                                                        +
                                                        + +
                                                        +
                                                        + $default + : mixed + = null
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + setProcessTitle() + + +

                                                        + + +

                                                        Sets the process title of the command.

                                                        + + + public + setProcessTitle(string $title) : $this + +
                                                        +
                                                        + +

                                                        This feature should be used only when creating a long process command, +like a daemon.

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $title + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + $this +
                                                        + +
                                                        +
                                                        +

                                                        + write() + + +

                                                        + + +

                                                        Output some data

                                                        + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $messages + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + writeln() + + +

                                                        + + +

                                                        Output some data

                                                        + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                        +
                                                        + + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $messages + : mixed +
                                                        +
                                                        + +
                                                        +
                                                        + $options + : mixed + = 0
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + config() + + +

                                                        + + + + + protected + config() : mixed + +
                                                        +
                                                        + + + + + + + + +
                                                        +
                                                        +

                                                        + configure() + + +

                                                        + + +

                                                        Configures the current command.

                                                        + + + protected + configure() : mixed + +
                                                        +
                                                        + + + + + + + + +
                                                        +
                                                        +

                                                        + execute() + + +

                                                        + + +

                                                        Executes the current command.

                                                        + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                        +
                                                        + +

                                                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $input + : InputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + $output + : OutputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + +
                                                        +
                                                        Return values
                                                        + int + — +

                                                        0 if everything went fine, or an exit code

                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +

                                                        + handle() + + +

                                                        + + +

                                                        Executes the current command.

                                                        + + + protected + handle() : int + +
                                                        +
                                                        + +

                                                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                        +
                                                        + + + + + + +
                                                        +
                                                        Return values
                                                        + int + — +

                                                        0 if everything went fine, or an exit code

                                                        +
                                                        + +
                                                        + +
                                                        +
                                                        +

                                                        + initialize() + + +

                                                        + + +

                                                        Initializes the command after the input has been bound and before the input +is validated.

                                                        + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                        +
                                                        + +

                                                        This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $input + : InputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + $output + : OutputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + see +
                                                        +
                                                        + InputInterface::bind() + + +
                                                        +
                                                        + see +
                                                        +
                                                        + InputInterface::validate() + + +
                                                        +
                                                        + + + + +
                                                        +
                                                        +

                                                        + interact() + + +

                                                        + + +

                                                        Interacts with the user.

                                                        + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                        +
                                                        + +

                                                        This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $input + : InputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + $output + : OutputInterface +
                                                        +
                                                        + +
                                                        +
                                                        + + + + + + +
                                                        +
                                                        +

                                                        + validateName() + + +

                                                        + + +

                                                        Validates a command name.

                                                        + + + private + validateName(string $name) : mixed + +
                                                        +
                                                        + +

                                                        It must be non-empty and parts can optionally be separated by ":".

                                                        +
                                                        + +
                                                        Parameters
                                                        +
                                                        +
                                                        + $name + : string +
                                                        +
                                                        + +
                                                        +
                                                        + + +
                                                        + Tags + + +
                                                        +
                                                        +
                                                        + throws +
                                                        +
                                                        + InvalidArgumentException + +

                                                        When the name is invalid

                                                        +
                                                        + +
                                                        +
                                                        + + + + +
                                                        +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        
                                                        +        
                                                        + +
                                                        +
                                                        + + + +
                                                        +
                                                        +
                                                        + +
                                                        + On this page + + +
                                                        + +
                                                        +
                                                        +
                                                        +
                                                        +
                                                        +

                                                        Search results

                                                        + +
                                                        +
                                                        +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          + + +
                                                          + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ViewBuildCommand.html b/src/public/api/classes/Aloe-Command-ViewBuildCommand.html new file mode 100644 index 00000000..a2b02696 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ViewBuildCommand.html @@ -0,0 +1,3567 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                          +

                                                          Leaf PHP

                                                          + + + + + +
                                                          + +
                                                          +
                                                          + + + + +
                                                          +
                                                          + + +
                                                          +

                                                          + ViewBuildCommand + + + extends Command + + +
                                                          + in package + +
                                                          + + +

                                                          + +
                                                          + + +
                                                          + + + +

                                                          Base class for all commands.

                                                          + + + + + + + + + +

                                                          + Table of Contents + + +

                                                          + + + + + + + +

                                                          + Constants + + +

                                                          +
                                                          +
                                                          + FAILURE + +  = 1 +
                                                          + +
                                                          + INVALID + +  = 2 +
                                                          + +
                                                          + SUCCESS + +  = 0 +
                                                          + +
                                                          + + +

                                                          + Properties + + +

                                                          +
                                                          +
                                                          + $defaultDescription + +  : string|null +
                                                          + +
                                                          + $defaultName + +  : string|null +
                                                          + +
                                                          + $aliases + +  : mixed +
                                                          + +
                                                          + $application + +  : mixed +
                                                          + +
                                                          + $code + +  : mixed +
                                                          + +
                                                          + $definition + +  : mixed +
                                                          + +
                                                          + $description + +  : mixed +
                                                          + +
                                                          + $fullDefinition + +  : mixed +
                                                          + +
                                                          + $help + +  : mixed +
                                                          + +
                                                          + $helperSet + +  : mixed +
                                                          + +
                                                          + $hidden + +  : mixed +
                                                          + +
                                                          + $ignoreValidationErrors + +  : mixed +
                                                          + +
                                                          + $name + +  : mixed +
                                                          + +
                                                          + $processTitle + +  : mixed +
                                                          + +
                                                          + $synopsis + +  : mixed +
                                                          + +
                                                          + $usages + +  : mixed +
                                                          + +
                                                          + +

                                                          + Methods + + +

                                                          +
                                                          +
                                                          + __construct() + +  : mixed +
                                                          + +
                                                          + addArgument() + +  : $this +
                                                          +
                                                          Adds an argument.
                                                          + +
                                                          + addOption() + +  : $this +
                                                          +
                                                          Adds an option.
                                                          + +
                                                          + addUsage() + +  : $this +
                                                          +
                                                          Add a command usage example, it'll be prefixed with the command name.
                                                          + +
                                                          + complete() + +  : void +
                                                          +
                                                          Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                          + +
                                                          + getAliases() + +  : array<string|int, mixed> +
                                                          +
                                                          Returns the aliases for the command.
                                                          + +
                                                          + getApplication() + +  : Application|null +
                                                          +
                                                          Gets the application instance for this command.
                                                          + +
                                                          + getDefaultDescription() + +  : string|null +
                                                          + +
                                                          + getDefaultName() + +  : string|null +
                                                          + +
                                                          + getDefinition() + +  : InputDefinition +
                                                          +
                                                          Gets the InputDefinition attached to this Command.
                                                          + +
                                                          + getDescription() + +  : string +
                                                          +
                                                          Returns the description for the command.
                                                          + +
                                                          + getHelp() + +  : string +
                                                          +
                                                          Returns the help for the command.
                                                          + +
                                                          + getHelper() + +  : mixed +
                                                          +
                                                          Gets a helper instance by name.
                                                          + +
                                                          + getHelperSet() + +  : HelperSet|null +
                                                          +
                                                          Gets the helper set.
                                                          + +
                                                          + getName() + +  : string|null +
                                                          +
                                                          Returns the command name.
                                                          + +
                                                          + getNativeDefinition() + +  : InputDefinition +
                                                          +
                                                          Gets the InputDefinition to be used to create representations of this Command.
                                                          + +
                                                          + getProcessedHelp() + +  : string +
                                                          +
                                                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                          + +
                                                          + getSynopsis() + +  : string +
                                                          +
                                                          Returns the synopsis for the command.
                                                          + +
                                                          + getUsages() + +  : array<string|int, mixed> +
                                                          +
                                                          Returns alternative usages of the command.
                                                          + +
                                                          + ignoreValidationErrors() + +  : mixed +
                                                          +
                                                          Ignores validation errors.
                                                          + +
                                                          + isEnabled() + +  : bool +
                                                          +
                                                          Checks whether the command is enabled or not in the current environment.
                                                          + +
                                                          + isHidden() + +  : bool +
                                                          + +
                                                          + run() + +  : int +
                                                          +
                                                          Runs the command.
                                                          + +
                                                          + setAliases() + +  : $this +
                                                          +
                                                          Sets the aliases for the command.
                                                          + +
                                                          + setApplication() + +  : mixed +
                                                          + +
                                                          + setCode() + +  : $this +
                                                          +
                                                          Sets the code to execute when running this command.
                                                          + +
                                                          + setDefinition() + +  : $this +
                                                          +
                                                          Sets an array of argument and option instances.
                                                          + +
                                                          + setDescription() + +  : $this +
                                                          +
                                                          Sets the description for the command.
                                                          + +
                                                          + setHelp() + +  : $this +
                                                          +
                                                          Sets the help for the command.
                                                          + +
                                                          + setHelperSet() + +  : mixed +
                                                          + +
                                                          + setHidden() + +  : $this +
                                                          + +
                                                          + setName() + +  : $this +
                                                          +
                                                          Sets the name of the command.
                                                          + +
                                                          + setProcessTitle() + +  : $this +
                                                          +
                                                          Sets the process title of the command.
                                                          + +
                                                          + configure() + +  : mixed +
                                                          +
                                                          Configures the current command.
                                                          + +
                                                          + execute() + +  : int +
                                                          +
                                                          Executes the current command.
                                                          + +
                                                          + initialize() + +  : mixed +
                                                          +
                                                          Initializes the command after the input has been bound and before the input +is validated.
                                                          + +
                                                          + interact() + +  : mixed +
                                                          +
                                                          Interacts with the user.
                                                          + +
                                                          + validateName() + +  : mixed +
                                                          +
                                                          Validates a command name.
                                                          + +
                                                          + + + + +
                                                          +

                                                          + Constants + + +

                                                          +
                                                          +

                                                          + FAILURE + + +

                                                          + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                          +
                                                          +

                                                          + INVALID + + +

                                                          + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                          +
                                                          +

                                                          + SUCCESS + + +

                                                          + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                          +
                                                          + + +
                                                          +

                                                          + Properties + + +

                                                          +
                                                          +

                                                          + $defaultDescription + + + + +

                                                          + + + + + + protected + static string|null + $defaultDescription + + + +

                                                          The default command description

                                                          +
                                                          + + + + + +
                                                          +
                                                          +

                                                          + $defaultName + + + + +

                                                          + + + + + + protected + static string|null + $defaultName + = 'view:build' + + +

                                                          The default command name

                                                          +
                                                          + + + + + +
                                                          +
                                                          +

                                                          + $aliases + + + + +

                                                          + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                          +
                                                          +

                                                          + $application + + + + +

                                                          + + + + + + private + mixed + $application + + + + + + + + +
                                                          +
                                                          +

                                                          + $code + + + + +

                                                          + + + + + + private + mixed + $code + + + + + + + + +
                                                          +
                                                          +

                                                          + $definition + + + + +

                                                          + + + + + + private + mixed + $definition + + + + + + + + +
                                                          +
                                                          +

                                                          + $description + + + + +

                                                          + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                          +
                                                          +

                                                          + $fullDefinition + + + + +

                                                          + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                          +
                                                          +

                                                          + $help + + + + +

                                                          + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                          +
                                                          +

                                                          + $helperSet + + + + +

                                                          + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                          +
                                                          +

                                                          + $hidden + + + + +

                                                          + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                          +
                                                          +

                                                          + $ignoreValidationErrors + + + + +

                                                          + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                          +
                                                          +

                                                          + $name + + + + +

                                                          + + + + + + private + mixed + $name + + + + + + + + +
                                                          +
                                                          +

                                                          + $processTitle + + + + +

                                                          + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                          +
                                                          +

                                                          + $synopsis + + + + +

                                                          + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                          +
                                                          +

                                                          + $usages + + + + +

                                                          + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                          +
                                                          + +
                                                          +

                                                          + Methods + + +

                                                          +
                                                          +

                                                          + __construct() + + +

                                                          + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $name + : string|null + = null
                                                          +
                                                          +

                                                          The name of the command; passing null means it must be set in configure()

                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + LogicException + +

                                                          When the command name is empty

                                                          +
                                                          + +
                                                          +
                                                          + + + + +
                                                          +
                                                          +

                                                          + addArgument() + + +

                                                          + + +

                                                          Adds an argument.

                                                          + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $name + : string +
                                                          +
                                                          + +
                                                          +
                                                          + $mode + : int|null + = null
                                                          +
                                                          +

                                                          The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                          +
                                                          + +
                                                          +
                                                          + $description + : string + = ''
                                                          +
                                                          + +
                                                          +
                                                          + $default + : mixed + = null
                                                          +
                                                          +

                                                          The default value (for InputArgument::OPTIONAL mode only)

                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + +

                                                          When argument mode is not valid

                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + addOption() + + +

                                                          + + +

                                                          Adds an option.

                                                          + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $name + : string +
                                                          +
                                                          + +
                                                          +
                                                          + $shortcut + : string|array<string|int, mixed>|null + = null
                                                          +
                                                          +

                                                          The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                          +
                                                          + +
                                                          +
                                                          + $mode + : int|null + = null
                                                          +
                                                          +

                                                          The option mode: One of the InputOption::VALUE_* constants

                                                          +
                                                          + +
                                                          +
                                                          + $description + : string + = ''
                                                          +
                                                          + +
                                                          +
                                                          + $default + : mixed + = null
                                                          +
                                                          +

                                                          The default value (must be null for InputOption::VALUE_NONE)

                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + +

                                                          If option mode is invalid or incompatible

                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + addUsage() + + +

                                                          + + +

                                                          Add a command usage example, it'll be prefixed with the command name.

                                                          + + + public + addUsage(string $usage) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $usage + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          + +
                                                          +

                                                          + getAliases() + + +

                                                          + + +

                                                          Returns the aliases for the command.

                                                          + + + public + getAliases() : array<string|int, mixed> + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + array<string|int, mixed> +
                                                          + +
                                                          +
                                                          +

                                                          + getApplication() + + +

                                                          + + +

                                                          Gets the application instance for this command.

                                                          + + + public + getApplication() : Application|null + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + Application|null +
                                                          + +
                                                          +
                                                          +

                                                          + getDefaultDescription() + + +

                                                          + + + + + public + static getDefaultDescription() : string|null + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + string|null +
                                                          + +
                                                          +
                                                          +

                                                          + getDefaultName() + + +

                                                          + + + + + public + static getDefaultName() : string|null + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + string|null +
                                                          + +
                                                          +
                                                          +

                                                          + getDefinition() + + +

                                                          + + +

                                                          Gets the InputDefinition attached to this Command.

                                                          + + + public + getDefinition() : InputDefinition + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + InputDefinition +
                                                          + +
                                                          +
                                                          +

                                                          + getDescription() + + +

                                                          + + +

                                                          Returns the description for the command.

                                                          + + + public + getDescription() : string + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + string +
                                                          + +
                                                          +
                                                          +

                                                          + getHelp() + + +

                                                          + + +

                                                          Returns the help for the command.

                                                          + + + public + getHelp() : string + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + string +
                                                          + +
                                                          +
                                                          +

                                                          + getHelper() + + +

                                                          + + +

                                                          Gets a helper instance by name.

                                                          + + + public + getHelper(string $name) : mixed + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $name + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + LogicException + +

                                                          if no HelperSet is defined

                                                          +
                                                          + +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + +

                                                          if the helper is not defined

                                                          +
                                                          + +
                                                          +
                                                          + + + + +
                                                          +
                                                          +

                                                          + getHelperSet() + + +

                                                          + + +

                                                          Gets the helper set.

                                                          + + + public + getHelperSet() : HelperSet|null + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + HelperSet|null +
                                                          + +
                                                          +
                                                          +

                                                          + getName() + + +

                                                          + + +

                                                          Returns the command name.

                                                          + + + public + getName() : string|null + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + string|null +
                                                          + +
                                                          +
                                                          +

                                                          + getNativeDefinition() + + +

                                                          + + +

                                                          Gets the InputDefinition to be used to create representations of this Command.

                                                          + + + public + getNativeDefinition() : InputDefinition + +
                                                          +
                                                          + +

                                                          Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                          +

                                                          This method is not part of public API and should not be used directly.

                                                          +
                                                          + + + + + + +
                                                          +
                                                          Return values
                                                          + InputDefinition +
                                                          + +
                                                          +
                                                          +

                                                          + getProcessedHelp() + + +

                                                          + + +

                                                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                          + + + public + getProcessedHelp() : string + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + string +
                                                          + +
                                                          +
                                                          +

                                                          + getSynopsis() + + +

                                                          + + +

                                                          Returns the synopsis for the command.

                                                          + + + public + getSynopsis([bool $short = false ]) : string + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $short + : bool + = false
                                                          +
                                                          +

                                                          Whether to show the short version of the synopsis (with options folded) or not

                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + string +
                                                          + +
                                                          +
                                                          +

                                                          + getUsages() + + +

                                                          + + +

                                                          Returns alternative usages of the command.

                                                          + + + public + getUsages() : array<string|int, mixed> + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + array<string|int, mixed> +
                                                          + +
                                                          +
                                                          +

                                                          + ignoreValidationErrors() + + +

                                                          + + +

                                                          Ignores validation errors.

                                                          + + + public + ignoreValidationErrors() : mixed + +
                                                          +
                                                          + +

                                                          This is mainly useful for the help command.

                                                          +
                                                          + + + + + + + +
                                                          +
                                                          +

                                                          + isEnabled() + + +

                                                          + + +

                                                          Checks whether the command is enabled or not in the current environment.

                                                          + + + public + isEnabled() : bool + +
                                                          +
                                                          + +

                                                          Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                          +
                                                          + + + + + + +
                                                          +
                                                          Return values
                                                          + bool +
                                                          + +
                                                          +
                                                          +

                                                          + isHidden() + + +

                                                          + + + + + public + isHidden() : bool + +
                                                          +
                                                          + + + + + + + +
                                                          +
                                                          Return values
                                                          + bool + — +

                                                          whether the command should be publicly shown or not

                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +

                                                          + run() + + +

                                                          + + +

                                                          Runs the command.

                                                          + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                          +
                                                          + +

                                                          The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $input + : InputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + $output + : OutputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + ExceptionInterface + +

                                                          When input binding fails. Bypass this by calling .

                                                          +
                                                          + +
                                                          +
                                                          + see +
                                                          +
                                                          + setCode() + + +
                                                          +
                                                          + see +
                                                          +
                                                          + execute() + + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + int + — +

                                                          The command exit code

                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +

                                                          + setAliases() + + +

                                                          + + +

                                                          Sets the aliases for the command.

                                                          + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $aliases + : array<string|int, string> +
                                                          +
                                                          +

                                                          An array of aliases for the command

                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + +

                                                          When an alias is invalid

                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setApplication() + + +

                                                          + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $application + : Application|null + = null
                                                          +
                                                          + +
                                                          +
                                                          + + + + + + +
                                                          +
                                                          +

                                                          + setCode() + + +

                                                          + + +

                                                          Sets the code to execute when running this command.

                                                          + + + public + setCode(callable $code) : $this + +
                                                          +
                                                          + +

                                                          If this method is used, it overrides the code defined +in the execute() method.

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $code + : callable +
                                                          +
                                                          +

                                                          A callable(InputInterface $input, OutputInterface $output)

                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + + +
                                                          +
                                                          + see +
                                                          +
                                                          + execute() + + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setDefinition() + + +

                                                          + + +

                                                          Sets an array of argument and option instances.

                                                          + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $definition + : array<string|int, mixed>|InputDefinition +
                                                          +
                                                          +

                                                          An array of argument and option instances or a definition instance

                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setDescription() + + +

                                                          + + +

                                                          Sets the description for the command.

                                                          + + + public + setDescription(string $description) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $description + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setHelp() + + +

                                                          + + +

                                                          Sets the help for the command.

                                                          + + + public + setHelp(string $help) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $help + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setHelperSet() + + +

                                                          + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $helperSet + : HelperSet +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + + +
                                                          +
                                                          +

                                                          + setHidden() + + +

                                                          + + + + + public + setHidden(bool $hidden) : $this + +
                                                          +
                                                          + + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $hidden + : bool +
                                                          +
                                                          +

                                                          Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + final +
                                                          +
                                                          + +

                                                          since Symfony 5.1

                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setName() + + +

                                                          + + +

                                                          Sets the name of the command.

                                                          + + + public + setName(string $name) : $this + +
                                                          +
                                                          + +

                                                          This method can set both the namespace and the name if +you separate them by a colon (:)

                                                          +
                                                          $command->setName('foo:bar');
                                                          +
                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $name + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + +

                                                          When the name is invalid

                                                          +
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + setProcessTitle() + + +

                                                          + + +

                                                          Sets the process title of the command.

                                                          + + + public + setProcessTitle(string $title) : $this + +
                                                          +
                                                          + +

                                                          This feature should be used only when creating a long process command, +like a daemon.

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $title + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + $this +
                                                          + +
                                                          +
                                                          +

                                                          + configure() + + +

                                                          + + +

                                                          Configures the current command.

                                                          + + + protected + configure() : mixed + +
                                                          +
                                                          + + + + + + + + +
                                                          +
                                                          +

                                                          + execute() + + +

                                                          + + +

                                                          Executes the current command.

                                                          + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                          +
                                                          + +

                                                          This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $input + : InputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + $output + : OutputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + +
                                                          +
                                                          Return values
                                                          + int + — +

                                                          0 if everything went fine, or an exit code

                                                          +
                                                          + +
                                                          + +
                                                          +
                                                          +

                                                          + initialize() + + +

                                                          + + +

                                                          Initializes the command after the input has been bound and before the input +is validated.

                                                          + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                          +
                                                          + +

                                                          This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $input + : InputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + $output + : OutputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + see +
                                                          +
                                                          + InputInterface::bind() + + +
                                                          +
                                                          + see +
                                                          +
                                                          + InputInterface::validate() + + +
                                                          +
                                                          + + + + +
                                                          +
                                                          +

                                                          + interact() + + +

                                                          + + +

                                                          Interacts with the user.

                                                          + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                          +
                                                          + +

                                                          This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $input + : InputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + $output + : OutputInterface +
                                                          +
                                                          + +
                                                          +
                                                          + + + + + + +
                                                          +
                                                          +

                                                          + validateName() + + +

                                                          + + +

                                                          Validates a command name.

                                                          + + + private + validateName(string $name) : mixed + +
                                                          +
                                                          + +

                                                          It must be non-empty and parts can optionally be separated by ":".

                                                          +
                                                          + +
                                                          Parameters
                                                          +
                                                          +
                                                          + $name + : string +
                                                          +
                                                          + +
                                                          +
                                                          + + +
                                                          + Tags + + +
                                                          +
                                                          +
                                                          + throws +
                                                          +
                                                          + InvalidArgumentException + +

                                                          When the name is invalid

                                                          +
                                                          + +
                                                          +
                                                          + + + + +
                                                          +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          
                                                          +        
                                                          + +
                                                          +
                                                          + + + +
                                                          +
                                                          +
                                                          + +
                                                          + On this page + + +
                                                          + +
                                                          +
                                                          +
                                                          +
                                                          +
                                                          +

                                                          Search results

                                                          + +
                                                          +
                                                          +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            + + +
                                                            + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ViewDevCommand.html b/src/public/api/classes/Aloe-Command-ViewDevCommand.html new file mode 100644 index 00000000..d528cc61 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ViewDevCommand.html @@ -0,0 +1,3567 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                            +

                                                            Leaf PHP

                                                            + + + + + +
                                                            + +
                                                            +
                                                            + + + + +
                                                            +
                                                            + + +
                                                            +

                                                            + ViewDevCommand + + + extends Command + + +
                                                            + in package + +
                                                            + + +

                                                            + +
                                                            + + +
                                                            + + + +

                                                            Base class for all commands.

                                                            + + + + + + + + + +

                                                            + Table of Contents + + +

                                                            + + + + + + + +

                                                            + Constants + + +

                                                            +
                                                            +
                                                            + FAILURE + +  = 1 +
                                                            + +
                                                            + INVALID + +  = 2 +
                                                            + +
                                                            + SUCCESS + +  = 0 +
                                                            + +
                                                            + + +

                                                            + Properties + + +

                                                            +
                                                            +
                                                            + $defaultDescription + +  : string|null +
                                                            + +
                                                            + $defaultName + +  : string|null +
                                                            + +
                                                            + $aliases + +  : mixed +
                                                            + +
                                                            + $application + +  : mixed +
                                                            + +
                                                            + $code + +  : mixed +
                                                            + +
                                                            + $definition + +  : mixed +
                                                            + +
                                                            + $description + +  : mixed +
                                                            + +
                                                            + $fullDefinition + +  : mixed +
                                                            + +
                                                            + $help + +  : mixed +
                                                            + +
                                                            + $helperSet + +  : mixed +
                                                            + +
                                                            + $hidden + +  : mixed +
                                                            + +
                                                            + $ignoreValidationErrors + +  : mixed +
                                                            + +
                                                            + $name + +  : mixed +
                                                            + +
                                                            + $processTitle + +  : mixed +
                                                            + +
                                                            + $synopsis + +  : mixed +
                                                            + +
                                                            + $usages + +  : mixed +
                                                            + +
                                                            + +

                                                            + Methods + + +

                                                            +
                                                            +
                                                            + __construct() + +  : mixed +
                                                            + +
                                                            + addArgument() + +  : $this +
                                                            +
                                                            Adds an argument.
                                                            + +
                                                            + addOption() + +  : $this +
                                                            +
                                                            Adds an option.
                                                            + +
                                                            + addUsage() + +  : $this +
                                                            +
                                                            Add a command usage example, it'll be prefixed with the command name.
                                                            + +
                                                            + complete() + +  : void +
                                                            +
                                                            Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                            + +
                                                            + getAliases() + +  : array<string|int, mixed> +
                                                            +
                                                            Returns the aliases for the command.
                                                            + +
                                                            + getApplication() + +  : Application|null +
                                                            +
                                                            Gets the application instance for this command.
                                                            + +
                                                            + getDefaultDescription() + +  : string|null +
                                                            + +
                                                            + getDefaultName() + +  : string|null +
                                                            + +
                                                            + getDefinition() + +  : InputDefinition +
                                                            +
                                                            Gets the InputDefinition attached to this Command.
                                                            + +
                                                            + getDescription() + +  : string +
                                                            +
                                                            Returns the description for the command.
                                                            + +
                                                            + getHelp() + +  : string +
                                                            +
                                                            Returns the help for the command.
                                                            + +
                                                            + getHelper() + +  : mixed +
                                                            +
                                                            Gets a helper instance by name.
                                                            + +
                                                            + getHelperSet() + +  : HelperSet|null +
                                                            +
                                                            Gets the helper set.
                                                            + +
                                                            + getName() + +  : string|null +
                                                            +
                                                            Returns the command name.
                                                            + +
                                                            + getNativeDefinition() + +  : InputDefinition +
                                                            +
                                                            Gets the InputDefinition to be used to create representations of this Command.
                                                            + +
                                                            + getProcessedHelp() + +  : string +
                                                            +
                                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                            + +
                                                            + getSynopsis() + +  : string +
                                                            +
                                                            Returns the synopsis for the command.
                                                            + +
                                                            + getUsages() + +  : array<string|int, mixed> +
                                                            +
                                                            Returns alternative usages of the command.
                                                            + +
                                                            + ignoreValidationErrors() + +  : mixed +
                                                            +
                                                            Ignores validation errors.
                                                            + +
                                                            + isEnabled() + +  : bool +
                                                            +
                                                            Checks whether the command is enabled or not in the current environment.
                                                            + +
                                                            + isHidden() + +  : bool +
                                                            + +
                                                            + run() + +  : int +
                                                            +
                                                            Runs the command.
                                                            + +
                                                            + setAliases() + +  : $this +
                                                            +
                                                            Sets the aliases for the command.
                                                            + +
                                                            + setApplication() + +  : mixed +
                                                            + +
                                                            + setCode() + +  : $this +
                                                            +
                                                            Sets the code to execute when running this command.
                                                            + +
                                                            + setDefinition() + +  : $this +
                                                            +
                                                            Sets an array of argument and option instances.
                                                            + +
                                                            + setDescription() + +  : $this +
                                                            +
                                                            Sets the description for the command.
                                                            + +
                                                            + setHelp() + +  : $this +
                                                            +
                                                            Sets the help for the command.
                                                            + +
                                                            + setHelperSet() + +  : mixed +
                                                            + +
                                                            + setHidden() + +  : $this +
                                                            + +
                                                            + setName() + +  : $this +
                                                            +
                                                            Sets the name of the command.
                                                            + +
                                                            + setProcessTitle() + +  : $this +
                                                            +
                                                            Sets the process title of the command.
                                                            + +
                                                            + configure() + +  : mixed +
                                                            +
                                                            Configures the current command.
                                                            + +
                                                            + execute() + +  : int +
                                                            +
                                                            Executes the current command.
                                                            + +
                                                            + initialize() + +  : mixed +
                                                            +
                                                            Initializes the command after the input has been bound and before the input +is validated.
                                                            + +
                                                            + interact() + +  : mixed +
                                                            +
                                                            Interacts with the user.
                                                            + +
                                                            + validateName() + +  : mixed +
                                                            +
                                                            Validates a command name.
                                                            + +
                                                            + + + + +
                                                            +

                                                            + Constants + + +

                                                            +
                                                            +

                                                            + FAILURE + + +

                                                            + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                            +
                                                            +

                                                            + INVALID + + +

                                                            + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                            +
                                                            +

                                                            + SUCCESS + + +

                                                            + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                            +
                                                            + + +
                                                            +

                                                            + Properties + + +

                                                            +
                                                            +

                                                            + $defaultDescription + + + + +

                                                            + + + + + + protected + static string|null + $defaultDescription + + + +

                                                            The default command description

                                                            +
                                                            + + + + + +
                                                            +
                                                            +

                                                            + $defaultName + + + + +

                                                            + + + + + + protected + static string|null + $defaultName + = 'view:dev' + + +

                                                            The default command name

                                                            +
                                                            + + + + + +
                                                            +
                                                            +

                                                            + $aliases + + + + +

                                                            + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                            +
                                                            +

                                                            + $application + + + + +

                                                            + + + + + + private + mixed + $application + + + + + + + + +
                                                            +
                                                            +

                                                            + $code + + + + +

                                                            + + + + + + private + mixed + $code + + + + + + + + +
                                                            +
                                                            +

                                                            + $definition + + + + +

                                                            + + + + + + private + mixed + $definition + + + + + + + + +
                                                            +
                                                            +

                                                            + $description + + + + +

                                                            + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                            +
                                                            +

                                                            + $fullDefinition + + + + +

                                                            + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                            +
                                                            +

                                                            + $help + + + + +

                                                            + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                            +
                                                            +

                                                            + $helperSet + + + + +

                                                            + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                            +
                                                            +

                                                            + $hidden + + + + +

                                                            + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                            +
                                                            +

                                                            + $ignoreValidationErrors + + + + +

                                                            + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                            +
                                                            +

                                                            + $name + + + + +

                                                            + + + + + + private + mixed + $name + + + + + + + + +
                                                            +
                                                            +

                                                            + $processTitle + + + + +

                                                            + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                            +
                                                            +

                                                            + $synopsis + + + + +

                                                            + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                            +
                                                            +

                                                            + $usages + + + + +

                                                            + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                            +
                                                            + +
                                                            +

                                                            + Methods + + +

                                                            +
                                                            +

                                                            + __construct() + + +

                                                            + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $name + : string|null + = null
                                                            +
                                                            +

                                                            The name of the command; passing null means it must be set in configure()

                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + LogicException + +

                                                            When the command name is empty

                                                            +
                                                            + +
                                                            +
                                                            + + + + +
                                                            +
                                                            +

                                                            + addArgument() + + +

                                                            + + +

                                                            Adds an argument.

                                                            + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $name + : string +
                                                            +
                                                            + +
                                                            +
                                                            + $mode + : int|null + = null
                                                            +
                                                            +

                                                            The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                            +
                                                            + +
                                                            +
                                                            + $description + : string + = ''
                                                            +
                                                            + +
                                                            +
                                                            + $default + : mixed + = null
                                                            +
                                                            +

                                                            The default value (for InputArgument::OPTIONAL mode only)

                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + +

                                                            When argument mode is not valid

                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + addOption() + + +

                                                            + + +

                                                            Adds an option.

                                                            + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $name + : string +
                                                            +
                                                            + +
                                                            +
                                                            + $shortcut + : string|array<string|int, mixed>|null + = null
                                                            +
                                                            +

                                                            The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                            +
                                                            + +
                                                            +
                                                            + $mode + : int|null + = null
                                                            +
                                                            +

                                                            The option mode: One of the InputOption::VALUE_* constants

                                                            +
                                                            + +
                                                            +
                                                            + $description + : string + = ''
                                                            +
                                                            + +
                                                            +
                                                            + $default + : mixed + = null
                                                            +
                                                            +

                                                            The default value (must be null for InputOption::VALUE_NONE)

                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + +

                                                            If option mode is invalid or incompatible

                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + addUsage() + + +

                                                            + + +

                                                            Add a command usage example, it'll be prefixed with the command name.

                                                            + + + public + addUsage(string $usage) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $usage + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            + +
                                                            +

                                                            + getAliases() + + +

                                                            + + +

                                                            Returns the aliases for the command.

                                                            + + + public + getAliases() : array<string|int, mixed> + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + array<string|int, mixed> +
                                                            + +
                                                            +
                                                            +

                                                            + getApplication() + + +

                                                            + + +

                                                            Gets the application instance for this command.

                                                            + + + public + getApplication() : Application|null + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + Application|null +
                                                            + +
                                                            +
                                                            +

                                                            + getDefaultDescription() + + +

                                                            + + + + + public + static getDefaultDescription() : string|null + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + string|null +
                                                            + +
                                                            +
                                                            +

                                                            + getDefaultName() + + +

                                                            + + + + + public + static getDefaultName() : string|null + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + string|null +
                                                            + +
                                                            +
                                                            +

                                                            + getDefinition() + + +

                                                            + + +

                                                            Gets the InputDefinition attached to this Command.

                                                            + + + public + getDefinition() : InputDefinition + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + InputDefinition +
                                                            + +
                                                            +
                                                            +

                                                            + getDescription() + + +

                                                            + + +

                                                            Returns the description for the command.

                                                            + + + public + getDescription() : string + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + string +
                                                            + +
                                                            +
                                                            +

                                                            + getHelp() + + +

                                                            + + +

                                                            Returns the help for the command.

                                                            + + + public + getHelp() : string + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + string +
                                                            + +
                                                            +
                                                            +

                                                            + getHelper() + + +

                                                            + + +

                                                            Gets a helper instance by name.

                                                            + + + public + getHelper(string $name) : mixed + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $name + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + LogicException + +

                                                            if no HelperSet is defined

                                                            +
                                                            + +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + +

                                                            if the helper is not defined

                                                            +
                                                            + +
                                                            +
                                                            + + + + +
                                                            +
                                                            +

                                                            + getHelperSet() + + +

                                                            + + +

                                                            Gets the helper set.

                                                            + + + public + getHelperSet() : HelperSet|null + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + HelperSet|null +
                                                            + +
                                                            +
                                                            +

                                                            + getName() + + +

                                                            + + +

                                                            Returns the command name.

                                                            + + + public + getName() : string|null + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + string|null +
                                                            + +
                                                            +
                                                            +

                                                            + getNativeDefinition() + + +

                                                            + + +

                                                            Gets the InputDefinition to be used to create representations of this Command.

                                                            + + + public + getNativeDefinition() : InputDefinition + +
                                                            +
                                                            + +

                                                            Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                            +

                                                            This method is not part of public API and should not be used directly.

                                                            +
                                                            + + + + + + +
                                                            +
                                                            Return values
                                                            + InputDefinition +
                                                            + +
                                                            +
                                                            +

                                                            + getProcessedHelp() + + +

                                                            + + +

                                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                            + + + public + getProcessedHelp() : string + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + string +
                                                            + +
                                                            +
                                                            +

                                                            + getSynopsis() + + +

                                                            + + +

                                                            Returns the synopsis for the command.

                                                            + + + public + getSynopsis([bool $short = false ]) : string + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $short + : bool + = false
                                                            +
                                                            +

                                                            Whether to show the short version of the synopsis (with options folded) or not

                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + string +
                                                            + +
                                                            +
                                                            +

                                                            + getUsages() + + +

                                                            + + +

                                                            Returns alternative usages of the command.

                                                            + + + public + getUsages() : array<string|int, mixed> + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + array<string|int, mixed> +
                                                            + +
                                                            +
                                                            +

                                                            + ignoreValidationErrors() + + +

                                                            + + +

                                                            Ignores validation errors.

                                                            + + + public + ignoreValidationErrors() : mixed + +
                                                            +
                                                            + +

                                                            This is mainly useful for the help command.

                                                            +
                                                            + + + + + + + +
                                                            +
                                                            +

                                                            + isEnabled() + + +

                                                            + + +

                                                            Checks whether the command is enabled or not in the current environment.

                                                            + + + public + isEnabled() : bool + +
                                                            +
                                                            + +

                                                            Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                            +
                                                            + + + + + + +
                                                            +
                                                            Return values
                                                            + bool +
                                                            + +
                                                            +
                                                            +

                                                            + isHidden() + + +

                                                            + + + + + public + isHidden() : bool + +
                                                            +
                                                            + + + + + + + +
                                                            +
                                                            Return values
                                                            + bool + — +

                                                            whether the command should be publicly shown or not

                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +

                                                            + run() + + +

                                                            + + +

                                                            Runs the command.

                                                            + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                            +
                                                            + +

                                                            The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $input + : InputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + $output + : OutputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + ExceptionInterface + +

                                                            When input binding fails. Bypass this by calling .

                                                            +
                                                            + +
                                                            +
                                                            + see +
                                                            +
                                                            + setCode() + + +
                                                            +
                                                            + see +
                                                            +
                                                            + execute() + + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + int + — +

                                                            The command exit code

                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +

                                                            + setAliases() + + +

                                                            + + +

                                                            Sets the aliases for the command.

                                                            + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $aliases + : array<string|int, string> +
                                                            +
                                                            +

                                                            An array of aliases for the command

                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + +

                                                            When an alias is invalid

                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setApplication() + + +

                                                            + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $application + : Application|null + = null
                                                            +
                                                            + +
                                                            +
                                                            + + + + + + +
                                                            +
                                                            +

                                                            + setCode() + + +

                                                            + + +

                                                            Sets the code to execute when running this command.

                                                            + + + public + setCode(callable $code) : $this + +
                                                            +
                                                            + +

                                                            If this method is used, it overrides the code defined +in the execute() method.

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $code + : callable +
                                                            +
                                                            +

                                                            A callable(InputInterface $input, OutputInterface $output)

                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + + +
                                                            +
                                                            + see +
                                                            +
                                                            + execute() + + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setDefinition() + + +

                                                            + + +

                                                            Sets an array of argument and option instances.

                                                            + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $definition + : array<string|int, mixed>|InputDefinition +
                                                            +
                                                            +

                                                            An array of argument and option instances or a definition instance

                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setDescription() + + +

                                                            + + +

                                                            Sets the description for the command.

                                                            + + + public + setDescription(string $description) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $description + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setHelp() + + +

                                                            + + +

                                                            Sets the help for the command.

                                                            + + + public + setHelp(string $help) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $help + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setHelperSet() + + +

                                                            + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $helperSet + : HelperSet +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + + +
                                                            +
                                                            +

                                                            + setHidden() + + +

                                                            + + + + + public + setHidden(bool $hidden) : $this + +
                                                            +
                                                            + + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $hidden + : bool +
                                                            +
                                                            +

                                                            Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + final +
                                                            +
                                                            + +

                                                            since Symfony 5.1

                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setName() + + +

                                                            + + +

                                                            Sets the name of the command.

                                                            + + + public + setName(string $name) : $this + +
                                                            +
                                                            + +

                                                            This method can set both the namespace and the name if +you separate them by a colon (:)

                                                            +
                                                            $command->setName('foo:bar');
                                                            +
                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $name + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + +

                                                            When the name is invalid

                                                            +
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + setProcessTitle() + + +

                                                            + + +

                                                            Sets the process title of the command.

                                                            + + + public + setProcessTitle(string $title) : $this + +
                                                            +
                                                            + +

                                                            This feature should be used only when creating a long process command, +like a daemon.

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $title + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + $this +
                                                            + +
                                                            +
                                                            +

                                                            + configure() + + +

                                                            + + +

                                                            Configures the current command.

                                                            + + + protected + configure() : mixed + +
                                                            +
                                                            + + + + + + + + +
                                                            +
                                                            +

                                                            + execute() + + +

                                                            + + +

                                                            Executes the current command.

                                                            + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                            +
                                                            + +

                                                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $input + : InputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + $output + : OutputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + +
                                                            +
                                                            Return values
                                                            + int + — +

                                                            0 if everything went fine, or an exit code

                                                            +
                                                            + +
                                                            + +
                                                            +
                                                            +

                                                            + initialize() + + +

                                                            + + +

                                                            Initializes the command after the input has been bound and before the input +is validated.

                                                            + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                            +
                                                            + +

                                                            This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $input + : InputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + $output + : OutputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + see +
                                                            +
                                                            + InputInterface::bind() + + +
                                                            +
                                                            + see +
                                                            +
                                                            + InputInterface::validate() + + +
                                                            +
                                                            + + + + +
                                                            +
                                                            +

                                                            + interact() + + +

                                                            + + +

                                                            Interacts with the user.

                                                            + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                            +
                                                            + +

                                                            This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $input + : InputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + $output + : OutputInterface +
                                                            +
                                                            + +
                                                            +
                                                            + + + + + + +
                                                            +
                                                            +

                                                            + validateName() + + +

                                                            + + +

                                                            Validates a command name.

                                                            + + + private + validateName(string $name) : mixed + +
                                                            +
                                                            + +

                                                            It must be non-empty and parts can optionally be separated by ":".

                                                            +
                                                            + +
                                                            Parameters
                                                            +
                                                            +
                                                            + $name + : string +
                                                            +
                                                            + +
                                                            +
                                                            + + +
                                                            + Tags + + +
                                                            +
                                                            +
                                                            + throws +
                                                            +
                                                            + InvalidArgumentException + +

                                                            When the name is invalid

                                                            +
                                                            + +
                                                            +
                                                            + + + + +
                                                            +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            
                                                            +        
                                                            + +
                                                            +
                                                            + + + +
                                                            +
                                                            +
                                                            + +
                                                            + On this page + + +
                                                            + +
                                                            +
                                                            +
                                                            +
                                                            +
                                                            +

                                                            Search results

                                                            + +
                                                            +
                                                            +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              + + +
                                                              + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command-ViewInstallCommand.html b/src/public/api/classes/Aloe-Command-ViewInstallCommand.html new file mode 100644 index 00000000..1928c305 --- /dev/null +++ b/src/public/api/classes/Aloe-Command-ViewInstallCommand.html @@ -0,0 +1,3779 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                              +

                                                              Leaf PHP

                                                              + + + + + +
                                                              + +
                                                              +
                                                              + + + + +
                                                              +
                                                              + + +
                                                              +

                                                              + ViewInstallCommand + + + extends Command + + +
                                                              + in package + +
                                                              + + +

                                                              + +
                                                              + + +
                                                              + + + +

                                                              Base class for all commands.

                                                              + + + + + + + + + +

                                                              + Table of Contents + + +

                                                              + + + + + + + +

                                                              + Constants + + +

                                                              +
                                                              +
                                                              + FAILURE + +  = 1 +
                                                              + +
                                                              + INVALID + +  = 2 +
                                                              + +
                                                              + SUCCESS + +  = 0 +
                                                              + +
                                                              + + +

                                                              + Properties + + +

                                                              +
                                                              +
                                                              + $defaultDescription + +  : string|null +
                                                              + +
                                                              + $defaultName + +  : string|null +
                                                              + +
                                                              + $aliases + +  : mixed +
                                                              + +
                                                              + $application + +  : mixed +
                                                              + +
                                                              + $code + +  : mixed +
                                                              + +
                                                              + $definition + +  : mixed +
                                                              + +
                                                              + $description + +  : mixed +
                                                              + +
                                                              + $fullDefinition + +  : mixed +
                                                              + +
                                                              + $help + +  : mixed +
                                                              + +
                                                              + $helperSet + +  : mixed +
                                                              + +
                                                              + $hidden + +  : mixed +
                                                              + +
                                                              + $ignoreValidationErrors + +  : mixed +
                                                              + +
                                                              + $name + +  : mixed +
                                                              + +
                                                              + $processTitle + +  : mixed +
                                                              + +
                                                              + $synopsis + +  : mixed +
                                                              + +
                                                              + $usages + +  : mixed +
                                                              + +
                                                              + +

                                                              + Methods + + +

                                                              +
                                                              +
                                                              + __construct() + +  : mixed +
                                                              + +
                                                              + addArgument() + +  : $this +
                                                              +
                                                              Adds an argument.
                                                              + +
                                                              + addOption() + +  : $this +
                                                              +
                                                              Adds an option.
                                                              + +
                                                              + addUsage() + +  : $this +
                                                              +
                                                              Add a command usage example, it'll be prefixed with the command name.
                                                              + +
                                                              + complete() + +  : void +
                                                              +
                                                              Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                              + +
                                                              + getAliases() + +  : array<string|int, mixed> +
                                                              +
                                                              Returns the aliases for the command.
                                                              + +
                                                              + getApplication() + +  : Application|null +
                                                              +
                                                              Gets the application instance for this command.
                                                              + +
                                                              + getDefaultDescription() + +  : string|null +
                                                              + +
                                                              + getDefaultName() + +  : string|null +
                                                              + +
                                                              + getDefinition() + +  : InputDefinition +
                                                              +
                                                              Gets the InputDefinition attached to this Command.
                                                              + +
                                                              + getDescription() + +  : string +
                                                              +
                                                              Returns the description for the command.
                                                              + +
                                                              + getHelp() + +  : string +
                                                              +
                                                              Returns the help for the command.
                                                              + +
                                                              + getHelper() + +  : mixed +
                                                              +
                                                              Gets a helper instance by name.
                                                              + +
                                                              + getHelperSet() + +  : HelperSet|null +
                                                              +
                                                              Gets the helper set.
                                                              + +
                                                              + getName() + +  : string|null +
                                                              +
                                                              Returns the command name.
                                                              + +
                                                              + getNativeDefinition() + +  : InputDefinition +
                                                              +
                                                              Gets the InputDefinition to be used to create representations of this Command.
                                                              + +
                                                              + getProcessedHelp() + +  : string +
                                                              +
                                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                              + +
                                                              + getSynopsis() + +  : string +
                                                              +
                                                              Returns the synopsis for the command.
                                                              + +
                                                              + getUsages() + +  : array<string|int, mixed> +
                                                              +
                                                              Returns alternative usages of the command.
                                                              + +
                                                              + ignoreValidationErrors() + +  : mixed +
                                                              +
                                                              Ignores validation errors.
                                                              + +
                                                              + isEnabled() + +  : bool +
                                                              +
                                                              Checks whether the command is enabled or not in the current environment.
                                                              + +
                                                              + isHidden() + +  : bool +
                                                              + +
                                                              + run() + +  : int +
                                                              +
                                                              Runs the command.
                                                              + +
                                                              + setAliases() + +  : $this +
                                                              +
                                                              Sets the aliases for the command.
                                                              + +
                                                              + setApplication() + +  : mixed +
                                                              + +
                                                              + setCode() + +  : $this +
                                                              +
                                                              Sets the code to execute when running this command.
                                                              + +
                                                              + setDefinition() + +  : $this +
                                                              +
                                                              Sets an array of argument and option instances.
                                                              + +
                                                              + setDescription() + +  : $this +
                                                              +
                                                              Sets the description for the command.
                                                              + +
                                                              + setHelp() + +  : $this +
                                                              +
                                                              Sets the help for the command.
                                                              + +
                                                              + setHelperSet() + +  : mixed +
                                                              + +
                                                              + setHidden() + +  : $this +
                                                              + +
                                                              + setName() + +  : $this +
                                                              +
                                                              Sets the name of the command.
                                                              + +
                                                              + setProcessTitle() + +  : $this +
                                                              +
                                                              Sets the process title of the command.
                                                              + +
                                                              + configure() + +  : mixed +
                                                              +
                                                              Configures the current command.
                                                              + +
                                                              + execute() + +  : int +
                                                              +
                                                              Executes the current command.
                                                              + +
                                                              + initialize() + +  : mixed +
                                                              +
                                                              Initializes the command after the input has been bound and before the input +is validated.
                                                              + +
                                                              + installReact() + +  : mixed +
                                                              +
                                                              Install react
                                                              + +
                                                              + installSvelte() + +  : mixed +
                                                              +
                                                              Install svelte
                                                              + +
                                                              + installTailwind() + +  : mixed +
                                                              +
                                                              Install tailwind
                                                              + +
                                                              + installVue() + +  : mixed +
                                                              +
                                                              Install vue
                                                              + +
                                                              + interact() + +  : mixed +
                                                              +
                                                              Interacts with the user.
                                                              + +
                                                              + validateName() + +  : mixed +
                                                              +
                                                              Validates a command name.
                                                              + +
                                                              + + + + +
                                                              +

                                                              + Constants + + +

                                                              +
                                                              +

                                                              + FAILURE + + +

                                                              + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                              +
                                                              +

                                                              + INVALID + + +

                                                              + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                              +
                                                              +

                                                              + SUCCESS + + +

                                                              + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                              +
                                                              + + +
                                                              +

                                                              + Properties + + +

                                                              +
                                                              +

                                                              + $defaultDescription + + + + +

                                                              + + + + + + protected + static string|null + $defaultDescription + + + +

                                                              The default command description

                                                              +
                                                              + + + + + +
                                                              +
                                                              +

                                                              + $defaultName + + + + +

                                                              + + + + + + protected + static string|null + $defaultName + = 'view:install' + + +

                                                              The default command name

                                                              +
                                                              + + + + + +
                                                              +
                                                              +

                                                              + $aliases + + + + +

                                                              + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                              +
                                                              +

                                                              + $application + + + + +

                                                              + + + + + + private + mixed + $application + + + + + + + + +
                                                              +
                                                              +

                                                              + $code + + + + +

                                                              + + + + + + private + mixed + $code + + + + + + + + +
                                                              +
                                                              +

                                                              + $definition + + + + +

                                                              + + + + + + private + mixed + $definition + + + + + + + + +
                                                              +
                                                              +

                                                              + $description + + + + +

                                                              + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                              +
                                                              +

                                                              + $fullDefinition + + + + +

                                                              + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                              +
                                                              +

                                                              + $help + + + + +

                                                              + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                              +
                                                              +

                                                              + $helperSet + + + + +

                                                              + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                              +
                                                              +

                                                              + $hidden + + + + +

                                                              + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                              +
                                                              +

                                                              + $ignoreValidationErrors + + + + +

                                                              + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                              +
                                                              +

                                                              + $name + + + + +

                                                              + + + + + + private + mixed + $name + + + + + + + + +
                                                              +
                                                              +

                                                              + $processTitle + + + + +

                                                              + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                              +
                                                              +

                                                              + $synopsis + + + + +

                                                              + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                              +
                                                              +

                                                              + $usages + + + + +

                                                              + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                              +
                                                              + +
                                                              +

                                                              + Methods + + +

                                                              +
                                                              +

                                                              + __construct() + + +

                                                              + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $name + : string|null + = null
                                                              +
                                                              +

                                                              The name of the command; passing null means it must be set in configure()

                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + LogicException + +

                                                              When the command name is empty

                                                              +
                                                              + +
                                                              +
                                                              + + + + +
                                                              +
                                                              +

                                                              + addArgument() + + +

                                                              + + +

                                                              Adds an argument.

                                                              + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $name + : string +
                                                              +
                                                              + +
                                                              +
                                                              + $mode + : int|null + = null
                                                              +
                                                              +

                                                              The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                              +
                                                              + +
                                                              +
                                                              + $description + : string + = ''
                                                              +
                                                              + +
                                                              +
                                                              + $default + : mixed + = null
                                                              +
                                                              +

                                                              The default value (for InputArgument::OPTIONAL mode only)

                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              When argument mode is not valid

                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + addOption() + + +

                                                              + + +

                                                              Adds an option.

                                                              + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $name + : string +
                                                              +
                                                              + +
                                                              +
                                                              + $shortcut + : string|array<string|int, mixed>|null + = null
                                                              +
                                                              +

                                                              The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                              +
                                                              + +
                                                              +
                                                              + $mode + : int|null + = null
                                                              +
                                                              +

                                                              The option mode: One of the InputOption::VALUE_* constants

                                                              +
                                                              + +
                                                              +
                                                              + $description + : string + = ''
                                                              +
                                                              + +
                                                              +
                                                              + $default + : mixed + = null
                                                              +
                                                              +

                                                              The default value (must be null for InputOption::VALUE_NONE)

                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              If option mode is invalid or incompatible

                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + addUsage() + + +

                                                              + + +

                                                              Add a command usage example, it'll be prefixed with the command name.

                                                              + + + public + addUsage(string $usage) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $usage + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              + +
                                                              +

                                                              + getAliases() + + +

                                                              + + +

                                                              Returns the aliases for the command.

                                                              + + + public + getAliases() : array<string|int, mixed> + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + array<string|int, mixed> +
                                                              + +
                                                              +
                                                              +

                                                              + getApplication() + + +

                                                              + + +

                                                              Gets the application instance for this command.

                                                              + + + public + getApplication() : Application|null + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + Application|null +
                                                              + +
                                                              +
                                                              +

                                                              + getDefaultDescription() + + +

                                                              + + + + + public + static getDefaultDescription() : string|null + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + string|null +
                                                              + +
                                                              +
                                                              +

                                                              + getDefaultName() + + +

                                                              + + + + + public + static getDefaultName() : string|null + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + string|null +
                                                              + +
                                                              +
                                                              +

                                                              + getDefinition() + + +

                                                              + + +

                                                              Gets the InputDefinition attached to this Command.

                                                              + + + public + getDefinition() : InputDefinition + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + InputDefinition +
                                                              + +
                                                              +
                                                              +

                                                              + getDescription() + + +

                                                              + + +

                                                              Returns the description for the command.

                                                              + + + public + getDescription() : string + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + string +
                                                              + +
                                                              +
                                                              +

                                                              + getHelp() + + +

                                                              + + +

                                                              Returns the help for the command.

                                                              + + + public + getHelp() : string + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + string +
                                                              + +
                                                              +
                                                              +

                                                              + getHelper() + + +

                                                              + + +

                                                              Gets a helper instance by name.

                                                              + + + public + getHelper(string $name) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $name + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + LogicException + +

                                                              if no HelperSet is defined

                                                              +
                                                              + +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              if the helper is not defined

                                                              +
                                                              + +
                                                              +
                                                              + + + + +
                                                              +
                                                              +

                                                              + getHelperSet() + + +

                                                              + + +

                                                              Gets the helper set.

                                                              + + + public + getHelperSet() : HelperSet|null + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + HelperSet|null +
                                                              + +
                                                              +
                                                              +

                                                              + getName() + + +

                                                              + + +

                                                              Returns the command name.

                                                              + + + public + getName() : string|null + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + string|null +
                                                              + +
                                                              +
                                                              +

                                                              + getNativeDefinition() + + +

                                                              + + +

                                                              Gets the InputDefinition to be used to create representations of this Command.

                                                              + + + public + getNativeDefinition() : InputDefinition + +
                                                              +
                                                              + +

                                                              Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                              +

                                                              This method is not part of public API and should not be used directly.

                                                              +
                                                              + + + + + + +
                                                              +
                                                              Return values
                                                              + InputDefinition +
                                                              + +
                                                              +
                                                              +

                                                              + getProcessedHelp() + + +

                                                              + + +

                                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                              + + + public + getProcessedHelp() : string + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + string +
                                                              + +
                                                              +
                                                              +

                                                              + getSynopsis() + + +

                                                              + + +

                                                              Returns the synopsis for the command.

                                                              + + + public + getSynopsis([bool $short = false ]) : string + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $short + : bool + = false
                                                              +
                                                              +

                                                              Whether to show the short version of the synopsis (with options folded) or not

                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + string +
                                                              + +
                                                              +
                                                              +

                                                              + getUsages() + + +

                                                              + + +

                                                              Returns alternative usages of the command.

                                                              + + + public + getUsages() : array<string|int, mixed> + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + array<string|int, mixed> +
                                                              + +
                                                              +
                                                              +

                                                              + ignoreValidationErrors() + + +

                                                              + + +

                                                              Ignores validation errors.

                                                              + + + public + ignoreValidationErrors() : mixed + +
                                                              +
                                                              + +

                                                              This is mainly useful for the help command.

                                                              +
                                                              + + + + + + + +
                                                              +
                                                              +

                                                              + isEnabled() + + +

                                                              + + +

                                                              Checks whether the command is enabled or not in the current environment.

                                                              + + + public + isEnabled() : bool + +
                                                              +
                                                              + +

                                                              Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                              +
                                                              + + + + + + +
                                                              +
                                                              Return values
                                                              + bool +
                                                              + +
                                                              +
                                                              +

                                                              + isHidden() + + +

                                                              + + + + + public + isHidden() : bool + +
                                                              +
                                                              + + + + + + + +
                                                              +
                                                              Return values
                                                              + bool + — +

                                                              whether the command should be publicly shown or not

                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +

                                                              + run() + + +

                                                              + + +

                                                              Runs the command.

                                                              + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                              +
                                                              + +

                                                              The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $input + : InputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + $output + : OutputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + ExceptionInterface + +

                                                              When input binding fails. Bypass this by calling .

                                                              +
                                                              + +
                                                              +
                                                              + see +
                                                              +
                                                              + setCode() + + +
                                                              +
                                                              + see +
                                                              +
                                                              + execute() + + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + int + — +

                                                              The command exit code

                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +

                                                              + setAliases() + + +

                                                              + + +

                                                              Sets the aliases for the command.

                                                              + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $aliases + : array<string|int, string> +
                                                              +
                                                              +

                                                              An array of aliases for the command

                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              When an alias is invalid

                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setApplication() + + +

                                                              + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $application + : Application|null + = null
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + setCode() + + +

                                                              + + +

                                                              Sets the code to execute when running this command.

                                                              + + + public + setCode(callable $code) : $this + +
                                                              +
                                                              + +

                                                              If this method is used, it overrides the code defined +in the execute() method.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $code + : callable +
                                                              +
                                                              +

                                                              A callable(InputInterface $input, OutputInterface $output)

                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + + +
                                                              +
                                                              + see +
                                                              +
                                                              + execute() + + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setDefinition() + + +

                                                              + + +

                                                              Sets an array of argument and option instances.

                                                              + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $definition + : array<string|int, mixed>|InputDefinition +
                                                              +
                                                              +

                                                              An array of argument and option instances or a definition instance

                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setDescription() + + +

                                                              + + +

                                                              Sets the description for the command.

                                                              + + + public + setDescription(string $description) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $description + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setHelp() + + +

                                                              + + +

                                                              Sets the help for the command.

                                                              + + + public + setHelp(string $help) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $help + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setHelperSet() + + +

                                                              + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $helperSet + : HelperSet +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + setHidden() + + +

                                                              + + + + + public + setHidden(bool $hidden) : $this + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $hidden + : bool +
                                                              +
                                                              +

                                                              Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + final +
                                                              +
                                                              + +

                                                              since Symfony 5.1

                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setName() + + +

                                                              + + +

                                                              Sets the name of the command.

                                                              + + + public + setName(string $name) : $this + +
                                                              +
                                                              + +

                                                              This method can set both the namespace and the name if +you separate them by a colon (:)

                                                              +
                                                              $command->setName('foo:bar');
                                                              +
                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $name + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              When the name is invalid

                                                              +
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + setProcessTitle() + + +

                                                              + + +

                                                              Sets the process title of the command.

                                                              + + + public + setProcessTitle(string $title) : $this + +
                                                              +
                                                              + +

                                                              This feature should be used only when creating a long process command, +like a daemon.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $title + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + $this +
                                                              + +
                                                              +
                                                              +

                                                              + configure() + + +

                                                              + + +

                                                              Configures the current command.

                                                              + + + protected + configure() : mixed + +
                                                              +
                                                              + + + + + + + + +
                                                              +
                                                              +

                                                              + execute() + + +

                                                              + + +

                                                              Executes the current command.

                                                              + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                              +
                                                              + +

                                                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $input + : InputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + $output + : OutputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + +
                                                              +
                                                              Return values
                                                              + int + — +

                                                              0 if everything went fine, or an exit code

                                                              +
                                                              + +
                                                              + +
                                                              +
                                                              +

                                                              + initialize() + + +

                                                              + + +

                                                              Initializes the command after the input has been bound and before the input +is validated.

                                                              + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                              +
                                                              + +

                                                              This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $input + : InputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + $output + : OutputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + see +
                                                              +
                                                              + InputInterface::bind() + + +
                                                              +
                                                              + see +
                                                              +
                                                              + InputInterface::validate() + + +
                                                              +
                                                              + + + + +
                                                              +
                                                              +

                                                              + installReact() + + +

                                                              + + +

                                                              Install react

                                                              + + + protected + installReact(mixed $output) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $output + : mixed +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + installSvelte() + + +

                                                              + + +

                                                              Install svelte

                                                              + + + protected + installSvelte(mixed $output) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $output + : mixed +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + installTailwind() + + +

                                                              + + +

                                                              Install tailwind

                                                              + + + protected + installTailwind(mixed $output) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $output + : mixed +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + installVue() + + +

                                                              + + +

                                                              Install vue

                                                              + + + protected + installVue(mixed $output) : mixed + +
                                                              +
                                                              + + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $output + : mixed +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + interact() + + +

                                                              + + +

                                                              Interacts with the user.

                                                              + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                              +
                                                              + +

                                                              This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $input + : InputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + $output + : OutputInterface +
                                                              +
                                                              + +
                                                              +
                                                              + + + + + + +
                                                              +
                                                              +

                                                              + validateName() + + +

                                                              + + +

                                                              Validates a command name.

                                                              + + + private + validateName(string $name) : mixed + +
                                                              +
                                                              + +

                                                              It must be non-empty and parts can optionally be separated by ":".

                                                              +
                                                              + +
                                                              Parameters
                                                              +
                                                              +
                                                              + $name + : string +
                                                              +
                                                              + +
                                                              +
                                                              + + +
                                                              + Tags + + +
                                                              +
                                                              +
                                                              + throws +
                                                              +
                                                              + InvalidArgumentException + +

                                                              When the name is invalid

                                                              +
                                                              + +
                                                              +
                                                              + + + + +
                                                              +
                                                              + +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              
                                                              +        
                                                              + +
                                                              +
                                                              + + + +
                                                              +
                                                              +
                                                              + +
                                                              + On this page + + +
                                                              + +
                                                              +
                                                              +
                                                              +
                                                              +
                                                              +

                                                              Search results

                                                              + +
                                                              +
                                                              +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                + + +
                                                                + + + + + + + + diff --git a/src/public/api/classes/Aloe-Command.html b/src/public/api/classes/Aloe-Command.html new file mode 100644 index 00000000..cf1ccdf0 --- /dev/null +++ b/src/public/api/classes/Aloe-Command.html @@ -0,0 +1,5262 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                +

                                                                Leaf PHP

                                                                + + + + + +
                                                                + +
                                                                +
                                                                + + + + +
                                                                +
                                                                + + +
                                                                +

                                                                + Command + + + extends Command + + +
                                                                + in package + +
                                                                + + +

                                                                + +
                                                                + + +
                                                                + + + +

                                                                Base class for Aloe Commands.

                                                                + + + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + author +
                                                                +
                                                                + +

                                                                Michael Darko mickdd22@gmail.com

                                                                +
                                                                + +
                                                                +
                                                                + + + + + +

                                                                + Table of Contents + + +

                                                                + + + + + + + +

                                                                + Constants + + +

                                                                +
                                                                +
                                                                + FAILURE + +  = 1 +
                                                                + +
                                                                + INVALID + +  = 2 +
                                                                + +
                                                                + SUCCESS + +  = 0 +
                                                                + +
                                                                + + +

                                                                + Properties + + +

                                                                +
                                                                +
                                                                + $description + +  : mixed +
                                                                +
                                                                Description for command
                                                                + +
                                                                + $help + +  : mixed +
                                                                +
                                                                Help for command
                                                                + +
                                                                + $defaultDescription + +  : string|null +
                                                                + +
                                                                + $defaultName + +  : string|null +
                                                                + +
                                                                + $input + +  : InputInterface +
                                                                +
                                                                The input object
                                                                + +
                                                                + $output + +  : OutputInterface +
                                                                +
                                                                The output object
                                                                + +
                                                                + $aliases + +  : mixed +
                                                                + +
                                                                + $application + +  : mixed +
                                                                + +
                                                                + $code + +  : mixed +
                                                                + +
                                                                + $definition + +  : mixed +
                                                                + +
                                                                + $fullDefinition + +  : mixed +
                                                                + +
                                                                + $helperSet + +  : mixed +
                                                                + +
                                                                + $hidden + +  : mixed +
                                                                + +
                                                                + $ignoreValidationErrors + +  : mixed +
                                                                + +
                                                                + $name + +  : mixed +
                                                                +
                                                                The name of command to run in console
                                                                + +
                                                                + $processTitle + +  : mixed +
                                                                + +
                                                                + $synopsis + +  : mixed +
                                                                + +
                                                                + $usages + +  : mixed +
                                                                + +
                                                                + +

                                                                + Methods + + +

                                                                +
                                                                +
                                                                + __construct() + +  : mixed +
                                                                + +
                                                                + addArgument() + +  : $this +
                                                                +
                                                                Adds an argument.
                                                                + +
                                                                + addOption() + +  : $this +
                                                                +
                                                                Adds an option.
                                                                + +
                                                                + addUsage() + +  : $this +
                                                                +
                                                                Add a command usage example, it'll be prefixed with the command name.
                                                                + +
                                                                + argument() + +  : mixed +
                                                                +
                                                                Returns the argument value for a given argument name.
                                                                + +
                                                                + arguments() + +  : mixed +
                                                                +
                                                                Returns all the given arguments merged with the default values.
                                                                + +
                                                                + ask() + +  : mixed +
                                                                +
                                                                Ask a question
                                                                + +
                                                                + askMultiline() + +  : mixed +
                                                                +
                                                                Ask a question
                                                                + +
                                                                + askRaw() + +  : mixed +
                                                                +
                                                                Ask a question
                                                                + +
                                                                + autoComplete() + +  : mixed +
                                                                +
                                                                Ask a question with auto completion
                                                                + +
                                                                + choice() + +  : mixed +
                                                                +
                                                                Ask a question with possible answers
                                                                + +
                                                                + comment() + +  : mixed +
                                                                +
                                                                Output some data as a comment
                                                                + +
                                                                + complete() + +  : void +
                                                                +
                                                                Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                + +
                                                                + confirm() + +  : mixed +
                                                                +
                                                                Prompt user for confirmation
                                                                + +
                                                                + error() + +  : mixed +
                                                                +
                                                                Output some data as a error
                                                                + +
                                                                + getAliases() + +  : array<string|int, mixed> +
                                                                +
                                                                Returns the aliases for the command.
                                                                + +
                                                                + getApplication() + +  : Application|null +
                                                                +
                                                                Gets the application instance for this command.
                                                                + +
                                                                + getDefaultDescription() + +  : string|null +
                                                                + +
                                                                + getDefaultName() + +  : string|null +
                                                                + +
                                                                + getDefinition() + +  : InputDefinition +
                                                                +
                                                                Gets the InputDefinition attached to this Command.
                                                                + +
                                                                + getDescription() + +  : string +
                                                                +
                                                                Returns the description for the command.
                                                                + +
                                                                + getHelp() + +  : string +
                                                                +
                                                                Returns the help for the command.
                                                                + +
                                                                + getHelper() + +  : mixed +
                                                                +
                                                                Gets a helper instance by name.
                                                                + +
                                                                + getHelperSet() + +  : HelperSet|null +
                                                                +
                                                                Gets the helper set.
                                                                + +
                                                                + getName() + +  : string|null +
                                                                +
                                                                Returns the command name.
                                                                + +
                                                                + getNativeDefinition() + +  : InputDefinition +
                                                                +
                                                                Gets the InputDefinition to be used to create representations of this Command.
                                                                + +
                                                                + getProcessedHelp() + +  : string +
                                                                +
                                                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                + +
                                                                + getSynopsis() + +  : string +
                                                                +
                                                                Returns the synopsis for the command.
                                                                + +
                                                                + getUsages() + +  : array<string|int, mixed> +
                                                                +
                                                                Returns alternative usages of the command.
                                                                + +
                                                                + ignoreValidationErrors() + +  : mixed +
                                                                +
                                                                Ignores validation errors.
                                                                + +
                                                                + info() + +  : mixed +
                                                                +
                                                                Output some data as a info
                                                                + +
                                                                + input() + +  : mixed +
                                                                +
                                                                Get an argument or return the input object
                                                                + +
                                                                + isEnabled() + +  : bool +
                                                                +
                                                                Checks whether the command is enabled or not in the current environment.
                                                                + +
                                                                + isHidden() + +  : bool +
                                                                + +
                                                                + link() + +  : mixed +
                                                                +
                                                                Output some data as a link
                                                                + +
                                                                + multiChoice() + +  : mixed +
                                                                +
                                                                Ask a question with possible answers + multiple choice
                                                                + +
                                                                + option() + +  : mixed +
                                                                +
                                                                Get an input option
                                                                + +
                                                                + options() + +  : mixed +
                                                                +
                                                                Get all input options
                                                                + +
                                                                + output() + +  : mixed +
                                                                +
                                                                Output data or return the output object
                                                                + +
                                                                + question() + +  : mixed +
                                                                +
                                                                Output some data as a question
                                                                + +
                                                                + run() + +  : int +
                                                                +
                                                                Runs the command.
                                                                + +
                                                                + runProcess() + +  : mixed +
                                                                +
                                                                Run a new cli process
                                                                + +
                                                                + secret() + +  : mixed +
                                                                +
                                                                Prompt user for input but hide keystrokes
                                                                + +
                                                                + setAliases() + +  : $this +
                                                                +
                                                                Sets the aliases for the command.
                                                                + +
                                                                + setApplication() + +  : mixed +
                                                                + +
                                                                + setArgument() + +  : mixed +
                                                                +
                                                                Add a new argument
                                                                + +
                                                                + setCode() + +  : $this +
                                                                +
                                                                Sets the code to execute when running this command.
                                                                + +
                                                                + setDefinition() + +  : $this +
                                                                +
                                                                Sets an array of argument and option instances.
                                                                + +
                                                                + setDescription() + +  : $this +
                                                                +
                                                                Sets the description for the command.
                                                                + +
                                                                + setHelp() + +  : $this +
                                                                +
                                                                Sets the help for the command.
                                                                + +
                                                                + setHelperSet() + +  : mixed +
                                                                + +
                                                                + setHidden() + +  : $this +
                                                                + +
                                                                + setName() + +  : $this +
                                                                +
                                                                Sets the name of the command.
                                                                + +
                                                                + setOption() + +  : mixed +
                                                                +
                                                                Add a new option
                                                                + +
                                                                + setProcessTitle() + +  : $this +
                                                                +
                                                                Sets the process title of the command.
                                                                + +
                                                                + write() + +  : mixed +
                                                                +
                                                                Output some data
                                                                + +
                                                                + writeln() + +  : mixed +
                                                                +
                                                                Output some data
                                                                + +
                                                                + config() + +  : mixed +
                                                                + +
                                                                + configure() + +  : mixed +
                                                                +
                                                                Configures the current command.
                                                                + +
                                                                + execute() + +  : int +
                                                                +
                                                                Executes the current command.
                                                                + +
                                                                + handle() + +  : int +
                                                                +
                                                                Executes the current command.
                                                                + +
                                                                + initialize() + +  : mixed +
                                                                +
                                                                Initializes the command after the input has been bound and before the input +is validated.
                                                                + +
                                                                + interact() + +  : mixed +
                                                                +
                                                                Interacts with the user.
                                                                + +
                                                                + validateName() + +  : mixed +
                                                                +
                                                                Validates a command name.
                                                                + +
                                                                + + + + +
                                                                +

                                                                + Constants + + +

                                                                +
                                                                +

                                                                + FAILURE + + +

                                                                + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                +
                                                                +

                                                                + INVALID + + +

                                                                + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                +
                                                                +

                                                                + SUCCESS + + +

                                                                + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                +
                                                                + + +
                                                                +

                                                                + Properties + + +

                                                                +
                                                                +

                                                                + $description + + + + +

                                                                + + +

                                                                Description for command

                                                                + + + + public + mixed + $description + + + + + + + + +
                                                                +
                                                                +

                                                                + $help + + + + +

                                                                + + +

                                                                Help for command

                                                                + + + + public + mixed + $help + + + + + + + + +
                                                                +
                                                                +

                                                                + $defaultDescription + + + + +

                                                                + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                The default command description

                                                                +
                                                                + + + + + +
                                                                +
                                                                +

                                                                + $defaultName + + + + +

                                                                + + + + + + protected + static string|null + $defaultName + + + +

                                                                The default command name

                                                                +
                                                                + + + + + +
                                                                +
                                                                +

                                                                + $input + + + + +

                                                                + + +

                                                                The input object

                                                                + + + + protected + InputInterface + $input + + + + + + + + +
                                                                +
                                                                +

                                                                + $output + + + + +

                                                                + + +

                                                                The output object

                                                                + + + + protected + OutputInterface + $output + + + + + + + + +
                                                                +
                                                                +

                                                                + $aliases + + + + +

                                                                + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                +
                                                                +

                                                                + $application + + + + +

                                                                + + + + + + private + mixed + $application + + + + + + + + +
                                                                +
                                                                +

                                                                + $code + + + + +

                                                                + + + + + + private + mixed + $code + + + + + + + + +
                                                                +
                                                                +

                                                                + $definition + + + + +

                                                                + + + + + + private + mixed + $definition + + + + + + + + +
                                                                +
                                                                +

                                                                + $fullDefinition + + + + +

                                                                + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                +
                                                                +

                                                                + $helperSet + + + + +

                                                                + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                +
                                                                +

                                                                + $hidden + + + + +

                                                                + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                +
                                                                +

                                                                + $ignoreValidationErrors + + + + +

                                                                + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                +
                                                                +

                                                                + $name + + + + +

                                                                + + +

                                                                The name of command to run in console

                                                                + + + + private + mixed + $name + + + + + + + + +
                                                                +
                                                                +

                                                                + $processTitle + + + + +

                                                                + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                +
                                                                +

                                                                + $synopsis + + + + +

                                                                + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                +
                                                                +

                                                                + $usages + + + + +

                                                                + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                +
                                                                + +
                                                                +

                                                                + Methods + + +

                                                                +
                                                                +

                                                                + __construct() + + +

                                                                + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string|null + = null
                                                                +
                                                                +

                                                                The name of the command; passing null means it must be set in configure()

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + LogicException + +

                                                                When the command name is empty

                                                                +
                                                                + +
                                                                +
                                                                + + + + +
                                                                +
                                                                +

                                                                + addArgument() + + +

                                                                + + +

                                                                Adds an argument.

                                                                + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $mode + : int|null + = null
                                                                +
                                                                +

                                                                The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                +
                                                                + +
                                                                +
                                                                + $description + : string + = ''
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                +

                                                                The default value (for InputArgument::OPTIONAL mode only)

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + +

                                                                When argument mode is not valid

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + addOption() + + +

                                                                + + +

                                                                Adds an option.

                                                                + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                +
                                                                +

                                                                The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                +
                                                                + +
                                                                +
                                                                + $mode + : int|null + = null
                                                                +
                                                                +

                                                                The option mode: One of the InputOption::VALUE_* constants

                                                                +
                                                                + +
                                                                +
                                                                + $description + : string + = ''
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                +

                                                                The default value (must be null for InputOption::VALUE_NONE)

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + +

                                                                If option mode is invalid or incompatible

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + addUsage() + + +

                                                                + + +

                                                                Add a command usage example, it'll be prefixed with the command name.

                                                                + + + public + addUsage(string $usage) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $usage + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + argument() + + +

                                                                + + +

                                                                Returns the argument value for a given argument name.

                                                                + + + public + argument(string $name) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + arguments() + + +

                                                                + + +

                                                                Returns all the given arguments merged with the default values.

                                                                + + + public + arguments() : mixed + +
                                                                +
                                                                + + + + + + + + +
                                                                +
                                                                +

                                                                + ask() + + +

                                                                + + +

                                                                Ask a question

                                                                + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + askMultiline() + + +

                                                                + + +

                                                                Ask a question

                                                                + + + public + askMultiline(string $question) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + askRaw() + + +

                                                                + + +

                                                                Ask a question

                                                                + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + autoComplete() + + +

                                                                + + +

                                                                Ask a question with auto completion

                                                                + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $potentialAnswers + : array<string|int, mixed> +
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + choice() + + +

                                                                + + +

                                                                Ask a question with possible answers

                                                                + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $choices + : array<string|int, mixed> +
                                                                +
                                                                + +
                                                                +
                                                                + $errorMessage + : string + = 'Invalid choice'
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + comment() + + +

                                                                + + +

                                                                Output some data as a comment

                                                                + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $messages + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                + +
                                                                +

                                                                + confirm() + + +

                                                                + + +

                                                                Prompt user for confirmation

                                                                + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $param + : mixed + = false
                                                                +
                                                                + +
                                                                +
                                                                + $regex + : mixed + = '/^y/i'
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + error() + + +

                                                                + + +

                                                                Output some data as a error

                                                                + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $messages + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + getAliases() + + +

                                                                + + +

                                                                Returns the aliases for the command.

                                                                + + + public + getAliases() : array<string|int, mixed> + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + array<string|int, mixed> +
                                                                + +
                                                                +
                                                                +

                                                                + getApplication() + + +

                                                                + + +

                                                                Gets the application instance for this command.

                                                                + + + public + getApplication() : Application|null + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + Application|null +
                                                                + +
                                                                +
                                                                +

                                                                + getDefaultDescription() + + +

                                                                + + + + + public + static getDefaultDescription() : string|null + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + string|null +
                                                                + +
                                                                +
                                                                +

                                                                + getDefaultName() + + +

                                                                + + + + + public + static getDefaultName() : string|null + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + string|null +
                                                                + +
                                                                +
                                                                +

                                                                + getDefinition() + + +

                                                                + + +

                                                                Gets the InputDefinition attached to this Command.

                                                                + + + public + getDefinition() : InputDefinition + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + InputDefinition +
                                                                + +
                                                                +
                                                                +

                                                                + getDescription() + + +

                                                                + + +

                                                                Returns the description for the command.

                                                                + + + public + getDescription() : string + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + string +
                                                                + +
                                                                +
                                                                +

                                                                + getHelp() + + +

                                                                + + +

                                                                Returns the help for the command.

                                                                + + + public + getHelp() : string + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + string +
                                                                + +
                                                                +
                                                                +

                                                                + getHelper() + + +

                                                                + + +

                                                                Gets a helper instance by name.

                                                                + + + public + getHelper(string $name) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + LogicException + +

                                                                if no HelperSet is defined

                                                                +
                                                                + +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + +

                                                                if the helper is not defined

                                                                +
                                                                + +
                                                                +
                                                                + + + + +
                                                                +
                                                                +

                                                                + getHelperSet() + + +

                                                                + + +

                                                                Gets the helper set.

                                                                + + + public + getHelperSet() : HelperSet|null + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + HelperSet|null +
                                                                + +
                                                                +
                                                                +

                                                                + getName() + + +

                                                                + + +

                                                                Returns the command name.

                                                                + + + public + getName() : string|null + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + string|null +
                                                                + +
                                                                +
                                                                +

                                                                + getNativeDefinition() + + +

                                                                + + +

                                                                Gets the InputDefinition to be used to create representations of this Command.

                                                                + + + public + getNativeDefinition() : InputDefinition + +
                                                                +
                                                                + +

                                                                Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                +

                                                                This method is not part of public API and should not be used directly.

                                                                +
                                                                + + + + + + +
                                                                +
                                                                Return values
                                                                + InputDefinition +
                                                                + +
                                                                +
                                                                +

                                                                + getProcessedHelp() + + +

                                                                + + +

                                                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                + + + public + getProcessedHelp() : string + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + string +
                                                                + +
                                                                +
                                                                +

                                                                + getSynopsis() + + +

                                                                + + +

                                                                Returns the synopsis for the command.

                                                                + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $short + : bool + = false
                                                                +
                                                                +

                                                                Whether to show the short version of the synopsis (with options folded) or not

                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + string +
                                                                + +
                                                                +
                                                                +

                                                                + getUsages() + + +

                                                                + + +

                                                                Returns alternative usages of the command.

                                                                + + + public + getUsages() : array<string|int, mixed> + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + array<string|int, mixed> +
                                                                + +
                                                                +
                                                                +

                                                                + ignoreValidationErrors() + + +

                                                                + + +

                                                                Ignores validation errors.

                                                                + + + public + ignoreValidationErrors() : mixed + +
                                                                +
                                                                + +

                                                                This is mainly useful for the help command.

                                                                +
                                                                + + + + + + + +
                                                                +
                                                                +

                                                                + info() + + +

                                                                + + +

                                                                Output some data as a info

                                                                + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $messages + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + input() + + +

                                                                + + +

                                                                Get an argument or return the input object

                                                                + + + public + input([string $data = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $data + : string + = null
                                                                +
                                                                +

                                                                The argument to return

                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + isEnabled() + + +

                                                                + + +

                                                                Checks whether the command is enabled or not in the current environment.

                                                                + + + public + isEnabled() : bool + +
                                                                +
                                                                + +

                                                                Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                +
                                                                + + + + + + +
                                                                +
                                                                Return values
                                                                + bool +
                                                                + +
                                                                +
                                                                +

                                                                + isHidden() + + +

                                                                + + + + + public + isHidden() : bool + +
                                                                +
                                                                + + + + + + + +
                                                                +
                                                                Return values
                                                                + bool + — +

                                                                whether the command should be publicly shown or not

                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                + + + +

                                                                Output some data as a link

                                                                + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $link + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $display + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + multiChoice() + + +

                                                                + + +

                                                                Ask a question with possible answers + multiple choice

                                                                + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $choices + : array<string|int, mixed> +
                                                                +
                                                                + +
                                                                +
                                                                + $errorMessage + : string + = 'Invalid choice'
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + option() + + +

                                                                + + +

                                                                Get an input option

                                                                + + + public + option(string $name) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + options() + + +

                                                                + + +

                                                                Get all input options

                                                                + + + public + options(string $name) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + output() + + +

                                                                + + +

                                                                Output data or return the output object

                                                                + + + public + output([string $data = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $data + : string + = null
                                                                +
                                                                +

                                                                The argument to return

                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + question() + + +

                                                                + + +

                                                                Output some data as a question

                                                                + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $messages + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + run() + + +

                                                                + + +

                                                                Runs the command.

                                                                + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                +
                                                                + +

                                                                The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $input + : InputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + $output + : OutputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + Exception + +

                                                                When binding input fails. Bypass this by calling .

                                                                +
                                                                + +
                                                                +
                                                                + see +
                                                                +
                                                                + setCode() + + +
                                                                +
                                                                + see +
                                                                +
                                                                + execute() + + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + int + — +

                                                                The command exit code

                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +

                                                                + runProcess() + + +

                                                                + + +

                                                                Run a new cli process

                                                                + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $process + : array<string|int, mixed> +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + secret() + + +

                                                                + + +

                                                                Prompt user for input but hide keystrokes

                                                                + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $question + : string +
                                                                +
                                                                + +
                                                                +
                                                                + $useFallback + : bool + = false
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + setAliases() + + +

                                                                + + +

                                                                Sets the aliases for the command.

                                                                + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $aliases + : array<string|int, string> +
                                                                +
                                                                +

                                                                An array of aliases for the command

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + +

                                                                When an alias is invalid

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setApplication() + + +

                                                                + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $application + : Application|null + = null
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + setArgument() + + +

                                                                + + +

                                                                Add a new argument

                                                                + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $mode + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + $description + : mixed + = ''
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + setCode() + + +

                                                                + + +

                                                                Sets the code to execute when running this command.

                                                                + + + public + setCode(callable $code) : $this + +
                                                                +
                                                                + +

                                                                If this method is used, it overrides the code defined +in the execute() method.

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $code + : callable +
                                                                +
                                                                +

                                                                A callable(InputInterface $input, OutputInterface $output)

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + + +
                                                                +
                                                                + see +
                                                                +
                                                                + execute() + + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setDefinition() + + +

                                                                + + +

                                                                Sets an array of argument and option instances.

                                                                + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $definition + : array<string|int, mixed>|InputDefinition +
                                                                +
                                                                +

                                                                An array of argument and option instances or a definition instance

                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setDescription() + + +

                                                                + + +

                                                                Sets the description for the command.

                                                                + + + public + setDescription(string $description) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $description + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setHelp() + + +

                                                                + + +

                                                                Sets the help for the command.

                                                                + + + public + setHelp(string $help) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $help + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setHelperSet() + + +

                                                                + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $helperSet + : HelperSet +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + setHidden() + + +

                                                                + + + + + public + setHidden(bool $hidden) : $this + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $hidden + : bool +
                                                                +
                                                                +

                                                                Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + final +
                                                                +
                                                                + +

                                                                since Symfony 5.1

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setName() + + +

                                                                + + +

                                                                Sets the name of the command.

                                                                + + + public + setName(string $name) : $this + +
                                                                +
                                                                + +

                                                                This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                +
                                                                $command->setName('foo:bar');
                                                                +
                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + +

                                                                When the name is invalid

                                                                +
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + setOption() + + +

                                                                + + +

                                                                Add a new option

                                                                + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $shortcut + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + $mode + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + $description + : mixed + = ''
                                                                +
                                                                + +
                                                                +
                                                                + $default + : mixed + = null
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + setProcessTitle() + + +

                                                                + + +

                                                                Sets the process title of the command.

                                                                + + + public + setProcessTitle(string $title) : $this + +
                                                                +
                                                                + +

                                                                This feature should be used only when creating a long process command, +like a daemon.

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $title + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + $this +
                                                                + +
                                                                +
                                                                +

                                                                + write() + + +

                                                                + + +

                                                                Output some data

                                                                + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $messages + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + writeln() + + +

                                                                + + +

                                                                Output some data

                                                                + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                +
                                                                + + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $messages + : mixed +
                                                                +
                                                                + +
                                                                +
                                                                + $options + : mixed + = 0
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + config() + + +

                                                                + + + + + protected + config() : mixed + +
                                                                +
                                                                + + + + + + + + +
                                                                +
                                                                +

                                                                + configure() + + +

                                                                + + +

                                                                Configures the current command.

                                                                + + + protected + configure() : mixed + +
                                                                +
                                                                + + + + + + + + +
                                                                +
                                                                +

                                                                + execute() + + +

                                                                + + +

                                                                Executes the current command.

                                                                + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                                +
                                                                + +

                                                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $input + : InputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + $output + : OutputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + +
                                                                +
                                                                Return values
                                                                + int + — +

                                                                0 if everything went fine, or an exit code

                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +

                                                                + handle() + + +

                                                                + + +

                                                                Executes the current command.

                                                                + + + protected + handle() : int + +
                                                                +
                                                                + +

                                                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                +
                                                                + + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + LogicException + +

                                                                When this abstract method is not implemented

                                                                +
                                                                + +
                                                                +
                                                                + see +
                                                                +
                                                                + setCode() + + +
                                                                +
                                                                + + + +
                                                                +
                                                                Return values
                                                                + int + — +

                                                                0 if everything went fine, or an exit code

                                                                +
                                                                + +
                                                                + +
                                                                +
                                                                +

                                                                + initialize() + + +

                                                                + + +

                                                                Initializes the command after the input has been bound and before the input +is validated.

                                                                + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                +
                                                                + +

                                                                This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $input + : InputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + $output + : OutputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + see +
                                                                +
                                                                + InputInterface::bind() + + +
                                                                +
                                                                + see +
                                                                +
                                                                + InputInterface::validate() + + +
                                                                +
                                                                + + + + +
                                                                +
                                                                +

                                                                + interact() + + +

                                                                + + +

                                                                Interacts with the user.

                                                                + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                +
                                                                + +

                                                                This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $input + : InputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + $output + : OutputInterface +
                                                                +
                                                                + +
                                                                +
                                                                + + + + + + +
                                                                +
                                                                +

                                                                + validateName() + + +

                                                                + + +

                                                                Validates a command name.

                                                                + + + private + validateName(string $name) : mixed + +
                                                                +
                                                                + +

                                                                It must be non-empty and parts can optionally be separated by ":".

                                                                +
                                                                + +
                                                                Parameters
                                                                +
                                                                +
                                                                + $name + : string +
                                                                +
                                                                + +
                                                                +
                                                                + + +
                                                                + Tags + + +
                                                                +
                                                                +
                                                                + throws +
                                                                +
                                                                + InvalidArgumentException + +

                                                                When the name is invalid

                                                                +
                                                                + +
                                                                +
                                                                + + + + +
                                                                +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                
                                                                +        
                                                                + +
                                                                +
                                                                + + + +
                                                                +
                                                                +
                                                                + +
                                                                + On this page + + +
                                                                + +
                                                                +
                                                                +
                                                                +
                                                                +
                                                                +

                                                                Search results

                                                                + +
                                                                +
                                                                +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  + + +
                                                                  + + + + + + + + diff --git a/src/public/api/classes/Aloe-Console.html b/src/public/api/classes/Aloe-Console.html new file mode 100644 index 00000000..1405b898 --- /dev/null +++ b/src/public/api/classes/Aloe-Console.html @@ -0,0 +1,638 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                  +

                                                                  Leaf PHP

                                                                  + + + + + +
                                                                  + +
                                                                  +
                                                                  + + + + +
                                                                  +
                                                                  + + +
                                                                  +

                                                                  + Console + + +
                                                                  + in package + +
                                                                  + + +

                                                                  + +
                                                                  + + +
                                                                  + + + +

                                                                  Aloe CLI +----- +Smart and interactive console/generator +for your leaf MVC applications

                                                                  + + + + +
                                                                  + Tags + + +
                                                                  +
                                                                  +
                                                                  + author +
                                                                  +
                                                                  + +

                                                                  Michael Darko mychi.darko@gmail.com

                                                                  +
                                                                  + +
                                                                  +
                                                                  + copyright +
                                                                  +
                                                                  + +

                                                                  2019-2022 Michael Darko

                                                                  +
                                                                  + +
                                                                  +
                                                                  + link +
                                                                  +
                                                                  + https://leafphp.dev/aloe-cli/ + +
                                                                  +
                                                                  + license +
                                                                  +
                                                                  + +

                                                                  MIT

                                                                  +
                                                                  + +
                                                                  +
                                                                  + + + + + +

                                                                  + Table of Contents + + +

                                                                  + + + + + + + + + +

                                                                  + Properties + + +

                                                                  +
                                                                  +
                                                                  + $app + +  : mixed +
                                                                  +
                                                                  Instance of symfony console app
                                                                  + +
                                                                  + +

                                                                  + Methods + + +

                                                                  +
                                                                  +
                                                                  + __construct() + +  : mixed +
                                                                  + +
                                                                  + register() + +  : void +
                                                                  +
                                                                  Register a custom command
                                                                  + +
                                                                  + run() + +  : mixed +
                                                                  +
                                                                  Run the console app
                                                                  + +
                                                                  + + + + + + +
                                                                  +

                                                                  + Properties + + +

                                                                  +
                                                                  +

                                                                  + $app + + + + +

                                                                  + + +

                                                                  Instance of symfony console app

                                                                  + + + + private + static mixed + $app + + + + + + + + +
                                                                  +
                                                                  + +
                                                                  +

                                                                  + Methods + + +

                                                                  +
                                                                  +

                                                                  + __construct() + + +

                                                                  + + + + + public + __construct([mixed $version = 'v1.0' ]) : mixed + +
                                                                  +
                                                                  + + +
                                                                  Parameters
                                                                  +
                                                                  +
                                                                  + $version + : mixed + = 'v1.0'
                                                                  +
                                                                  + +
                                                                  +
                                                                  + + + + + + +
                                                                  +
                                                                  +

                                                                  + register() + + +

                                                                  + + +

                                                                  Register a custom command

                                                                  + + + public + static register(array<string|int, mixed>|Command $command) : void + +
                                                                  +
                                                                  + + +
                                                                  Parameters
                                                                  +
                                                                  +
                                                                  + $command + : array<string|int, mixed>|Command +
                                                                  +
                                                                  +

                                                                  : Command(s) to run

                                                                  +
                                                                  + +
                                                                  +
                                                                  + + + + + + +
                                                                  +
                                                                  +

                                                                  + run() + + +

                                                                  + + +

                                                                  Run the console app

                                                                  + + + public + static run() : mixed + +
                                                                  +
                                                                  + + + + + + + + +
                                                                  +
                                                                  + +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  
                                                                  +        
                                                                  + +
                                                                  +
                                                                  + + + +
                                                                  +
                                                                  +
                                                                  + +
                                                                  + On this page + + +
                                                                  + +
                                                                  +
                                                                  +
                                                                  +
                                                                  +
                                                                  +

                                                                  Search results

                                                                  + +
                                                                  +
                                                                  +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    + + +
                                                                    + + + + + + + + diff --git a/src/public/api/classes/Aloe-Core.html b/src/public/api/classes/Aloe-Core.html new file mode 100644 index 00000000..7901b0e9 --- /dev/null +++ b/src/public/api/classes/Aloe-Core.html @@ -0,0 +1,891 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                    +

                                                                    Leaf PHP

                                                                    + + + + + +
                                                                    + +
                                                                    +
                                                                    + + + + +
                                                                    +
                                                                    + + +
                                                                    +

                                                                    + Core + + +
                                                                    + in package + +
                                                                    + + +

                                                                    + +
                                                                    + + +
                                                                    + + + + + + + + + + + + +

                                                                    + Table of Contents + + +

                                                                    + + + + + + + + + + +

                                                                    + Methods + + +

                                                                    +
                                                                    +
                                                                    + commandExists() + +  : bool +
                                                                    +
                                                                    Check if a system command exists
                                                                    + +
                                                                    + findComposer() + +  : string +
                                                                    +
                                                                    Get the composer command for the environment.
                                                                    + +
                                                                    + findGit() + +  : string +
                                                                    +
                                                                    Get the git command for the environment.
                                                                    + +
                                                                    + findLeaf() + +  : string +
                                                                    +
                                                                    Get the leaf CLI bin.
                                                                    + +
                                                                    + findNodeJS() + +  : string +
                                                                    +
                                                                    Get the node command for the environment.
                                                                    + +
                                                                    + findNpm() + +  : string +
                                                                    +
                                                                    Get the node command for the environment.
                                                                    + +
                                                                    + findWatcher() + +  : string +
                                                                    +
                                                                    Get the leaf watcher bin.
                                                                    + +
                                                                    + isBladeProject() + +  : mixed +
                                                                    +
                                                                    Check if a project is a blade project
                                                                    + +
                                                                    + isMVCProject() + +  : mixed +
                                                                    +
                                                                    Check if a project is an MVC project
                                                                    + +
                                                                    + run() + +  : mixed +
                                                                    +
                                                                    Run a shell process with the output.
                                                                    + +
                                                                    + + + + + + + +
                                                                    +

                                                                    + Methods + + +

                                                                    +
                                                                    +

                                                                    + commandExists() + + +

                                                                    + + +

                                                                    Check if a system command exists

                                                                    + + + public + static commandExists(string $cmd) : bool + +
                                                                    +
                                                                    + + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $cmd + : string +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + + +
                                                                    +
                                                                    Return values
                                                                    + bool +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + findComposer() + + +

                                                                    + + +

                                                                    Get the composer command for the environment.

                                                                    + + + public + static findComposer() : string + +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    Return values
                                                                    + string +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + findGit() + + +

                                                                    + + +

                                                                    Get the git command for the environment.

                                                                    + + + public + static findGit() : string + +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    Return values
                                                                    + string +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + findLeaf() + + +

                                                                    + + +

                                                                    Get the leaf CLI bin.

                                                                    + + + public + static findLeaf() : string + +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    Return values
                                                                    + string +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + findNodeJS() + + +

                                                                    + + +

                                                                    Get the node command for the environment.

                                                                    + + + public + static findNodeJS() : string + +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    Return values
                                                                    + string +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + findNpm() + + +

                                                                    + + +

                                                                    Get the node command for the environment.

                                                                    + + + public + static findNpm() : string + +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    Return values
                                                                    + string +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + findWatcher() + + +

                                                                    + + +

                                                                    Get the leaf watcher bin.

                                                                    + + + public + static findWatcher() : string + +
                                                                    +
                                                                    + + + + + + + +
                                                                    +
                                                                    Return values
                                                                    + string +
                                                                    + +
                                                                    +
                                                                    +

                                                                    + isBladeProject() + + +

                                                                    + + +

                                                                    Check if a project is a blade project

                                                                    + + + public + static isBladeProject([mixed $directory = null ]) : mixed + +
                                                                    +
                                                                    + + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $directory + : mixed + = null
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + + + +
                                                                    +
                                                                    +

                                                                    + isMVCProject() + + +

                                                                    + + +

                                                                    Check if a project is an MVC project

                                                                    + + + public + static isMVCProject([mixed $directory = null ]) : mixed + +
                                                                    +
                                                                    + + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $directory + : mixed + = null
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + + + +
                                                                    +
                                                                    +

                                                                    + run() + + +

                                                                    + + +

                                                                    Run a shell process with the output.

                                                                    + + + public + static run(string $command, mixed $output[, string $cwd = null ]) : mixed + +
                                                                    +
                                                                    + + +
                                                                    Parameters
                                                                    +
                                                                    +
                                                                    + $command + : string +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $output + : mixed +
                                                                    +
                                                                    + +
                                                                    +
                                                                    + $cwd + : string + = null
                                                                    +
                                                                    + +
                                                                    +
                                                                    + + + + + + +
                                                                    +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    
                                                                    +        
                                                                    + +
                                                                    +
                                                                    + + + +
                                                                    +
                                                                    +
                                                                    + +
                                                                    + On this page + + +
                                                                    + +
                                                                    +
                                                                    +
                                                                    +
                                                                    +
                                                                    +

                                                                    Search results

                                                                    + +
                                                                    +
                                                                    +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      + + +
                                                                      + + + + + + + + diff --git a/src/public/api/classes/Aloe-Installer.html b/src/public/api/classes/Aloe-Installer.html new file mode 100644 index 00000000..fba68549 --- /dev/null +++ b/src/public/api/classes/Aloe-Installer.html @@ -0,0 +1,570 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                      +

                                                                      Leaf PHP

                                                                      + + + + + +
                                                                      + +
                                                                      +
                                                                      + + + + +
                                                                      +
                                                                      + + +
                                                                      +

                                                                      + Installer + + +
                                                                      + in package + +
                                                                      + + +

                                                                      + +
                                                                      + + +
                                                                      + + + +

                                                                      Aloe Installer +----------------- +Quickly install directories and files in +a leaf workspace

                                                                      + + + + +
                                                                      + Tags + + +
                                                                      +
                                                                      +
                                                                      + since +
                                                                      +
                                                                      + 1.1.0-beta + + +
                                                                      +
                                                                      + + + + + +

                                                                      + Table of Contents + + +

                                                                      + + + + + + + + + + +

                                                                      + Methods + + +

                                                                      +
                                                                      +
                                                                      + installPackages() + +  : mixed +
                                                                      +
                                                                      Install package from composer
                                                                      + +
                                                                      + installRoutes() + +  : mixed +
                                                                      +
                                                                      Install routes from routes folder into leaf workspace
                                                                      + +
                                                                      + magicCopy() + +  : mixed +
                                                                      +
                                                                      Auto-magically copy all files and folders from +specified folder into Leaf workspace
                                                                      + +
                                                                      + + + + + + + +
                                                                      +

                                                                      + Methods + + +

                                                                      +
                                                                      +

                                                                      + installPackages() + + +

                                                                      + + +

                                                                      Install package from composer

                                                                      + + + public + static installPackages(string $packages) : mixed + +
                                                                      +
                                                                      + + +
                                                                      Parameters
                                                                      +
                                                                      +
                                                                      + $packages + : string +
                                                                      +
                                                                      +

                                                                      The packages to install

                                                                      +
                                                                      + +
                                                                      +
                                                                      + + + + + + +
                                                                      +
                                                                      +

                                                                      + installRoutes() + + +

                                                                      + + +

                                                                      Install routes from routes folder into leaf workspace

                                                                      + + + public + static installRoutes(mixed $routesDir[, mixed $routeFile = 'index.php' ]) : mixed + +
                                                                      +
                                                                      + + +
                                                                      Parameters
                                                                      +
                                                                      +
                                                                      + $routesDir + : mixed +
                                                                      +
                                                                      + +
                                                                      +
                                                                      + $routeFile + : mixed + = 'index.php'
                                                                      +
                                                                      + +
                                                                      +
                                                                      + + + + + + +
                                                                      +
                                                                      +

                                                                      + magicCopy() + + +

                                                                      + + +

                                                                      Auto-magically copy all files and folders from +specified folder into Leaf workspace

                                                                      + + + public + static magicCopy(string $installablesDir) : mixed + +
                                                                      +
                                                                      + + +
                                                                      Parameters
                                                                      +
                                                                      +
                                                                      + $installablesDir + : string +
                                                                      +
                                                                      +

                                                                      The folder holding items to install

                                                                      +
                                                                      + +
                                                                      +
                                                                      + + + + + + +
                                                                      +
                                                                      + +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      
                                                                      +        
                                                                      + +
                                                                      +
                                                                      + + + +
                                                                      +
                                                                      +
                                                                      + +
                                                                      + On this page + + +
                                                                      + +
                                                                      +
                                                                      +
                                                                      +
                                                                      +
                                                                      +

                                                                      Search results

                                                                      + +
                                                                      +
                                                                      +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + +
                                                                        + + + + + + + + diff --git a/src/public/api/classes/Aloe-Package.html b/src/public/api/classes/Aloe-Package.html new file mode 100644 index 00000000..c796ac7f --- /dev/null +++ b/src/public/api/classes/Aloe-Package.html @@ -0,0 +1,612 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                        +

                                                                        Leaf PHP

                                                                        + + + + + +
                                                                        + +
                                                                        +
                                                                        + + + + +
                                                                        +
                                                                        + + +
                                                                        +

                                                                        + Package + + +
                                                                        + in package + +
                                                                        + + +

                                                                        + +
                                                                        + + +
                                                                        + + + +

                                                                        Package +---- +Meta info on aloe cli

                                                                        + + + + +
                                                                        + Tags + + +
                                                                        +
                                                                        +
                                                                        + since +
                                                                        +
                                                                        + 1.2.4 + + +
                                                                        +
                                                                        + + + + + +

                                                                        + Table of Contents + + +

                                                                        + + + + + + + + + + +

                                                                        + Methods + + +

                                                                        +
                                                                        +
                                                                        + findUpdates() + +  : mixed +
                                                                        +
                                                                        Check if there is an update available
                                                                        + +
                                                                        + info() + +  : mixed +
                                                                        +
                                                                        Check current version
                                                                        + +
                                                                        + ltsInfo() + +  : mixed +
                                                                        +
                                                                        Find latest stable version
                                                                        + +
                                                                        + ltsVersion() + +  : mixed +
                                                                        +
                                                                        Find latest stable version
                                                                        + +
                                                                        + version() + +  : mixed +
                                                                        +
                                                                        Check current version
                                                                        + +
                                                                        + + + + + + + +
                                                                        +

                                                                        + Methods + + +

                                                                        +
                                                                        +

                                                                        + findUpdates() + + +

                                                                        + + +

                                                                        Check if there is an update available

                                                                        + + + public + static findUpdates() : mixed + +
                                                                        +
                                                                        + + + + + + + + +
                                                                        +
                                                                        +

                                                                        + info() + + +

                                                                        + + +

                                                                        Check current version

                                                                        + + + public + static info() : mixed + +
                                                                        +
                                                                        + + + + + + + + +
                                                                        +
                                                                        +

                                                                        + ltsInfo() + + +

                                                                        + + +

                                                                        Find latest stable version

                                                                        + + + public + static ltsInfo() : mixed + +
                                                                        +
                                                                        + + + + + + + + +
                                                                        +
                                                                        +

                                                                        + ltsVersion() + + +

                                                                        + + +

                                                                        Find latest stable version

                                                                        + + + public + static ltsVersion() : mixed + +
                                                                        +
                                                                        + + + + + + + + +
                                                                        +
                                                                        +

                                                                        + version() + + +

                                                                        + + +

                                                                        Check current version

                                                                        + + + public + static version() : mixed + +
                                                                        +
                                                                        + + + + + + + + +
                                                                        +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        
                                                                        +        
                                                                        + +
                                                                        +
                                                                        + + + +
                                                                        +
                                                                        +
                                                                        + +
                                                                        + On this page + + +
                                                                        + +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        +

                                                                        Search results

                                                                        + +
                                                                        +
                                                                        +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + +
                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Alchemy-Commands-EjectCommand.html b/src/public/api/classes/Leaf-Alchemy-Commands-EjectCommand.html new file mode 100644 index 00000000..af767b8a --- /dev/null +++ b/src/public/api/classes/Leaf-Alchemy-Commands-EjectCommand.html @@ -0,0 +1,3559 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                          +

                                                                          Leaf PHP

                                                                          + + + + + +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          + + +
                                                                          +

                                                                          + EjectCommand + + + extends Command + + +
                                                                          + in package + +
                                                                          + + +

                                                                          + +
                                                                          + + +
                                                                          + + + +

                                                                          Base class for all commands.

                                                                          + + + + + + + + + +

                                                                          + Table of Contents + + +

                                                                          + + + + + + + +

                                                                          + Constants + + +

                                                                          +
                                                                          +
                                                                          + FAILURE + +  = 1 +
                                                                          + +
                                                                          + INVALID + +  = 2 +
                                                                          + +
                                                                          + SUCCESS + +  = 0 +
                                                                          + +
                                                                          + + +

                                                                          + Properties + + +

                                                                          +
                                                                          +
                                                                          + $defaultDescription + +  : string|null +
                                                                          + +
                                                                          + $defaultName + +  : string|null +
                                                                          + +
                                                                          + $aliases + +  : mixed +
                                                                          + +
                                                                          + $application + +  : mixed +
                                                                          + +
                                                                          + $code + +  : mixed +
                                                                          + +
                                                                          + $definition + +  : mixed +
                                                                          + +
                                                                          + $description + +  : mixed +
                                                                          + +
                                                                          + $fullDefinition + +  : mixed +
                                                                          + +
                                                                          + $help + +  : mixed +
                                                                          + +
                                                                          + $helperSet + +  : mixed +
                                                                          + +
                                                                          + $hidden + +  : mixed +
                                                                          + +
                                                                          + $ignoreValidationErrors + +  : mixed +
                                                                          + +
                                                                          + $name + +  : mixed +
                                                                          + +
                                                                          + $processTitle + +  : mixed +
                                                                          + +
                                                                          + $synopsis + +  : mixed +
                                                                          + +
                                                                          + $usages + +  : mixed +
                                                                          + +
                                                                          + +

                                                                          + Methods + + +

                                                                          +
                                                                          +
                                                                          + __construct() + +  : mixed +
                                                                          + +
                                                                          + addArgument() + +  : $this +
                                                                          +
                                                                          Adds an argument.
                                                                          + +
                                                                          + addOption() + +  : $this +
                                                                          +
                                                                          Adds an option.
                                                                          + +
                                                                          + addUsage() + +  : $this +
                                                                          +
                                                                          Add a command usage example, it'll be prefixed with the command name.
                                                                          + +
                                                                          + complete() + +  : void +
                                                                          +
                                                                          Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                          + +
                                                                          + getAliases() + +  : array<string|int, mixed> +
                                                                          +
                                                                          Returns the aliases for the command.
                                                                          + +
                                                                          + getApplication() + +  : Application|null +
                                                                          +
                                                                          Gets the application instance for this command.
                                                                          + +
                                                                          + getDefaultDescription() + +  : string|null +
                                                                          + +
                                                                          + getDefaultName() + +  : string|null +
                                                                          + +
                                                                          + getDefinition() + +  : InputDefinition +
                                                                          +
                                                                          Gets the InputDefinition attached to this Command.
                                                                          + +
                                                                          + getDescription() + +  : string +
                                                                          +
                                                                          Returns the description for the command.
                                                                          + +
                                                                          + getHelp() + +  : string +
                                                                          +
                                                                          Returns the help for the command.
                                                                          + +
                                                                          + getHelper() + +  : mixed +
                                                                          +
                                                                          Gets a helper instance by name.
                                                                          + +
                                                                          + getHelperSet() + +  : HelperSet|null +
                                                                          +
                                                                          Gets the helper set.
                                                                          + +
                                                                          + getName() + +  : string|null +
                                                                          +
                                                                          Returns the command name.
                                                                          + +
                                                                          + getNativeDefinition() + +  : InputDefinition +
                                                                          +
                                                                          Gets the InputDefinition to be used to create representations of this Command.
                                                                          + +
                                                                          + getProcessedHelp() + +  : string +
                                                                          +
                                                                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                          + +
                                                                          + getSynopsis() + +  : string +
                                                                          +
                                                                          Returns the synopsis for the command.
                                                                          + +
                                                                          + getUsages() + +  : array<string|int, mixed> +
                                                                          +
                                                                          Returns alternative usages of the command.
                                                                          + +
                                                                          + ignoreValidationErrors() + +  : mixed +
                                                                          +
                                                                          Ignores validation errors.
                                                                          + +
                                                                          + isEnabled() + +  : bool +
                                                                          +
                                                                          Checks whether the command is enabled or not in the current environment.
                                                                          + +
                                                                          + isHidden() + +  : bool +
                                                                          + +
                                                                          + run() + +  : int +
                                                                          +
                                                                          Runs the command.
                                                                          + +
                                                                          + setAliases() + +  : $this +
                                                                          +
                                                                          Sets the aliases for the command.
                                                                          + +
                                                                          + setApplication() + +  : mixed +
                                                                          + +
                                                                          + setCode() + +  : $this +
                                                                          +
                                                                          Sets the code to execute when running this command.
                                                                          + +
                                                                          + setDefinition() + +  : $this +
                                                                          +
                                                                          Sets an array of argument and option instances.
                                                                          + +
                                                                          + setDescription() + +  : $this +
                                                                          +
                                                                          Sets the description for the command.
                                                                          + +
                                                                          + setHelp() + +  : $this +
                                                                          +
                                                                          Sets the help for the command.
                                                                          + +
                                                                          + setHelperSet() + +  : mixed +
                                                                          + +
                                                                          + setHidden() + +  : $this +
                                                                          + +
                                                                          + setName() + +  : $this +
                                                                          +
                                                                          Sets the name of the command.
                                                                          + +
                                                                          + setProcessTitle() + +  : $this +
                                                                          +
                                                                          Sets the process title of the command.
                                                                          + +
                                                                          + configure() + +  : void +
                                                                          +
                                                                          Configure the command options.
                                                                          + +
                                                                          + execute() + +  : int +
                                                                          +
                                                                          Execute the command.
                                                                          + +
                                                                          + initialize() + +  : mixed +
                                                                          +
                                                                          Initializes the command after the input has been bound and before the input +is validated.
                                                                          + +
                                                                          + interact() + +  : mixed +
                                                                          +
                                                                          Interacts with the user.
                                                                          + +
                                                                          + validateName() + +  : mixed +
                                                                          +
                                                                          Validates a command name.
                                                                          + +
                                                                          + + + + +
                                                                          +

                                                                          + Constants + + +

                                                                          +
                                                                          +

                                                                          + FAILURE + + +

                                                                          + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + INVALID + + +

                                                                          + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + SUCCESS + + +

                                                                          + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                          +
                                                                          + + +
                                                                          +

                                                                          + Properties + + +

                                                                          +
                                                                          +

                                                                          + $defaultDescription + + + + +

                                                                          + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                          The default command description

                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          +

                                                                          + $defaultName + + + + +

                                                                          + + + + + + protected + static string|null + $defaultName + + + +

                                                                          The default command name

                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          +

                                                                          + $aliases + + + + +

                                                                          + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $application + + + + +

                                                                          + + + + + + private + mixed + $application + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $code + + + + +

                                                                          + + + + + + private + mixed + $code + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $definition + + + + +

                                                                          + + + + + + private + mixed + $definition + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $description + + + + +

                                                                          + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $fullDefinition + + + + +

                                                                          + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $help + + + + +

                                                                          + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $helperSet + + + + +

                                                                          + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $hidden + + + + +

                                                                          + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $ignoreValidationErrors + + + + +

                                                                          + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $name + + + + +

                                                                          + + + + + + private + mixed + $name + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $processTitle + + + + +

                                                                          + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $synopsis + + + + +

                                                                          + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                          +
                                                                          +

                                                                          + $usages + + + + +

                                                                          + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                          +
                                                                          + +
                                                                          +

                                                                          + Methods + + +

                                                                          +
                                                                          +

                                                                          + __construct() + + +

                                                                          + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $name + : string|null + = null
                                                                          +
                                                                          +

                                                                          The name of the command; passing null means it must be set in configure()

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + LogicException + +

                                                                          When the command name is empty

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          +

                                                                          + addArgument() + + +

                                                                          + + +

                                                                          Adds an argument.

                                                                          + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $name + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $mode + : int|null + = null
                                                                          +
                                                                          +

                                                                          The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $description + : string + = ''
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $default + : mixed + = null
                                                                          +
                                                                          +

                                                                          The default value (for InputArgument::OPTIONAL mode only)

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + +

                                                                          When argument mode is not valid

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + addOption() + + +

                                                                          + + +

                                                                          Adds an option.

                                                                          + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $name + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                          +
                                                                          +

                                                                          The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $mode + : int|null + = null
                                                                          +
                                                                          +

                                                                          The option mode: One of the InputOption::VALUE_* constants

                                                                          +
                                                                          + +
                                                                          +
                                                                          + $description + : string + = ''
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $default + : mixed + = null
                                                                          +
                                                                          +

                                                                          The default value (must be null for InputOption::VALUE_NONE)

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + +

                                                                          If option mode is invalid or incompatible

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + addUsage() + + +

                                                                          + + +

                                                                          Add a command usage example, it'll be prefixed with the command name.

                                                                          + + + public + addUsage(string $usage) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $usage + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          + +
                                                                          +

                                                                          + getAliases() + + +

                                                                          + + +

                                                                          Returns the aliases for the command.

                                                                          + + + public + getAliases() : array<string|int, mixed> + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + array<string|int, mixed> +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getApplication() + + +

                                                                          + + +

                                                                          Gets the application instance for this command.

                                                                          + + + public + getApplication() : Application|null + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + Application|null +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getDefaultDescription() + + +

                                                                          + + + + + public + static getDefaultDescription() : string|null + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string|null +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getDefaultName() + + +

                                                                          + + + + + public + static getDefaultName() : string|null + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string|null +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getDefinition() + + +

                                                                          + + +

                                                                          Gets the InputDefinition attached to this Command.

                                                                          + + + public + getDefinition() : InputDefinition + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + InputDefinition +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getDescription() + + +

                                                                          + + +

                                                                          Returns the description for the command.

                                                                          + + + public + getDescription() : string + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getHelp() + + +

                                                                          + + +

                                                                          Returns the help for the command.

                                                                          + + + public + getHelp() : string + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getHelper() + + +

                                                                          + + +

                                                                          Gets a helper instance by name.

                                                                          + + + public + getHelper(string $name) : mixed + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $name + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + LogicException + +

                                                                          if no HelperSet is defined

                                                                          +
                                                                          + +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + +

                                                                          if the helper is not defined

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          +

                                                                          + getHelperSet() + + +

                                                                          + + +

                                                                          Gets the helper set.

                                                                          + + + public + getHelperSet() : HelperSet|null + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + HelperSet|null +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getName() + + +

                                                                          + + +

                                                                          Returns the command name.

                                                                          + + + public + getName() : string|null + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string|null +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getNativeDefinition() + + +

                                                                          + + +

                                                                          Gets the InputDefinition to be used to create representations of this Command.

                                                                          + + + public + getNativeDefinition() : InputDefinition + +
                                                                          +
                                                                          + +

                                                                          Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                          +

                                                                          This method is not part of public API and should not be used directly.

                                                                          +
                                                                          + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + InputDefinition +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getProcessedHelp() + + +

                                                                          + + +

                                                                          Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                          + + + public + getProcessedHelp() : string + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getSynopsis() + + +

                                                                          + + +

                                                                          Returns the synopsis for the command.

                                                                          + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $short + : bool + = false
                                                                          +
                                                                          +

                                                                          Whether to show the short version of the synopsis (with options folded) or not

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          Return values
                                                                          + string +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + getUsages() + + +

                                                                          + + +

                                                                          Returns alternative usages of the command.

                                                                          + + + public + getUsages() : array<string|int, mixed> + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + array<string|int, mixed> +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + ignoreValidationErrors() + + +

                                                                          + + +

                                                                          Ignores validation errors.

                                                                          + + + public + ignoreValidationErrors() : mixed + +
                                                                          +
                                                                          + +

                                                                          This is mainly useful for the help command.

                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          +

                                                                          + isEnabled() + + +

                                                                          + + +

                                                                          Checks whether the command is enabled or not in the current environment.

                                                                          + + + public + isEnabled() : bool + +
                                                                          +
                                                                          + +

                                                                          Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                          +
                                                                          + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + bool +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + isHidden() + + +

                                                                          + + + + + public + isHidden() : bool + +
                                                                          +
                                                                          + + + + + + + +
                                                                          +
                                                                          Return values
                                                                          + bool + — +

                                                                          whether the command should be publicly shown or not

                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + run() + + +

                                                                          + + +

                                                                          Runs the command.

                                                                          + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                          +
                                                                          + +

                                                                          The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $input + : InputInterface +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $output + : OutputInterface +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + ExceptionInterface + +

                                                                          When input binding fails. Bypass this by calling .

                                                                          +
                                                                          + +
                                                                          +
                                                                          + see +
                                                                          +
                                                                          + setCode() + + +
                                                                          +
                                                                          + see +
                                                                          +
                                                                          + execute() + + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + int + — +

                                                                          The command exit code

                                                                          +
                                                                          + +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setAliases() + + +

                                                                          + + +

                                                                          Sets the aliases for the command.

                                                                          + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $aliases + : array<string|int, string> +
                                                                          +
                                                                          +

                                                                          An array of aliases for the command

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + +

                                                                          When an alias is invalid

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setApplication() + + +

                                                                          + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $application + : Application|null + = null
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + + +
                                                                          +
                                                                          +

                                                                          + setCode() + + +

                                                                          + + +

                                                                          Sets the code to execute when running this command.

                                                                          + + + public + setCode(callable $code) : $this + +
                                                                          +
                                                                          + +

                                                                          If this method is used, it overrides the code defined +in the execute() method.

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $code + : callable +
                                                                          +
                                                                          +

                                                                          A callable(InputInterface $input, OutputInterface $output)

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + + +
                                                                          +
                                                                          + see +
                                                                          +
                                                                          + execute() + + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setDefinition() + + +

                                                                          + + +

                                                                          Sets an array of argument and option instances.

                                                                          + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $definition + : array<string|int, mixed>|InputDefinition +
                                                                          +
                                                                          +

                                                                          An array of argument and option instances or a definition instance

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setDescription() + + +

                                                                          + + +

                                                                          Sets the description for the command.

                                                                          + + + public + setDescription(string $description) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $description + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setHelp() + + +

                                                                          + + +

                                                                          Sets the help for the command.

                                                                          + + + public + setHelp(string $help) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $help + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setHelperSet() + + +

                                                                          + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $helperSet + : HelperSet +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + + +
                                                                          +
                                                                          +

                                                                          + setHidden() + + +

                                                                          + + + + + public + setHidden(bool $hidden) : $this + +
                                                                          +
                                                                          + + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $hidden + : bool +
                                                                          +
                                                                          +

                                                                          Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + final +
                                                                          +
                                                                          + +

                                                                          since Symfony 5.1

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setName() + + +

                                                                          + + +

                                                                          Sets the name of the command.

                                                                          + + + public + setName(string $name) : $this + +
                                                                          +
                                                                          + +

                                                                          This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                          +
                                                                          $command->setName('foo:bar');
                                                                          +
                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $name + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + +

                                                                          When the name is invalid

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + setProcessTitle() + + +

                                                                          + + +

                                                                          Sets the process title of the command.

                                                                          + + + public + setProcessTitle(string $title) : $this + +
                                                                          +
                                                                          + +

                                                                          This feature should be used only when creating a long process command, +like a daemon.

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $title + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + +
                                                                          +
                                                                          Return values
                                                                          + $this +
                                                                          + +
                                                                          +
                                                                          +

                                                                          + configure() + + +

                                                                          + + +

                                                                          Configure the command options.

                                                                          + + + protected + configure() : void + +
                                                                          +
                                                                          + + + + + + + + +
                                                                          + +
                                                                          +

                                                                          + initialize() + + +

                                                                          + + +

                                                                          Initializes the command after the input has been bound and before the input +is validated.

                                                                          + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                          +
                                                                          + +

                                                                          This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $input + : InputInterface +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $output + : OutputInterface +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + see +
                                                                          +
                                                                          + InputInterface::bind() + + +
                                                                          +
                                                                          + see +
                                                                          +
                                                                          + InputInterface::validate() + + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          +

                                                                          + interact() + + +

                                                                          + + +

                                                                          Interacts with the user.

                                                                          + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                          +
                                                                          + +

                                                                          This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $input + : InputInterface +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + $output + : OutputInterface +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + + + +
                                                                          +
                                                                          +

                                                                          + validateName() + + +

                                                                          + + +

                                                                          Validates a command name.

                                                                          + + + private + validateName(string $name) : mixed + +
                                                                          +
                                                                          + +

                                                                          It must be non-empty and parts can optionally be separated by ":".

                                                                          +
                                                                          + +
                                                                          Parameters
                                                                          +
                                                                          +
                                                                          + $name + : string +
                                                                          +
                                                                          + +
                                                                          +
                                                                          + + +
                                                                          + Tags + + +
                                                                          +
                                                                          +
                                                                          + throws +
                                                                          +
                                                                          + InvalidArgumentException + +

                                                                          When the name is invalid

                                                                          +
                                                                          + +
                                                                          +
                                                                          + + + + +
                                                                          +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          
                                                                          +        
                                                                          + +
                                                                          +
                                                                          + + + +
                                                                          +
                                                                          +
                                                                          + +
                                                                          + On this page + + +
                                                                          + +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          +

                                                                          Search results

                                                                          + +
                                                                          +
                                                                          +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + +
                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Alchemy-Commands-InstallCommand.html b/src/public/api/classes/Leaf-Alchemy-Commands-InstallCommand.html new file mode 100644 index 00000000..2b40fcff --- /dev/null +++ b/src/public/api/classes/Leaf-Alchemy-Commands-InstallCommand.html @@ -0,0 +1,3641 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                            +

                                                                            Leaf PHP

                                                                            + + + + + +
                                                                            + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            + + +
                                                                            +

                                                                            + InstallCommand + + + extends Command + + +
                                                                            + in package + +
                                                                            + + +

                                                                            + +
                                                                            + + +
                                                                            + + + +

                                                                            Base class for all commands.

                                                                            + + + + + + + + + +

                                                                            + Table of Contents + + +

                                                                            + + + + + + + +

                                                                            + Constants + + +

                                                                            +
                                                                            +
                                                                            + FAILURE + +  = 1 +
                                                                            + +
                                                                            + INVALID + +  = 2 +
                                                                            + +
                                                                            + SUCCESS + +  = 0 +
                                                                            + +
                                                                            + + +

                                                                            + Properties + + +

                                                                            +
                                                                            +
                                                                            + $defaultDescription + +  : string|null +
                                                                            + +
                                                                            + $defaultName + +  : string|null +
                                                                            + +
                                                                            + $aliases + +  : mixed +
                                                                            + +
                                                                            + $application + +  : mixed +
                                                                            + +
                                                                            + $code + +  : mixed +
                                                                            + +
                                                                            + $definition + +  : mixed +
                                                                            + +
                                                                            + $description + +  : mixed +
                                                                            + +
                                                                            + $fullDefinition + +  : mixed +
                                                                            + +
                                                                            + $help + +  : mixed +
                                                                            + +
                                                                            + $helperSet + +  : mixed +
                                                                            + +
                                                                            + $hidden + +  : mixed +
                                                                            + +
                                                                            + $ignoreValidationErrors + +  : mixed +
                                                                            + +
                                                                            + $name + +  : mixed +
                                                                            + +
                                                                            + $processTitle + +  : mixed +
                                                                            + +
                                                                            + $synopsis + +  : mixed +
                                                                            + +
                                                                            + $usages + +  : mixed +
                                                                            + +
                                                                            + +

                                                                            + Methods + + +

                                                                            +
                                                                            +
                                                                            + __construct() + +  : mixed +
                                                                            + +
                                                                            + addArgument() + +  : $this +
                                                                            +
                                                                            Adds an argument.
                                                                            + +
                                                                            + addOption() + +  : $this +
                                                                            +
                                                                            Adds an option.
                                                                            + +
                                                                            + addUsage() + +  : $this +
                                                                            +
                                                                            Add a command usage example, it'll be prefixed with the command name.
                                                                            + +
                                                                            + complete() + +  : void +
                                                                            +
                                                                            Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                            + +
                                                                            + getAliases() + +  : array<string|int, mixed> +
                                                                            +
                                                                            Returns the aliases for the command.
                                                                            + +
                                                                            + getApplication() + +  : Application|null +
                                                                            +
                                                                            Gets the application instance for this command.
                                                                            + +
                                                                            + getDefaultDescription() + +  : string|null +
                                                                            + +
                                                                            + getDefaultName() + +  : string|null +
                                                                            + +
                                                                            + getDefinition() + +  : InputDefinition +
                                                                            +
                                                                            Gets the InputDefinition attached to this Command.
                                                                            + +
                                                                            + getDescription() + +  : string +
                                                                            +
                                                                            Returns the description for the command.
                                                                            + +
                                                                            + getHelp() + +  : string +
                                                                            +
                                                                            Returns the help for the command.
                                                                            + +
                                                                            + getHelper() + +  : mixed +
                                                                            +
                                                                            Gets a helper instance by name.
                                                                            + +
                                                                            + getHelperSet() + +  : HelperSet|null +
                                                                            +
                                                                            Gets the helper set.
                                                                            + +
                                                                            + getName() + +  : string|null +
                                                                            +
                                                                            Returns the command name.
                                                                            + +
                                                                            + getNativeDefinition() + +  : InputDefinition +
                                                                            +
                                                                            Gets the InputDefinition to be used to create representations of this Command.
                                                                            + +
                                                                            + getProcessedHelp() + +  : string +
                                                                            +
                                                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                            + +
                                                                            + getSynopsis() + +  : string +
                                                                            +
                                                                            Returns the synopsis for the command.
                                                                            + +
                                                                            + getUsages() + +  : array<string|int, mixed> +
                                                                            +
                                                                            Returns alternative usages of the command.
                                                                            + +
                                                                            + ignoreValidationErrors() + +  : mixed +
                                                                            +
                                                                            Ignores validation errors.
                                                                            + +
                                                                            + isEnabled() + +  : bool +
                                                                            +
                                                                            Checks whether the command is enabled or not in the current environment.
                                                                            + +
                                                                            + isHidden() + +  : bool +
                                                                            + +
                                                                            + run() + +  : int +
                                                                            +
                                                                            Runs the command.
                                                                            + +
                                                                            + setAliases() + +  : $this +
                                                                            +
                                                                            Sets the aliases for the command.
                                                                            + +
                                                                            + setApplication() + +  : mixed +
                                                                            + +
                                                                            + setCode() + +  : $this +
                                                                            +
                                                                            Sets the code to execute when running this command.
                                                                            + +
                                                                            + setDefinition() + +  : $this +
                                                                            +
                                                                            Sets an array of argument and option instances.
                                                                            + +
                                                                            + setDescription() + +  : $this +
                                                                            +
                                                                            Sets the description for the command.
                                                                            + +
                                                                            + setHelp() + +  : $this +
                                                                            +
                                                                            Sets the help for the command.
                                                                            + +
                                                                            + setHelperSet() + +  : mixed +
                                                                            + +
                                                                            + setHidden() + +  : $this +
                                                                            + +
                                                                            + setName() + +  : $this +
                                                                            +
                                                                            Sets the name of the command.
                                                                            + +
                                                                            + setProcessTitle() + +  : $this +
                                                                            +
                                                                            Sets the process title of the command.
                                                                            + +
                                                                            + configure() + +  : void +
                                                                            +
                                                                            Configure the command options.
                                                                            + +
                                                                            + execute() + +  : int +
                                                                            +
                                                                            Execute the command.
                                                                            + +
                                                                            + initialize() + +  : mixed +
                                                                            +
                                                                            Initializes the command after the input has been bound and before the input +is validated.
                                                                            + +
                                                                            + interact() + +  : mixed +
                                                                            +
                                                                            Interacts with the user.
                                                                            + +
                                                                            + updateComposerJson() + +  : mixed +
                                                                            + +
                                                                            + updateGitIgnore() + +  : mixed +
                                                                            + +
                                                                            + validateName() + +  : mixed +
                                                                            +
                                                                            Validates a command name.
                                                                            + +
                                                                            + + + + +
                                                                            +

                                                                            + Constants + + +

                                                                            +
                                                                            +

                                                                            + FAILURE + + +

                                                                            + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + INVALID + + +

                                                                            + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + SUCCESS + + +

                                                                            + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                            +
                                                                            + + +
                                                                            +

                                                                            + Properties + + +

                                                                            +
                                                                            +

                                                                            + $defaultDescription + + + + +

                                                                            + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                            The default command description

                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            +

                                                                            + $defaultName + + + + +

                                                                            + + + + + + protected + static string|null + $defaultName + + + +

                                                                            The default command name

                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            +

                                                                            + $aliases + + + + +

                                                                            + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $application + + + + +

                                                                            + + + + + + private + mixed + $application + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $code + + + + +

                                                                            + + + + + + private + mixed + $code + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $definition + + + + +

                                                                            + + + + + + private + mixed + $definition + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $description + + + + +

                                                                            + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $fullDefinition + + + + +

                                                                            + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $help + + + + +

                                                                            + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $helperSet + + + + +

                                                                            + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $hidden + + + + +

                                                                            + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $ignoreValidationErrors + + + + +

                                                                            + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $name + + + + +

                                                                            + + + + + + private + mixed + $name + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $processTitle + + + + +

                                                                            + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $synopsis + + + + +

                                                                            + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                            +
                                                                            +

                                                                            + $usages + + + + +

                                                                            + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                            +
                                                                            + +
                                                                            +

                                                                            + Methods + + +

                                                                            +
                                                                            +

                                                                            + __construct() + + +

                                                                            + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $name + : string|null + = null
                                                                            +
                                                                            +

                                                                            The name of the command; passing null means it must be set in configure()

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + LogicException + +

                                                                            When the command name is empty

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            +

                                                                            + addArgument() + + +

                                                                            + + +

                                                                            Adds an argument.

                                                                            + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $name + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $mode + : int|null + = null
                                                                            +
                                                                            +

                                                                            The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $description + : string + = ''
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $default + : mixed + = null
                                                                            +
                                                                            +

                                                                            The default value (for InputArgument::OPTIONAL mode only)

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + +

                                                                            When argument mode is not valid

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + addOption() + + +

                                                                            + + +

                                                                            Adds an option.

                                                                            + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $name + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                            +
                                                                            +

                                                                            The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $mode + : int|null + = null
                                                                            +
                                                                            +

                                                                            The option mode: One of the InputOption::VALUE_* constants

                                                                            +
                                                                            + +
                                                                            +
                                                                            + $description + : string + = ''
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $default + : mixed + = null
                                                                            +
                                                                            +

                                                                            The default value (must be null for InputOption::VALUE_NONE)

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + +

                                                                            If option mode is invalid or incompatible

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + addUsage() + + +

                                                                            + + +

                                                                            Add a command usage example, it'll be prefixed with the command name.

                                                                            + + + public + addUsage(string $usage) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $usage + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            + +
                                                                            +

                                                                            + getAliases() + + +

                                                                            + + +

                                                                            Returns the aliases for the command.

                                                                            + + + public + getAliases() : array<string|int, mixed> + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + array<string|int, mixed> +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getApplication() + + +

                                                                            + + +

                                                                            Gets the application instance for this command.

                                                                            + + + public + getApplication() : Application|null + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + Application|null +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getDefaultDescription() + + +

                                                                            + + + + + public + static getDefaultDescription() : string|null + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string|null +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getDefaultName() + + +

                                                                            + + + + + public + static getDefaultName() : string|null + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string|null +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getDefinition() + + +

                                                                            + + +

                                                                            Gets the InputDefinition attached to this Command.

                                                                            + + + public + getDefinition() : InputDefinition + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + InputDefinition +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getDescription() + + +

                                                                            + + +

                                                                            Returns the description for the command.

                                                                            + + + public + getDescription() : string + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getHelp() + + +

                                                                            + + +

                                                                            Returns the help for the command.

                                                                            + + + public + getHelp() : string + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getHelper() + + +

                                                                            + + +

                                                                            Gets a helper instance by name.

                                                                            + + + public + getHelper(string $name) : mixed + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $name + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + LogicException + +

                                                                            if no HelperSet is defined

                                                                            +
                                                                            + +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + +

                                                                            if the helper is not defined

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            +

                                                                            + getHelperSet() + + +

                                                                            + + +

                                                                            Gets the helper set.

                                                                            + + + public + getHelperSet() : HelperSet|null + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + HelperSet|null +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getName() + + +

                                                                            + + +

                                                                            Returns the command name.

                                                                            + + + public + getName() : string|null + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string|null +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getNativeDefinition() + + +

                                                                            + + +

                                                                            Gets the InputDefinition to be used to create representations of this Command.

                                                                            + + + public + getNativeDefinition() : InputDefinition + +
                                                                            +
                                                                            + +

                                                                            Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                            +

                                                                            This method is not part of public API and should not be used directly.

                                                                            +
                                                                            + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + InputDefinition +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getProcessedHelp() + + +

                                                                            + + +

                                                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                            + + + public + getProcessedHelp() : string + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getSynopsis() + + +

                                                                            + + +

                                                                            Returns the synopsis for the command.

                                                                            + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $short + : bool + = false
                                                                            +
                                                                            +

                                                                            Whether to show the short version of the synopsis (with options folded) or not

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            Return values
                                                                            + string +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + getUsages() + + +

                                                                            + + +

                                                                            Returns alternative usages of the command.

                                                                            + + + public + getUsages() : array<string|int, mixed> + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + array<string|int, mixed> +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + ignoreValidationErrors() + + +

                                                                            + + +

                                                                            Ignores validation errors.

                                                                            + + + public + ignoreValidationErrors() : mixed + +
                                                                            +
                                                                            + +

                                                                            This is mainly useful for the help command.

                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            +

                                                                            + isEnabled() + + +

                                                                            + + +

                                                                            Checks whether the command is enabled or not in the current environment.

                                                                            + + + public + isEnabled() : bool + +
                                                                            +
                                                                            + +

                                                                            Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                            +
                                                                            + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + bool +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + isHidden() + + +

                                                                            + + + + + public + isHidden() : bool + +
                                                                            +
                                                                            + + + + + + + +
                                                                            +
                                                                            Return values
                                                                            + bool + — +

                                                                            whether the command should be publicly shown or not

                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + run() + + +

                                                                            + + +

                                                                            Runs the command.

                                                                            + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                            +
                                                                            + +

                                                                            The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $input + : InputInterface +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $output + : OutputInterface +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + ExceptionInterface + +

                                                                            When input binding fails. Bypass this by calling .

                                                                            +
                                                                            + +
                                                                            +
                                                                            + see +
                                                                            +
                                                                            + setCode() + + +
                                                                            +
                                                                            + see +
                                                                            +
                                                                            + execute() + + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + int + — +

                                                                            The command exit code

                                                                            +
                                                                            + +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setAliases() + + +

                                                                            + + +

                                                                            Sets the aliases for the command.

                                                                            + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $aliases + : array<string|int, string> +
                                                                            +
                                                                            +

                                                                            An array of aliases for the command

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + +

                                                                            When an alias is invalid

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setApplication() + + +

                                                                            + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $application + : Application|null + = null
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + + +
                                                                            +
                                                                            +

                                                                            + setCode() + + +

                                                                            + + +

                                                                            Sets the code to execute when running this command.

                                                                            + + + public + setCode(callable $code) : $this + +
                                                                            +
                                                                            + +

                                                                            If this method is used, it overrides the code defined +in the execute() method.

                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $code + : callable +
                                                                            +
                                                                            +

                                                                            A callable(InputInterface $input, OutputInterface $output)

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + + +
                                                                            +
                                                                            + see +
                                                                            +
                                                                            + execute() + + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setDefinition() + + +

                                                                            + + +

                                                                            Sets an array of argument and option instances.

                                                                            + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $definition + : array<string|int, mixed>|InputDefinition +
                                                                            +
                                                                            +

                                                                            An array of argument and option instances or a definition instance

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setDescription() + + +

                                                                            + + +

                                                                            Sets the description for the command.

                                                                            + + + public + setDescription(string $description) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $description + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setHelp() + + +

                                                                            + + +

                                                                            Sets the help for the command.

                                                                            + + + public + setHelp(string $help) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $help + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setHelperSet() + + +

                                                                            + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $helperSet + : HelperSet +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + + +
                                                                            +
                                                                            +

                                                                            + setHidden() + + +

                                                                            + + + + + public + setHidden(bool $hidden) : $this + +
                                                                            +
                                                                            + + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $hidden + : bool +
                                                                            +
                                                                            +

                                                                            Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + final +
                                                                            +
                                                                            + +

                                                                            since Symfony 5.1

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setName() + + +

                                                                            + + +

                                                                            Sets the name of the command.

                                                                            + + + public + setName(string $name) : $this + +
                                                                            +
                                                                            + +

                                                                            This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                            +
                                                                            $command->setName('foo:bar');
                                                                            +
                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $name + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + +

                                                                            When the name is invalid

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + setProcessTitle() + + +

                                                                            + + +

                                                                            Sets the process title of the command.

                                                                            + + + public + setProcessTitle(string $title) : $this + +
                                                                            +
                                                                            + +

                                                                            This feature should be used only when creating a long process command, +like a daemon.

                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $title + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + +
                                                                            +
                                                                            Return values
                                                                            + $this +
                                                                            + +
                                                                            +
                                                                            +

                                                                            + configure() + + +

                                                                            + + +

                                                                            Configure the command options.

                                                                            + + + protected + configure() : void + +
                                                                            +
                                                                            + + + + + + + + +
                                                                            + +
                                                                            +

                                                                            + initialize() + + +

                                                                            + + +

                                                                            Initializes the command after the input has been bound and before the input +is validated.

                                                                            + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                            +
                                                                            + +

                                                                            This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $input + : InputInterface +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $output + : OutputInterface +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + see +
                                                                            +
                                                                            + InputInterface::bind() + + +
                                                                            +
                                                                            + see +
                                                                            +
                                                                            + InputInterface::validate() + + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            +

                                                                            + interact() + + +

                                                                            + + +

                                                                            Interacts with the user.

                                                                            + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                            +
                                                                            + +

                                                                            This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $input + : InputInterface +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + $output + : OutputInterface +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + + + +
                                                                            +
                                                                            +

                                                                            + updateComposerJson() + + +

                                                                            + + + + + protected + updateComposerJson() : mixed + +
                                                                            +
                                                                            + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + updateGitIgnore() + + +

                                                                            + + + + + protected + updateGitIgnore() : mixed + +
                                                                            +
                                                                            + + + + + + + + +
                                                                            +
                                                                            +

                                                                            + validateName() + + +

                                                                            + + +

                                                                            Validates a command name.

                                                                            + + + private + validateName(string $name) : mixed + +
                                                                            +
                                                                            + +

                                                                            It must be non-empty and parts can optionally be separated by ":".

                                                                            +
                                                                            + +
                                                                            Parameters
                                                                            +
                                                                            +
                                                                            + $name + : string +
                                                                            +
                                                                            + +
                                                                            +
                                                                            + + +
                                                                            + Tags + + +
                                                                            +
                                                                            +
                                                                            + throws +
                                                                            +
                                                                            + InvalidArgumentException + +

                                                                            When the name is invalid

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + + + +
                                                                            +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            
                                                                            +        
                                                                            + +
                                                                            +
                                                                            + + + +
                                                                            +
                                                                            +
                                                                            + +
                                                                            + On this page + + +
                                                                            + +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            +

                                                                            Search results

                                                                            + +
                                                                            +
                                                                            +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              + + +
                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Alchemy-Commands-SetupCommand.html b/src/public/api/classes/Leaf-Alchemy-Commands-SetupCommand.html new file mode 100644 index 00000000..6132a1d5 --- /dev/null +++ b/src/public/api/classes/Leaf-Alchemy-Commands-SetupCommand.html @@ -0,0 +1,3768 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                              +

                                                                              Leaf PHP

                                                                              + + + + + +
                                                                              + +
                                                                              +
                                                                              + + + + +
                                                                              +
                                                                              + + +
                                                                              +

                                                                              + SetupCommand + + + extends Command + + +
                                                                              + in package + +
                                                                              + + +

                                                                              + +
                                                                              + + +
                                                                              + + + +

                                                                              Base class for all commands.

                                                                              + + + + + + + + + +

                                                                              + Table of Contents + + +

                                                                              + + + + + + + +

                                                                              + Constants + + +

                                                                              +
                                                                              +
                                                                              + FAILURE + +  = 1 +
                                                                              + +
                                                                              + INVALID + +  = 2 +
                                                                              + +
                                                                              + SUCCESS + +  = 0 +
                                                                              + +
                                                                              + + +

                                                                              + Properties + + +

                                                                              +
                                                                              +
                                                                              + $defaultDescription + +  : string|null +
                                                                              + +
                                                                              + $defaultName + +  : string|null +
                                                                              + +
                                                                              + $input + +  : mixed +
                                                                              + +
                                                                              + $output + +  : mixed +
                                                                              + +
                                                                              + $aliases + +  : mixed +
                                                                              + +
                                                                              + $application + +  : mixed +
                                                                              + +
                                                                              + $code + +  : mixed +
                                                                              + +
                                                                              + $definition + +  : mixed +
                                                                              + +
                                                                              + $description + +  : mixed +
                                                                              + +
                                                                              + $fullDefinition + +  : mixed +
                                                                              + +
                                                                              + $help + +  : mixed +
                                                                              + +
                                                                              + $helperSet + +  : mixed +
                                                                              + +
                                                                              + $hidden + +  : mixed +
                                                                              + +
                                                                              + $ignoreValidationErrors + +  : mixed +
                                                                              + +
                                                                              + $name + +  : mixed +
                                                                              + +
                                                                              + $processTitle + +  : mixed +
                                                                              + +
                                                                              + $synopsis + +  : mixed +
                                                                              + +
                                                                              + $usages + +  : mixed +
                                                                              + +
                                                                              + +

                                                                              + Methods + + +

                                                                              +
                                                                              +
                                                                              + __construct() + +  : mixed +
                                                                              + +
                                                                              + addArgument() + +  : $this +
                                                                              +
                                                                              Adds an argument.
                                                                              + +
                                                                              + addOption() + +  : $this +
                                                                              +
                                                                              Adds an option.
                                                                              + +
                                                                              + addUsage() + +  : $this +
                                                                              +
                                                                              Add a command usage example, it'll be prefixed with the command name.
                                                                              + +
                                                                              + complete() + +  : void +
                                                                              +
                                                                              Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                              + +
                                                                              + getAliases() + +  : array<string|int, mixed> +
                                                                              +
                                                                              Returns the aliases for the command.
                                                                              + +
                                                                              + getApplication() + +  : Application|null +
                                                                              +
                                                                              Gets the application instance for this command.
                                                                              + +
                                                                              + getDefaultDescription() + +  : string|null +
                                                                              + +
                                                                              + getDefaultName() + +  : string|null +
                                                                              + +
                                                                              + getDefinition() + +  : InputDefinition +
                                                                              +
                                                                              Gets the InputDefinition attached to this Command.
                                                                              + +
                                                                              + getDescription() + +  : string +
                                                                              +
                                                                              Returns the description for the command.
                                                                              + +
                                                                              + getHelp() + +  : string +
                                                                              +
                                                                              Returns the help for the command.
                                                                              + +
                                                                              + getHelper() + +  : mixed +
                                                                              +
                                                                              Gets a helper instance by name.
                                                                              + +
                                                                              + getHelperSet() + +  : HelperSet|null +
                                                                              +
                                                                              Gets the helper set.
                                                                              + +
                                                                              + getName() + +  : string|null +
                                                                              +
                                                                              Returns the command name.
                                                                              + +
                                                                              + getNativeDefinition() + +  : InputDefinition +
                                                                              +
                                                                              Gets the InputDefinition to be used to create representations of this Command.
                                                                              + +
                                                                              + getProcessedHelp() + +  : string +
                                                                              +
                                                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                              + +
                                                                              + getSynopsis() + +  : string +
                                                                              +
                                                                              Returns the synopsis for the command.
                                                                              + +
                                                                              + getUsages() + +  : array<string|int, mixed> +
                                                                              +
                                                                              Returns alternative usages of the command.
                                                                              + +
                                                                              + ignoreValidationErrors() + +  : mixed +
                                                                              +
                                                                              Ignores validation errors.
                                                                              + +
                                                                              + isEnabled() + +  : bool +
                                                                              +
                                                                              Checks whether the command is enabled or not in the current environment.
                                                                              + +
                                                                              + isHidden() + +  : bool +
                                                                              + +
                                                                              + run() + +  : int +
                                                                              +
                                                                              Runs the command.
                                                                              + +
                                                                              + setAliases() + +  : $this +
                                                                              +
                                                                              Sets the aliases for the command.
                                                                              + +
                                                                              + setApplication() + +  : mixed +
                                                                              + +
                                                                              + setCode() + +  : $this +
                                                                              +
                                                                              Sets the code to execute when running this command.
                                                                              + +
                                                                              + setDefinition() + +  : $this +
                                                                              +
                                                                              Sets an array of argument and option instances.
                                                                              + +
                                                                              + setDescription() + +  : $this +
                                                                              +
                                                                              Sets the description for the command.
                                                                              + +
                                                                              + setHelp() + +  : $this +
                                                                              +
                                                                              Sets the help for the command.
                                                                              + +
                                                                              + setHelperSet() + +  : mixed +
                                                                              + +
                                                                              + setHidden() + +  : $this +
                                                                              + +
                                                                              + setName() + +  : $this +
                                                                              +
                                                                              Sets the name of the command.
                                                                              + +
                                                                              + setProcessTitle() + +  : $this +
                                                                              +
                                                                              Sets the process title of the command.
                                                                              + +
                                                                              + configure() + +  : void +
                                                                              +
                                                                              Configure the command options.
                                                                              + +
                                                                              + execute() + +  : int +
                                                                              +
                                                                              Execute the command.
                                                                              + +
                                                                              + generateActions() + +  : mixed +
                                                                              + +
                                                                              + initialize() + +  : mixed +
                                                                              +
                                                                              Initializes the command after the input has been bound and before the input +is validated.
                                                                              + +
                                                                              + interact() + +  : mixed +
                                                                              +
                                                                              Interacts with the user.
                                                                              + +
                                                                              + runLinter() + +  : mixed +
                                                                              + +
                                                                              + runTests() + +  : mixed +
                                                                              + +
                                                                              + validateName() + +  : mixed +
                                                                              +
                                                                              Validates a command name.
                                                                              + +
                                                                              + + + + +
                                                                              +

                                                                              + Constants + + +

                                                                              +
                                                                              +

                                                                              + FAILURE + + +

                                                                              + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + INVALID + + +

                                                                              + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + SUCCESS + + +

                                                                              + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                              +
                                                                              + + +
                                                                              +

                                                                              + Properties + + +

                                                                              +
                                                                              +

                                                                              + $defaultDescription + + + + +

                                                                              + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                              The default command description

                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              +

                                                                              + $defaultName + + + + +

                                                                              + + + + + + protected + static string|null + $defaultName + + + +

                                                                              The default command name

                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              +

                                                                              + $input + + + + +

                                                                              + + + + + + protected + mixed + $input + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $output + + + + +

                                                                              + + + + + + protected + mixed + $output + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $aliases + + + + +

                                                                              + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $application + + + + +

                                                                              + + + + + + private + mixed + $application + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $code + + + + +

                                                                              + + + + + + private + mixed + $code + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $definition + + + + +

                                                                              + + + + + + private + mixed + $definition + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $description + + + + +

                                                                              + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $fullDefinition + + + + +

                                                                              + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $help + + + + +

                                                                              + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $helperSet + + + + +

                                                                              + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $hidden + + + + +

                                                                              + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $ignoreValidationErrors + + + + +

                                                                              + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $name + + + + +

                                                                              + + + + + + private + mixed + $name + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $processTitle + + + + +

                                                                              + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $synopsis + + + + +

                                                                              + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                              +
                                                                              +

                                                                              + $usages + + + + +

                                                                              + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                              +
                                                                              + +
                                                                              +

                                                                              + Methods + + +

                                                                              +
                                                                              +

                                                                              + __construct() + + +

                                                                              + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $name + : string|null + = null
                                                                              +
                                                                              +

                                                                              The name of the command; passing null means it must be set in configure()

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + LogicException + +

                                                                              When the command name is empty

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + +
                                                                              +
                                                                              +

                                                                              + addArgument() + + +

                                                                              + + +

                                                                              Adds an argument.

                                                                              + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $name + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $mode + : int|null + = null
                                                                              +
                                                                              +

                                                                              The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                              +
                                                                              + +
                                                                              +
                                                                              + $description + : string + = ''
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $default + : mixed + = null
                                                                              +
                                                                              +

                                                                              The default value (for InputArgument::OPTIONAL mode only)

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + +

                                                                              When argument mode is not valid

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + addOption() + + +

                                                                              + + +

                                                                              Adds an option.

                                                                              + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $name + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                              +
                                                                              +

                                                                              The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                              +
                                                                              + +
                                                                              +
                                                                              + $mode + : int|null + = null
                                                                              +
                                                                              +

                                                                              The option mode: One of the InputOption::VALUE_* constants

                                                                              +
                                                                              + +
                                                                              +
                                                                              + $description + : string + = ''
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $default + : mixed + = null
                                                                              +
                                                                              +

                                                                              The default value (must be null for InputOption::VALUE_NONE)

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + +

                                                                              If option mode is invalid or incompatible

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + addUsage() + + +

                                                                              + + +

                                                                              Add a command usage example, it'll be prefixed with the command name.

                                                                              + + + public + addUsage(string $usage) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $usage + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              + +
                                                                              +

                                                                              + getAliases() + + +

                                                                              + + +

                                                                              Returns the aliases for the command.

                                                                              + + + public + getAliases() : array<string|int, mixed> + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + array<string|int, mixed> +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getApplication() + + +

                                                                              + + +

                                                                              Gets the application instance for this command.

                                                                              + + + public + getApplication() : Application|null + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + Application|null +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getDefaultDescription() + + +

                                                                              + + + + + public + static getDefaultDescription() : string|null + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string|null +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getDefaultName() + + +

                                                                              + + + + + public + static getDefaultName() : string|null + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string|null +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getDefinition() + + +

                                                                              + + +

                                                                              Gets the InputDefinition attached to this Command.

                                                                              + + + public + getDefinition() : InputDefinition + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + InputDefinition +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getDescription() + + +

                                                                              + + +

                                                                              Returns the description for the command.

                                                                              + + + public + getDescription() : string + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getHelp() + + +

                                                                              + + +

                                                                              Returns the help for the command.

                                                                              + + + public + getHelp() : string + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getHelper() + + +

                                                                              + + +

                                                                              Gets a helper instance by name.

                                                                              + + + public + getHelper(string $name) : mixed + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $name + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + LogicException + +

                                                                              if no HelperSet is defined

                                                                              +
                                                                              + +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + +

                                                                              if the helper is not defined

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + +
                                                                              +
                                                                              +

                                                                              + getHelperSet() + + +

                                                                              + + +

                                                                              Gets the helper set.

                                                                              + + + public + getHelperSet() : HelperSet|null + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + HelperSet|null +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getName() + + +

                                                                              + + +

                                                                              Returns the command name.

                                                                              + + + public + getName() : string|null + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string|null +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getNativeDefinition() + + +

                                                                              + + +

                                                                              Gets the InputDefinition to be used to create representations of this Command.

                                                                              + + + public + getNativeDefinition() : InputDefinition + +
                                                                              +
                                                                              + +

                                                                              Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                              +

                                                                              This method is not part of public API and should not be used directly.

                                                                              +
                                                                              + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + InputDefinition +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getProcessedHelp() + + +

                                                                              + + +

                                                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                              + + + public + getProcessedHelp() : string + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getSynopsis() + + +

                                                                              + + +

                                                                              Returns the synopsis for the command.

                                                                              + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $short + : bool + = false
                                                                              +
                                                                              +

                                                                              Whether to show the short version of the synopsis (with options folded) or not

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              Return values
                                                                              + string +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + getUsages() + + +

                                                                              + + +

                                                                              Returns alternative usages of the command.

                                                                              + + + public + getUsages() : array<string|int, mixed> + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + array<string|int, mixed> +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + ignoreValidationErrors() + + +

                                                                              + + +

                                                                              Ignores validation errors.

                                                                              + + + public + ignoreValidationErrors() : mixed + +
                                                                              +
                                                                              + +

                                                                              This is mainly useful for the help command.

                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              +

                                                                              + isEnabled() + + +

                                                                              + + +

                                                                              Checks whether the command is enabled or not in the current environment.

                                                                              + + + public + isEnabled() : bool + +
                                                                              +
                                                                              + +

                                                                              Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                              +
                                                                              + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + bool +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + isHidden() + + +

                                                                              + + + + + public + isHidden() : bool + +
                                                                              +
                                                                              + + + + + + + +
                                                                              +
                                                                              Return values
                                                                              + bool + — +

                                                                              whether the command should be publicly shown or not

                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + run() + + +

                                                                              + + +

                                                                              Runs the command.

                                                                              + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                              +
                                                                              + +

                                                                              The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $input + : InputInterface +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $output + : OutputInterface +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + ExceptionInterface + +

                                                                              When input binding fails. Bypass this by calling .

                                                                              +
                                                                              + +
                                                                              +
                                                                              + see +
                                                                              +
                                                                              + setCode() + + +
                                                                              +
                                                                              + see +
                                                                              +
                                                                              + execute() + + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + int + — +

                                                                              The command exit code

                                                                              +
                                                                              + +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setAliases() + + +

                                                                              + + +

                                                                              Sets the aliases for the command.

                                                                              + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $aliases + : array<string|int, string> +
                                                                              +
                                                                              +

                                                                              An array of aliases for the command

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + +

                                                                              When an alias is invalid

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setApplication() + + +

                                                                              + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $application + : Application|null + = null
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + + +
                                                                              +
                                                                              +

                                                                              + setCode() + + +

                                                                              + + +

                                                                              Sets the code to execute when running this command.

                                                                              + + + public + setCode(callable $code) : $this + +
                                                                              +
                                                                              + +

                                                                              If this method is used, it overrides the code defined +in the execute() method.

                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $code + : callable +
                                                                              +
                                                                              +

                                                                              A callable(InputInterface $input, OutputInterface $output)

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + + +
                                                                              +
                                                                              + see +
                                                                              +
                                                                              + execute() + + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setDefinition() + + +

                                                                              + + +

                                                                              Sets an array of argument and option instances.

                                                                              + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $definition + : array<string|int, mixed>|InputDefinition +
                                                                              +
                                                                              +

                                                                              An array of argument and option instances or a definition instance

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setDescription() + + +

                                                                              + + +

                                                                              Sets the description for the command.

                                                                              + + + public + setDescription(string $description) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $description + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setHelp() + + +

                                                                              + + +

                                                                              Sets the help for the command.

                                                                              + + + public + setHelp(string $help) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $help + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setHelperSet() + + +

                                                                              + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $helperSet + : HelperSet +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + + +
                                                                              +
                                                                              +

                                                                              + setHidden() + + +

                                                                              + + + + + public + setHidden(bool $hidden) : $this + +
                                                                              +
                                                                              + + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $hidden + : bool +
                                                                              +
                                                                              +

                                                                              Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + final +
                                                                              +
                                                                              + +

                                                                              since Symfony 5.1

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setName() + + +

                                                                              + + +

                                                                              Sets the name of the command.

                                                                              + + + public + setName(string $name) : $this + +
                                                                              +
                                                                              + +

                                                                              This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                              +
                                                                              $command->setName('foo:bar');
                                                                              +
                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $name + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + +

                                                                              When the name is invalid

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + setProcessTitle() + + +

                                                                              + + +

                                                                              Sets the process title of the command.

                                                                              + + + public + setProcessTitle(string $title) : $this + +
                                                                              +
                                                                              + +

                                                                              This feature should be used only when creating a long process command, +like a daemon.

                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $title + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + +
                                                                              +
                                                                              Return values
                                                                              + $this +
                                                                              + +
                                                                              +
                                                                              +

                                                                              + configure() + + +

                                                                              + + +

                                                                              Configure the command options.

                                                                              + + + protected + configure() : void + +
                                                                              +
                                                                              + + + + + + + + +
                                                                              + +
                                                                              +

                                                                              + generateActions() + + +

                                                                              + + + + + protected + generateActions() : mixed + +
                                                                              +
                                                                              + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + initialize() + + +

                                                                              + + +

                                                                              Initializes the command after the input has been bound and before the input +is validated.

                                                                              + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                              +
                                                                              + +

                                                                              This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $input + : InputInterface +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $output + : OutputInterface +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + see +
                                                                              +
                                                                              + InputInterface::bind() + + +
                                                                              +
                                                                              + see +
                                                                              +
                                                                              + InputInterface::validate() + + +
                                                                              +
                                                                              + + + + +
                                                                              +
                                                                              +

                                                                              + interact() + + +

                                                                              + + +

                                                                              Interacts with the user.

                                                                              + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                              +
                                                                              + +

                                                                              This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $input + : InputInterface +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + $output + : OutputInterface +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + + + +
                                                                              +
                                                                              +

                                                                              + runLinter() + + +

                                                                              + + + + + protected + runLinter() : mixed + +
                                                                              +
                                                                              + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + runTests() + + +

                                                                              + + + + + protected + runTests() : mixed + +
                                                                              +
                                                                              + + + + + + + + +
                                                                              +
                                                                              +

                                                                              + validateName() + + +

                                                                              + + +

                                                                              Validates a command name.

                                                                              + + + private + validateName(string $name) : mixed + +
                                                                              +
                                                                              + +

                                                                              It must be non-empty and parts can optionally be separated by ":".

                                                                              +
                                                                              + +
                                                                              Parameters
                                                                              +
                                                                              +
                                                                              + $name + : string +
                                                                              +
                                                                              + +
                                                                              +
                                                                              + + +
                                                                              + Tags + + +
                                                                              +
                                                                              +
                                                                              + throws +
                                                                              +
                                                                              + InvalidArgumentException + +

                                                                              When the name is invalid

                                                                              +
                                                                              + +
                                                                              +
                                                                              + + + + +
                                                                              +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              
                                                                              +        
                                                                              + +
                                                                              +
                                                                              + + + +
                                                                              +
                                                                              +
                                                                              + +
                                                                              + On this page + + +
                                                                              + +
                                                                              +
                                                                              +
                                                                              +
                                                                              +
                                                                              +

                                                                              Search results

                                                                              + +
                                                                              +
                                                                              +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + +
                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Alchemy-Core.html b/src/public/api/classes/Leaf-Alchemy-Core.html new file mode 100644 index 00000000..4476033e --- /dev/null +++ b/src/public/api/classes/Leaf-Alchemy-Core.html @@ -0,0 +1,690 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                +

                                                                                Leaf PHP

                                                                                + + + + + +
                                                                                + +
                                                                                +
                                                                                + + + + +
                                                                                +
                                                                                + + +
                                                                                +

                                                                                + Core + + +
                                                                                + in package + +
                                                                                + + +

                                                                                + +
                                                                                + + +
                                                                                + + + +

                                                                                Container for Alchemy config

                                                                                + + + + + + + + + +

                                                                                + Table of Contents + + +

                                                                                + + + + + + + + + +

                                                                                + Properties + + +

                                                                                +
                                                                                +
                                                                                + $config + +  : mixed +
                                                                                + +
                                                                                + +

                                                                                + Methods + + +

                                                                                +
                                                                                +
                                                                                + generateLintFiles() + +  : mixed +
                                                                                + +
                                                                                + generateTestFiles() + +  : mixed +
                                                                                + +
                                                                                + get() + +  : mixed +
                                                                                +
                                                                                Get Alchemy config
                                                                                + +
                                                                                + set() + +  : mixed +
                                                                                +
                                                                                Set Alchemy config
                                                                                + +
                                                                                + unJsonify() + +  : mixed +
                                                                                + +
                                                                                + + + + + + +
                                                                                +

                                                                                + Properties + + +

                                                                                +
                                                                                +

                                                                                + $config + + + + +

                                                                                + + + + + + protected + static mixed + $config + = [] + + + + + + + +
                                                                                +
                                                                                + +
                                                                                +

                                                                                + Methods + + +

                                                                                +
                                                                                +

                                                                                + generateLintFiles() + + +

                                                                                + + + + + public + static generateLintFiles() : mixed + +
                                                                                +
                                                                                + + + + + + + + +
                                                                                +
                                                                                +

                                                                                + generateTestFiles() + + +

                                                                                + + + + + public + static generateTestFiles() : mixed + +
                                                                                +
                                                                                + + + + + + + + +
                                                                                +
                                                                                +

                                                                                + get() + + +

                                                                                + + +

                                                                                Get Alchemy config

                                                                                + + + public + static get([mixed $key = null ]) : mixed + +
                                                                                +
                                                                                + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $key + : mixed + = null
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + + + + +
                                                                                +
                                                                                +

                                                                                + set() + + +

                                                                                + + +

                                                                                Set Alchemy config

                                                                                + + + public + static set(mixed $config) : mixed + +
                                                                                +
                                                                                + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $config + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + + + + +
                                                                                +
                                                                                +

                                                                                + unJsonify() + + +

                                                                                + + + + + public + static unJsonify(mixed $data[, mixed $pretty = JSON_PRETTY_PRINT ]) : mixed + +
                                                                                +
                                                                                + + +
                                                                                Parameters
                                                                                +
                                                                                +
                                                                                + $data + : mixed +
                                                                                +
                                                                                + +
                                                                                +
                                                                                + $pretty + : mixed + = JSON_PRETTY_PRINT
                                                                                +
                                                                                + +
                                                                                +
                                                                                + + + + + + +
                                                                                +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                
                                                                                +        
                                                                                + +
                                                                                +
                                                                                + + + +
                                                                                +
                                                                                +
                                                                                + +
                                                                                + On this page + + +
                                                                                + +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                +

                                                                                Search results

                                                                                + +
                                                                                +
                                                                                +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + +
                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Anchor-CSRF.html b/src/public/api/classes/Leaf-Anchor-CSRF.html new file mode 100644 index 00000000..890dea30 --- /dev/null +++ b/src/public/api/classes/Leaf-Anchor-CSRF.html @@ -0,0 +1,1305 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                  +

                                                                                  Leaf PHP

                                                                                  + + + + + +
                                                                                  + +
                                                                                  +
                                                                                  + + + + +
                                                                                  +
                                                                                  + + +
                                                                                  +

                                                                                  + CSRF + + + extends Anchor + + +
                                                                                  + in package + +
                                                                                  + + +

                                                                                  + +
                                                                                  + + +
                                                                                  + + + +

                                                                                  Leaf CSRF Module +---------------- +Add CSRF protection to your app

                                                                                  + + + + +
                                                                                  + Tags + + +
                                                                                  +
                                                                                  +
                                                                                  + since +
                                                                                  +
                                                                                  + 3.0.0 + + +
                                                                                  +
                                                                                  + + + + + +

                                                                                  + Table of Contents + + +

                                                                                  + + + + + + + + + +

                                                                                  + Properties + + +

                                                                                  +
                                                                                  +
                                                                                  + $config + +  : mixed +
                                                                                  + +
                                                                                  + $errors + +  : mixed +
                                                                                  + +
                                                                                  + +

                                                                                  + Methods + + +

                                                                                  +
                                                                                  +
                                                                                  + config() + +  : mixed +
                                                                                  +
                                                                                  Manage config for leaf anchor
                                                                                  + +
                                                                                  + deepGet() + +  : mixed +
                                                                                  +
                                                                                  Get an item or items from an array of data.
                                                                                  + +
                                                                                  + deepGetDot() + +  : mixed +
                                                                                  +
                                                                                  Deep get an item or items from an array of data using dot notation.
                                                                                  + +
                                                                                  + deepSetDot() + +  : mixed +
                                                                                  +
                                                                                  Deep set an item or items in an array of data using dot notation.
                                                                                  + +
                                                                                  + deepUnsetDot() + +  : mixed +
                                                                                  +
                                                                                  Deep unset an item or items in an array of data using dot notation.
                                                                                  + +
                                                                                  + errors() + +  : array<string|int, mixed> +
                                                                                  + +
                                                                                  + form() + +  : mixed +
                                                                                  + +
                                                                                  + generateToken() + +  : string +
                                                                                  +
                                                                                  Generate a token for identifying your application
                                                                                  + +
                                                                                  + getPathExpression() + +  : mixed +
                                                                                  + +
                                                                                  + init() + +  : mixed +
                                                                                  + +
                                                                                  + sanitize() + +  : mixed +
                                                                                  +
                                                                                  Escape malicious characters
                                                                                  + +
                                                                                  + toBool() + +  : bool +
                                                                                  +
                                                                                  Convert string to boolean. Created due to inconsistencies in PHP's boolval and (bool)
                                                                                  + +
                                                                                  + token() + +  : mixed +
                                                                                  + +
                                                                                  + validate() + +  : mixed +
                                                                                  +
                                                                                  Validate the CSRF token and run associated handler
                                                                                  + +
                                                                                  + verify() + +  : bool +
                                                                                  +
                                                                                  Validate the CSRF token
                                                                                  + +
                                                                                  + + + + + + +
                                                                                  +

                                                                                  + Properties + + +

                                                                                  +
                                                                                  +

                                                                                  + $config + + + + +

                                                                                  + + + + + + protected + static mixed + $config + = ['secret' => '@nkor_leaf$0Secret!!', 'secretKey' => 'X-Leaf-CSRF-Token', 'except' => [], 'methods' => ['POST', 'PUT', 'PATCH', 'DELETE'], 'messages.tokenNotFound' => 'Token not found.', 'messages.tokenInvalid' => 'Invalid token.', 'onError' => null] + + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + $errors + + + + +

                                                                                  + + + + + + protected + static mixed + $errors + = [] + + + + + + + +
                                                                                  +
                                                                                  + +
                                                                                  +

                                                                                  + Methods + + +

                                                                                  +
                                                                                  +

                                                                                  + config() + + +

                                                                                  + + +

                                                                                  Manage config for leaf anchor

                                                                                  + + + public + static config([array<string|int, mixed>|null $config = null ]) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $config + : array<string|int, mixed>|null + = null
                                                                                  +
                                                                                  +

                                                                                  The config to set

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + deepGet() + + +

                                                                                  + + +

                                                                                  Get an item or items from an array of data.

                                                                                  + + + public + static deepGet(array<string|int, mixed> $dataSource[, string|array<string|int, mixed> $item = null ]) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $dataSource + : array<string|int, mixed> +
                                                                                  +
                                                                                  +

                                                                                  An array of data to search through

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + $item + : string|array<string|int, mixed> + = null
                                                                                  +
                                                                                  +

                                                                                  The items to return

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + deepGetDot() + + +

                                                                                  + + +

                                                                                  Deep get an item or items from an array of data using dot notation.

                                                                                  + + + public + static deepGetDot(array<string|int, mixed> $dataSource[, string|array<string|int, mixed> $item = null ]) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $dataSource + : array<string|int, mixed> +
                                                                                  +
                                                                                  +

                                                                                  An array of data to search through

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + $item + : string|array<string|int, mixed> + = null
                                                                                  +
                                                                                  +

                                                                                  The items to return

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + deepSetDot() + + +

                                                                                  + + +

                                                                                  Deep set an item or items in an array of data using dot notation.

                                                                                  + + + public + static deepSetDot(array<string|int, mixed> $dataSource, string|array<string|int, mixed> $item[, mixed $value = null ]) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $dataSource + : array<string|int, mixed> +
                                                                                  +
                                                                                  +

                                                                                  An array of data to search through

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + $item + : string|array<string|int, mixed> +
                                                                                  +
                                                                                  +

                                                                                  The items to set

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + $value + : mixed + = null
                                                                                  +
                                                                                  +

                                                                                  The value to set

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + deepUnsetDot() + + +

                                                                                  + + +

                                                                                  Deep unset an item or items in an array of data using dot notation.

                                                                                  + + + public + static deepUnsetDot(mixed $dataSource, mixed $item) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $dataSource + : mixed +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + $item + : mixed +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + errors() + + +

                                                                                  + + + + + public + static errors() : array<string|int, mixed> + +
                                                                                  +
                                                                                  + + + + + + + +
                                                                                  +
                                                                                  Return values
                                                                                  + array<string|int, mixed> +
                                                                                  + +
                                                                                  +
                                                                                  +

                                                                                  + form() + + +

                                                                                  + + + + + public + static form() : mixed + +
                                                                                  +
                                                                                  + + + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + generateToken() + + +

                                                                                  + + +

                                                                                  Generate a token for identifying your application

                                                                                  + + + public + static generateToken([int $strength = 16 ]) : string + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $strength + : int + = 16
                                                                                  +
                                                                                  +

                                                                                  Number of random characters to attach to token

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + +
                                                                                  +
                                                                                  Return values
                                                                                  + string +
                                                                                  + +
                                                                                  +
                                                                                  +

                                                                                  + getPathExpression() + + +

                                                                                  + + + + + public + static getPathExpression(mixed $url) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $url + : mixed +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + init() + + +

                                                                                  + + + + + public + static init() : mixed + +
                                                                                  +
                                                                                  + + + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + sanitize() + + +

                                                                                  + + +

                                                                                  Escape malicious characters

                                                                                  + + + public + static sanitize(mixed $data) : mixed + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $data + : mixed +
                                                                                  +
                                                                                  +

                                                                                  The data to sanitize.

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + toBool() + + +

                                                                                  + + +

                                                                                  Convert string to boolean. Created due to inconsistencies in PHP's boolval and (bool)

                                                                                  + + + public + static toBool(string $value) : bool + +
                                                                                  +
                                                                                  + + +
                                                                                  Parameters
                                                                                  +
                                                                                  +
                                                                                  + $value + : string +
                                                                                  +
                                                                                  +

                                                                                  The value to convert

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + + + + +
                                                                                  +
                                                                                  Return values
                                                                                  + bool +
                                                                                  + +
                                                                                  +
                                                                                  +

                                                                                  + token() + + +

                                                                                  + + + + + public + static token() : mixed + +
                                                                                  +
                                                                                  + + + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + validate() + + +

                                                                                  + + +

                                                                                  Validate the CSRF token and run associated handler

                                                                                  + + + public + static validate() : mixed + +
                                                                                  +
                                                                                  + + + + + + + + +
                                                                                  +
                                                                                  +

                                                                                  + verify() + + +

                                                                                  + + +

                                                                                  Validate the CSRF token

                                                                                  + + + public + static verify() : bool + +
                                                                                  +
                                                                                  + + + + + + + +
                                                                                  +
                                                                                  Return values
                                                                                  + bool +
                                                                                  + +
                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  
                                                                                  +        
                                                                                  + +
                                                                                  +
                                                                                  + + + +
                                                                                  +
                                                                                  +
                                                                                  + +
                                                                                  + On this page + + +
                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  Search results

                                                                                  + +
                                                                                  +
                                                                                  +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    + + +
                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Anchor.html b/src/public/api/classes/Leaf-Anchor.html new file mode 100644 index 00000000..6522b445 --- /dev/null +++ b/src/public/api/classes/Leaf-Anchor.html @@ -0,0 +1,1055 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                    +

                                                                                    Leaf PHP

                                                                                    + + + + + +
                                                                                    + +
                                                                                    +
                                                                                    + + + + +
                                                                                    +
                                                                                    + + +
                                                                                    +

                                                                                    + Anchor + + +
                                                                                    + in package + +
                                                                                    + + +

                                                                                    + +
                                                                                    + + +
                                                                                    + + + +

                                                                                    Leaf Security Module +--------------------------------- +Simple to use security based utility methods

                                                                                    + + + + +
                                                                                    + Tags + + +
                                                                                    +
                                                                                    +
                                                                                    + author +
                                                                                    +
                                                                                    + +

                                                                                    Michael Darko mickdd22@gmail.com

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + since +
                                                                                    +
                                                                                    + +

                                                                                    v2.2

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + version +
                                                                                    +
                                                                                    + 1.0 + + +
                                                                                    +
                                                                                    + + + + + +

                                                                                    + Table of Contents + + +

                                                                                    + + + + + + + + + +

                                                                                    + Properties + + +

                                                                                    +
                                                                                    +
                                                                                    + $config + +  : mixed +
                                                                                    + +
                                                                                    + $errors + +  : mixed +
                                                                                    + +
                                                                                    + +

                                                                                    + Methods + + +

                                                                                    +
                                                                                    +
                                                                                    + config() + +  : mixed +
                                                                                    +
                                                                                    Manage config for leaf anchor
                                                                                    + +
                                                                                    + deepGet() + +  : mixed +
                                                                                    +
                                                                                    Get an item or items from an array of data.
                                                                                    + +
                                                                                    + deepGetDot() + +  : mixed +
                                                                                    +
                                                                                    Deep get an item or items from an array of data using dot notation.
                                                                                    + +
                                                                                    + deepSetDot() + +  : mixed +
                                                                                    +
                                                                                    Deep set an item or items in an array of data using dot notation.
                                                                                    + +
                                                                                    + deepUnsetDot() + +  : mixed +
                                                                                    +
                                                                                    Deep unset an item or items in an array of data using dot notation.
                                                                                    + +
                                                                                    + errors() + +  : array<string|int, mixed> +
                                                                                    + +
                                                                                    + generateToken() + +  : string +
                                                                                    +
                                                                                    Generate a token for identifying your application
                                                                                    + +
                                                                                    + sanitize() + +  : mixed +
                                                                                    +
                                                                                    Escape malicious characters
                                                                                    + +
                                                                                    + toBool() + +  : bool +
                                                                                    +
                                                                                    Convert string to boolean. Created due to inconsistencies in PHP's boolval and (bool)
                                                                                    + +
                                                                                    + + + + + + +
                                                                                    +

                                                                                    + Properties + + +

                                                                                    +
                                                                                    +

                                                                                    + $config + + + + +

                                                                                    + + + + + + protected + static mixed + $config + = ['secret' => '@nkor_leaf$0Secret!!', 'secretKey' => 'X-Leaf-CSRF-Token', 'except' => [], 'methods' => ['POST', 'PUT', 'PATCH', 'DELETE'], 'messages.tokenNotFound' => 'Token not found.', 'messages.tokenInvalid' => 'Invalid token.', 'onError' => null] + + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + $errors + + + + +

                                                                                    + + + + + + protected + static mixed + $errors + = [] + + + + + + + +
                                                                                    +
                                                                                    + +
                                                                                    +

                                                                                    + Methods + + +

                                                                                    +
                                                                                    +

                                                                                    + config() + + +

                                                                                    + + +

                                                                                    Manage config for leaf anchor

                                                                                    + + + public + static config([array<string|int, mixed>|null $config = null ]) : mixed + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $config + : array<string|int, mixed>|null + = null
                                                                                    +
                                                                                    +

                                                                                    The config to set

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + deepGet() + + +

                                                                                    + + +

                                                                                    Get an item or items from an array of data.

                                                                                    + + + public + static deepGet(array<string|int, mixed> $dataSource[, string|array<string|int, mixed> $item = null ]) : mixed + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $dataSource + : array<string|int, mixed> +
                                                                                    +
                                                                                    +

                                                                                    An array of data to search through

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $item + : string|array<string|int, mixed> + = null
                                                                                    +
                                                                                    +

                                                                                    The items to return

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + deepGetDot() + + +

                                                                                    + + +

                                                                                    Deep get an item or items from an array of data using dot notation.

                                                                                    + + + public + static deepGetDot(array<string|int, mixed> $dataSource[, string|array<string|int, mixed> $item = null ]) : mixed + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $dataSource + : array<string|int, mixed> +
                                                                                    +
                                                                                    +

                                                                                    An array of data to search through

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $item + : string|array<string|int, mixed> + = null
                                                                                    +
                                                                                    +

                                                                                    The items to return

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + deepSetDot() + + +

                                                                                    + + +

                                                                                    Deep set an item or items in an array of data using dot notation.

                                                                                    + + + public + static deepSetDot(array<string|int, mixed> $dataSource, string|array<string|int, mixed> $item[, mixed $value = null ]) : mixed + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $dataSource + : array<string|int, mixed> +
                                                                                    +
                                                                                    +

                                                                                    An array of data to search through

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $item + : string|array<string|int, mixed> +
                                                                                    +
                                                                                    +

                                                                                    The items to set

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $value + : mixed + = null
                                                                                    +
                                                                                    +

                                                                                    The value to set

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + deepUnsetDot() + + +

                                                                                    + + +

                                                                                    Deep unset an item or items in an array of data using dot notation.

                                                                                    + + + public + static deepUnsetDot(mixed $dataSource, mixed $item) : mixed + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $dataSource + : mixed +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + $item + : mixed +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + errors() + + +

                                                                                    + + + + + public + static errors() : array<string|int, mixed> + +
                                                                                    +
                                                                                    + + + + + + + +
                                                                                    +
                                                                                    Return values
                                                                                    + array<string|int, mixed> +
                                                                                    + +
                                                                                    +
                                                                                    +

                                                                                    + generateToken() + + +

                                                                                    + + +

                                                                                    Generate a token for identifying your application

                                                                                    + + + public + static generateToken([int $strength = 16 ]) : string + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $strength + : int + = 16
                                                                                    +
                                                                                    +

                                                                                    Number of random characters to attach to token

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + +
                                                                                    +
                                                                                    Return values
                                                                                    + string +
                                                                                    + +
                                                                                    +
                                                                                    +

                                                                                    + sanitize() + + +

                                                                                    + + +

                                                                                    Escape malicious characters

                                                                                    + + + public + static sanitize(mixed $data) : mixed + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $data + : mixed +
                                                                                    +
                                                                                    +

                                                                                    The data to sanitize.

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + + +
                                                                                    +
                                                                                    +

                                                                                    + toBool() + + +

                                                                                    + + +

                                                                                    Convert string to boolean. Created due to inconsistencies in PHP's boolval and (bool)

                                                                                    + + + public + static toBool(string $value) : bool + +
                                                                                    +
                                                                                    + + +
                                                                                    Parameters
                                                                                    +
                                                                                    +
                                                                                    + $value + : string +
                                                                                    +
                                                                                    +

                                                                                    The value to convert

                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    + + + + + +
                                                                                    +
                                                                                    Return values
                                                                                    + bool +
                                                                                    + +
                                                                                    +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    
                                                                                    +        
                                                                                    + +
                                                                                    +
                                                                                    + + + +
                                                                                    +
                                                                                    +
                                                                                    + +
                                                                                    + On this page + + +
                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +
                                                                                    +

                                                                                    Search results

                                                                                    + +
                                                                                    +
                                                                                    +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + +
                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-App.html b/src/public/api/classes/Leaf-App.html new file mode 100644 index 00000000..4d003d9b --- /dev/null +++ b/src/public/api/classes/Leaf-App.html @@ -0,0 +1,4822 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                      +

                                                                                      Leaf PHP

                                                                                      + + + + + +
                                                                                      + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      + + +
                                                                                      +

                                                                                      + App + + + extends Router + + +
                                                                                      + in package + +
                                                                                      + + +

                                                                                      + +
                                                                                      + + +
                                                                                      + + + +

                                                                                      Leaf PHP Framework +-------- +The easiest way to build simple but powerful apps and APIs quickly.

                                                                                      + + + + +
                                                                                      + Tags + + +
                                                                                      +
                                                                                      +
                                                                                      + author +
                                                                                      +
                                                                                      + +

                                                                                      Michael Darko mickdd22@gmail.com

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + copyright +
                                                                                      +
                                                                                      + +

                                                                                      2019-2025 Michael Darko

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + link +
                                                                                      +
                                                                                      + https://leafphp.dev + +
                                                                                      +
                                                                                      + license +
                                                                                      +
                                                                                      + +

                                                                                      MIT

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + +

                                                                                      + Table of Contents + + +

                                                                                      + + + + + + + + + +

                                                                                      + Properties + + +

                                                                                      +
                                                                                      +
                                                                                      + $appRoutes + +  : mixed +
                                                                                      +
                                                                                      Sorted list of routes and their handlers
                                                                                      + +
                                                                                      + $downHandler + +  : mixed +
                                                                                      +
                                                                                      Callable to be invoked if app is down
                                                                                      + +
                                                                                      + $errorHandler + +  : Run +
                                                                                      +
                                                                                      Callable to be invoked on application error
                                                                                      + +
                                                                                      + $groupRoute + +  : mixed +
                                                                                      +
                                                                                      Current group base path
                                                                                      + +
                                                                                      + $hooks + +  : mixed +
                                                                                      +
                                                                                      'Middleware' to run at specific times
                                                                                      + +
                                                                                      + $middleware + +  : mixed +
                                                                                      +
                                                                                      All middleware that should be run
                                                                                      + +
                                                                                      + $namedMiddleware + +  : mixed +
                                                                                      +
                                                                                      Named middleware
                                                                                      + +
                                                                                      + $namedRoutes + +  : mixed +
                                                                                      +
                                                                                      All named routes
                                                                                      + +
                                                                                      + $namespace + +  : mixed +
                                                                                      +
                                                                                      Default controller namespace
                                                                                      + +
                                                                                      + $notFoundHandler + +  : mixed +
                                                                                      +
                                                                                      Callable to be invoked if no matching routes are found
                                                                                      + +
                                                                                      + $routeGroupMiddleware + +  : mixed +
                                                                                      +
                                                                                      Route based middleware
                                                                                      + +
                                                                                      + $routes + +  : mixed +
                                                                                      +
                                                                                      All added routes and their handlers
                                                                                      + +
                                                                                      + $serverBasePath + +  : mixed +
                                                                                      +
                                                                                      The Server Base Path for Router Execution
                                                                                      + +
                                                                                      + +

                                                                                      + Methods + + +

                                                                                      +
                                                                                      +
                                                                                      + __call() + +  : mixed +
                                                                                      + +
                                                                                      + __construct() + +  : mixed +
                                                                                      +
                                                                                      Constructor
                                                                                      + +
                                                                                      + __get() + +  : mixed +
                                                                                      + +
                                                                                      + __isset() + +  : mixed +
                                                                                      + +
                                                                                      + __set() + +  : mixed +
                                                                                      + +
                                                                                      + __unset() + +  : mixed +
                                                                                      + +
                                                                                      + all() + +  : mixed +
                                                                                      +
                                                                                      Add a route with all available HTTP methods
                                                                                      + +
                                                                                      + apiResource() + +  : mixed +
                                                                                      +
                                                                                      Create a resource route for using controllers without the create and edit actions.
                                                                                      + +
                                                                                      + attach() + +  : mixed +
                                                                                      +
                                                                                      Run code that can change the behaviour of Leaf +*Usually used by library creators*
                                                                                      + +
                                                                                      + attachView() + +  : mixed +
                                                                                      +
                                                                                      Attach a view engine to Leaf
                                                                                      + +
                                                                                      + config() + +  : mixed +
                                                                                      +
                                                                                      Configure Leaf Settings
                                                                                      + +
                                                                                      + cors() + +  : mixed +
                                                                                      +
                                                                                      Evade CORS errors
                                                                                      + +
                                                                                      + csrf() + +  : mixed +
                                                                                      +
                                                                                      Add CSRF protection to your app
                                                                                      + +
                                                                                      + delete() + +  : mixed +
                                                                                      +
                                                                                      Add a route with DELETE method
                                                                                      + +
                                                                                      + environment() + +  : mixed +
                                                                                      +
                                                                                      Run mode-specific code. Unlike script, this runs immediately.
                                                                                      + +
                                                                                      + findRoute() + +  : array<string|int, mixed> +
                                                                                      +
                                                                                      Find the current route
                                                                                      + +
                                                                                      + get() + +  : mixed +
                                                                                      +
                                                                                      Add a route with GET method
                                                                                      + +
                                                                                      + getBasePath() + +  : string +
                                                                                      +
                                                                                      Return server base Path, and define it if isn't defined.
                                                                                      + +
                                                                                      + getCurrentUri() + +  : string +
                                                                                      +
                                                                                      Define the current relative URI.
                                                                                      + +
                                                                                      + getNamespace() + +  : string +
                                                                                      +
                                                                                      Get the global handler namespace.
                                                                                      + +
                                                                                      + getRoute() + +  : array<string|int, mixed> +
                                                                                      +
                                                                                      Get route info of the current route
                                                                                      + +
                                                                                      + group() + +  : mixed +
                                                                                      +
                                                                                      Alias for mount
                                                                                      + +
                                                                                      + halt() + +  : mixed +
                                                                                      +
                                                                                      Halt
                                                                                      + +
                                                                                      + handleUrl() + +  : mixed +
                                                                                      +
                                                                                      Force call the Leaf URL handler
                                                                                      + +
                                                                                      + head() + +  : mixed +
                                                                                      +
                                                                                      Add a route with HEAD method
                                                                                      + +
                                                                                      + headers() + +  : Headers +
                                                                                      +
                                                                                      Get the Request Headers
                                                                                      + +
                                                                                      + hook() + +  : mixed +
                                                                                      +
                                                                                      Add a router hook
                                                                                      + +
                                                                                      + inertia() + +  : mixed +
                                                                                      +
                                                                                      Add a route that renders an inertia view
                                                                                      + +
                                                                                      + logger() + +  : Log|null|void +
                                                                                      +
                                                                                      Get application log
                                                                                      + +
                                                                                      + match() + +  : mixed +
                                                                                      +
                                                                                      Store a route and it's handler
                                                                                      + +
                                                                                      + mount() + +  : mixed +
                                                                                      +
                                                                                      Mounts a collection of callbacks onto a base route.
                                                                                      + +
                                                                                      + options() + +  : mixed +
                                                                                      +
                                                                                      Add a route with OPTIONS method
                                                                                      + +
                                                                                      + patch() + +  : mixed +
                                                                                      +
                                                                                      Add a route with PATCH method
                                                                                      + +
                                                                                      + post() + +  : mixed +
                                                                                      +
                                                                                      Add a route with POST method
                                                                                      + +
                                                                                      + push() + +  : mixed +
                                                                                      +
                                                                                      Redirect to another route
                                                                                      + +
                                                                                      + put() + +  : mixed +
                                                                                      +
                                                                                      Add a route with PUT method
                                                                                      + +
                                                                                      + redirect() + +  : mixed +
                                                                                      +
                                                                                      Add a route that sends an HTTP redirect
                                                                                      + +
                                                                                      + register() + +  : mixed +
                                                                                      +
                                                                                      This method adds a method to the global leaf instance +Register a method and use it globally on the Leaf Object
                                                                                      + +
                                                                                      + registerMiddleware() + +  : mixed +
                                                                                      +
                                                                                      Register a middleware in your Leaf application by name
                                                                                      + +
                                                                                      + request() + +  : Request +
                                                                                      +
                                                                                      Get the Request object
                                                                                      + +
                                                                                      + resource() + +  : mixed +
                                                                                      +
                                                                                      Create a resource route for using controllers.
                                                                                      + +
                                                                                      + response() + +  : Response +
                                                                                      +
                                                                                      Get the Response object
                                                                                      + +
                                                                                      + root() + +  : string +
                                                                                      +
                                                                                      Get the absolute path to this Leaf application's root directory
                                                                                      + +
                                                                                      + route() + +  : string +
                                                                                      +
                                                                                      Get route url by defined route name
                                                                                      + +
                                                                                      + routes() + +  : array<string|int, mixed> +
                                                                                      +
                                                                                      Get all routes registered in your leaf app
                                                                                      + +
                                                                                      + run() + +  : mixed +
                                                                                      +
                                                                                      Dispatch your application routes
                                                                                      + +
                                                                                      + script() + +  : mixed +
                                                                                      +
                                                                                      Create mode-specific code
                                                                                      + +
                                                                                      + set404() + +  : mixed +
                                                                                      +
                                                                                      Set the 404 handling function.
                                                                                      + +
                                                                                      + setBasePath() + +  : mixed +
                                                                                      +
                                                                                      Explicilty sets the server base path. To be used when your entry script path differs from your entry URLs.
                                                                                      + +
                                                                                      + setDown() + +  : mixed +
                                                                                      +
                                                                                      Set a custom maintenance mode callback.
                                                                                      + +
                                                                                      + setErrorHandler() + +  : mixed +
                                                                                      +
                                                                                      Set a custom error screen.
                                                                                      + +
                                                                                      + setNamespace() + +  : mixed +
                                                                                      +
                                                                                      Set a global namespace for your handlers
                                                                                      + +
                                                                                      + use() + +  : mixed +
                                                                                      +
                                                                                      Add middleware
                                                                                      + +
                                                                                      + view() + +  : mixed +
                                                                                      +
                                                                                      Add a route that renders a view
                                                                                      + +
                                                                                      + vite() + +  : mixed +
                                                                                      +
                                                                                      Tune vite to work without Leaf MVC
                                                                                      + +
                                                                                      + ws() + +  : mixed +
                                                                                      +
                                                                                      Create a route handled by websocket (requires Eien module)
                                                                                      + +
                                                                                      + loadConfig() + +  : mixed +
                                                                                      + +
                                                                                      + mapHandler() + +  : array<string|int, mixed> +
                                                                                      +
                                                                                      Map handler and options
                                                                                      + +
                                                                                      + setupErrorHandler() + +  : mixed +
                                                                                      + +
                                                                                      + callHook() + +  : mixed +
                                                                                      +
                                                                                      Call a router hook
                                                                                      + +
                                                                                      + handle() + +  : int +
                                                                                      +
                                                                                      Handle a set of routes: if a match is found, execute the relating handling function.
                                                                                      + +
                                                                                      + invoke() + +  : mixed +
                                                                                      + +
                                                                                      + setupDefaultContainer() + +  : mixed +
                                                                                      + +
                                                                                      + + + + + + +
                                                                                      +

                                                                                      + Properties + + +

                                                                                      +
                                                                                      +

                                                                                      + $appRoutes + + + + +

                                                                                      + + +

                                                                                      Sorted list of routes and their handlers

                                                                                      + + + + protected + static mixed + $appRoutes + = [] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $downHandler + + + + +

                                                                                      + + +

                                                                                      Callable to be invoked if app is down

                                                                                      + + + + protected + static mixed + $downHandler + + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $errorHandler + + + + +

                                                                                      + + +

                                                                                      Callable to be invoked on application error

                                                                                      + + + + protected + Run + $errorHandler + + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $groupRoute + + + + +

                                                                                      + + +

                                                                                      Current group base path

                                                                                      + + + + protected + static mixed + $groupRoute + = '' + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $hooks + + + + +

                                                                                      + + +

                                                                                      'Middleware' to run at specific times

                                                                                      + + + + protected + static mixed + $hooks + = ['router.before' => false, 'router.before.route' => false, 'router.after.route' => false, 'router.after' => false] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $middleware + + + + +

                                                                                      + + +

                                                                                      All middleware that should be run

                                                                                      + + + + protected + static mixed + $middleware + = [] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $namedMiddleware + + + + +

                                                                                      + + +

                                                                                      Named middleware

                                                                                      + + + + protected + static mixed + $namedMiddleware + = [] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $namedRoutes + + + + +

                                                                                      + + +

                                                                                      All named routes

                                                                                      + + + + protected + static mixed + $namedRoutes + = [] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $namespace + + + + +

                                                                                      + + +

                                                                                      Default controller namespace

                                                                                      + + + + protected + static mixed + $namespace + = '' + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $notFoundHandler + + + + +

                                                                                      + + +

                                                                                      Callable to be invoked if no matching routes are found

                                                                                      + + + + protected + static mixed + $notFoundHandler + + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $routeGroupMiddleware + + + + +

                                                                                      + + +

                                                                                      Route based middleware

                                                                                      + + + + protected + static mixed + $routeGroupMiddleware + = [] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $routes + + + + +

                                                                                      + + +

                                                                                      All added routes and their handlers

                                                                                      + + + + protected + static mixed + $routes + = [] + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + $serverBasePath + + + + +

                                                                                      + + +

                                                                                      The Server Base Path for Router Execution

                                                                                      + + + + protected + static mixed + $serverBasePath + = '' + + + + + + + +
                                                                                      +
                                                                                      + +
                                                                                      +

                                                                                      + Methods + + +

                                                                                      +
                                                                                      +

                                                                                      + __call() + + +

                                                                                      + + + + + public + __call(mixed $method, mixed $args) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $method + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $args + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + __construct() + + +

                                                                                      + + +

                                                                                      Constructor

                                                                                      + + + public + __construct([array<string|int, mixed> $userSettings = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $userSettings + : array<string|int, mixed> + = []
                                                                                      +
                                                                                      +

                                                                                      Associative array of application settings

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + __get() + + +

                                                                                      + + + + + public + __get(mixed $name) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + __isset() + + +

                                                                                      + + + + + public + __isset(mixed $name) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + __set() + + +

                                                                                      + + + + + public + __set(mixed $name, mixed $value) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $value + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + __unset() + + +

                                                                                      + + + + + public + __unset(mixed $name) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + all() + + +

                                                                                      + + +

                                                                                      Add a route with all available HTTP methods

                                                                                      + + + public + static all(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + apiResource() + + +

                                                                                      + + +

                                                                                      Create a resource route for using controllers without the create and edit actions.

                                                                                      + + + public + static apiResource(string $pattern, array<string|int, mixed>|string $controller) : mixed + +
                                                                                      +
                                                                                      + +

                                                                                      This creates a routes that implement CRUD functionality in a controller +/posts creates:

                                                                                      +
                                                                                        +
                                                                                      • /posts - GET | HEAD - Controller@index
                                                                                      • +
                                                                                      • /posts - POST - Controller@store
                                                                                      • +
                                                                                      • /posts/{id} - GET | HEAD - Controller@show
                                                                                      • +
                                                                                      • /posts/{id}/edit - POST | PUT | PATCH - Controller@update
                                                                                      • +
                                                                                      • /posts/{id}/delete - POST | DELETE - Controller@destroy
                                                                                      • +
                                                                                      +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The base route to use eg: /post

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $controller + : array<string|int, mixed>|string +
                                                                                      +
                                                                                      +

                                                                                      to handle route eg: PostController

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + attach() + + +

                                                                                      + + +

                                                                                      Run code that can change the behaviour of Leaf +*Usually used by library creators*

                                                                                      + + + public + attach(callable $code) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $code + : callable +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + attachView() + + +

                                                                                      + + +

                                                                                      Attach a view engine to Leaf

                                                                                      + + + public + attachView(mixed $view[, mixed $name = null ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $view + : mixed +
                                                                                      +
                                                                                      +

                                                                                      The view engine to attach

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $name + : mixed + = null
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + config() + + +

                                                                                      + + +

                                                                                      Configure Leaf Settings

                                                                                      + + + public + config(string|array<string|int, mixed> $name[, mixed $value = null ]) : mixed + +
                                                                                      +
                                                                                      + +

                                                                                      This method defines application settings and acts as a setter and a getter.

                                                                                      +

                                                                                      If only one argument is specified and that argument is a string, the value +of the setting identified by the first argument will be returned, or NULL if +that setting does not exist.

                                                                                      +

                                                                                      If only one argument is specified and that argument is an associative array, +the array will be merged into the existing application settings.

                                                                                      +

                                                                                      If two arguments are provided, the first argument is the name of the setting +to be created or updated, and the second argument is the setting value.

                                                                                      +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : string|array<string|int, mixed> +
                                                                                      +
                                                                                      +

                                                                                      If a string, the name of the setting to set or retrieve. Else an associated array of setting names and values

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $value + : mixed + = null
                                                                                      +
                                                                                      +

                                                                                      If name is a string, the value of the setting identified by $name

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + mixed + — +

                                                                                      The value of a setting if only one argument is a string

                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + cors() + + +

                                                                                      + + +

                                                                                      Evade CORS errors

                                                                                      + + + public + cors([mixed $options = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $options + : mixed + = []
                                                                                      +
                                                                                      +

                                                                                      Config for cors

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + csrf() + + +

                                                                                      + + +

                                                                                      Add CSRF protection to your app

                                                                                      + + + public + csrf([array<string|int, mixed> $options = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                      +
                                                                                      +

                                                                                      Config for csrf

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + delete() + + +

                                                                                      + + +

                                                                                      Add a route with DELETE method

                                                                                      + + + public + static delete(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + environment() + + +

                                                                                      + + +

                                                                                      Run mode-specific code. Unlike script, this runs immediately.

                                                                                      + + + public + static environment(string $mode, callable $callback) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $mode + : string +
                                                                                      +
                                                                                      +

                                                                                      The mode to run code in

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $callback + : callable +
                                                                                      +
                                                                                      +

                                                                                      The code to run in selected mode.

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + findRoute() + + +

                                                                                      + + +

                                                                                      Find the current route

                                                                                      + + + public + static findRoute([array<string|int, mixed>|null $routes = null ][, string|null $uri = null ][, mixed $returnFirst = true ]) : array<string|int, mixed> + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $routes + : array<string|int, mixed>|null + = null
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $uri + : string|null + = null
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $returnFirst + : mixed + = true
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + array<string|int, mixed> +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + get() + + +

                                                                                      + + +

                                                                                      Add a route with GET method

                                                                                      + + + public + static get(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + getBasePath() + + +

                                                                                      + + +

                                                                                      Return server base Path, and define it if isn't defined.

                                                                                      + + + public + static getBasePath() : string + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + string +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + getCurrentUri() + + +

                                                                                      + + +

                                                                                      Define the current relative URI.

                                                                                      + + + public + static getCurrentUri() : string + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + string +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + getNamespace() + + +

                                                                                      + + +

                                                                                      Get the global handler namespace.

                                                                                      + + + public + static getNamespace() : string + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + string + — +

                                                                                      The given namespace if exists

                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + getRoute() + + +

                                                                                      + + +

                                                                                      Get route info of the current route

                                                                                      + + + public + static getRoute() : array<string|int, mixed> + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + array<string|int, mixed> + — +

                                                                                      The route info array

                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + group() + + +

                                                                                      + + +

                                                                                      Alias for mount

                                                                                      + + + public + static group(string $path, callable|array<string|int, mixed> $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $path + : string +
                                                                                      +
                                                                                      +

                                                                                      The route sub pattern/path to mount the callbacks on

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : callable|array<string|int, mixed> +
                                                                                      +
                                                                                      +

                                                                                      The callback method

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + halt() + + +

                                                                                      + + +

                                                                                      Halt

                                                                                      + + + public + static halt(int $status[, string $message = '' ]) : mixed + +
                                                                                      +
                                                                                      + +

                                                                                      Stop the application and immediately send the response with a +specific status and body to the HTTP client. This may send any +type of response: info, success, redirect, client error, or server error.

                                                                                      +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $status + : int +
                                                                                      +
                                                                                      +

                                                                                      The HTTP response status

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $message + : string + = ''
                                                                                      +
                                                                                      +

                                                                                      The HTTP response body

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + handleUrl() + + +

                                                                                      + + +

                                                                                      Force call the Leaf URL handler

                                                                                      + + + public + static handleUrl(string $method, string $url) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $method + : string +
                                                                                      +
                                                                                      +

                                                                                      The method to call

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $url + : string +
                                                                                      +
                                                                                      +

                                                                                      The uri to force

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + head() + + +

                                                                                      + + +

                                                                                      Add a route with HEAD method

                                                                                      + + + public + static head(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + headers() + + +

                                                                                      + + +

                                                                                      Get the Request Headers

                                                                                      + + + public + headers() : Headers + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + Headers +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + hook() + + +

                                                                                      + + +

                                                                                      Add a router hook

                                                                                      + + + public + static hook(string $name, callable|null $handler) : mixed + +
                                                                                      +
                                                                                      + +

                                                                                      Available hooks

                                                                                      +
                                                                                        +
                                                                                      • router.before
                                                                                      • +
                                                                                      • router.before.route
                                                                                      • +
                                                                                      • router.before.dispatch
                                                                                      • +
                                                                                      • router.after.dispatch
                                                                                      • +
                                                                                      • router.after.route
                                                                                      • +
                                                                                      • router.after
                                                                                      • +
                                                                                      +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : string +
                                                                                      +
                                                                                      +

                                                                                      The hook to set

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : callable|null +
                                                                                      +
                                                                                      +

                                                                                      The hook handler

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + inertia() + + +

                                                                                      + + +

                                                                                      Add a route that renders an inertia view

                                                                                      + + + public + static inertia(string $pattern, string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $view + : string +
                                                                                      +
                                                                                      +

                                                                                      The view to render

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                      +
                                                                                      +

                                                                                      The data to pass to the view

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + logger() + + +

                                                                                      + + +

                                                                                      Get application log

                                                                                      + + + public + logger() : Log|null|void + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + Log|null|void +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + match() + + +

                                                                                      + + +

                                                                                      Store a route and it's handler

                                                                                      + + + public + static match(string $allowedMethods, string $pattern, string|array<string|int, mixed>|callable $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $allowedMethods + : string +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : string|array<string|int, mixed>|callable +
                                                                                      +
                                                                                      +

                                                                                      The handler for route when matched

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + mount() + + +

                                                                                      + + +

                                                                                      Mounts a collection of callbacks onto a base route.

                                                                                      + + + public + static mount(string $path, callable|array<string|int, mixed> $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $path + : string +
                                                                                      +
                                                                                      +

                                                                                      The route sub pattern/path to mount the callbacks on

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : callable|array<string|int, mixed> +
                                                                                      +
                                                                                      +

                                                                                      The callback method

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + options() + + +

                                                                                      + + +

                                                                                      Add a route with OPTIONS method

                                                                                      + + + public + static options(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + patch() + + +

                                                                                      + + +

                                                                                      Add a route with PATCH method

                                                                                      + + + public + static patch(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + post() + + +

                                                                                      + + +

                                                                                      Add a route with POST method

                                                                                      + + + public + static post(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + push() + + +

                                                                                      + + +

                                                                                      Redirect to another route

                                                                                      + + + public + static push(string|array<string|int, mixed> $route[, array<string|int, mixed>|null $data = null ]) : mixed + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      +

                                                                                      Use Leaf\Http\Response::redirect instead

                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $route + : string|array<string|int, mixed> +
                                                                                      +
                                                                                      +

                                                                                      The route to redirect to

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $data + : array<string|int, mixed>|null + = null
                                                                                      +
                                                                                      +

                                                                                      Data to pass to the next route

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + put() + + +

                                                                                      + + +

                                                                                      Add a route with PUT method

                                                                                      + + + public + static put(string $pattern, mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + redirect() + + +

                                                                                      + + +

                                                                                      Add a route that sends an HTTP redirect

                                                                                      + + + public + static redirect(string $from, string $to[, int $status = 302 ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $from + : string +
                                                                                      +
                                                                                      +

                                                                                      The url to redirect from

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $to + : string +
                                                                                      +
                                                                                      +

                                                                                      The url to redirect to

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $status + : int + = 302
                                                                                      +
                                                                                      +

                                                                                      The http status code for redirect

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + register() + + +

                                                                                      + + +

                                                                                      This method adds a method to the global leaf instance +Register a method and use it globally on the Leaf Object

                                                                                      + + + public + register(mixed $name, mixed $value) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $value + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + registerMiddleware() + + +

                                                                                      + + +

                                                                                      Register a middleware in your Leaf application by name

                                                                                      + + + public + registerMiddleware(string $name, callable $middleware) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : string +
                                                                                      +
                                                                                      +

                                                                                      The name of the middleware

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $middleware + : callable +
                                                                                      +
                                                                                      +

                                                                                      The middleware to register

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + request() + + +

                                                                                      + + +

                                                                                      Get the Request object

                                                                                      + + + public + request() : Request + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + Request +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + resource() + + +

                                                                                      + + +

                                                                                      Create a resource route for using controllers.

                                                                                      + + + public + static resource(string $pattern, array<string|int, mixed>|string $controller) : mixed + +
                                                                                      +
                                                                                      + +

                                                                                      This creates a routes that implement CRUD functionality in a controller +/posts creates:

                                                                                      +
                                                                                        +
                                                                                      • /posts - GET | HEAD - Controller@index
                                                                                      • +
                                                                                      • /posts - POST - Controller@store
                                                                                      • +
                                                                                      • /posts/{id} - GET | HEAD - Controller@show
                                                                                      • +
                                                                                      • /posts/create - GET | HEAD - Controller@create
                                                                                      • +
                                                                                      • /posts/{id}/edit - GET | HEAD - Controller@edit
                                                                                      • +
                                                                                      • /posts/{id}/edit - POST | PUT | PATCH - Controller@update
                                                                                      • +
                                                                                      • /posts/{id}/delete - POST | DELETE - Controller@destroy
                                                                                      • +
                                                                                      +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The base route to use eg: /post

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $controller + : array<string|int, mixed>|string +
                                                                                      +
                                                                                      +

                                                                                      to handle route eg: PostController

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + response() + + +

                                                                                      + + +

                                                                                      Get the Response object

                                                                                      + + + public + response() : Response + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + Response +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + root() + + +

                                                                                      + + +

                                                                                      Get the absolute path to this Leaf application's root directory

                                                                                      + + + public + root() : string + +
                                                                                      +
                                                                                      + +

                                                                                      This method returns the absolute path to the Leaf application's +directory. If the Leaf application is installed in a public-accessible +sub-directory, the sub-directory path will be included. This method +will always return an absolute path WITH a trailing slash.

                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + string +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + route() + + +

                                                                                      + + +

                                                                                      Get route url by defined route name

                                                                                      + + + public + static route(string $routeName[, array<string|int, mixed>|string|null $params = null ]) : string + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $routeName + : string +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $params + : array<string|int, mixed>|string|null + = null
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + string +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + routes() + + +

                                                                                      + + +

                                                                                      Get all routes registered in your leaf app

                                                                                      + + + public + static routes() : array<string|int, mixed> + +
                                                                                      +
                                                                                      + + + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + array<string|int, mixed> +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + run() + + +

                                                                                      + + +

                                                                                      Dispatch your application routes

                                                                                      + + + public + static run([callable|null $callback = null ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $callback + : callable|null + = null
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      + Tags + + +
                                                                                      +
                                                                                      +
                                                                                      + inheritdoc +
                                                                                      +
                                                                                      + + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      +

                                                                                      + script() + + +

                                                                                      + + +

                                                                                      Create mode-specific code

                                                                                      + + + public + static script(string $mode, callable $callback) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $mode + : string +
                                                                                      +
                                                                                      +

                                                                                      The mode to run code in

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $callback + : callable +
                                                                                      +
                                                                                      +

                                                                                      The code to run in selected mode.

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + set404() + + +

                                                                                      + + +

                                                                                      Set the 404 handling function.

                                                                                      + + + public + static set404([object|callable $handler = null ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $handler + : object|callable + = null
                                                                                      +
                                                                                      +

                                                                                      The function to be executed

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + setBasePath() + + +

                                                                                      + + +

                                                                                      Explicilty sets the server base path. To be used when your entry script path differs from your entry URLs.

                                                                                      + + + public + static setBasePath(mixed $serverBasePath) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $serverBasePath + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      + Tags + + +
                                                                                      +
                                                                                      +
                                                                                      + see +
                                                                                      +
                                                                                      + https://github.com/bramus/router/issues/82#issuecomment-466956078 + + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      +

                                                                                      + setDown() + + +

                                                                                      + + +

                                                                                      Set a custom maintenance mode callback.

                                                                                      + + + public + static setDown([callable|null $handler = null ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $handler + : callable|null + = null
                                                                                      +
                                                                                      +

                                                                                      The function to be executed

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + setErrorHandler() + + +

                                                                                      + + +

                                                                                      Set a custom error screen.

                                                                                      + + + public + setErrorHandler(mixed $handler) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      +

                                                                                      The function to be executed

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + setNamespace() + + +

                                                                                      + + +

                                                                                      Set a global namespace for your handlers

                                                                                      + + + public + static setNamespace(string $namespace) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $namespace + : string +
                                                                                      +
                                                                                      +

                                                                                      The global namespace to set

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + use() + + +

                                                                                      + + +

                                                                                      Add middleware

                                                                                      + + + public + static use(callable|string $middleware) : mixed + +
                                                                                      +
                                                                                      + +

                                                                                      This method prepends new middleware to the application middleware stack. +The argument must be an instance that subclasses Leaf_Middleware.

                                                                                      +
                                                                                      + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $middleware + : callable|string +
                                                                                      +
                                                                                      +

                                                                                      The middleware to set

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + view() + + +

                                                                                      + + +

                                                                                      Add a route that renders a view

                                                                                      + + + public + static view(string $pattern, string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $pattern + : string +
                                                                                      +
                                                                                      +

                                                                                      The route pattern/path to match

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $view + : string +
                                                                                      +
                                                                                      +

                                                                                      The view to render

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $data + : array<string|int, mixed> + = []
                                                                                      +
                                                                                      +

                                                                                      The data to pass to the view

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + vite() + + +

                                                                                      + + +

                                                                                      Tune vite to work without Leaf MVC

                                                                                      + + + public + vite([mixed $options = ['assets' => '', 'build' => '', 'hotFile' => 'hot'] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $options + : mixed + = ['assets' => '', 'build' => '', 'hotFile' => 'hot']
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + ws() + + +

                                                                                      + + +

                                                                                      Create a route handled by websocket (requires Eien module)

                                                                                      + + + public + ws(string $name, callable $callback) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : string +
                                                                                      +
                                                                                      +

                                                                                      The url of the route

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $callback + : callable +
                                                                                      +
                                                                                      +

                                                                                      The callback function

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + +
                                                                                      + Tags + + +
                                                                                      +
                                                                                      +
                                                                                      + uses +
                                                                                      +
                                                                                      + package + +

                                                                                      Eien module

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + see +
                                                                                      +
                                                                                      + https://leafphp.dev/modules/eien/ + + +
                                                                                      +
                                                                                      + + + + +
                                                                                      +
                                                                                      +

                                                                                      + loadConfig() + + +

                                                                                      + + + + + protected + loadConfig([array<string|int, mixed> $userSettings = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $userSettings + : array<string|int, mixed> + = []
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + mapHandler() + + +

                                                                                      + + +

                                                                                      Map handler and options

                                                                                      + + + protected + static mapHandler(mixed $handler[, mixed $options = ['name' => null, 'middleware' => null, 'namespace' => null] ]) : array<string|int, mixed> + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $options + : mixed + = ['name' => null, 'middleware' => null, 'namespace' => null]
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + array<string|int, mixed> +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + setupErrorHandler() + + +

                                                                                      + + + + + protected + setupErrorHandler() : mixed + +
                                                                                      +
                                                                                      + + + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + callHook() + + +

                                                                                      + + +

                                                                                      Call a router hook

                                                                                      + + + private + static callHook(string $name) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $name + : string +
                                                                                      +
                                                                                      +

                                                                                      The hook to call

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + handle() + + +

                                                                                      + + +

                                                                                      Handle a set of routes: if a match is found, execute the relating handling function.

                                                                                      + + + private + static handle([array<string|int, mixed> $routes = null ][, bool $quitAfterRun = false ][, string|null $uri = null ]) : int + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $routes + : array<string|int, mixed> + = null
                                                                                      +
                                                                                      +

                                                                                      Collection of route patterns and their handling functions

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $quitAfterRun + : bool + = false
                                                                                      +
                                                                                      +

                                                                                      Does the handle function need to quit after one route was matched?

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $uri + : string|null + = null
                                                                                      +
                                                                                      +

                                                                                      The URI to call (automatically set if nothing is passed).

                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + +
                                                                                      +
                                                                                      Return values
                                                                                      + int + — +

                                                                                      The number of routes handled

                                                                                      +
                                                                                      + +
                                                                                      + +
                                                                                      +
                                                                                      +

                                                                                      + invoke() + + +

                                                                                      + + + + + private + static invoke(mixed $handler[, mixed $params = [] ]) : mixed + +
                                                                                      +
                                                                                      + + +
                                                                                      Parameters
                                                                                      +
                                                                                      +
                                                                                      + $handler + : mixed +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + $params + : mixed + = []
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      + + + + + + +
                                                                                      +
                                                                                      +

                                                                                      + setupDefaultContainer() + + +

                                                                                      + + + + + private + setupDefaultContainer() : mixed + +
                                                                                      +
                                                                                      + + + + + + + + +
                                                                                      +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      
                                                                                      +        
                                                                                      + +
                                                                                      +
                                                                                      + + + +
                                                                                      +
                                                                                      +
                                                                                      + +
                                                                                      + On this page + + +
                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +

                                                                                      Search results

                                                                                      + +
                                                                                      +
                                                                                      +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + +
                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Auth-Config.html b/src/public/api/classes/Leaf-Auth-Config.html new file mode 100644 index 00000000..197fbee5 --- /dev/null +++ b/src/public/api/classes/Leaf-Auth-Config.html @@ -0,0 +1,788 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                        +

                                                                                        Leaf PHP

                                                                                        + + + + + +
                                                                                        + +
                                                                                        +
                                                                                        + + + + +
                                                                                        +
                                                                                        + + +
                                                                                        +

                                                                                        + Config + + +
                                                                                        + in package + +
                                                                                        + + +

                                                                                        + +
                                                                                        + + +
                                                                                        + + + +

                                                                                        Config for Leaf Auth +-------- +Set/Get config to match your app

                                                                                        + + + + +
                                                                                        + Tags + + +
                                                                                        +
                                                                                        +
                                                                                        + since +
                                                                                        +
                                                                                        + 3.0.0 + + +
                                                                                        +
                                                                                        + version +
                                                                                        +
                                                                                        + 0.1.0 + + +
                                                                                        +
                                                                                        + + + + + +

                                                                                        + Table of Contents + + +

                                                                                        + + + + + + + + + +

                                                                                        + Properties + + +

                                                                                        +
                                                                                        +
                                                                                        + $config + +  : array<string|int, mixed> +
                                                                                        +
                                                                                        configuration for Leaf Auth
                                                                                        + +
                                                                                        + $userCache + +  : array<string|int, mixed> +
                                                                                        +
                                                                                        Additional user information for cache
                                                                                        + +
                                                                                        + +

                                                                                        + Methods + + +

                                                                                        +
                                                                                        +
                                                                                        + get() + +  : mixed +
                                                                                        +
                                                                                        Get Leaf Auth config
                                                                                        + +
                                                                                        + getUserCache() + +  : mixed +
                                                                                        +
                                                                                        Get user cache
                                                                                        + +
                                                                                        + overwrite() + +  : void +
                                                                                        +
                                                                                        Overwrite Leaf Auth config
                                                                                        + +
                                                                                        + set() + +  : void +
                                                                                        +
                                                                                        Set Leaf Auth config
                                                                                        + +
                                                                                        + setUserCache() + +  : void +
                                                                                        +
                                                                                        Set user cache
                                                                                        + +
                                                                                        + + + + + + +
                                                                                        +

                                                                                        + Properties + + +

                                                                                        +
                                                                                        +

                                                                                        + $config + + + + +

                                                                                        + + +

                                                                                        configuration for Leaf Auth

                                                                                        + + + + protected + static array<string|int, mixed> + $config + = ['id.key' => 'id', 'db.table' => 'users', 'roles.key' => 'leaf_auth_user_roles', 'timestamps' => true, 'timestamps.format' => 'YYYY-MM-DD HH:mm:ss', 'password.encode' => null, 'password.verify' => null, 'password.key' => 'password', 'unique' => ['email', 'username'], 'hidden' => ['field.id', 'field.password'], 'session' => false, 'session.lifetime' => 60 * 60 * 24, 'session.cookie' => ['secure' => true, 'httponly' => true, 'samesite' => 'lax'], 'token.lifetime' => null, 'token.secret' => '@_leaf$0Secret!', 'messages.loginParamsError' => 'Incorrect credentials!', 'messages.loginPasswordError' => 'Password is incorrect!'] + + + + + + + +
                                                                                        +
                                                                                        +

                                                                                        + $userCache + + + + +

                                                                                        + + +

                                                                                        Additional user information for cache

                                                                                        + + + + protected + static array<string|int, mixed> + $userCache + = [] + + + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +

                                                                                        + Methods + + +

                                                                                        +
                                                                                        +

                                                                                        + get() + + +

                                                                                        + + +

                                                                                        Get Leaf Auth config

                                                                                        + + + public + static get([mixed $key = null ]) : mixed + +
                                                                                        +
                                                                                        + + +
                                                                                        Parameters
                                                                                        +
                                                                                        +
                                                                                        + $key + : mixed + = null
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + + + +
                                                                                        +
                                                                                        +

                                                                                        + getUserCache() + + +

                                                                                        + + +

                                                                                        Get user cache

                                                                                        + + + public + static getUserCache([mixed $key = null ]) : mixed + +
                                                                                        +
                                                                                        + + +
                                                                                        Parameters
                                                                                        +
                                                                                        +
                                                                                        + $key + : mixed + = null
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + + + +
                                                                                        +
                                                                                        +

                                                                                        + overwrite() + + +

                                                                                        + + +

                                                                                        Overwrite Leaf Auth config

                                                                                        + + + public + static overwrite(mixed $config) : void + +
                                                                                        +
                                                                                        + + +
                                                                                        Parameters
                                                                                        +
                                                                                        +
                                                                                        + $config + : mixed +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + + + +
                                                                                        +
                                                                                        +

                                                                                        + set() + + +

                                                                                        + + +

                                                                                        Set Leaf Auth config

                                                                                        + + + public + static set(mixed $config) : void + +
                                                                                        +
                                                                                        + + +
                                                                                        Parameters
                                                                                        +
                                                                                        +
                                                                                        + $config + : mixed +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + + + +
                                                                                        +
                                                                                        +

                                                                                        + setUserCache() + + +

                                                                                        + + +

                                                                                        Set user cache

                                                                                        + + + public + static setUserCache(mixed $key, mixed $value) : void + +
                                                                                        +
                                                                                        + + +
                                                                                        Parameters
                                                                                        +
                                                                                        +
                                                                                        + $key + : mixed +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + $value + : mixed +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + + + + + +
                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        
                                                                                        +        
                                                                                        + +
                                                                                        +
                                                                                        + + + +
                                                                                        +
                                                                                        +
                                                                                        + +
                                                                                        + On this page + + +
                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +

                                                                                        Search results

                                                                                        + +
                                                                                        +
                                                                                        +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + +
                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Auth-Model.html b/src/public/api/classes/Leaf-Auth-Model.html new file mode 100644 index 00000000..462624cc --- /dev/null +++ b/src/public/api/classes/Leaf-Auth-Model.html @@ -0,0 +1,1037 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                          +

                                                                                          Leaf PHP

                                                                                          + + + + + +
                                                                                          + +
                                                                                          +
                                                                                          + + + + +
                                                                                          +
                                                                                          + + +
                                                                                          +

                                                                                          + Model + + +
                                                                                          + in package + +
                                                                                          + + +

                                                                                          + +
                                                                                          + + +
                                                                                          + + + +

                                                                                          Auth User Model +---- +Tiny model class for the user. Provides bare minimum +functionality for user and user data manipulation.

                                                                                          + + + + +
                                                                                          + Tags + + +
                                                                                          +
                                                                                          +
                                                                                          + since +
                                                                                          +
                                                                                          + 3.0.0 + + +
                                                                                          +
                                                                                          + + + + + +

                                                                                          + Table of Contents + + +

                                                                                          + + + + + + + + + +

                                                                                          + Properties + + +

                                                                                          +
                                                                                          +
                                                                                          + $dataToSave + +  : array<string|int, mixed> +
                                                                                          +
                                                                                          User data to save
                                                                                          + +
                                                                                          + $db + +  : Db +
                                                                                          +
                                                                                          DB connection
                                                                                          + +
                                                                                          + $table + +  : string +
                                                                                          +
                                                                                          DB table name
                                                                                          + +
                                                                                          + $user + +  : User +
                                                                                          +
                                                                                          User Information
                                                                                          + +
                                                                                          + +

                                                                                          + Methods + + +

                                                                                          +
                                                                                          +
                                                                                          + __call() + +  : mixed +
                                                                                          + +
                                                                                          + __construct() + +  : mixed +
                                                                                          + +
                                                                                          + __set() + +  : mixed +
                                                                                          + +
                                                                                          + create() + +  : bool +
                                                                                          +
                                                                                          Create a new model resource
                                                                                          + +
                                                                                          + delete() + +  : Db +
                                                                                          +
                                                                                          Delete a model resource
                                                                                          + +
                                                                                          + save() + +  : bool +
                                                                                          +
                                                                                          Save a model resource
                                                                                          + +
                                                                                          + table() + +  : Db +
                                                                                          +
                                                                                          Get a model resource
                                                                                          + +
                                                                                          + update() + +  : Db +
                                                                                          +
                                                                                          Update a model resource
                                                                                          + +
                                                                                          + + + + + + +
                                                                                          +

                                                                                          + Properties + + +

                                                                                          +
                                                                                          +

                                                                                          + $dataToSave + + + + +

                                                                                          + + +

                                                                                          User data to save

                                                                                          + + + + protected + array<string|int, mixed> + $dataToSave + = [] + + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $db + + + + +

                                                                                          + + +

                                                                                          DB connection

                                                                                          + + + + protected + Db + $db + + + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $table + + + + +

                                                                                          + + +

                                                                                          DB table name

                                                                                          + + + + protected + string + $table + + + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + $user + + + + +

                                                                                          + + +

                                                                                          User Information

                                                                                          + + + + protected + User + $user + + + + + + + + +
                                                                                          +
                                                                                          + +
                                                                                          +

                                                                                          + Methods + + +

                                                                                          +
                                                                                          +

                                                                                          + __call() + + +

                                                                                          + + + + + public + __call(mixed $name, mixed $arguments) : mixed + +
                                                                                          +
                                                                                          + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $name + : mixed +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + $arguments + : mixed +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + __construct() + + +

                                                                                          + + + + + public + __construct(mixed $data) : mixed + +
                                                                                          +
                                                                                          + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $data + : mixed +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + __set() + + +

                                                                                          + + + + + public + __set(mixed $name, mixed $value) : mixed + +
                                                                                          +
                                                                                          + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $name + : mixed +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + $value + : mixed +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + + +
                                                                                          +
                                                                                          +

                                                                                          + create() + + +

                                                                                          + + +

                                                                                          Create a new model resource

                                                                                          + + + public + create(array<string|int, mixed> $data) : bool + +
                                                                                          +
                                                                                          + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $data + : array<string|int, mixed> +
                                                                                          +
                                                                                          +

                                                                                          Data to be inserted

                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + +
                                                                                          +
                                                                                          Return values
                                                                                          + bool +
                                                                                          + +
                                                                                          +
                                                                                          +

                                                                                          + delete() + + +

                                                                                          + + +

                                                                                          Delete a model resource

                                                                                          + + + public + delete() : Db + +
                                                                                          +
                                                                                          + + + + + + + +
                                                                                          +
                                                                                          Return values
                                                                                          + Db +
                                                                                          + +
                                                                                          +
                                                                                          +

                                                                                          + save() + + +

                                                                                          + + +

                                                                                          Save a model resource

                                                                                          + + + public + save() : bool + +
                                                                                          +
                                                                                          + + + + + + + +
                                                                                          +
                                                                                          Return values
                                                                                          + bool +
                                                                                          + +
                                                                                          +
                                                                                          +

                                                                                          + table() + + +

                                                                                          + + +

                                                                                          Get a model resource

                                                                                          + + + public + table([string $columns = '*' ]) : Db + +
                                                                                          +
                                                                                          + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $columns + : string + = '*'
                                                                                          +
                                                                                          +

                                                                                          Columns to search by separated by commas or *

                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + +
                                                                                          +
                                                                                          Return values
                                                                                          + Db +
                                                                                          + +
                                                                                          +
                                                                                          +

                                                                                          + update() + + +

                                                                                          + + +

                                                                                          Update a model resource

                                                                                          + + + public + update(array<string|int, mixed> $data) : Db + +
                                                                                          +
                                                                                          + + +
                                                                                          Parameters
                                                                                          +
                                                                                          +
                                                                                          + $data + : array<string|int, mixed> +
                                                                                          +
                                                                                          +

                                                                                          Data to be updated

                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          + + + + + +
                                                                                          +
                                                                                          Return values
                                                                                          + Db +
                                                                                          + +
                                                                                          +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          
                                                                                          +        
                                                                                          + +
                                                                                          +
                                                                                          + + + +
                                                                                          +
                                                                                          +
                                                                                          + +
                                                                                          + On this page + + +
                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +

                                                                                          Search results

                                                                                          + +
                                                                                          +
                                                                                          +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            + + +
                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Auth-User.html b/src/public/api/classes/Leaf-Auth-User.html new file mode 100644 index 00000000..a00fc00a --- /dev/null +++ b/src/public/api/classes/Leaf-Auth-User.html @@ -0,0 +1,2098 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                            +

                                                                                            Leaf PHP

                                                                                            + + + + + +
                                                                                            + +
                                                                                            +
                                                                                            + + + + +
                                                                                            +
                                                                                            + + +
                                                                                            +

                                                                                            + User + + +
                                                                                            + in package + +
                                                                                            + + + + uses + UsesRoles +

                                                                                            + +
                                                                                            + + +
                                                                                            + + + +

                                                                                            Auth User +---- +Class representing a user

                                                                                            + + + + +
                                                                                            + Tags + + +
                                                                                            +
                                                                                            +
                                                                                            + since +
                                                                                            +
                                                                                            + 3.0.0 + + +
                                                                                            +
                                                                                            + version +
                                                                                            +
                                                                                            + 1.0.0 + + +
                                                                                            +
                                                                                            + + + + + +

                                                                                            + Table of Contents + + +

                                                                                            + + + + + + + + + +

                                                                                            + Properties + + +

                                                                                            +
                                                                                            +
                                                                                            + $data + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            User Information
                                                                                            + +
                                                                                            + $db + +  : DB +
                                                                                            +
                                                                                            Internal instance of Leaf database
                                                                                            + +
                                                                                            + $permissions + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            User Permissions
                                                                                            + +
                                                                                            + $roles + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            User Roles
                                                                                            + +
                                                                                            + $session + +  : Session +
                                                                                            +
                                                                                            Internal instance of Leaf session
                                                                                            + +
                                                                                            + $tokens + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            User Tokens
                                                                                            + +
                                                                                            + +

                                                                                            + Methods + + +

                                                                                            +
                                                                                            +
                                                                                            + __call() + +  : Model +
                                                                                            +
                                                                                            Get a "user to many" table relation
                                                                                            + +
                                                                                            + __construct() + +  : mixed +
                                                                                            + +
                                                                                            + __get() + +  : mixed +
                                                                                            + +
                                                                                            + __isset() + +  : mixed +
                                                                                            + +
                                                                                            + __set() + +  : mixed +
                                                                                            + +
                                                                                            + __toString() + +  : mixed +
                                                                                            + +
                                                                                            + __unset() + +  : mixed +
                                                                                            + +
                                                                                            + assign() + +  : bool +
                                                                                            +
                                                                                            Assign new role to user
                                                                                            + +
                                                                                            + can() + +  : bool +
                                                                                            +
                                                                                            Check if user has a permission
                                                                                            + +
                                                                                            + cannot() + +  : bool +
                                                                                            +
                                                                                            Check if a user does not have a permission
                                                                                            + +
                                                                                            + generateToken() + +  : string +
                                                                                            +
                                                                                            Generate a new JWT for the user
                                                                                            + +
                                                                                            + generateVerificationToken() + +  : string +
                                                                                            +
                                                                                            Generate a verification token for the user
                                                                                            + +
                                                                                            + get() + +  : mixed +
                                                                                            + +
                                                                                            + getAuthInfo() + +  : object +
                                                                                            +
                                                                                            Get auth information to be sent to the client
                                                                                            + +
                                                                                            + id() + +  : string|int +
                                                                                            +
                                                                                            Return the id of current user
                                                                                            + +
                                                                                            + is() + +  : bool +
                                                                                            +
                                                                                            Check if user has a role
                                                                                            + +
                                                                                            + isNot() + +  : bool +
                                                                                            +
                                                                                            Check if user does not have a role
                                                                                            + +
                                                                                            + isVerified() + +  : bool +
                                                                                            +
                                                                                            Check if email is verified
                                                                                            + +
                                                                                            + permissions() + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            Return the user's permissions
                                                                                            + +
                                                                                            + roles() + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            Return the user's roles
                                                                                            + +
                                                                                            + setDb() + +  : User +
                                                                                            +
                                                                                            Set user db instance
                                                                                            + +
                                                                                            + tokens() + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            Return generated tokens
                                                                                            + +
                                                                                            + unassign() + +  : void +
                                                                                            +
                                                                                            Remove a role from a user
                                                                                            + +
                                                                                            + verifyEmail() + +  : bool +
                                                                                            +
                                                                                            Verify user's email
                                                                                            + +
                                                                                            + getRolePermissions() + +  : array<string|int, mixed> +
                                                                                            +
                                                                                            Get the permissions for a role
                                                                                            + +
                                                                                            + setRolesAndPermissions() + +  : void +
                                                                                            +
                                                                                            Set the roles and permissions for a user
                                                                                            + +
                                                                                            + + + + + + +
                                                                                            +

                                                                                            + Properties + + +

                                                                                            +
                                                                                            +

                                                                                            + $data + + + + +

                                                                                            + + +

                                                                                            User Information

                                                                                            + + + + protected + array<string|int, mixed> + $data + = [] + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $db + + + + +

                                                                                            + + +

                                                                                            Internal instance of Leaf database

                                                                                            + + + + protected + DB + $db + + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $permissions + + + + +

                                                                                            + + +

                                                                                            User Permissions

                                                                                            + + + + protected + array<string|int, mixed> + $permissions + = [] + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $roles + + + + +

                                                                                            + + +

                                                                                            User Roles

                                                                                            + + + + protected + array<string|int, mixed> + $roles + = [] + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $session + + + + +

                                                                                            + + +

                                                                                            Internal instance of Leaf session

                                                                                            + + + + protected + Session + $session + + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + $tokens + + + + +

                                                                                            + + +

                                                                                            User Tokens

                                                                                            + + + + protected + array<string|int, mixed> + $tokens + = [] + + + + + + + +
                                                                                            +
                                                                                            + +
                                                                                            +

                                                                                            + Methods + + +

                                                                                            +
                                                                                            +

                                                                                            + __call() + + +

                                                                                            + + +

                                                                                            Get a "user to many" table relation

                                                                                            + + + public + __call(mixed $method, mixed $args) : Model + +
                                                                                            +
                                                                                            + +
                                                                                            +auth()->user()->orders()->all(); +auth()->user()->transactions()->where('amount', '>', 100)->get(); +auth()->user()->notes()->where('title', 'like', '%important%')->get(); +auth()->user()->posts()->where('published', true)->all(); + +
                                                                                            + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $method + : mixed +
                                                                                            +
                                                                                            +

                                                                                            The table to relate to

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + $args + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + +
                                                                                            + Tags + + +
                                                                                            +
                                                                                            +
                                                                                            + throws +
                                                                                            +
                                                                                            + Exception + + +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + Model +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + __construct() + + +

                                                                                            + + + + + public + __construct(mixed $data[, mixed $session = true ]) : mixed + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $data + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + $session + : mixed + = true
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + __get() + + +

                                                                                            + + + + + public + __get(mixed $name) : mixed + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $name + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + __isset() + + +

                                                                                            + + + + + public + __isset(mixed $name) : mixed + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $name + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + __set() + + +

                                                                                            + + + + + public + __set(mixed $name, mixed $value) : mixed + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $name + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + $value + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + __toString() + + +

                                                                                            + + + + + public + __toString() : mixed + +
                                                                                            +
                                                                                            + + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + __unset() + + +

                                                                                            + + + + + public + __unset(mixed $name) : mixed + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $name + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + assign() + + +

                                                                                            + + +

                                                                                            Assign new role to user

                                                                                            + + + public + assign(string|array<string|int, mixed> $role) : bool + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $role + : string|array<string|int, mixed> +
                                                                                            +
                                                                                            +

                                                                                            The role to assign

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + can() + + +

                                                                                            + + +

                                                                                            Check if user has a permission

                                                                                            + + + public + can(string|array<string|int, mixed> $permission) : bool + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $permission + : string|array<string|int, mixed> +
                                                                                            +
                                                                                            +

                                                                                            The permission(s) to check

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + cannot() + + +

                                                                                            + + +

                                                                                            Check if a user does not have a permission

                                                                                            + + + public + cannot(mixed $permission) : bool + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $permission + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + generateToken() + + +

                                                                                            + + +

                                                                                            Generate a new JWT for the user

                                                                                            + + + public + generateToken(mixed $tokenLifetime) : string + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $tokenLifetime + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + string +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + generateVerificationToken() + + +

                                                                                            + + +

                                                                                            Generate a verification token for the user

                                                                                            + + + public + generateVerificationToken([mixed $expiresIn = null ]) : string + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $expiresIn + : mixed + = null
                                                                                            +
                                                                                            +

                                                                                            Token expiration time

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + string +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + get() + + +

                                                                                            + + + + + public + get() : mixed + +
                                                                                            +
                                                                                            + + + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + getAuthInfo() + + +

                                                                                            + + +

                                                                                            Get auth information to be sent to the client

                                                                                            + + + public + getAuthInfo() : object + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + object +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + id() + + +

                                                                                            + + +

                                                                                            Return the id of current user

                                                                                            + + + public + id() : string|int + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + string|int +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + is() + + +

                                                                                            + + +

                                                                                            Check if user has a role

                                                                                            + + + public + is(string|array<string|int, mixed> $role) : bool + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $role + : string|array<string|int, mixed> +
                                                                                            +
                                                                                            +

                                                                                            The role(s) to check

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + isNot() + + +

                                                                                            + + +

                                                                                            Check if user does not have a role

                                                                                            + + + public + isNot(mixed $role) : bool + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $role + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + isVerified() + + +

                                                                                            + + +

                                                                                            Check if email is verified

                                                                                            + + + public + isVerified() : bool + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + permissions() + + +

                                                                                            + + +

                                                                                            Return the user's permissions

                                                                                            + + + public + permissions() : array<string|int, mixed> + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + array<string|int, mixed> +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + roles() + + +

                                                                                            + + +

                                                                                            Return the user's roles

                                                                                            + + + public + roles() : array<string|int, mixed> + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + array<string|int, mixed> +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + setDb() + + +

                                                                                            + + +

                                                                                            Set user db instance

                                                                                            + + + public + setDb(Db $db) : User + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $db + : Db +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + User +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + tokens() + + +

                                                                                            + + +

                                                                                            Return generated tokens

                                                                                            + + + public + tokens() : array<string|int, mixed> + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + array<string|int, mixed> +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + unassign() + + +

                                                                                            + + +

                                                                                            Remove a role from a user

                                                                                            + + + public + unassign(string|array<string|int, mixed> $role) : void + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $role + : string|array<string|int, mixed> +
                                                                                            +
                                                                                            +

                                                                                            The role(s) to revoke

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            +

                                                                                            + verifyEmail() + + +

                                                                                            + + +

                                                                                            Verify user's email

                                                                                            + + + public + verifyEmail() : bool + +
                                                                                            +
                                                                                            + + + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + bool +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + getRolePermissions() + + +

                                                                                            + + +

                                                                                            Get the permissions for a role

                                                                                            + + + protected + getRolePermissions(mixed $roles) : array<string|int, mixed> + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $roles + : mixed +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + +
                                                                                            +
                                                                                            Return values
                                                                                            + array<string|int, mixed> +
                                                                                            + +
                                                                                            +
                                                                                            +

                                                                                            + setRolesAndPermissions() + + +

                                                                                            + + +

                                                                                            Set the roles and permissions for a user

                                                                                            + + + protected + setRolesAndPermissions(string|array<string|int, mixed> $roles) : void + +
                                                                                            +
                                                                                            + + +
                                                                                            Parameters
                                                                                            +
                                                                                            +
                                                                                            + $roles + : string|array<string|int, mixed> +
                                                                                            +
                                                                                            +

                                                                                            The role(s) to set

                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            + + + + + + +
                                                                                            +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            
                                                                                            +        
                                                                                            + +
                                                                                            +
                                                                                            + + + +
                                                                                            +
                                                                                            +
                                                                                            + +
                                                                                            + On this page + + +
                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +
                                                                                            +

                                                                                            Search results

                                                                                            + +
                                                                                            +
                                                                                            +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + +
                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Auth-UsesRoles.html b/src/public/api/classes/Leaf-Auth-UsesRoles.html new file mode 100644 index 00000000..12a7885c --- /dev/null +++ b/src/public/api/classes/Leaf-Auth-UsesRoles.html @@ -0,0 +1,1052 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                              +

                                                                                              Leaf PHP

                                                                                              + + + + + +
                                                                                              + +
                                                                                              +
                                                                                              + + + + +
                                                                                              +
                                                                                              + + +
                                                                                              +

                                                                                              + UsesRoles +

                                                                                              + + + +

                                                                                              Functionality for user permissions +---- +Addition to user class

                                                                                              + + + + +
                                                                                              + Tags + + +
                                                                                              +
                                                                                              +
                                                                                              + version +
                                                                                              +
                                                                                              + 0.1.0 + + +
                                                                                              +
                                                                                              + since +
                                                                                              +
                                                                                              + 3.0.0 + + +
                                                                                              +
                                                                                              + + + + + +

                                                                                              + Table of Contents + + +

                                                                                              + + + + + + + + + +

                                                                                              + Properties + + +

                                                                                              +
                                                                                              +
                                                                                              + $permissions + +  : array<string|int, mixed> +
                                                                                              +
                                                                                              User Permissions
                                                                                              + +
                                                                                              + $roles + +  : array<string|int, mixed> +
                                                                                              +
                                                                                              User Roles
                                                                                              + +
                                                                                              + +

                                                                                              + Methods + + +

                                                                                              +
                                                                                              +
                                                                                              + assign() + +  : bool +
                                                                                              +
                                                                                              Assign new role to user
                                                                                              + +
                                                                                              + can() + +  : bool +
                                                                                              +
                                                                                              Check if user has a permission
                                                                                              + +
                                                                                              + cannot() + +  : bool +
                                                                                              +
                                                                                              Check if a user does not have a permission
                                                                                              + +
                                                                                              + is() + +  : bool +
                                                                                              +
                                                                                              Check if user has a role
                                                                                              + +
                                                                                              + isNot() + +  : bool +
                                                                                              +
                                                                                              Check if user does not have a role
                                                                                              + +
                                                                                              + permissions() + +  : array<string|int, mixed> +
                                                                                              +
                                                                                              Return the user's permissions
                                                                                              + +
                                                                                              + roles() + +  : array<string|int, mixed> +
                                                                                              +
                                                                                              Return the user's roles
                                                                                              + +
                                                                                              + unassign() + +  : void +
                                                                                              +
                                                                                              Remove a role from a user
                                                                                              + +
                                                                                              + getRolePermissions() + +  : array<string|int, mixed> +
                                                                                              +
                                                                                              Get the permissions for a role
                                                                                              + +
                                                                                              + setRolesAndPermissions() + +  : void +
                                                                                              +
                                                                                              Set the roles and permissions for a user
                                                                                              + +
                                                                                              + + + + + + + +
                                                                                              +

                                                                                              + Properties + + +

                                                                                              +
                                                                                              +

                                                                                              + $permissions + + + + +

                                                                                              + + +

                                                                                              User Permissions

                                                                                              + + + + protected + array<string|int, mixed> + $permissions + = [] + + + + + + + +
                                                                                              +
                                                                                              +

                                                                                              + $roles + + + + +

                                                                                              + + +

                                                                                              User Roles

                                                                                              + + + + protected + array<string|int, mixed> + $roles + = [] + + + + + + + +
                                                                                              +
                                                                                              + +
                                                                                              +

                                                                                              + Methods + + +

                                                                                              +
                                                                                              +

                                                                                              + assign() + + +

                                                                                              + + +

                                                                                              Assign new role to user

                                                                                              + + + public + assign(string|array<string|int, mixed> $role) : bool + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $role + : string|array<string|int, mixed> +
                                                                                              +
                                                                                              +

                                                                                              The role to assign

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + bool +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + can() + + +

                                                                                              + + +

                                                                                              Check if user has a permission

                                                                                              + + + public + can(string|array<string|int, mixed> $permission) : bool + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $permission + : string|array<string|int, mixed> +
                                                                                              +
                                                                                              +

                                                                                              The permission(s) to check

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + bool +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + cannot() + + +

                                                                                              + + +

                                                                                              Check if a user does not have a permission

                                                                                              + + + public + cannot(mixed $permission) : bool + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $permission + : mixed +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + bool +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + is() + + +

                                                                                              + + +

                                                                                              Check if user has a role

                                                                                              + + + public + is(string|array<string|int, mixed> $role) : bool + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $role + : string|array<string|int, mixed> +
                                                                                              +
                                                                                              +

                                                                                              The role(s) to check

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + bool +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + isNot() + + +

                                                                                              + + +

                                                                                              Check if user does not have a role

                                                                                              + + + public + isNot(mixed $role) : bool + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $role + : mixed +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + bool +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + permissions() + + +

                                                                                              + + +

                                                                                              Return the user's permissions

                                                                                              + + + public + permissions() : array<string|int, mixed> + +
                                                                                              +
                                                                                              + + + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + array<string|int, mixed> +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + roles() + + +

                                                                                              + + +

                                                                                              Return the user's roles

                                                                                              + + + public + roles() : array<string|int, mixed> + +
                                                                                              +
                                                                                              + + + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + array<string|int, mixed> +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + unassign() + + +

                                                                                              + + +

                                                                                              Remove a role from a user

                                                                                              + + + public + unassign(string|array<string|int, mixed> $role) : void + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $role + : string|array<string|int, mixed> +
                                                                                              +
                                                                                              +

                                                                                              The role(s) to revoke

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + + +
                                                                                              +
                                                                                              +

                                                                                              + getRolePermissions() + + +

                                                                                              + + +

                                                                                              Get the permissions for a role

                                                                                              + + + protected + getRolePermissions(mixed $roles) : array<string|int, mixed> + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $roles + : mixed +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + +
                                                                                              +
                                                                                              Return values
                                                                                              + array<string|int, mixed> +
                                                                                              + +
                                                                                              +
                                                                                              +

                                                                                              + setRolesAndPermissions() + + +

                                                                                              + + +

                                                                                              Set the roles and permissions for a user

                                                                                              + + + protected + setRolesAndPermissions(string|array<string|int, mixed> $roles) : void + +
                                                                                              +
                                                                                              + + +
                                                                                              Parameters
                                                                                              +
                                                                                              +
                                                                                              + $roles + : string|array<string|int, mixed> +
                                                                                              +
                                                                                              +

                                                                                              The role(s) to set

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + + + + + +
                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              
                                                                                              +        
                                                                                              + +
                                                                                              +
                                                                                              + + + +
                                                                                              +
                                                                                              +
                                                                                              + +
                                                                                              + On this page + + +
                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              Search results

                                                                                              + +
                                                                                              +
                                                                                              +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + +
                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Auth.html b/src/public/api/classes/Leaf-Auth.html new file mode 100644 index 00000000..fa372bd0 --- /dev/null +++ b/src/public/api/classes/Leaf-Auth.html @@ -0,0 +1,2260 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                +

                                                                                                Leaf PHP

                                                                                                + + + + + +
                                                                                                + +
                                                                                                +
                                                                                                + + + + +
                                                                                                +
                                                                                                + + +
                                                                                                +

                                                                                                + Auth + + +
                                                                                                + in package + +
                                                                                                + + +

                                                                                                + +
                                                                                                + + +
                                                                                                + + + +

                                                                                                Leaf Simple Auth +------------------------- +Simple, lightweight authentication.

                                                                                                + + + + +
                                                                                                + Tags + + +
                                                                                                +
                                                                                                +
                                                                                                + author +
                                                                                                +
                                                                                                + +

                                                                                                Michael Darko

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + since +
                                                                                                +
                                                                                                + 1.5.0 + + +
                                                                                                +
                                                                                                + version +
                                                                                                +
                                                                                                + 3.0.0 + + +
                                                                                                +
                                                                                                + + + + + +

                                                                                                + Table of Contents + + +

                                                                                                + + + + + + + + + +

                                                                                                + Properties + + +

                                                                                                +
                                                                                                +
                                                                                                + $db + +  : Db +
                                                                                                +
                                                                                                Internal instance of Leaf DB
                                                                                                + +
                                                                                                + $errorsArray + +  : array<string|int, mixed> +
                                                                                                +
                                                                                                All errors caught
                                                                                                + +
                                                                                                + $user + +  : User +
                                                                                                +
                                                                                                The currently authenticated user
                                                                                                + +
                                                                                                + +

                                                                                                + Methods + + +

                                                                                                +
                                                                                                +
                                                                                                + __construct() + +  : mixed +
                                                                                                + +
                                                                                                + autoConnect() + +  : $this +
                                                                                                +
                                                                                                Connect to database using environment variables
                                                                                                + +
                                                                                                + clearErrors() + +  : mixed +
                                                                                                +
                                                                                                Clear all errors caught
                                                                                                + +
                                                                                                + config() + +  : mixed +
                                                                                                +
                                                                                                Get/Set Leaf Auth config
                                                                                                + +
                                                                                                + connect() + +  : $this +
                                                                                                +
                                                                                                Connect leaf auth to the database
                                                                                                + +
                                                                                                + createRoles() + +  : Auth +
                                                                                                +
                                                                                                Create roles and permissions
                                                                                                + +
                                                                                                + createUserFor() + +  : mixed +
                                                                                                +
                                                                                                Create a new user +--- +Create an account for another user
                                                                                                + +
                                                                                                + data() + +  : object|null +
                                                                                                +
                                                                                                Get data generated on user login
                                                                                                + +
                                                                                                + db() + +  : Db +
                                                                                                +
                                                                                                Return the current db instance
                                                                                                + +
                                                                                                + dbConnection() + +  : mixed +
                                                                                                +
                                                                                                Pass in db connection instance directly
                                                                                                + +
                                                                                                + errors() + +  : array<string|int, mixed> +
                                                                                                +
                                                                                                Return all errors caught
                                                                                                + +
                                                                                                + find() + +  : User|null +
                                                                                                +
                                                                                                Find a user by id +--- +Select and return an existing user from db
                                                                                                + +
                                                                                                + fromOAuth() + +  : bool +
                                                                                                +
                                                                                                Create a new user from OAuth
                                                                                                + +
                                                                                                + id() + +  : string|int +
                                                                                                +
                                                                                                Get the id of the currently authenticated user
                                                                                                + +
                                                                                                + login() + +  : bool +
                                                                                                +
                                                                                                Sign a user in +--- +Verify user credentials and sign them in with token or session
                                                                                                + +
                                                                                                + logout() + +  : bool +
                                                                                                +
                                                                                                Sign a user out +--- +Sign out the currently authenticated user
                                                                                                + +
                                                                                                + middleware() + +  : mixed +
                                                                                                +
                                                                                                Register auth middleware for your Leaf apps
                                                                                                + +
                                                                                                + oauthToken() + +  : mixed +
                                                                                                +
                                                                                                Get saved OAuth token
                                                                                                + +
                                                                                                + parseToken() + +  : mixed +
                                                                                                +
                                                                                                Parse the current user's token
                                                                                                + +
                                                                                                + register() + +  : bool +
                                                                                                +
                                                                                                Register a new user +--- +Save a new user to the database
                                                                                                + +
                                                                                                + roles() + +  : array<string|int, mixed> +
                                                                                                +
                                                                                                Return all roles and their permissions
                                                                                                + +
                                                                                                + tokens() + +  : array<string|int, mixed>|null +
                                                                                                +
                                                                                                Get generated access tokens
                                                                                                + +
                                                                                                + update() + +  : bool +
                                                                                                +
                                                                                                Update user data +--- +Update user data in the database
                                                                                                + +
                                                                                                + updatePassword() + +  : bool +
                                                                                                +
                                                                                                Update user password +--- +Update user password in the database
                                                                                                + +
                                                                                                + user() + +  : User|null +
                                                                                                +
                                                                                                Get the currently authenticated user
                                                                                                + +
                                                                                                + verifyToken() + +  : mixed +
                                                                                                +
                                                                                                Verify a user's token
                                                                                                + +
                                                                                                + checkAndExpireSession() + +  : bool +
                                                                                                + +
                                                                                                + checkDbConnection() + +  : void +
                                                                                                + +
                                                                                                + getFromSession() + +  : mixed +
                                                                                                + +
                                                                                                + getTokenFromRequest() + +  : mixed +
                                                                                                + +
                                                                                                + getTokenFromSession() + +  : mixed +
                                                                                                + +
                                                                                                + sessionCheck() + +  : mixed +
                                                                                                + +
                                                                                                + + + + + + +
                                                                                                +

                                                                                                + Properties + + +

                                                                                                +
                                                                                                +

                                                                                                + $db + + + + +

                                                                                                + + +

                                                                                                Internal instance of Leaf DB

                                                                                                + + + + protected + Db + $db + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $errorsArray + + + + +

                                                                                                + + +

                                                                                                All errors caught

                                                                                                + + + + protected + array<string|int, mixed> + $errorsArray + = [] + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + $user + + + + +

                                                                                                + + +

                                                                                                The currently authenticated user

                                                                                                + + + + protected + User + $user + + + + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +

                                                                                                + Methods + + +

                                                                                                +
                                                                                                +

                                                                                                + __construct() + + +

                                                                                                + + + + + public + __construct() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + autoConnect() + + +

                                                                                                + + +

                                                                                                Connect to database using environment variables

                                                                                                + + + public + autoConnect([array<string|int, mixed> $pdoOptions = [] ]) : $this + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                +
                                                                                                +

                                                                                                Options for PDO connection

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + $this +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + clearErrors() + + +

                                                                                                + + +

                                                                                                Clear all errors caught

                                                                                                + + + public + clearErrors() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + config() + + +

                                                                                                + + +

                                                                                                Get/Set Leaf Auth config

                                                                                                + + + public + config(string|array<string|int, mixed> $config[, mixed $value = null ]) : mixed + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $config + : string|array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                The auth config key or array of config

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + $value + : mixed + = null
                                                                                                +
                                                                                                +

                                                                                                The value if $config is a string

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + connect() + + +

                                                                                                + + +

                                                                                                Connect leaf auth to the database

                                                                                                + + + public + connect([array<string|int, mixed> $dbConfig = [] ]) : $this + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $dbConfig + : array<string|int, mixed> + = []
                                                                                                +
                                                                                                +

                                                                                                Configuration for leaf db connection

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + $this +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + createRoles() + + +

                                                                                                + + +

                                                                                                Create roles and permissions

                                                                                                + + + public + createRoles(array<string|int, mixed> $roles) : Auth + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $roles + : array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                Array of roles and their permissions

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + Auth +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + createUserFor() + + +

                                                                                                + + +

                                                                                                Create a new user +--- +Create an account for another user

                                                                                                + + + public + createUserFor(mixed $userData) : mixed + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $userData + : mixed +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + data() + + +

                                                                                                + + +

                                                                                                Get data generated on user login

                                                                                                + + + public + data() : object|null + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + object|null +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + db() + + +

                                                                                                + + +

                                                                                                Return the current db instance

                                                                                                + + + public + db() : Db + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + Db +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + dbConnection() + + +

                                                                                                + + +

                                                                                                Pass in db connection instance directly

                                                                                                + + + public + dbConnection(PDO $connection) : mixed + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $connection + : PDO +
                                                                                                +
                                                                                                +

                                                                                                A connection instance of your db

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + +
                                                                                                + Tags + + +
                                                                                                +
                                                                                                +
                                                                                                + @return +
                                                                                                +
                                                                                                + +

                                                                                                $this;

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + +
                                                                                                +
                                                                                                +

                                                                                                + errors() + + +

                                                                                                + + +

                                                                                                Return all errors caught

                                                                                                + + + public + errors() : array<string|int, mixed> + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + array<string|int, mixed> +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + find() + + +

                                                                                                + + +

                                                                                                Find a user by id +--- +Select and return an existing user from db

                                                                                                + + + public + find(string|int $id) : User|null + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $id + : string|int +
                                                                                                +
                                                                                                +

                                                                                                The id of the user to grab

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + User|null +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + fromOAuth() + + +

                                                                                                + + +

                                                                                                Create a new user from OAuth

                                                                                                + + + public + fromOAuth(array<string|int, mixed> $userData) : bool + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $userData + : array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                User data

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + id() + + +

                                                                                                + + +

                                                                                                Get the id of the currently authenticated user

                                                                                                + + + public + id() : string|int + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + string|int +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + login() + + +

                                                                                                + + +

                                                                                                Sign a user in +--- +Verify user credentials and sign them in with token or session

                                                                                                + + + public + login(array<string|int, mixed> $credentials) : bool + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $credentials + : array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                User credentials

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + logout() + + +

                                                                                                + + +

                                                                                                Sign a user out +--- +Sign out the currently authenticated user

                                                                                                + + + public + logout([mixed $action = null ]) : bool + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $action + : mixed + = null
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + middleware() + + +

                                                                                                + + +

                                                                                                Register auth middleware for your Leaf apps

                                                                                                + + + public + middleware(string $middleware, callable $callback) : mixed + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $middleware + : string +
                                                                                                +
                                                                                                +

                                                                                                The middleware to register

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + $callback + : callable +
                                                                                                +
                                                                                                +

                                                                                                The callback to run if middleware fails

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + oauthToken() + + +

                                                                                                + + +

                                                                                                Get saved OAuth token

                                                                                                + + + public + oauthToken() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + parseToken() + + +

                                                                                                + + +

                                                                                                Parse the current user's token

                                                                                                + + + public + parseToken() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + register() + + +

                                                                                                + + +

                                                                                                Register a new user +--- +Save a new user to the database

                                                                                                + + + public + register(array<string|int, mixed> $userData) : bool + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $userData + : array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                User data

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + roles() + + +

                                                                                                + + +

                                                                                                Return all roles and their permissions

                                                                                                + + + public + roles() : array<string|int, mixed> + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + array<string|int, mixed> +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + tokens() + + +

                                                                                                + + +

                                                                                                Get generated access tokens

                                                                                                + + + public + tokens() : array<string|int, mixed>|null + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + array<string|int, mixed>|null +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + update() + + +

                                                                                                + + +

                                                                                                Update user data +--- +Update user data in the database

                                                                                                + + + public + update(array<string|int, mixed> $userData) : bool + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $userData + : array<string|int, mixed> +
                                                                                                +
                                                                                                +

                                                                                                User data

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + updatePassword() + + +

                                                                                                + + +

                                                                                                Update user password +--- +Update user password in the database

                                                                                                + + + public + updatePassword(string $oldPassword, string $newPassword) : bool + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $oldPassword + : string +
                                                                                                +
                                                                                                +

                                                                                                Old password

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + $newPassword + : string +
                                                                                                +
                                                                                                +

                                                                                                New password

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + user() + + +

                                                                                                + + +

                                                                                                Get the currently authenticated user

                                                                                                + + + public + user() : User|null + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + User|null +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + verifyToken() + + +

                                                                                                + + +

                                                                                                Verify a user's token

                                                                                                + + + public + verifyToken(string $token) : mixed + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $token + : string +
                                                                                                +
                                                                                                +

                                                                                                The token to verify

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + checkAndExpireSession() + + +

                                                                                                + + + + + protected + checkAndExpireSession() : bool + +
                                                                                                +
                                                                                                + + + + + + + +
                                                                                                +
                                                                                                Return values
                                                                                                + bool +
                                                                                                + +
                                                                                                +
                                                                                                +

                                                                                                + checkDbConnection() + + +

                                                                                                + + + + + protected + checkDbConnection() : void + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + getFromSession() + + +

                                                                                                + + + + + protected + getFromSession(mixed $value) : mixed + +
                                                                                                +
                                                                                                + + +
                                                                                                Parameters
                                                                                                +
                                                                                                +
                                                                                                + $value + : mixed +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + getTokenFromRequest() + + +

                                                                                                + + + + + protected + getTokenFromRequest() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + getTokenFromSession() + + +

                                                                                                + + + + + protected + getTokenFromSession() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                +

                                                                                                + sessionCheck() + + +

                                                                                                + + + + + protected + sessionCheck() : mixed + +
                                                                                                +
                                                                                                + + + + + + + + +
                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                
                                                                                                +        
                                                                                                + +
                                                                                                +
                                                                                                + + + +
                                                                                                +
                                                                                                +
                                                                                                + +
                                                                                                + On this page + + +
                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                Search results

                                                                                                + +
                                                                                                +
                                                                                                +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + +
                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-BareUI.html b/src/public/api/classes/Leaf-BareUI.html new file mode 100644 index 00000000..05a7544a --- /dev/null +++ b/src/public/api/classes/Leaf-BareUI.html @@ -0,0 +1,649 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                  +

                                                                                                  Leaf PHP

                                                                                                  + + + + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  +

                                                                                                  + BareUI + + +
                                                                                                  + in package + +
                                                                                                  + + +

                                                                                                  + +
                                                                                                  + + +
                                                                                                  + + + +

                                                                                                  Bare UI +------------ +Leaf templating language focused on speed, speed and more speed.

                                                                                                  + + + + +
                                                                                                  + Tags + + +
                                                                                                  +
                                                                                                  +
                                                                                                  + since +
                                                                                                  +
                                                                                                  + +

                                                                                                  v2.4.4

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + author +
                                                                                                  +
                                                                                                  + +

                                                                                                  Michael Darko mickdd22@gmail.com

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + + +

                                                                                                  + Table of Contents + + +

                                                                                                  + + + + + + + + + +

                                                                                                  + Properties + + +

                                                                                                  +
                                                                                                  +
                                                                                                  + $config + +  : mixed +
                                                                                                  + +
                                                                                                  + +

                                                                                                  + Methods + + +

                                                                                                  +
                                                                                                  +
                                                                                                  + config() + +  : mixed +
                                                                                                  +
                                                                                                  Configure bare UI
                                                                                                  + +
                                                                                                  + render() + +  : mixed +
                                                                                                  +
                                                                                                  Render a bare UI
                                                                                                  + +
                                                                                                  + getView() + +  : mixed +
                                                                                                  + +
                                                                                                  + + + + + + +
                                                                                                  +

                                                                                                  + Properties + + +

                                                                                                  +
                                                                                                  +

                                                                                                  + $config + + + + +

                                                                                                  + + + + + + private + static mixed + $config + = ['path' => null, 'params' => []] + + + + + + + +
                                                                                                  +
                                                                                                  + +
                                                                                                  +

                                                                                                  + Methods + + +

                                                                                                  +
                                                                                                  +

                                                                                                  + config() + + +

                                                                                                  + + +

                                                                                                  Configure bare UI

                                                                                                  + + + public + static config(array<string|int, mixed>|string $item[, mixed $value = null ]) : mixed + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $item + : array<string|int, mixed>|string +
                                                                                                  +
                                                                                                  +

                                                                                                  The item(s) to configure

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $value + : mixed + = null
                                                                                                  +
                                                                                                  +

                                                                                                  Value of config. Ignored if $item is array.

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + render() + + +

                                                                                                  + + +

                                                                                                  Render a bare UI

                                                                                                  + + + public + static render(string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $view + : string +
                                                                                                  +
                                                                                                  +

                                                                                                  The view to render

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + $data + : array<string|int, mixed> + = []
                                                                                                  +
                                                                                                  +

                                                                                                  The params to pass into UI

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + + + +
                                                                                                  +
                                                                                                  +

                                                                                                  + getView() + + +

                                                                                                  + + + + + private + static getView(mixed $view) : mixed + +
                                                                                                  +
                                                                                                  + + +
                                                                                                  Parameters
                                                                                                  +
                                                                                                  +
                                                                                                  + $view + : mixed +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + + + + +
                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  
                                                                                                  +        
                                                                                                  + +
                                                                                                  +
                                                                                                  + + + +
                                                                                                  +
                                                                                                  +
                                                                                                  + +
                                                                                                  + On this page + + +
                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +

                                                                                                  Search results

                                                                                                  + +
                                                                                                  +
                                                                                                  +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    + + +
                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Blade.html b/src/public/api/classes/Leaf-Blade.html new file mode 100644 index 00000000..2c05bcc7 --- /dev/null +++ b/src/public/api/classes/Leaf-Blade.html @@ -0,0 +1,973 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                    +

                                                                                                    Leaf PHP

                                                                                                    + + + + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    +

                                                                                                    + Blade + + +
                                                                                                    + in package + +
                                                                                                    + + +

                                                                                                    + +
                                                                                                    + + +
                                                                                                    + + + + + + + + + + + + +

                                                                                                    + Table of Contents + + +

                                                                                                    + + + + + + + + + +

                                                                                                    + Properties + + +

                                                                                                    +
                                                                                                    +
                                                                                                    + $blade + +  : mixed +
                                                                                                    + +
                                                                                                    + +

                                                                                                    + Methods + + +

                                                                                                    +
                                                                                                    +
                                                                                                    + __construct() + +  : mixed +
                                                                                                    + +
                                                                                                    + blade() + +  : Blade +
                                                                                                    +
                                                                                                    Return actual blade instance
                                                                                                    + +
                                                                                                    + compiler() + +  : mixed +
                                                                                                    +
                                                                                                    Hook into the blade compiler
                                                                                                    + +
                                                                                                    + config() + +  : Blade +
                                                                                                    +
                                                                                                    Configure your view and cache directories
                                                                                                    + +
                                                                                                    + configure() + +  : Blade +
                                                                                                    +
                                                                                                    Configure your view and cache directories
                                                                                                    + +
                                                                                                    + directive() + +  : mixed +
                                                                                                    +
                                                                                                    Add a new namespace to the loader
                                                                                                    + +
                                                                                                    + make() + +  : string +
                                                                                                    +
                                                                                                    Render your blade template,
                                                                                                    + +
                                                                                                    + render() + +  : mixed +
                                                                                                    +
                                                                                                    Render your blade template,
                                                                                                    + +
                                                                                                    + setupDefaultDirectives() + +  : mixed +
                                                                                                    +
                                                                                                    Setup default directives
                                                                                                    + +
                                                                                                    + + + + + + +
                                                                                                    +

                                                                                                    + Properties + + +

                                                                                                    +
                                                                                                    +

                                                                                                    + $blade + + + + +

                                                                                                    + + + + + + protected + mixed + $blade + + + + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +

                                                                                                    + Methods + + +

                                                                                                    +
                                                                                                    +

                                                                                                    + __construct() + + +

                                                                                                    + + + + + public + __construct([string|null $viewPaths = null ][, string|null $cachePath = null ]) : mixed + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $viewPaths + : string|null + = null
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $cachePath + : string|null + = null
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + + +
                                                                                                    +
                                                                                                    +

                                                                                                    + blade() + + +

                                                                                                    + + +

                                                                                                    Return actual blade instance

                                                                                                    + + + public + blade() : Blade + +
                                                                                                    +
                                                                                                    + + + + + + + +
                                                                                                    +
                                                                                                    Return values
                                                                                                    + Blade +
                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    + compiler() + + +

                                                                                                    + + +

                                                                                                    Hook into the blade compiler

                                                                                                    + + + public + compiler() : mixed + +
                                                                                                    +
                                                                                                    + + + + + + + + +
                                                                                                    +
                                                                                                    +

                                                                                                    + config() + + +

                                                                                                    + + +

                                                                                                    Configure your view and cache directories

                                                                                                    + + + public + config(string|array<string|int, mixed> $viewPaths[, string|null $cachePath = null ]) : Blade + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $viewPaths + : string|array<string|int, mixed> +
                                                                                                    +
                                                                                                    +

                                                                                                    The path to your view or an array of paths

                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $cachePath + : string|null + = null
                                                                                                    +
                                                                                                    +

                                                                                                    The path to your cache directory

                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    Return values
                                                                                                    + Blade +
                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    + configure() + + +

                                                                                                    + + +

                                                                                                    Configure your view and cache directories

                                                                                                    + + + public + configure(string|array<string|int, mixed> $viewPaths[, string|null $cachePath = null ]) : Blade + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $viewPaths + : string|array<string|int, mixed> +
                                                                                                    +
                                                                                                    +

                                                                                                    The path to your view or an array of paths

                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $cachePath + : string|null + = null
                                                                                                    +
                                                                                                    +

                                                                                                    The path to your cache directory

                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    Return values
                                                                                                    + Blade +
                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    + directive() + + +

                                                                                                    + + +

                                                                                                    Add a new namespace to the loader

                                                                                                    + + + public + directive(string $name, callable $handler) : mixed + +
                                                                                                    +
                                                                                                    + + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $name + : string +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $handler + : callable +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + + +
                                                                                                    +
                                                                                                    +

                                                                                                    + make() + + +

                                                                                                    + + +

                                                                                                    Render your blade template,

                                                                                                    + + + public + make(string $view[, mixed $data = [] ][, mixed $mergeData = [] ]) : string + +
                                                                                                    +
                                                                                                    + +

                                                                                                    You can optionally pass data into the view as a second parameter. +Don't forget to chain the render method

                                                                                                    +
                                                                                                    + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $view + : string +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $data + : mixed + = []
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $mergeData + : mixed + = []
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + +
                                                                                                    +
                                                                                                    Return values
                                                                                                    + string +
                                                                                                    + +
                                                                                                    +
                                                                                                    +

                                                                                                    + render() + + +

                                                                                                    + + +

                                                                                                    Render your blade template,

                                                                                                    + + + public + render(string $view[, mixed $data = [] ][, mixed $mergeData = [] ]) : mixed + +
                                                                                                    +
                                                                                                    + +

                                                                                                    A shorter version of the original make command. +You can optionally pass data into the view as a second parameter

                                                                                                    +
                                                                                                    + +
                                                                                                    Parameters
                                                                                                    +
                                                                                                    +
                                                                                                    + $view + : string +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $data + : mixed + = []
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + $mergeData + : mixed + = []
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + + + + +
                                                                                                    +
                                                                                                    +

                                                                                                    + setupDefaultDirectives() + + +

                                                                                                    + + +

                                                                                                    Setup default directives

                                                                                                    + + + protected + setupDefaultDirectives() : mixed + +
                                                                                                    +
                                                                                                    + + + + + + + + +
                                                                                                    +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    
                                                                                                    +        
                                                                                                    + +
                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                    +
                                                                                                    + +
                                                                                                    + On this page + + +
                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +
                                                                                                    +

                                                                                                    Search results

                                                                                                    + +
                                                                                                    +
                                                                                                    +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + +
                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Config.html b/src/public/api/classes/Leaf-Config.html new file mode 100644 index 00000000..dc0fd812 --- /dev/null +++ b/src/public/api/classes/Leaf-Config.html @@ -0,0 +1,1376 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                      +

                                                                                                      Leaf PHP

                                                                                                      + + + + + +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      +

                                                                                                      + Config + + +
                                                                                                      + in package + +
                                                                                                      + + +

                                                                                                      + +
                                                                                                      + + +
                                                                                                      + + + +

                                                                                                      Leaf Config +------------- +Configure your leaf app

                                                                                                      + + + + + + + + + +

                                                                                                      + Table of Contents + + +

                                                                                                      + + + + + + + + + +

                                                                                                      + Properties + + +

                                                                                                      +
                                                                                                      +
                                                                                                      + $context + +  : array<string|int, mixed> +
                                                                                                      +
                                                                                                      Leaf application context
                                                                                                      + +
                                                                                                      + +

                                                                                                      + Methods + + +

                                                                                                      +
                                                                                                      +
                                                                                                      + __callstatic() + +  : mixed +
                                                                                                      +
                                                                                                      Property Overloading
                                                                                                      + +
                                                                                                      + addScript() + +  : mixed +
                                                                                                      +
                                                                                                      Add a script to attach to the leaf instance
                                                                                                      + +
                                                                                                      + attachView() + +  : mixed +
                                                                                                      +
                                                                                                      Attach view engine to Leaf view
                                                                                                      + +
                                                                                                      + count() + +  : mixed +
                                                                                                      +
                                                                                                      Countable
                                                                                                      + +
                                                                                                      + get() + +  : mixed +
                                                                                                      +
                                                                                                      Grab context
                                                                                                      + +
                                                                                                      + getIterator() + +  : mixed +
                                                                                                      +
                                                                                                      IteratorAggregate
                                                                                                      + +
                                                                                                      + getStatic() + +  : mixed +
                                                                                                      +
                                                                                                      Static getter
                                                                                                      + +
                                                                                                      + has() + +  : bool +
                                                                                                      +
                                                                                                      Does this set contain a key?
                                                                                                      + +
                                                                                                      + isInvokable() + +  : mixed +
                                                                                                      +
                                                                                                      Get data value with key
                                                                                                      + +
                                                                                                      + keys() + +  : array<string|int, mixed> +
                                                                                                      +
                                                                                                      Fetch set data keys
                                                                                                      + +
                                                                                                      + protect() + +  : Closure +
                                                                                                      +
                                                                                                      Protect closure from being directly invoked
                                                                                                      + +
                                                                                                      + remove() + +  : mixed +
                                                                                                      +
                                                                                                      Remove value with key from this set
                                                                                                      + +
                                                                                                      + reset() + +  : mixed +
                                                                                                      +
                                                                                                      Clear all values
                                                                                                      + +
                                                                                                      + set() + +  : mixed +
                                                                                                      +
                                                                                                      Set configuration value(s)
                                                                                                      + +
                                                                                                      + singleton() + +  : mixed +
                                                                                                      +
                                                                                                      Ensure a value or object will remain globally unique
                                                                                                      + +
                                                                                                      + view() + +  : mixed +
                                                                                                      +
                                                                                                      Return an attached view engine
                                                                                                      + +
                                                                                                      + getDiIndex() + +  : mixed +
                                                                                                      + +
                                                                                                      + + + + + + +
                                                                                                      +

                                                                                                      + Properties + + +

                                                                                                      +
                                                                                                      +

                                                                                                      + $context + + + + +

                                                                                                      + + +

                                                                                                      Leaf application context

                                                                                                      + + + + protected + static array<string|int, mixed> + $context + = ['app' => null, 'app.down' => false, 'debug' => true, 'eien.enabled' => true, 'http.version' => '1.1', 'log.writer' => null, 'log.level' => null, 'log.enabled' => false, 'log.dir' => __DIR__ . '/../../../../storage/logs/', 'log.file' => 'app.log', 'log.open' => true, 'mode' => 'development', 'session' => true, 'session.lifetime' => 60 * 60 * 24, 'session.cookie' => ['secure' => false, 'httponly' => true, 'samesite' => 'lax'], 'scripts' => [], 'views.path' => null, 'views.cachePath' => null] + + + + + + + +
                                                                                                      +
                                                                                                      + +
                                                                                                      +

                                                                                                      + Methods + + +

                                                                                                      +
                                                                                                      +

                                                                                                      + __callstatic() + + +

                                                                                                      + + +

                                                                                                      Property Overloading

                                                                                                      + + + public + static __callstatic(mixed $key, mixed $arguments) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $key + : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + $arguments + : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + addScript() + + +

                                                                                                      + + +

                                                                                                      Add a script to attach to the leaf instance

                                                                                                      + + + public + static addScript(callable $script) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $script + : callable +
                                                                                                      +
                                                                                                      +

                                                                                                      The script to attach

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + attachView() + + +

                                                                                                      + + +

                                                                                                      Attach view engine to Leaf view

                                                                                                      + + + public + static attachView(mixed $className[, string|null $name = null ]) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $className + : mixed +
                                                                                                      +
                                                                                                      +

                                                                                                      The class to attach

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + $name + : string|null + = null
                                                                                                      +
                                                                                                      +

                                                                                                      The key to save view engine with

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + count() + + +

                                                                                                      + + +

                                                                                                      Countable

                                                                                                      + + + public + static count() : mixed + +
                                                                                                      +
                                                                                                      + + + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + get() + + +

                                                                                                      + + +

                                                                                                      Grab context

                                                                                                      + + + public + static get([string|null $item = null ]) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $item + : string|null + = null
                                                                                                      +
                                                                                                      +

                                                                                                      The config to get. Returns all items if nothing is specified.

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + getIterator() + + +

                                                                                                      + + +

                                                                                                      IteratorAggregate

                                                                                                      + + + public + static getIterator() : mixed + +
                                                                                                      +
                                                                                                      + + + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + getStatic() + + +

                                                                                                      + + +

                                                                                                      Static getter

                                                                                                      + + + public + static getStatic([string $item = null ]) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $item + : string + = null
                                                                                                      +
                                                                                                      +

                                                                                                      The item to get

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + has() + + +

                                                                                                      + + +

                                                                                                      Does this set contain a key?

                                                                                                      + + + public + static has(string $key) : bool + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $key + : string +
                                                                                                      +
                                                                                                      +

                                                                                                      The data key

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      +
                                                                                                      Return values
                                                                                                      + bool +
                                                                                                      + +
                                                                                                      +
                                                                                                      +

                                                                                                      + isInvokable() + + +

                                                                                                      + + +

                                                                                                      Get data value with key

                                                                                                      + + + public + static isInvokable(string $value) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $value + : string +
                                                                                                      +
                                                                                                      +

                                                                                                      The item to check

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + keys() + + +

                                                                                                      + + +

                                                                                                      Fetch set data keys

                                                                                                      + + + public + static keys() : array<string|int, mixed> + +
                                                                                                      +
                                                                                                      + + + + + + + +
                                                                                                      +
                                                                                                      Return values
                                                                                                      + array<string|int, mixed> + — +

                                                                                                      This set's key-value data array keys

                                                                                                      +
                                                                                                      + +
                                                                                                      + +
                                                                                                      +
                                                                                                      +

                                                                                                      + protect() + + +

                                                                                                      + + +

                                                                                                      Protect closure from being directly invoked

                                                                                                      + + + public + static protect(Closure $callable) : Closure + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $callable + : Closure +
                                                                                                      +
                                                                                                      +

                                                                                                      A closure to keep from being invoked and evaluated

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      +
                                                                                                      Return values
                                                                                                      + Closure +
                                                                                                      + +
                                                                                                      +
                                                                                                      +

                                                                                                      + remove() + + +

                                                                                                      + + +

                                                                                                      Remove value with key from this set

                                                                                                      + + + public + static remove(string $key) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $key + : string +
                                                                                                      +
                                                                                                      +

                                                                                                      The data key

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + reset() + + +

                                                                                                      + + +

                                                                                                      Clear all values

                                                                                                      + + + public + static reset() : mixed + +
                                                                                                      +
                                                                                                      + + + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + set() + + +

                                                                                                      + + +

                                                                                                      Set configuration value(s)

                                                                                                      + + + public + static set(string|array<string|int, mixed> $item[, mixed $value = null ]) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $item + : string|array<string|int, mixed> +
                                                                                                      +
                                                                                                      +

                                                                                                      The config(s) to set

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + $value + : mixed + = null
                                                                                                      +
                                                                                                      +

                                                                                                      The value for config. Ignored if $item is an array.

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + singleton() + + +

                                                                                                      + + +

                                                                                                      Ensure a value or object will remain globally unique

                                                                                                      + + + public + static singleton(string $key, Closure $value) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $key + : string +
                                                                                                      +
                                                                                                      +

                                                                                                      The value or object name

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + $value + : Closure +
                                                                                                      +
                                                                                                      +

                                                                                                      The closure that defines the object

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + view() + + +

                                                                                                      + + +

                                                                                                      Return an attached view engine

                                                                                                      + + + public + static view(mixed $className) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $className + : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      +

                                                                                                      + getDiIndex() + + +

                                                                                                      + + + + + protected + static getDiIndex(mixed $class) : mixed + +
                                                                                                      +
                                                                                                      + + +
                                                                                                      Parameters
                                                                                                      +
                                                                                                      +
                                                                                                      + $class + : mixed +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + + + + +
                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      
                                                                                                      +        
                                                                                                      + +
                                                                                                      +
                                                                                                      + + + +
                                                                                                      +
                                                                                                      +
                                                                                                      + +
                                                                                                      + On this page + + +
                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +

                                                                                                      Search results

                                                                                                      + +
                                                                                                      +
                                                                                                      +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Console-InstallCommand.html b/src/public/api/classes/Leaf-Console-InstallCommand.html new file mode 100644 index 00000000..e5defaa4 --- /dev/null +++ b/src/public/api/classes/Leaf-Console-InstallCommand.html @@ -0,0 +1,3685 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                        +

                                                                                                        Leaf PHP

                                                                                                        + + + + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +

                                                                                                        + InstallCommand + + + extends Command + + +
                                                                                                        + in package + +
                                                                                                        + + +

                                                                                                        + +
                                                                                                        + + +
                                                                                                        + + + +

                                                                                                        Base class for all commands.

                                                                                                        + + + + + + + + + +

                                                                                                        + Table of Contents + + +

                                                                                                        + + + + + + + +

                                                                                                        + Constants + + +

                                                                                                        +
                                                                                                        +
                                                                                                        + FAILURE + +  = 1 +
                                                                                                        + +
                                                                                                        + INVALID + +  = 2 +
                                                                                                        + +
                                                                                                        + SUCCESS + +  = 0 +
                                                                                                        + +
                                                                                                        + + +

                                                                                                        + Properties + + +

                                                                                                        +
                                                                                                        +
                                                                                                        + $defaultDescription + +  : string|null +
                                                                                                        + +
                                                                                                        + $defaultName + +  : string|null +
                                                                                                        + +
                                                                                                        + $aliases + +  : mixed +
                                                                                                        + +
                                                                                                        + $application + +  : mixed +
                                                                                                        + +
                                                                                                        + $code + +  : mixed +
                                                                                                        + +
                                                                                                        + $definition + +  : mixed +
                                                                                                        + +
                                                                                                        + $description + +  : mixed +
                                                                                                        + +
                                                                                                        + $fullDefinition + +  : mixed +
                                                                                                        + +
                                                                                                        + $help + +  : mixed +
                                                                                                        + +
                                                                                                        + $helperSet + +  : mixed +
                                                                                                        + +
                                                                                                        + $hidden + +  : mixed +
                                                                                                        + +
                                                                                                        + $ignoreValidationErrors + +  : mixed +
                                                                                                        + +
                                                                                                        + $name + +  : mixed +
                                                                                                        + +
                                                                                                        + $processTitle + +  : mixed +
                                                                                                        + +
                                                                                                        + $synopsis + +  : mixed +
                                                                                                        + +
                                                                                                        + $usages + +  : mixed +
                                                                                                        + +
                                                                                                        + +

                                                                                                        + Methods + + +

                                                                                                        +
                                                                                                        +
                                                                                                        + __construct() + +  : mixed +
                                                                                                        + +
                                                                                                        + addArgument() + +  : $this +
                                                                                                        +
                                                                                                        Adds an argument.
                                                                                                        + +
                                                                                                        + addOption() + +  : $this +
                                                                                                        +
                                                                                                        Adds an option.
                                                                                                        + +
                                                                                                        + addUsage() + +  : $this +
                                                                                                        +
                                                                                                        Add a command usage example, it'll be prefixed with the command name.
                                                                                                        + +
                                                                                                        + complete() + +  : void +
                                                                                                        +
                                                                                                        Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                                                        + +
                                                                                                        + getAliases() + +  : array<string|int, mixed> +
                                                                                                        +
                                                                                                        Returns the aliases for the command.
                                                                                                        + +
                                                                                                        + getApplication() + +  : Application|null +
                                                                                                        +
                                                                                                        Gets the application instance for this command.
                                                                                                        + +
                                                                                                        + getDefaultDescription() + +  : string|null +
                                                                                                        + +
                                                                                                        + getDefaultName() + +  : string|null +
                                                                                                        + +
                                                                                                        + getDefinition() + +  : InputDefinition +
                                                                                                        +
                                                                                                        Gets the InputDefinition attached to this Command.
                                                                                                        + +
                                                                                                        + getDescription() + +  : string +
                                                                                                        +
                                                                                                        Returns the description for the command.
                                                                                                        + +
                                                                                                        + getHelp() + +  : string +
                                                                                                        +
                                                                                                        Returns the help for the command.
                                                                                                        + +
                                                                                                        + getHelper() + +  : mixed +
                                                                                                        +
                                                                                                        Gets a helper instance by name.
                                                                                                        + +
                                                                                                        + getHelperSet() + +  : HelperSet|null +
                                                                                                        +
                                                                                                        Gets the helper set.
                                                                                                        + +
                                                                                                        + getName() + +  : string|null +
                                                                                                        +
                                                                                                        Returns the command name.
                                                                                                        + +
                                                                                                        + getNativeDefinition() + +  : InputDefinition +
                                                                                                        +
                                                                                                        Gets the InputDefinition to be used to create representations of this Command.
                                                                                                        + +
                                                                                                        + getProcessedHelp() + +  : string +
                                                                                                        +
                                                                                                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                                                        + +
                                                                                                        + getSynopsis() + +  : string +
                                                                                                        +
                                                                                                        Returns the synopsis for the command.
                                                                                                        + +
                                                                                                        + getUsages() + +  : array<string|int, mixed> +
                                                                                                        +
                                                                                                        Returns alternative usages of the command.
                                                                                                        + +
                                                                                                        + ignoreValidationErrors() + +  : mixed +
                                                                                                        +
                                                                                                        Ignores validation errors.
                                                                                                        + +
                                                                                                        + isEnabled() + +  : bool +
                                                                                                        +
                                                                                                        Checks whether the command is enabled or not in the current environment.
                                                                                                        + +
                                                                                                        + isHidden() + +  : bool +
                                                                                                        + +
                                                                                                        + run() + +  : int +
                                                                                                        +
                                                                                                        Runs the command.
                                                                                                        + +
                                                                                                        + setAliases() + +  : $this +
                                                                                                        +
                                                                                                        Sets the aliases for the command.
                                                                                                        + +
                                                                                                        + setApplication() + +  : mixed +
                                                                                                        + +
                                                                                                        + setCode() + +  : $this +
                                                                                                        +
                                                                                                        Sets the code to execute when running this command.
                                                                                                        + +
                                                                                                        + setDefinition() + +  : $this +
                                                                                                        +
                                                                                                        Sets an array of argument and option instances.
                                                                                                        + +
                                                                                                        + setDescription() + +  : $this +
                                                                                                        +
                                                                                                        Sets the description for the command.
                                                                                                        + +
                                                                                                        + setHelp() + +  : $this +
                                                                                                        +
                                                                                                        Sets the help for the command.
                                                                                                        + +
                                                                                                        + setHelperSet() + +  : mixed +
                                                                                                        + +
                                                                                                        + setHidden() + +  : $this +
                                                                                                        + +
                                                                                                        + setName() + +  : $this +
                                                                                                        +
                                                                                                        Sets the name of the command.
                                                                                                        + +
                                                                                                        + setProcessTitle() + +  : $this +
                                                                                                        +
                                                                                                        Sets the process title of the command.
                                                                                                        + +
                                                                                                        + configure() + +  : mixed +
                                                                                                        +
                                                                                                        Configures the current command.
                                                                                                        + +
                                                                                                        + execute() + +  : int +
                                                                                                        +
                                                                                                        Executes the current command.
                                                                                                        + +
                                                                                                        + initialize() + +  : mixed +
                                                                                                        +
                                                                                                        Initializes the command after the input has been bound and before the input +is validated.
                                                                                                        + +
                                                                                                        + install() + +  : mixed +
                                                                                                        +
                                                                                                        Install packages
                                                                                                        + +
                                                                                                        + installDependencies() + +  : mixed +
                                                                                                        + +
                                                                                                        + interact() + +  : mixed +
                                                                                                        +
                                                                                                        Interacts with the user.
                                                                                                        + +
                                                                                                        + validateName() + +  : mixed +
                                                                                                        +
                                                                                                        Validates a command name.
                                                                                                        + +
                                                                                                        + + + + +
                                                                                                        +

                                                                                                        + Constants + + +

                                                                                                        +
                                                                                                        +

                                                                                                        + FAILURE + + +

                                                                                                        + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + INVALID + + +

                                                                                                        + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + SUCCESS + + +

                                                                                                        + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        +

                                                                                                        + Properties + + +

                                                                                                        +
                                                                                                        +

                                                                                                        + $defaultDescription + + + + +

                                                                                                        + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                                                        The default command description

                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $defaultName + + + + +

                                                                                                        + + + + + + protected + static string|null + $defaultName + = 'install' + + +

                                                                                                        The default command name

                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $aliases + + + + +

                                                                                                        + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $application + + + + +

                                                                                                        + + + + + + private + mixed + $application + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $code + + + + +

                                                                                                        + + + + + + private + mixed + $code + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $definition + + + + +

                                                                                                        + + + + + + private + mixed + $definition + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $description + + + + +

                                                                                                        + + + + + + private + mixed + $description + = '' + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $fullDefinition + + + + +

                                                                                                        + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $help + + + + +

                                                                                                        + + + + + + private + mixed + $help + = '' + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $helperSet + + + + +

                                                                                                        + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $hidden + + + + +

                                                                                                        + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $ignoreValidationErrors + + + + +

                                                                                                        + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $name + + + + +

                                                                                                        + + + + + + private + mixed + $name + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $processTitle + + + + +

                                                                                                        + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $synopsis + + + + +

                                                                                                        + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + $usages + + + + +

                                                                                                        + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +

                                                                                                        + Methods + + +

                                                                                                        +
                                                                                                        +

                                                                                                        + __construct() + + +

                                                                                                        + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $name + : string|null + = null
                                                                                                        +
                                                                                                        +

                                                                                                        The name of the command; passing null means it must be set in configure()

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + LogicException + +

                                                                                                        When the command name is empty

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + addArgument() + + +

                                                                                                        + + +

                                                                                                        Adds an argument.

                                                                                                        + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $name + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $mode + : int|null + = null
                                                                                                        +
                                                                                                        +

                                                                                                        The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $description + : string + = ''
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $default + : mixed + = null
                                                                                                        +
                                                                                                        +

                                                                                                        The default value (for InputArgument::OPTIONAL mode only)

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + +

                                                                                                        When argument mode is not valid

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + addOption() + + +

                                                                                                        + + +

                                                                                                        Adds an option.

                                                                                                        + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $name + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                                                        +
                                                                                                        +

                                                                                                        The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $mode + : int|null + = null
                                                                                                        +
                                                                                                        +

                                                                                                        The option mode: One of the InputOption::VALUE_* constants

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $description + : string + = ''
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $default + : mixed + = null
                                                                                                        +
                                                                                                        +

                                                                                                        The default value (must be null for InputOption::VALUE_NONE)

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + +

                                                                                                        If option mode is invalid or incompatible

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + addUsage() + + +

                                                                                                        + + +

                                                                                                        Add a command usage example, it'll be prefixed with the command name.

                                                                                                        + + + public + addUsage(string $usage) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $usage + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +

                                                                                                        + getAliases() + + +

                                                                                                        + + +

                                                                                                        Returns the aliases for the command.

                                                                                                        + + + public + getAliases() : array<string|int, mixed> + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed> +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getApplication() + + +

                                                                                                        + + +

                                                                                                        Gets the application instance for this command.

                                                                                                        + + + public + getApplication() : Application|null + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + Application|null +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getDefaultDescription() + + +

                                                                                                        + + + + + public + static getDefaultDescription() : string|null + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string|null +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getDefaultName() + + +

                                                                                                        + + + + + public + static getDefaultName() : string|null + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string|null +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getDefinition() + + +

                                                                                                        + + +

                                                                                                        Gets the InputDefinition attached to this Command.

                                                                                                        + + + public + getDefinition() : InputDefinition + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + InputDefinition +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getDescription() + + +

                                                                                                        + + +

                                                                                                        Returns the description for the command.

                                                                                                        + + + public + getDescription() : string + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getHelp() + + +

                                                                                                        + + +

                                                                                                        Returns the help for the command.

                                                                                                        + + + public + getHelp() : string + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getHelper() + + +

                                                                                                        + + +

                                                                                                        Gets a helper instance by name.

                                                                                                        + + + public + getHelper(string $name) : mixed + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $name + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + LogicException + +

                                                                                                        if no HelperSet is defined

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + +

                                                                                                        if the helper is not defined

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getHelperSet() + + +

                                                                                                        + + +

                                                                                                        Gets the helper set.

                                                                                                        + + + public + getHelperSet() : HelperSet|null + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + HelperSet|null +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getName() + + +

                                                                                                        + + +

                                                                                                        Returns the command name.

                                                                                                        + + + public + getName() : string|null + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string|null +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getNativeDefinition() + + +

                                                                                                        + + +

                                                                                                        Gets the InputDefinition to be used to create representations of this Command.

                                                                                                        + + + public + getNativeDefinition() : InputDefinition + +
                                                                                                        +
                                                                                                        + +

                                                                                                        Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                                                        +

                                                                                                        This method is not part of public API and should not be used directly.

                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + InputDefinition +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getProcessedHelp() + + +

                                                                                                        + + +

                                                                                                        Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                                                        + + + public + getProcessedHelp() : string + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getSynopsis() + + +

                                                                                                        + + +

                                                                                                        Returns the synopsis for the command.

                                                                                                        + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $short + : bool + = false
                                                                                                        +
                                                                                                        +

                                                                                                        Whether to show the short version of the synopsis (with options folded) or not

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + string +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + getUsages() + + +

                                                                                                        + + +

                                                                                                        Returns alternative usages of the command.

                                                                                                        + + + public + getUsages() : array<string|int, mixed> + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + array<string|int, mixed> +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + ignoreValidationErrors() + + +

                                                                                                        + + +

                                                                                                        Ignores validation errors.

                                                                                                        + + + public + ignoreValidationErrors() : mixed + +
                                                                                                        +
                                                                                                        + +

                                                                                                        This is mainly useful for the help command.

                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + isEnabled() + + +

                                                                                                        + + +

                                                                                                        Checks whether the command is enabled or not in the current environment.

                                                                                                        + + + public + isEnabled() : bool + +
                                                                                                        +
                                                                                                        + +

                                                                                                        Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + bool +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + isHidden() + + +

                                                                                                        + + + + + public + isHidden() : bool + +
                                                                                                        +
                                                                                                        + + + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + bool + — +

                                                                                                        whether the command should be publicly shown or not

                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + run() + + +

                                                                                                        + + +

                                                                                                        Runs the command.

                                                                                                        + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                                                        +
                                                                                                        + +

                                                                                                        The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $input + : InputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $output + : OutputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + ExceptionInterface + +

                                                                                                        When input binding fails. Bypass this by calling .

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + see +
                                                                                                        +
                                                                                                        + setCode() + + +
                                                                                                        +
                                                                                                        + see +
                                                                                                        +
                                                                                                        + execute() + + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + int + — +

                                                                                                        The command exit code

                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setAliases() + + +

                                                                                                        + + +

                                                                                                        Sets the aliases for the command.

                                                                                                        + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $aliases + : array<string|int, string> +
                                                                                                        +
                                                                                                        +

                                                                                                        An array of aliases for the command

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + +

                                                                                                        When an alias is invalid

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setApplication() + + +

                                                                                                        + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $application + : Application|null + = null
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setCode() + + +

                                                                                                        + + +

                                                                                                        Sets the code to execute when running this command.

                                                                                                        + + + public + setCode(callable $code) : $this + +
                                                                                                        +
                                                                                                        + +

                                                                                                        If this method is used, it overrides the code defined +in the execute() method.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $code + : callable +
                                                                                                        +
                                                                                                        +

                                                                                                        A callable(InputInterface $input, OutputInterface $output)

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + + +
                                                                                                        +
                                                                                                        + see +
                                                                                                        +
                                                                                                        + execute() + + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setDefinition() + + +

                                                                                                        + + +

                                                                                                        Sets an array of argument and option instances.

                                                                                                        + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $definition + : array<string|int, mixed>|InputDefinition +
                                                                                                        +
                                                                                                        +

                                                                                                        An array of argument and option instances or a definition instance

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setDescription() + + +

                                                                                                        + + +

                                                                                                        Sets the description for the command.

                                                                                                        + + + public + setDescription(string $description) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $description + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setHelp() + + +

                                                                                                        + + +

                                                                                                        Sets the help for the command.

                                                                                                        + + + public + setHelp(string $help) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $help + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setHelperSet() + + +

                                                                                                        + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $helperSet + : HelperSet +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setHidden() + + +

                                                                                                        + + + + + public + setHidden(bool $hidden) : $this + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $hidden + : bool +
                                                                                                        +
                                                                                                        +

                                                                                                        Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + final +
                                                                                                        +
                                                                                                        + +

                                                                                                        since Symfony 5.1

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setName() + + +

                                                                                                        + + +

                                                                                                        Sets the name of the command.

                                                                                                        + + + public + setName(string $name) : $this + +
                                                                                                        +
                                                                                                        + +

                                                                                                        This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                                                        +
                                                                                                        $command->setName('foo:bar');
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $name + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + +

                                                                                                        When the name is invalid

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + setProcessTitle() + + +

                                                                                                        + + +

                                                                                                        Sets the process title of the command.

                                                                                                        + + + public + setProcessTitle(string $title) : $this + +
                                                                                                        +
                                                                                                        + +

                                                                                                        This feature should be used only when creating a long process command, +like a daemon.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $title + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + $this +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + configure() + + +

                                                                                                        + + +

                                                                                                        Configures the current command.

                                                                                                        + + + protected + configure() : mixed + +
                                                                                                        +
                                                                                                        + + + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + execute() + + +

                                                                                                        + + +

                                                                                                        Executes the current command.

                                                                                                        + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                                                                        +
                                                                                                        + +

                                                                                                        This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $input + : InputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $output + : OutputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        +
                                                                                                        Return values
                                                                                                        + int + — +

                                                                                                        0 if everything went fine, or an exit code

                                                                                                        +
                                                                                                        + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +

                                                                                                        + initialize() + + +

                                                                                                        + + +

                                                                                                        Initializes the command after the input has been bound and before the input +is validated.

                                                                                                        + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                        +
                                                                                                        + +

                                                                                                        This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $input + : InputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $output + : OutputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + see +
                                                                                                        +
                                                                                                        + InputInterface::bind() + + +
                                                                                                        +
                                                                                                        + see +
                                                                                                        +
                                                                                                        + InputInterface::validate() + + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + install() + + +

                                                                                                        + + +

                                                                                                        Install packages

                                                                                                        + + + protected + install(mixed $packages, mixed $input, mixed $output) : mixed + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $packages + : mixed +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $input + : mixed +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $output + : mixed +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + installDependencies() + + +

                                                                                                        + + + + + protected + installDependencies(mixed $output) : mixed + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $output + : mixed +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + interact() + + +

                                                                                                        + + +

                                                                                                        Interacts with the user.

                                                                                                        + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                        +
                                                                                                        + +

                                                                                                        This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $input + : InputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + $output + : OutputInterface +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + + + +
                                                                                                        +
                                                                                                        +

                                                                                                        + validateName() + + +

                                                                                                        + + +

                                                                                                        Validates a command name.

                                                                                                        + + + private + validateName(string $name) : mixed + +
                                                                                                        +
                                                                                                        + +

                                                                                                        It must be non-empty and parts can optionally be separated by ":".

                                                                                                        +
                                                                                                        + +
                                                                                                        Parameters
                                                                                                        +
                                                                                                        +
                                                                                                        + $name + : string +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + +
                                                                                                        + Tags + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + throws +
                                                                                                        +
                                                                                                        + InvalidArgumentException + +

                                                                                                        When the name is invalid

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + + +
                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        
                                                                                                        +        
                                                                                                        + +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        +
                                                                                                        +
                                                                                                        + +
                                                                                                        + On this page + + +
                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        Search results

                                                                                                        + +
                                                                                                        +
                                                                                                        +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          + + +
                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Console-Utils-Package.html b/src/public/api/classes/Leaf-Console-Utils-Package.html new file mode 100644 index 00000000..73468291 --- /dev/null +++ b/src/public/api/classes/Leaf-Console-Utils-Package.html @@ -0,0 +1,599 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                          +

                                                                                                          Leaf PHP

                                                                                                          + + + + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + + +
                                                                                                          +
                                                                                                          + + +
                                                                                                          +

                                                                                                          + Package + + +
                                                                                                          + in package + +
                                                                                                          + + +

                                                                                                          + +
                                                                                                          + + +
                                                                                                          + + + +

                                                                                                          Package +---- +Meta info on leaf cli

                                                                                                          + + + + + + + + + +

                                                                                                          + Table of Contents + + +

                                                                                                          + + + + + + + + + + +

                                                                                                          + Methods + + +

                                                                                                          +
                                                                                                          +
                                                                                                          + info() + +  : mixed +
                                                                                                          +
                                                                                                          Check current version
                                                                                                          + +
                                                                                                          + ltsInfo() + +  : mixed +
                                                                                                          +
                                                                                                          Find latest stable version
                                                                                                          + +
                                                                                                          + ltsVersion() + +  : mixed +
                                                                                                          +
                                                                                                          Find latest stable version
                                                                                                          + +
                                                                                                          + updateAvailable() + +  : mixed +
                                                                                                          +
                                                                                                          Check if there is an update available
                                                                                                          + +
                                                                                                          + version() + +  : mixed +
                                                                                                          +
                                                                                                          Check current version
                                                                                                          + +
                                                                                                          + + + + + + + +
                                                                                                          +

                                                                                                          + Methods + + +

                                                                                                          +
                                                                                                          +

                                                                                                          + info() + + +

                                                                                                          + + +

                                                                                                          Check current version

                                                                                                          + + + public + static info() : mixed + +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + ltsInfo() + + +

                                                                                                          + + +

                                                                                                          Find latest stable version

                                                                                                          + + + public + static ltsInfo() : mixed + +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + ltsVersion() + + +

                                                                                                          + + +

                                                                                                          Find latest stable version

                                                                                                          + + + public + static ltsVersion() : mixed + +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + updateAvailable() + + +

                                                                                                          + + +

                                                                                                          Check if there is an update available

                                                                                                          + + + public + static updateAvailable() : mixed + +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          +

                                                                                                          + version() + + +

                                                                                                          + + +

                                                                                                          Check current version

                                                                                                          + + + public + static version() : mixed + +
                                                                                                          +
                                                                                                          + + + + + + + + +
                                                                                                          +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          
                                                                                                          +        
                                                                                                          + +
                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                          +
                                                                                                          + +
                                                                                                          + On this page + + +
                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +
                                                                                                          +

                                                                                                          Search results

                                                                                                          + +
                                                                                                          +
                                                                                                          +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            + + +
                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Controller.html b/src/public/api/classes/Leaf-Controller.html new file mode 100644 index 00000000..38300609 --- /dev/null +++ b/src/public/api/classes/Leaf-Controller.html @@ -0,0 +1,955 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                            +

                                                                                                            Leaf PHP

                                                                                                            + + + + + +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + + +
                                                                                                            +
                                                                                                            + + +
                                                                                                            +

                                                                                                            + Controller + + +
                                                                                                            + in package + +
                                                                                                            + + +

                                                                                                            + +
                                                                                                            + + +
                                                                                                            + + + +

                                                                                                            Leaf base controller +----------------- +Base controller for Leaf PHP Framework

                                                                                                            + + + + +
                                                                                                            + Tags + + +
                                                                                                            +
                                                                                                            +
                                                                                                            + author +
                                                                                                            +
                                                                                                            + +

                                                                                                            Michael Darko mickdd22@gmail.com

                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + since +
                                                                                                            +
                                                                                                            + 1.4.0 + + +
                                                                                                            +
                                                                                                            + version +
                                                                                                            +
                                                                                                            + 2.1 + + +
                                                                                                            +
                                                                                                            + + + + + +

                                                                                                            + Table of Contents + + +

                                                                                                            + + + + + + + + + +

                                                                                                            + Properties + + +

                                                                                                            +
                                                                                                            +
                                                                                                            + $request + +  : mixed +
                                                                                                            + +
                                                                                                            + $response + +  : mixed +
                                                                                                            + +
                                                                                                            + $view + +  : mixed +
                                                                                                            + +
                                                                                                            + +

                                                                                                            + Methods + + +

                                                                                                            +
                                                                                                            +
                                                                                                            + __construct() + +  : mixed +
                                                                                                            + +
                                                                                                            + auth() + +  : Auth +
                                                                                                            +
                                                                                                            Return the leaf auth object
                                                                                                            + +
                                                                                                            + errors() + +  : mixed +
                                                                                                            +
                                                                                                            Get auth, session and validation errors
                                                                                                            + +
                                                                                                            + id() + +  : mixed +
                                                                                                            +
                                                                                                            Get the currently authenticated user's ID.
                                                                                                            + +
                                                                                                            + render() + +  : mixed +
                                                                                                            +
                                                                                                            Render a view
                                                                                                            + +
                                                                                                            + user() + +  : mixed +
                                                                                                            +
                                                                                                            Get the currently authenticated user.
                                                                                                            + +
                                                                                                            + validate() + +  : mixed +
                                                                                                            +
                                                                                                            Validate the incoming request with the given rules.
                                                                                                            + +
                                                                                                            + view() + +  : mixed +
                                                                                                            +
                                                                                                            Return a view with the given data.
                                                                                                            + +
                                                                                                            + + + + + + +
                                                                                                            +

                                                                                                            + Properties + + +

                                                                                                            +
                                                                                                            +

                                                                                                            + $request + + + + +

                                                                                                            + + + + + + public + mixed + $request + + + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + $response + + + + +

                                                                                                            + + + + + + public + mixed + $response + + + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + $view + + + + +

                                                                                                            + + + + + + public + mixed + $view + + + + + + + + +
                                                                                                            +
                                                                                                            + +
                                                                                                            +

                                                                                                            + Methods + + +

                                                                                                            +
                                                                                                            +

                                                                                                            + __construct() + + +

                                                                                                            + + + + + public + __construct() : mixed + +
                                                                                                            +
                                                                                                            + + + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + auth() + + +

                                                                                                            + + +

                                                                                                            Return the leaf auth object

                                                                                                            + + + public + auth() : Auth + +
                                                                                                            +
                                                                                                            + + + + + + + +
                                                                                                            +
                                                                                                            Return values
                                                                                                            + Auth +
                                                                                                            + +
                                                                                                            +
                                                                                                            +

                                                                                                            + errors() + + +

                                                                                                            + + +

                                                                                                            Get auth, session and validation errors

                                                                                                            + + + public + errors() : mixed + +
                                                                                                            +
                                                                                                            + + + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + id() + + +

                                                                                                            + + +

                                                                                                            Get the currently authenticated user's ID.

                                                                                                            + + + public + id() : mixed + +
                                                                                                            +
                                                                                                            + + + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + render() + + +

                                                                                                            + + +

                                                                                                            Render a view

                                                                                                            + + + public + render(string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                            +
                                                                                                            + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $view + : string +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $data + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + user() + + +

                                                                                                            + + +

                                                                                                            Get the currently authenticated user.

                                                                                                            + + + public + user() : mixed + +
                                                                                                            +
                                                                                                            + + + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + validate() + + +

                                                                                                            + + +

                                                                                                            Validate the incoming request with the given rules.

                                                                                                            + + + public + validate(array<string|int, mixed> $rules) : mixed + +
                                                                                                            +
                                                                                                            + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $rules + : array<string|int, mixed> +
                                                                                                            +
                                                                                                            +

                                                                                                            The rules to validate against

                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + + + + +
                                                                                                            +
                                                                                                            +

                                                                                                            + view() + + +

                                                                                                            + + +

                                                                                                            Return a view with the given data.

                                                                                                            + + + public + view(string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                            +
                                                                                                            + + +
                                                                                                            Parameters
                                                                                                            +
                                                                                                            +
                                                                                                            + $view + : string +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + $data + : array<string|int, mixed> + = []
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + + + + +
                                                                                                            +
                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            
                                                                                                            +        
                                                                                                            + +
                                                                                                            +
                                                                                                            + + + +
                                                                                                            +
                                                                                                            +
                                                                                                            + +
                                                                                                            + On this page + + +
                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +
                                                                                                            +

                                                                                                            Search results

                                                                                                            + +
                                                                                                            +
                                                                                                            +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + +
                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Core.html b/src/public/api/classes/Leaf-Core.html new file mode 100644 index 00000000..659bf3b8 --- /dev/null +++ b/src/public/api/classes/Leaf-Core.html @@ -0,0 +1,813 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                              +

                                                                                                              Leaf PHP

                                                                                                              + + + + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              +

                                                                                                              + Core + + +
                                                                                                              + in package + +
                                                                                                              + + +

                                                                                                              + +
                                                                                                              + + +
                                                                                                              + + + +

                                                                                                              Leaf MVC Core +---------- +Base class for configuring core methods

                                                                                                              + + + + + + + + + +

                                                                                                              + Table of Contents + + +

                                                                                                              + + + + + + + + + +

                                                                                                              + Properties + + +

                                                                                                              +
                                                                                                              +
                                                                                                              + $mode + +  : mixed +
                                                                                                              + +
                                                                                                              + $paths + +  : mixed +
                                                                                                              + +
                                                                                                              + +

                                                                                                              + Methods + + +

                                                                                                              +
                                                                                                              +
                                                                                                              + loadApplicationConfig() + +  : mixed +
                                                                                                              +
                                                                                                              Setup MVC application based on config
                                                                                                              + +
                                                                                                              + loadConsole() + +  : mixed +
                                                                                                              +
                                                                                                              Load Aloe console and user defined commands
                                                                                                              + +
                                                                                                              + loadLibs() + +  : mixed +
                                                                                                              +
                                                                                                              Load user defined libs
                                                                                                              + +
                                                                                                              + mode() + +  : mixed +
                                                                                                              +
                                                                                                              Set mode for Leaf MVC: API or Web
                                                                                                              + +
                                                                                                              + paths() + +  : array<string|int, mixed> +
                                                                                                              +
                                                                                                              Return application paths
                                                                                                              + +
                                                                                                              + runApplication() + +  : mixed +
                                                                                                              +
                                                                                                              Load all application routes and run the application
                                                                                                              + +
                                                                                                              + loadConfig() + +  : mixed +
                                                                                                              +
                                                                                                              Load all config files defined in the config folder
                                                                                                              + +
                                                                                                              + + + + + + +
                                                                                                              +

                                                                                                              + Properties + + +

                                                                                                              +
                                                                                                              +

                                                                                                              + $mode + + + + +

                                                                                                              + + + + + + protected + static mixed + $mode + = 'web' + + + + + + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + $paths + + + + +

                                                                                                              + + + + + + protected + static mixed + $paths + + + + + + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +

                                                                                                              + Methods + + +

                                                                                                              +
                                                                                                              +

                                                                                                              + loadApplicationConfig() + + +

                                                                                                              + + +

                                                                                                              Setup MVC application based on config

                                                                                                              + + + public + static loadApplicationConfig() : mixed + +
                                                                                                              +
                                                                                                              + + + + + + + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + loadConsole() + + +

                                                                                                              + + +

                                                                                                              Load Aloe console and user defined commands

                                                                                                              + + + public + static loadConsole([mixed $externalCommands = [] ]) : mixed + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              Parameters
                                                                                                              +
                                                                                                              +
                                                                                                              + $externalCommands + : mixed + = []
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + loadLibs() + + +

                                                                                                              + + +

                                                                                                              Load user defined libs

                                                                                                              + + + public + static loadLibs() : mixed + +
                                                                                                              +
                                                                                                              + + + + + + + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + mode() + + +

                                                                                                              + + +

                                                                                                              Set mode for Leaf MVC: API or Web

                                                                                                              + + + public + static mode([string|null $mode = null ]) : mixed + +
                                                                                                              +
                                                                                                              + + +
                                                                                                              Parameters
                                                                                                              +
                                                                                                              +
                                                                                                              + $mode + : string|null + = null
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + + + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + paths() + + +

                                                                                                              + + +

                                                                                                              Return application paths

                                                                                                              + + + public + static paths() : array<string|int, mixed> + +
                                                                                                              +
                                                                                                              + + + + + + + +
                                                                                                              +
                                                                                                              Return values
                                                                                                              + array<string|int, mixed> +
                                                                                                              + +
                                                                                                              +
                                                                                                              +

                                                                                                              + runApplication() + + +

                                                                                                              + + +

                                                                                                              Load all application routes and run the application

                                                                                                              + + + public + static runApplication() : mixed + +
                                                                                                              +
                                                                                                              + + + + + + + + +
                                                                                                              +
                                                                                                              +

                                                                                                              + loadConfig() + + +

                                                                                                              + + +

                                                                                                              Load all config files defined in the config folder

                                                                                                              + + + protected + static loadConfig() : mixed + +
                                                                                                              +
                                                                                                              + + + + + + + + +
                                                                                                              +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              
                                                                                                              +        
                                                                                                              + +
                                                                                                              +
                                                                                                              + + + +
                                                                                                              +
                                                                                                              +
                                                                                                              + +
                                                                                                              + On this page + + +
                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +

                                                                                                              Search results

                                                                                                              + +
                                                                                                              +
                                                                                                              +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                + + +
                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Database.html b/src/public/api/classes/Leaf-Database.html new file mode 100644 index 00000000..8d911076 --- /dev/null +++ b/src/public/api/classes/Leaf-Database.html @@ -0,0 +1,533 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                +

                                                                                                                Leaf PHP

                                                                                                                + + + + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                + + +
                                                                                                                +

                                                                                                                + Database + + +
                                                                                                                + in package + +
                                                                                                                + + +

                                                                                                                + +
                                                                                                                + + +
                                                                                                                + + + +

                                                                                                                Leaf Database Config +--- +This class is used to configure the database connection for models.

                                                                                                                + + + + + + + + + +

                                                                                                                + Table of Contents + + +

                                                                                                                + + + + + + + + + +

                                                                                                                + Properties + + +

                                                                                                                +
                                                                                                                +
                                                                                                                + $capsule + +  : mixed +
                                                                                                                + +
                                                                                                                + +

                                                                                                                + Methods + + +

                                                                                                                +
                                                                                                                +
                                                                                                                + connect() + +  : mixed +
                                                                                                                +
                                                                                                                Create a new database connection for models
                                                                                                                + +
                                                                                                                + initDb() + +  : mixed +
                                                                                                                +
                                                                                                                Create a Leaf Db connection using the the default connection +defined in the config/database.php file
                                                                                                                + +
                                                                                                                + + + + + + +
                                                                                                                +

                                                                                                                + Properties + + +

                                                                                                                +
                                                                                                                +

                                                                                                                + $capsule + + + + +

                                                                                                                + + + + + + public + static mixed + $capsule + + + + + + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +

                                                                                                                + Methods + + +

                                                                                                                +
                                                                                                                +

                                                                                                                + connect() + + +

                                                                                                                + + +

                                                                                                                Create a new database connection for models

                                                                                                                + + + public + static connect() : mixed + +
                                                                                                                +
                                                                                                                + + + + + + + + +
                                                                                                                +
                                                                                                                +

                                                                                                                + initDb() + + +

                                                                                                                + + +

                                                                                                                Create a Leaf Db connection using the the default connection +defined in the config/database.php file

                                                                                                                + + + public + static initDb() : mixed + +
                                                                                                                +
                                                                                                                + + + + + + + + +
                                                                                                                +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                
                                                                                                                +        
                                                                                                                + +
                                                                                                                +
                                                                                                                + + + +
                                                                                                                +
                                                                                                                +
                                                                                                                + +
                                                                                                                + On this page + + +
                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +
                                                                                                                +

                                                                                                                Search results

                                                                                                                + +
                                                                                                                +
                                                                                                                +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Date.html b/src/public/api/classes/Leaf-Date.html new file mode 100644 index 00000000..04d49e41 --- /dev/null +++ b/src/public/api/classes/Leaf-Date.html @@ -0,0 +1,2480 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                  +

                                                                                                                  Leaf PHP

                                                                                                                  + + + + + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  +

                                                                                                                  + Date + + +
                                                                                                                  + in package + +
                                                                                                                  + + +

                                                                                                                  + +
                                                                                                                  + + +
                                                                                                                  + + + +

                                                                                                                  Leaf Date +---------------------- +Quick date/time manipulation with Leaf

                                                                                                                  + + + + +
                                                                                                                  + Tags + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + author +
                                                                                                                  +
                                                                                                                  + +

                                                                                                                  Michael Darko

                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + since +
                                                                                                                  +
                                                                                                                  + 1.1.0 + + +
                                                                                                                  +
                                                                                                                  + + + + + +

                                                                                                                  + Table of Contents + + +

                                                                                                                  + + + + + + + + + +

                                                                                                                  + Properties + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + +  : DateTime +
                                                                                                                  + +
                                                                                                                  + +

                                                                                                                  + Methods + + +

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + __construct() + +  : mixed +
                                                                                                                  + +
                                                                                                                  + add() + +  : Date +
                                                                                                                  +
                                                                                                                  Add a duration to the current date
                                                                                                                  + +
                                                                                                                  + day() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the day
                                                                                                                  + +
                                                                                                                  + endOf() + +  : Date +
                                                                                                                  +
                                                                                                                  Get the end of a time unit
                                                                                                                  + +
                                                                                                                  + format() + +  : string +
                                                                                                                  +
                                                                                                                  Get the formatted date according to the string of tokens passed in.
                                                                                                                  + +
                                                                                                                  + from() + +  : string +
                                                                                                                  +
                                                                                                                  Returns the string of relative time from a date.
                                                                                                                  + +
                                                                                                                  + fromNow() + +  : string +
                                                                                                                  +
                                                                                                                  Returns the string of relative time from now.
                                                                                                                  + +
                                                                                                                  + get() + +  : string +
                                                                                                                  +
                                                                                                                  String getter, returns the corresponding information getting from the date instance.
                                                                                                                  + +
                                                                                                                  + hour() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the hour
                                                                                                                  + +
                                                                                                                  + isAfter() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is after the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isBefore() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is before the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isBetween() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is between the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isBetweenOrEqual() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is between the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isDateTime() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is a datetime
                                                                                                                  + +
                                                                                                                  + isLeapYear() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is a leap year.
                                                                                                                  + +
                                                                                                                  + isSame() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isSameDay() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isSameMonth() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + isSameYear() + +  : bool +
                                                                                                                  +
                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.
                                                                                                                  + +
                                                                                                                  + millisecond() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the millisecond
                                                                                                                  + +
                                                                                                                  + minute() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the minute
                                                                                                                  + +
                                                                                                                  + month() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the month
                                                                                                                  + +
                                                                                                                  + now() + +  : string +
                                                                                                                  +
                                                                                                                  Get the current date
                                                                                                                  + +
                                                                                                                  + second() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the second
                                                                                                                  + +
                                                                                                                  + set() + +  : Date +
                                                                                                                  +
                                                                                                                  Generic setter, accepting unit as first argument, and value as second, returns a new instance with the applied changes.
                                                                                                                  + +
                                                                                                                  + setTimezone() + +  : mixed +
                                                                                                                  +
                                                                                                                  Set default date timezone
                                                                                                                  + +
                                                                                                                  + startOf() + +  : Date +
                                                                                                                  +
                                                                                                                  Get the start of a time unit
                                                                                                                  + +
                                                                                                                  + subtract() + +  : Date +
                                                                                                                  +
                                                                                                                  Subtract a duration to the current date
                                                                                                                  + +
                                                                                                                  + tick() + +  : Date +
                                                                                                                  +
                                                                                                                  Base method for all date/time operations
                                                                                                                  + +
                                                                                                                  + toDateString() + +  : string +
                                                                                                                  +
                                                                                                                  Return as PHP DateTime object
                                                                                                                  + +
                                                                                                                  + toDateTime() + +  : DateTime +
                                                                                                                  +
                                                                                                                  Return as PHP DateTime object
                                                                                                                  + +
                                                                                                                  + toDateTimeString() + +  : string +
                                                                                                                  +
                                                                                                                  Return as PHP DateTime object
                                                                                                                  + +
                                                                                                                  + toIsoString() + +  : string +
                                                                                                                  +
                                                                                                                  Return as PHP DateTime object
                                                                                                                  + +
                                                                                                                  + toNow() + +  : string +
                                                                                                                  +
                                                                                                                  Returns the string of relative time from now.
                                                                                                                  + +
                                                                                                                  + toTimeString() + +  : string +
                                                                                                                  +
                                                                                                                  Return as PHP DateTime object
                                                                                                                  + +
                                                                                                                  + year() + +  : Date|int +
                                                                                                                  +
                                                                                                                  Gets or sets the year
                                                                                                                  + +
                                                                                                                  + + + + + + +
                                                                                                                  +

                                                                                                                  + Properties + + +

                                                                                                                  +
                                                                                                                  +

                                                                                                                  + $date + + + + +

                                                                                                                  + + + + + + protected + DateTime + $date + + + + + + + + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +

                                                                                                                  + Methods + + +

                                                                                                                  +
                                                                                                                  +

                                                                                                                  + __construct() + + +

                                                                                                                  + + + + + public + __construct() : mixed + +
                                                                                                                  +
                                                                                                                  + + + + + + + + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + add() + + +

                                                                                                                  + + +

                                                                                                                  Add a duration to the current date

                                                                                                                  + + + public + add(mixed $duration[, string|null $interval = null ]) : Date + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $duration + : mixed +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $interval + : string|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + day() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the day

                                                                                                                  + + + public + day([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + endOf() + + +

                                                                                                                  + + +

                                                                                                                  Get the end of a time unit

                                                                                                                  + + + public + endOf(string $unit) : Date + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $unit + : string +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + format() + + +

                                                                                                                  + + +

                                                                                                                  Get the formatted date according to the string of tokens passed in.

                                                                                                                  + + + public + format([string $format = 'c' ]) : string + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $format + : string + = 'c'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + from() + + +

                                                                                                                  + + +

                                                                                                                  Returns the string of relative time from a date.

                                                                                                                  + + + public + from([mixed $date = 'now' ][, mixed $valueOnly = false ]) : string + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $valueOnly + : mixed + = false
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + fromNow() + + +

                                                                                                                  + + +

                                                                                                                  Returns the string of relative time from now.

                                                                                                                  + + + public + fromNow([mixed $valueOnly = false ]) : string + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $valueOnly + : mixed + = false
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + get() + + +

                                                                                                                  + + +

                                                                                                                  String getter, returns the corresponding information getting from the date instance.

                                                                                                                  + + + public + get(string $unit) : string + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $unit + : string +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + hour() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the hour

                                                                                                                  + + + public + hour([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isAfter() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is after the other supplied date-time.

                                                                                                                  + + + public + isAfter(mixed $date) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isBefore() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is before the other supplied date-time.

                                                                                                                  + + + public + isBefore(mixed $date) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isBetween() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is between the other supplied date-time.

                                                                                                                  + + + public + isBetween([mixed $date1 = 'now' ][, mixed $date2 = 'now' ]) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date1 + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $date2 + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isBetweenOrEqual() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is between the other supplied date-time.

                                                                                                                  + + + public + isBetweenOrEqual([mixed $date1 = 'now' ][, mixed $date2 = 'now' ]) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date1 + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $date2 + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isDateTime() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is a datetime

                                                                                                                  + + + public + isDateTime(mixed $date) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isLeapYear() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is a leap year.

                                                                                                                  + + + public + isLeapYear() : bool + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isSame() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.

                                                                                                                  + + + public + isSame([mixed $date = 'now' ]) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isSameDay() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.

                                                                                                                  + + + public + isSameDay([mixed $date = 'now' ]) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isSameMonth() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.

                                                                                                                  + + + public + isSameMonth([mixed $date = 'now' ]) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + isSameYear() + + +

                                                                                                                  + + +

                                                                                                                  This indicates whether the date object is the same as the other supplied date-time.

                                                                                                                  + + + public + isSameYear([mixed $date = 'now' ]) : bool + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $date + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + bool +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + millisecond() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the millisecond

                                                                                                                  + + + public + millisecond([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + minute() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the minute

                                                                                                                  + + + public + minute([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + month() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the month

                                                                                                                  + + + public + month([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + now() + + +

                                                                                                                  + + +

                                                                                                                  Get the current date

                                                                                                                  + + + public + now() : string + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + second() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the second

                                                                                                                  + + + public + second([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + set() + + +

                                                                                                                  + + +

                                                                                                                  Generic setter, accepting unit as first argument, and value as second, returns a new instance with the applied changes.

                                                                                                                  + + + public + set(string $unit, int $value) : Date + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $unit + : string +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $value + : int +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + setTimezone() + + +

                                                                                                                  + + +

                                                                                                                  Set default date timezone

                                                                                                                  + + + public + setTimezone([string $timezone = "Africa/Accra" ]) : mixed + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $timezone + : string + = "Africa/Accra"
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + startOf() + + +

                                                                                                                  + + +

                                                                                                                  Get the start of a time unit

                                                                                                                  + + + public + startOf(string $unit) : Date + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $unit + : string +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + subtract() + + +

                                                                                                                  + + +

                                                                                                                  Subtract a duration to the current date

                                                                                                                  + + + public + subtract(mixed $duration[, string|null $interval = null ]) : Date + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $duration + : mixed +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $interval + : string|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + tick() + + +

                                                                                                                  + + +

                                                                                                                  Base method for all date/time operations

                                                                                                                  + + + public + tick([mixed $userDate = 'now' ][, string|null $userTimeZone = null ]) : Date + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $userDate + : mixed + = 'now'
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + $userTimeZone + : string|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + toDateString() + + +

                                                                                                                  + + +

                                                                                                                  Return as PHP DateTime object

                                                                                                                  + + + public + toDateString() : string + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + toDateTime() + + +

                                                                                                                  + + +

                                                                                                                  Return as PHP DateTime object

                                                                                                                  + + + public + toDateTime() : DateTime + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + DateTime +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + toDateTimeString() + + +

                                                                                                                  + + +

                                                                                                                  Return as PHP DateTime object

                                                                                                                  + + + public + toDateTimeString() : string + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + toIsoString() + + +

                                                                                                                  + + +

                                                                                                                  Return as PHP DateTime object

                                                                                                                  + + + public + toIsoString() : string + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + toNow() + + +

                                                                                                                  + + +

                                                                                                                  Returns the string of relative time from now.

                                                                                                                  + + + public + toNow([mixed $valueOnly = false ]) : string + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $valueOnly + : mixed + = false
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + toTimeString() + + +

                                                                                                                  + + +

                                                                                                                  Return as PHP DateTime object

                                                                                                                  + + + public + toTimeString() : string + +
                                                                                                                  +
                                                                                                                  + + + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + string +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  + year() + + +

                                                                                                                  + + +

                                                                                                                  Gets or sets the year

                                                                                                                  + + + public + year([int|null $value = null ]) : Date|int + +
                                                                                                                  +
                                                                                                                  + + +
                                                                                                                  Parameters
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + $value + : int|null + = null
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + + + +
                                                                                                                  +
                                                                                                                  Return values
                                                                                                                  + Date|int +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  
                                                                                                                  +        
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  + + + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  + +
                                                                                                                  + On this page + + +
                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  Search results

                                                                                                                  + +
                                                                                                                  +
                                                                                                                  +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Db-Builder.html b/src/public/api/classes/Leaf-Db-Builder.html new file mode 100644 index 00000000..6603779e --- /dev/null +++ b/src/public/api/classes/Leaf-Db-Builder.html @@ -0,0 +1,940 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                    +

                                                                                                                    Leaf PHP

                                                                                                                    + + + + + +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    +

                                                                                                                    + Builder + + +
                                                                                                                    + in package + +
                                                                                                                    + + +

                                                                                                                    + +
                                                                                                                    + + +
                                                                                                                    + + + +

                                                                                                                    Leaf Db Query Builder +------------------------- +Functionality of leaf query builder.

                                                                                                                    + + + + +
                                                                                                                    + Tags + + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + author +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    Michael Darko

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + since +
                                                                                                                    +
                                                                                                                    + 3.0 + + +
                                                                                                                    +
                                                                                                                    + version +
                                                                                                                    +
                                                                                                                    + 1.0.0 + + +
                                                                                                                    +
                                                                                                                    + + + + + +

                                                                                                                    + Table of Contents + + +

                                                                                                                    + + + + + + + + + +

                                                                                                                    + Properties + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $bindings + +  : mixed +
                                                                                                                    +
                                                                                                                    Params bound to query
                                                                                                                    + +
                                                                                                                    + +

                                                                                                                    + Methods + + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + groupBy() + +  : string +
                                                                                                                    +
                                                                                                                    Group query results by a column
                                                                                                                    + +
                                                                                                                    + limit() + +  : string +
                                                                                                                    +
                                                                                                                    Limit query to specific number of values to return
                                                                                                                    + +
                                                                                                                    + offset() + +  : string +
                                                                                                                    +
                                                                                                                    Offset query items by a specific number
                                                                                                                    + +
                                                                                                                    + orderBy() + +  : string +
                                                                                                                    +
                                                                                                                    Order query results by a column
                                                                                                                    + +
                                                                                                                    + params() + +  : string +
                                                                                                                    +
                                                                                                                    Builder for params block
                                                                                                                    + +
                                                                                                                    + where() + +  : string +
                                                                                                                    +
                                                                                                                    Controls inner workings of all where blocks
                                                                                                                    + +
                                                                                                                    + + + + + + +
                                                                                                                    +

                                                                                                                    + Properties + + +

                                                                                                                    +
                                                                                                                    +

                                                                                                                    + $bindings + + + + +

                                                                                                                    + + +

                                                                                                                    Params bound to query

                                                                                                                    + + + + public + static mixed + $bindings + = [] + + + + + + + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +

                                                                                                                    + Methods + + +

                                                                                                                    +
                                                                                                                    +

                                                                                                                    + groupBy() + + +

                                                                                                                    + + +

                                                                                                                    Group query results by a column

                                                                                                                    + + + public + static groupBy(string $query, string $column) : string + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $query + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The query to modify (if any)

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $column + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The column to group results by

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    + Tags + + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + author +
                                                                                                                    +
                                                                                                                    + +

                                                                                                                    Milos Lukic https://github.com/iammiloslukic

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + +
                                                                                                                    +
                                                                                                                    Return values
                                                                                                                    + string +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + limit() + + +

                                                                                                                    + + +

                                                                                                                    Limit query to specific number of values to return

                                                                                                                    + + + public + static limit(string $query, string|number $number) : string + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $query + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The query to modify (if any)

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $number + : string|number +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    Limit to query

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + + +
                                                                                                                    +
                                                                                                                    Return values
                                                                                                                    + string +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + offset() + + +

                                                                                                                    + + +

                                                                                                                    Offset query items by a specific number

                                                                                                                    + + + public + static offset(string $query, string|number $number) : string + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $query + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The query to modify (if any)

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $number + : string|number +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    Offset to query

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + + +
                                                                                                                    +
                                                                                                                    Return values
                                                                                                                    + string +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + orderBy() + + +

                                                                                                                    + + +

                                                                                                                    Order query results by a column

                                                                                                                    + + + public + static orderBy(string $query, string $column[, string $direction = 'desc' ]) : string + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $query + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The query to modify (if any)

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $column + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The column to order results by

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $direction + : string + = 'desc'
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The direction to order [DESC, ASC]

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + + +
                                                                                                                    +
                                                                                                                    Return values
                                                                                                                    + string +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + params() + + +

                                                                                                                    + + +

                                                                                                                    Builder for params block

                                                                                                                    + + + public + static params(string $query, array<string|int, mixed>|string $params) : string + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $query + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The query to modify

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $params + : array<string|int, mixed>|string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    Key or params to pass into query

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + + +
                                                                                                                    +
                                                                                                                    Return values
                                                                                                                    + string +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + where() + + +

                                                                                                                    + + +

                                                                                                                    Controls inner workings of all where blocks

                                                                                                                    + + + public + static where(string $query, string|array<string|int, mixed> $condition[, mixed $value = null ][, string $comparator = '=' ][, string $operation = 'AND' ]) : string + +
                                                                                                                    +
                                                                                                                    + + +
                                                                                                                    Parameters
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + $query + : string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The query to modify

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $condition + : string|array<string|int, mixed> +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The condition to evaluate

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $value + : mixed + = null
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The value if condition is a string

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $comparator + : string + = '='
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The comparator to bind condition

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + $operation + : string + = 'AND'
                                                                                                                    +
                                                                                                                    +

                                                                                                                    The operation to join multiple wheres

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + + + +
                                                                                                                    +
                                                                                                                    Return values
                                                                                                                    + string +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    
                                                                                                                    +        
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + +
                                                                                                                    + On this page + + +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    Search results

                                                                                                                    + +
                                                                                                                    +
                                                                                                                    +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Db-Core.html b/src/public/api/classes/Leaf-Db-Core.html new file mode 100644 index 00000000..b8c63e50 --- /dev/null +++ b/src/public/api/classes/Leaf-Db-Core.html @@ -0,0 +1,2784 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                      +

                                                                                                                      Leaf PHP

                                                                                                                      + + + + + +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      +

                                                                                                                      + Core + + +
                                                                                                                      + in package + +
                                                                                                                      + + +

                                                                                                                      + +
                                                                                                                      + + +
                                                                                                                      + + + +

                                                                                                                      Leaf Db [Core] +------------------------- +Core functionality of leaf db.

                                                                                                                      + + + + +
                                                                                                                      + Tags + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + author +
                                                                                                                      +
                                                                                                                      + +

                                                                                                                      Michael Darko

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + since +
                                                                                                                      +
                                                                                                                      + 3.0 + + +
                                                                                                                      +
                                                                                                                      + version +
                                                                                                                      +
                                                                                                                      + 1.0.0 + + +
                                                                                                                      +
                                                                                                                      + + + + + +

                                                                                                                      + Table of Contents + + +

                                                                                                                      + + + + + + + + + +

                                                                                                                      + Properties + + +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $added + +  : mixed +
                                                                                                                      +
                                                                                                                      Items to add to query results
                                                                                                                      + +
                                                                                                                      + $bindings + +  : mixed +
                                                                                                                      +
                                                                                                                      Params bound to query
                                                                                                                      + +
                                                                                                                      + $config + +  : mixed +
                                                                                                                      +
                                                                                                                      Config for leaf db
                                                                                                                      + +
                                                                                                                      + $connections + +  : mixed +
                                                                                                                      +
                                                                                                                      List of connected db instances
                                                                                                                      + +
                                                                                                                      + $currentConnection + +  : string|null +
                                                                                                                      +
                                                                                                                      Current connection to use for db
                                                                                                                      + +
                                                                                                                      + $eager + +  : mixed +
                                                                                                                      +
                                                                                                                      Items to eager load
                                                                                                                      + +
                                                                                                                      + $errors + +  : mixed +
                                                                                                                      +
                                                                                                                      Errors caught in leaf db
                                                                                                                      + +
                                                                                                                      + $hidden + +  : mixed +
                                                                                                                      +
                                                                                                                      Items to hide from query results
                                                                                                                      + +
                                                                                                                      + $params + +  : mixed +
                                                                                                                      +
                                                                                                                      Full list of params passed into leaf db
                                                                                                                      + +
                                                                                                                      + $query + +  : mixed +
                                                                                                                      +
                                                                                                                      Actual query to run
                                                                                                                      + +
                                                                                                                      + $queryResult + +  : PDOStatement +
                                                                                                                      +
                                                                                                                      Query result
                                                                                                                      + +
                                                                                                                      + $table + +  : mixed +
                                                                                                                      +
                                                                                                                      Db table to peform operations on
                                                                                                                      + +
                                                                                                                      + $uniques + +  : mixed +
                                                                                                                      +
                                                                                                                      Items which should be unique in db
                                                                                                                      + +
                                                                                                                      + +

                                                                                                                      + Methods + + +

                                                                                                                      +
                                                                                                                      +
                                                                                                                      + __construct() + +  : mixed +
                                                                                                                      +
                                                                                                                      Initialize leaf db with a database connection
                                                                                                                      + +
                                                                                                                      + addConnections() + +  : Core +
                                                                                                                      +
                                                                                                                      Add a list of database connections
                                                                                                                      + +
                                                                                                                      + all() + +  : mixed +
                                                                                                                      +
                                                                                                                      Alias for fetchAll
                                                                                                                      + +
                                                                                                                      + assoc() + +  : mixed +
                                                                                                                      +
                                                                                                                      Alias for fetchAssoc
                                                                                                                      + +
                                                                                                                      + autoConnect() + +  : Core +
                                                                                                                      +
                                                                                                                      Connect to database using environment variables
                                                                                                                      + +
                                                                                                                      + bind() + +  : self +
                                                                                                                      +
                                                                                                                      Bind parameters to a query
                                                                                                                      + +
                                                                                                                      + close() + +  : void +
                                                                                                                      +
                                                                                                                      Closes Db connection
                                                                                                                      + +
                                                                                                                      + column() + +  : mixed +
                                                                                                                      +
                                                                                                                      Fetch column from results
                                                                                                                      + +
                                                                                                                      + config() + +  : mixed +
                                                                                                                      +
                                                                                                                      Configure leaf db - syncs with leaf config
                                                                                                                      + +
                                                                                                                      + connect() + +  : Core +
                                                                                                                      +
                                                                                                                      Connect to database
                                                                                                                      + +
                                                                                                                      + connection() + +  : mixed +
                                                                                                                      +
                                                                                                                      Return the database connection
                                                                                                                      + +
                                                                                                                      + connectSync() + +  : PDO +
                                                                                                                      +
                                                                                                                      Connect to database immediately
                                                                                                                      + +
                                                                                                                      + count() + +  : int +
                                                                                                                      +
                                                                                                                      Get the current count of objects in query
                                                                                                                      + +
                                                                                                                      + debug() + +  : mixed +
                                                                                                                      +
                                                                                                                      Get the current snapshot of leaf db internals
                                                                                                                      + +
                                                                                                                      + errors() + +  : array<string|int, mixed> +
                                                                                                                      +
                                                                                                                      Return caught errors if any
                                                                                                                      + +
                                                                                                                      + execute() + +  : mixed +
                                                                                                                      +
                                                                                                                      Execute a generated query
                                                                                                                      + +
                                                                                                                      + fetchAll() + +  : mixed +
                                                                                                                      +
                                                                                                                      Fetch the items returned by query
                                                                                                                      + +
                                                                                                                      + fetchAssoc() + +  : mixed +
                                                                                                                      +
                                                                                                                      Fetch the items returned by query
                                                                                                                      + +
                                                                                                                      + fetchObj() + +  : mixed +
                                                                                                                      +
                                                                                                                      Fetch the items returned by query
                                                                                                                      + +
                                                                                                                      + get() + +  : mixed +
                                                                                                                      +
                                                                                                                      Alias for fetchAll
                                                                                                                      + +
                                                                                                                      + lastInsertId() + +  : mixed +
                                                                                                                      +
                                                                                                                      Returns the ID of the last inserted row or sequence value
                                                                                                                      + +
                                                                                                                      + load() + +  : Core +
                                                                                                                      +
                                                                                                                      Alias for connect
                                                                                                                      + +
                                                                                                                      + obj() + +  : mixed +
                                                                                                                      +
                                                                                                                      Alias for fetchObj
                                                                                                                      + +
                                                                                                                      + query() + +  : self +
                                                                                                                      +
                                                                                                                      Manually create a database query
                                                                                                                      + +
                                                                                                                      + result() + +  : PDOStatement +
                                                                                                                      +
                                                                                                                      Get raw result of last query
                                                                                                                      + +
                                                                                                                      + table() + +  : self +
                                                                                                                      +
                                                                                                                      Set the current db table for operations
                                                                                                                      + +
                                                                                                                      + use() + +  : Core +
                                                                                                                      +
                                                                                                                      Set the current connection to use for queries
                                                                                                                      + +
                                                                                                                      + clearState() + +  : mixed +
                                                                                                                      +
                                                                                                                      Prepare leaf db to handle next query
                                                                                                                      + +
                                                                                                                      + copyState() + +  : mixed +
                                                                                                                      +
                                                                                                                      Copy internal state
                                                                                                                      + +
                                                                                                                      + dsn() + +  : string +
                                                                                                                      + +
                                                                                                                      + env() + +  : string|bool +
                                                                                                                      +
                                                                                                                      Returns the value of the environment variable by using Leaf's `_env` primarily.
                                                                                                                      + +
                                                                                                                      + + + + + + +
                                                                                                                      +

                                                                                                                      + Properties + + +

                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $added + + + + +

                                                                                                                      + + +

                                                                                                                      Items to add to query results

                                                                                                                      + + + + protected + mixed + $added + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $bindings + + + + +

                                                                                                                      + + +

                                                                                                                      Params bound to query

                                                                                                                      + + + + protected + mixed + $bindings + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $config + + + + +

                                                                                                                      + + +

                                                                                                                      Config for leaf db

                                                                                                                      + + + + protected + mixed + $config + = ['dbtype' => 'mysql', 'charset' => null, 'port' => '3306', 'unixSocket' => null, 'host' => '127.0.0.1', 'username' => 'root', 'password' => '', 'dbname' => ''] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $connections + + + + +

                                                                                                                      + + +

                                                                                                                      List of connected db instances

                                                                                                                      + + + + protected + mixed + $connections + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $currentConnection + + + + +

                                                                                                                      + + +

                                                                                                                      Current connection to use for db

                                                                                                                      + + + + protected + string|null + $currentConnection + = null + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $eager + + + + +

                                                                                                                      + + +

                                                                                                                      Items to eager load

                                                                                                                      + + + + protected + mixed + $eager + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $errors + + + + +

                                                                                                                      + + +

                                                                                                                      Errors caught in leaf db

                                                                                                                      + + + + protected + mixed + $errors + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $hidden + + + + +

                                                                                                                      + + +

                                                                                                                      Items to hide from query results

                                                                                                                      + + + + protected + mixed + $hidden + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $params + + + + +

                                                                                                                      + + +

                                                                                                                      Full list of params passed into leaf db

                                                                                                                      + + + + protected + mixed + $params + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $query + + + + +

                                                                                                                      + + +

                                                                                                                      Actual query to run

                                                                                                                      + + + + protected + mixed + $query + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $queryResult + + + + +

                                                                                                                      + + +

                                                                                                                      Query result

                                                                                                                      + + + + protected + PDOStatement + $queryResult + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $table + + + + +

                                                                                                                      + + +

                                                                                                                      Db table to peform operations on

                                                                                                                      + + + + protected + mixed + $table + = null + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + $uniques + + + + +

                                                                                                                      + + +

                                                                                                                      Items which should be unique in db

                                                                                                                      + + + + protected + mixed + $uniques + = [] + + + + + + + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +

                                                                                                                      + Methods + + +

                                                                                                                      +
                                                                                                                      +

                                                                                                                      + __construct() + + +

                                                                                                                      + + +

                                                                                                                      Initialize leaf db with a database connection

                                                                                                                      + + + public + __construct([string|array<string|int, mixed> $host = '' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $host + : string|array<string|int, mixed> + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Host Name or full config

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbname + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database name

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $user + : string + = 'root'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database username

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $password + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database password

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbtype + : string + = 'mysql'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Type of database: mysql, postgres, sqlite, ...

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + addConnections() + + +

                                                                                                                      + + +

                                                                                                                      Add a list of database connections

                                                                                                                      + + + public + addConnections(array<string|int, mixed> $connections[, string|null $default = null ]) : Core + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $connections + : array<string|int, mixed> +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      List of database connections

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $default + : string|null + = null
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + Core +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + all() + + +

                                                                                                                      + + +

                                                                                                                      Alias for fetchAll

                                                                                                                      + + + public + all([mixed $type = 'assoc' ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $type + : mixed + = 'assoc'
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + assoc() + + +

                                                                                                                      + + +

                                                                                                                      Alias for fetchAssoc

                                                                                                                      + + + public + assoc() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + autoConnect() + + +

                                                                                                                      + + +

                                                                                                                      Connect to database using environment variables

                                                                                                                      + + + public + autoConnect([array<string|int, mixed> $pdoOptions = [] ]) : Core + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Options for PDO connection

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + Core +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + bind() + + +

                                                                                                                      + + +

                                                                                                                      Bind parameters to a query

                                                                                                                      + + + public + bind(mixed ...$bindings) : self + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $bindings + : mixed +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + self +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + close() + + +

                                                                                                                      + + +

                                                                                                                      Closes Db connection

                                                                                                                      + + + public + close() : void + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + column() + + +

                                                                                                                      + + +

                                                                                                                      Fetch column from results

                                                                                                                      + + + public + column() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + config() + + +

                                                                                                                      + + +

                                                                                                                      Configure leaf db - syncs with leaf config

                                                                                                                      + + + public + config(mixed $name[, mixed $value = null ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $name + : mixed +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $value + : mixed + = null
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + connect() + + +

                                                                                                                      + + +

                                                                                                                      Connect to database

                                                                                                                      + + + public + connect([string|array<string|int, mixed> $host = '127.0.0.1' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ][, array<string|int, mixed> $pdoOptions = [] ]) : Core + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $host + : string|array<string|int, mixed> + = '127.0.0.1'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Host Name or full config

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbname + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database name

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $user + : string + = 'root'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database username

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $password + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database password

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbtype + : string + = 'mysql'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Type of database: mysql, postgres, sqlite, ...

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Options for PDO connection

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + Core +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + connection() + + +

                                                                                                                      + + +

                                                                                                                      Return the database connection

                                                                                                                      + + + public + connection([PDO|string|null $connection = null ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $connection + : PDO|string|null + = null
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Manual instance of PDO connection

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + connectSync() + + +

                                                                                                                      + + +

                                                                                                                      Connect to database immediately

                                                                                                                      + + + public + connectSync([string|array<string|int, mixed> $host = '127.0.0.1' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ][, array<string|int, mixed> $pdoOptions = [] ]) : PDO + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $host + : string|array<string|int, mixed> + = '127.0.0.1'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Host Name or full config

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbname + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database name

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $user + : string + = 'root'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database username

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $password + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database password

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbtype + : string + = 'mysql'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Type of database: mysql, postgres, sqlite, ...

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Options for PDO connection

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + PDO +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + count() + + +

                                                                                                                      + + +

                                                                                                                      Get the current count of objects in query

                                                                                                                      + + + public + count() : int + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + int +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + debug() + + +

                                                                                                                      + + +

                                                                                                                      Get the current snapshot of leaf db internals

                                                                                                                      + + + public + debug() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + errors() + + +

                                                                                                                      + + +

                                                                                                                      Return caught errors if any

                                                                                                                      + + + public + errors() : array<string|int, mixed> + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + array<string|int, mixed> +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + execute() + + +

                                                                                                                      + + +

                                                                                                                      Execute a generated query

                                                                                                                      + + + public + execute() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + fetchAll() + + +

                                                                                                                      + + +

                                                                                                                      Fetch the items returned by query

                                                                                                                      + + + public + fetchAll([mixed $type = 'assoc' ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $type + : mixed + = 'assoc'
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + fetchAssoc() + + +

                                                                                                                      + + +

                                                                                                                      Fetch the items returned by query

                                                                                                                      + + + public + fetchAssoc() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + fetchObj() + + +

                                                                                                                      + + +

                                                                                                                      Fetch the items returned by query

                                                                                                                      + + + public + fetchObj() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + get() + + +

                                                                                                                      + + +

                                                                                                                      Alias for fetchAll

                                                                                                                      + + + public + get([mixed $type = 'assoc' ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $type + : mixed + = 'assoc'
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + lastInsertId() + + +

                                                                                                                      + + +

                                                                                                                      Returns the ID of the last inserted row or sequence value

                                                                                                                      + + + public + lastInsertId([string|null $name = null ]) : mixed + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $name + : string|null + = null
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Name of the sequence object from which the ID should be returned.

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + load() + + +

                                                                                                                      + + +

                                                                                                                      Alias for connect

                                                                                                                      + + + public + load([string|array<string|int, mixed> $host = '127.0.0.1' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ][, array<string|int, mixed> $pdoOptions = [] ]) : Core + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $host + : string|array<string|int, mixed> + = '127.0.0.1'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Host Name or full config

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbname + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database name

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $user + : string + = 'root'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database username

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $password + : string + = ''
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Database password

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $dbtype + : string + = 'mysql'
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Type of database: mysql, postgres, sqlite, ...

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Options for PDO connection

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + Core +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + obj() + + +

                                                                                                                      + + +

                                                                                                                      Alias for fetchObj

                                                                                                                      + + + public + obj() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + query() + + +

                                                                                                                      + + +

                                                                                                                      Manually create a database query

                                                                                                                      + + + public + query(string $sql) : self + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $sql + : string +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Full db query

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + self +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + result() + + +

                                                                                                                      + + +

                                                                                                                      Get raw result of last query

                                                                                                                      + + + public + result() : PDOStatement + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + PDOStatement +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + table() + + +

                                                                                                                      + + +

                                                                                                                      Set the current db table for operations

                                                                                                                      + + + public + table(string $table) : self + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $table + : string +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Table to perform database operations on

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + self +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + use() + + +

                                                                                                                      + + +

                                                                                                                      Set the current connection to use for queries

                                                                                                                      + + + public + use([string|null $connection = null ]) : Core + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $connection + : string|null + = null
                                                                                                                      +
                                                                                                                      +

                                                                                                                      The name of the connection to use

                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + Core +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + clearState() + + +

                                                                                                                      + + +

                                                                                                                      Prepare leaf db to handle next query

                                                                                                                      + + + protected + clearState() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + copyState() + + +

                                                                                                                      + + +

                                                                                                                      Copy internal state

                                                                                                                      + + + protected + copyState() : mixed + +
                                                                                                                      +
                                                                                                                      + + + + + + + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + dsn() + + +

                                                                                                                      + + + + + protected + dsn() : string + +
                                                                                                                      +
                                                                                                                      + + + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + string +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      + env() + + +

                                                                                                                      + + +

                                                                                                                      Returns the value of the environment variable by using Leaf's `_env` primarily.

                                                                                                                      + + + private + env(string $name) : string|bool + +
                                                                                                                      +
                                                                                                                      + + +
                                                                                                                      Parameters
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + $name + : string +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + + + +
                                                                                                                      +
                                                                                                                      Return values
                                                                                                                      + string|bool +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      
                                                                                                                      +        
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      + + + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      + +
                                                                                                                      + On this page + + +
                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Search results

                                                                                                                      + +
                                                                                                                      +
                                                                                                                      +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Db-Utils.html b/src/public/api/classes/Leaf-Db-Utils.html new file mode 100644 index 00000000..ae3f0b98 --- /dev/null +++ b/src/public/api/classes/Leaf-Db-Utils.html @@ -0,0 +1,865 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                        +

                                                                                                                        Leaf PHP

                                                                                                                        + + + + + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        +

                                                                                                                        + Utils + + +
                                                                                                                        + in package + +
                                                                                                                        + + +

                                                                                                                        + +
                                                                                                                        + + +
                                                                                                                        + + + +

                                                                                                                        Leaf Db Utils +------------------------- +Core utilities for leaf db.

                                                                                                                        + + + + +
                                                                                                                        + Tags + + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + author +
                                                                                                                        +
                                                                                                                        + +

                                                                                                                        Michael Darko

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + since +
                                                                                                                        +
                                                                                                                        + 3.0 + + +
                                                                                                                        +
                                                                                                                        + version +
                                                                                                                        +
                                                                                                                        + 1.0.0 + + +
                                                                                                                        +
                                                                                                                        + + + + + +

                                                                                                                        + Table of Contents + + +

                                                                                                                        + + + + + + + + + + +

                                                                                                                        + Methods + + +

                                                                                                                        +
                                                                                                                        +
                                                                                                                        + basicPluralize() + +  : string +
                                                                                                                        +
                                                                                                                        Pluralizes a given singular noun based on common English rules.
                                                                                                                        + +
                                                                                                                        + basicSingularize() + +  : string +
                                                                                                                        +
                                                                                                                        Singularizes a given plural noun based on common English rules.
                                                                                                                        + +
                                                                                                                        + beginsWith() + +  : string +
                                                                                                                        +
                                                                                                                        Construct search that begins with a phrase in db
                                                                                                                        + +
                                                                                                                        + endsWith() + +  : string +
                                                                                                                        +
                                                                                                                        Construct search that ends with a phrase in db
                                                                                                                        + +
                                                                                                                        + flatten() + +  : bool +
                                                                                                                        +
                                                                                                                        Flatten multidimensional array into a single array
                                                                                                                        + +
                                                                                                                        + includes() + +  : string +
                                                                                                                        +
                                                                                                                        Construct search that includes a phrase in db
                                                                                                                        + +
                                                                                                                        + word() + +  : string +
                                                                                                                        +
                                                                                                                        Construct search that begins and ends with a phrase in db
                                                                                                                        + +
                                                                                                                        + + + + + + + +
                                                                                                                        +

                                                                                                                        + Methods + + +

                                                                                                                        +
                                                                                                                        +

                                                                                                                        + basicPluralize() + + +

                                                                                                                        + + +

                                                                                                                        Pluralizes a given singular noun based on common English rules.

                                                                                                                        + + + public + static basicPluralize(string $singular[, int $count = 2 ]) : string + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $singular + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The singular noun.

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $count + : int + = 2
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The count determining singular or plural (default is 2).

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + string + — +

                                                                                                                        The pluralized form if count is not 1, otherwise the singular.

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + basicSingularize() + + +

                                                                                                                        + + +

                                                                                                                        Singularizes a given plural noun based on common English rules.

                                                                                                                        + + + public + static basicSingularize(string $plural) : string + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $plural + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The plural noun.

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + string + — +

                                                                                                                        The singular form of the noun.

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + beginsWith() + + +

                                                                                                                        + + +

                                                                                                                        Construct search that begins with a phrase in db

                                                                                                                        + + + public + static beginsWith(string $phrase) : string + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $phrase + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The phrase to check

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + string +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + endsWith() + + +

                                                                                                                        + + +

                                                                                                                        Construct search that ends with a phrase in db

                                                                                                                        + + + public + static endsWith(string $phrase) : string + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $phrase + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The phrase to check

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + string +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + flatten() + + +

                                                                                                                        + + +

                                                                                                                        Flatten multidimensional array into a single array

                                                                                                                        + + + public + static flatten(array<string|int, mixed> $array[, bool $keys = false ]) : bool + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $array + : array<string|int, mixed> +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The array to flatten

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $keys + : bool + = false
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + bool + — +

                                                                                                                        $keys Use array keys or not

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + includes() + + +

                                                                                                                        + + +

                                                                                                                        Construct search that includes a phrase in db

                                                                                                                        + + + public + static includes(string $phrase) : string + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $phrase + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The phrase to check

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + string +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        + word() + + +

                                                                                                                        + + +

                                                                                                                        Construct search that begins and ends with a phrase in db

                                                                                                                        + + + public + static word(string $beginsWith, string $endsWith) : string + +
                                                                                                                        +
                                                                                                                        + + +
                                                                                                                        Parameters
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + $beginsWith + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The beginning of the phrase to search

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + $endsWith + : string +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        The end of the phrase to search

                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + + + +
                                                                                                                        +
                                                                                                                        Return values
                                                                                                                        + string +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        
                                                                                                                        +        
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        + + + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        + +
                                                                                                                        + On this page + + +
                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        Search results

                                                                                                                        + +
                                                                                                                        +
                                                                                                                        +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Db.html b/src/public/api/classes/Leaf-Db.html new file mode 100644 index 00000000..64c78aa2 --- /dev/null +++ b/src/public/api/classes/Leaf-Db.html @@ -0,0 +1,4924 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                          +

                                                                                                                          Leaf PHP

                                                                                                                          + + + + + +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          +

                                                                                                                          + Db + + + extends Core + + +
                                                                                                                          + in package + +
                                                                                                                          + + +

                                                                                                                          + +
                                                                                                                          + + +
                                                                                                                          + + + +

                                                                                                                          Leaf Db +----- +Simple database interactions

                                                                                                                          + + + + +
                                                                                                                          + Tags + + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + version +
                                                                                                                          +
                                                                                                                          + 3.0 + + +
                                                                                                                          +
                                                                                                                          + since +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          v2.1.0

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +

                                                                                                                          + Table of Contents + + +

                                                                                                                          + + + + + + + + + +

                                                                                                                          + Properties + + +

                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $added + +  : mixed +
                                                                                                                          +
                                                                                                                          Items to add to query results
                                                                                                                          + +
                                                                                                                          + $bindings + +  : mixed +
                                                                                                                          +
                                                                                                                          Params bound to query
                                                                                                                          + +
                                                                                                                          + $config + +  : mixed +
                                                                                                                          +
                                                                                                                          Config for leaf db
                                                                                                                          + +
                                                                                                                          + $connections + +  : mixed +
                                                                                                                          +
                                                                                                                          List of connected db instances
                                                                                                                          + +
                                                                                                                          + $currentConnection + +  : string|null +
                                                                                                                          +
                                                                                                                          Current connection to use for db
                                                                                                                          + +
                                                                                                                          + $eager + +  : mixed +
                                                                                                                          +
                                                                                                                          Items to eager load
                                                                                                                          + +
                                                                                                                          + $errors + +  : mixed +
                                                                                                                          +
                                                                                                                          Errors caught in leaf db
                                                                                                                          + +
                                                                                                                          + $hidden + +  : mixed +
                                                                                                                          +
                                                                                                                          Items to hide from query results
                                                                                                                          + +
                                                                                                                          + $params + +  : mixed +
                                                                                                                          +
                                                                                                                          Full list of params passed into leaf db
                                                                                                                          + +
                                                                                                                          + $query + +  : mixed +
                                                                                                                          +
                                                                                                                          Actual query to run
                                                                                                                          + +
                                                                                                                          + $queryResult + +  : PDOStatement +
                                                                                                                          +
                                                                                                                          Query result
                                                                                                                          + +
                                                                                                                          + $table + +  : mixed +
                                                                                                                          +
                                                                                                                          Db table to peform operations on
                                                                                                                          + +
                                                                                                                          + $uniques + +  : mixed +
                                                                                                                          +
                                                                                                                          Items which should be unique in db
                                                                                                                          + +
                                                                                                                          + +

                                                                                                                          + Methods + + +

                                                                                                                          +
                                                                                                                          +
                                                                                                                          + __construct() + +  : mixed +
                                                                                                                          +
                                                                                                                          Initialize leaf db with a database connection
                                                                                                                          + +
                                                                                                                          + add() + +  : self +
                                                                                                                          +
                                                                                                                          Add particular fields to the final value returned
                                                                                                                          + +
                                                                                                                          + addConnections() + +  : Core +
                                                                                                                          +
                                                                                                                          Add a list of database connections
                                                                                                                          + +
                                                                                                                          + all() + +  : mixed +
                                                                                                                          +
                                                                                                                          Alias for fetchAll
                                                                                                                          + +
                                                                                                                          + assoc() + +  : mixed +
                                                                                                                          +
                                                                                                                          Alias for fetchAssoc
                                                                                                                          + +
                                                                                                                          + autoConnect() + +  : Core +
                                                                                                                          +
                                                                                                                          Connect to database using environment variables
                                                                                                                          + +
                                                                                                                          + backup() + +  : mixed +
                                                                                                                          +
                                                                                                                          Backup a database
                                                                                                                          + +
                                                                                                                          + beginTransaction() + +  : self +
                                                                                                                          +
                                                                                                                          Begin a database transaction
                                                                                                                          + +
                                                                                                                          + bind() + +  : self +
                                                                                                                          +
                                                                                                                          Bind parameters to a query
                                                                                                                          + +
                                                                                                                          + close() + +  : void +
                                                                                                                          +
                                                                                                                          Closes Db connection
                                                                                                                          + +
                                                                                                                          + column() + +  : mixed +
                                                                                                                          +
                                                                                                                          Fetch column from results
                                                                                                                          + +
                                                                                                                          + commit() + +  : self +
                                                                                                                          +
                                                                                                                          Commit the current transaction
                                                                                                                          + +
                                                                                                                          + config() + +  : mixed +
                                                                                                                          +
                                                                                                                          Configure leaf db - syncs with leaf config
                                                                                                                          + +
                                                                                                                          + connect() + +  : Core +
                                                                                                                          +
                                                                                                                          Connect to database
                                                                                                                          + +
                                                                                                                          + connection() + +  : mixed +
                                                                                                                          +
                                                                                                                          Return the database connection
                                                                                                                          + +
                                                                                                                          + connectSync() + +  : PDO +
                                                                                                                          +
                                                                                                                          Connect to database immediately
                                                                                                                          + +
                                                                                                                          + count() + +  : int +
                                                                                                                          +
                                                                                                                          Get the current count of objects in query
                                                                                                                          + +
                                                                                                                          + create() + +  : self +
                                                                                                                          +
                                                                                                                          Create a database if it doesn't exist
                                                                                                                          + +
                                                                                                                          + createTable() + +  : mixed +
                                                                                                                          +
                                                                                                                          Create database table
                                                                                                                          + +
                                                                                                                          + createTableIfNotExists() + +  : mixed +
                                                                                                                          +
                                                                                                                          Create database table
                                                                                                                          + +
                                                                                                                          + debug() + +  : mixed +
                                                                                                                          +
                                                                                                                          Get the current snapshot of leaf db internals
                                                                                                                          + +
                                                                                                                          + delete() + +  : self +
                                                                                                                          +
                                                                                                                          Delete a table's records
                                                                                                                          + +
                                                                                                                          + drop() + +  : self +
                                                                                                                          +
                                                                                                                          Drop a database if it exists
                                                                                                                          + +
                                                                                                                          + dropTable() + +  : mixed +
                                                                                                                          +
                                                                                                                          Drop a database table
                                                                                                                          + +
                                                                                                                          + errors() + +  : array<string|int, mixed> +
                                                                                                                          +
                                                                                                                          Return caught errors if any
                                                                                                                          + +
                                                                                                                          + execute() + +  : mixed +
                                                                                                                          +
                                                                                                                          Execute a generated query
                                                                                                                          + +
                                                                                                                          + fetchAll() + +  : mixed +
                                                                                                                          +
                                                                                                                          Fetch the items returned by query
                                                                                                                          + +
                                                                                                                          + fetchAssoc() + +  : mixed +
                                                                                                                          +
                                                                                                                          Fetch the items returned by query
                                                                                                                          + +
                                                                                                                          + fetchObj() + +  : mixed +
                                                                                                                          +
                                                                                                                          Fetch the items returned by query
                                                                                                                          + +
                                                                                                                          + find() + +  : mixed +
                                                                                                                          +
                                                                                                                          Add a find by id clause to query
                                                                                                                          + +
                                                                                                                          + first() + +  : mixed +
                                                                                                                          +
                                                                                                                          Find the first matching item for current query
                                                                                                                          + +
                                                                                                                          + get() + +  : mixed +
                                                                                                                          +
                                                                                                                          Alias for fetchAll
                                                                                                                          + +
                                                                                                                          + groupBy() + +  : mixed +
                                                                                                                          +
                                                                                                                          Group query results by a column
                                                                                                                          + +
                                                                                                                          + hidden() + +  : self +
                                                                                                                          +
                                                                                                                          Hide particular fields from the final value returned
                                                                                                                          + +
                                                                                                                          + insert() + +  : self +
                                                                                                                          +
                                                                                                                          Add a new row in a db table
                                                                                                                          + +
                                                                                                                          + last() + +  : mixed +
                                                                                                                          +
                                                                                                                          Find the last matching item for current query
                                                                                                                          + +
                                                                                                                          + lastInsertId() + +  : mixed +
                                                                                                                          +
                                                                                                                          Returns the ID of the last inserted row or sequence value
                                                                                                                          + +
                                                                                                                          + limit() + +  : mixed +
                                                                                                                          +
                                                                                                                          Limit query items by a specific number
                                                                                                                          + +
                                                                                                                          + load() + +  : Core +
                                                                                                                          +
                                                                                                                          Alias for connect
                                                                                                                          + +
                                                                                                                          + obj() + +  : mixed +
                                                                                                                          +
                                                                                                                          Alias for fetchObj
                                                                                                                          + +
                                                                                                                          + offset() + +  : mixed +
                                                                                                                          +
                                                                                                                          Offset query items by a specific number
                                                                                                                          + +
                                                                                                                          + orderBy() + +  : mixed +
                                                                                                                          +
                                                                                                                          Order query items by a specific
                                                                                                                          + +
                                                                                                                          + orWhere() + +  : self +
                                                                                                                          +
                                                                                                                          Add a where clause with OR comparator to db query
                                                                                                                          + +
                                                                                                                          + orWhereJson() + +  : self +
                                                                                                                          +
                                                                                                                          Add a JSON where clause with OR comparator to the query
                                                                                                                          + +
                                                                                                                          + orWhereJsonContains() + +  : self +
                                                                                                                          +
                                                                                                                          Add a JSON contains clause with OR comparator to the query
                                                                                                                          + +
                                                                                                                          + params() + +  : self +
                                                                                                                          +
                                                                                                                          Pass in parameters into your query
                                                                                                                          + +
                                                                                                                          + query() + +  : self +
                                                                                                                          +
                                                                                                                          Manually create a database query
                                                                                                                          + +
                                                                                                                          + result() + +  : PDOStatement +
                                                                                                                          +
                                                                                                                          Get raw result of last query
                                                                                                                          + +
                                                                                                                          + rollback() + +  : self +
                                                                                                                          +
                                                                                                                          Rollback the current transaction
                                                                                                                          + +
                                                                                                                          + search() + +  : array<string|int, mixed>|null +
                                                                                                                          +
                                                                                                                          Search a db table for a value
                                                                                                                          + +
                                                                                                                          + select() + +  : mixed +
                                                                                                                          +
                                                                                                                          Retrieve a row from table
                                                                                                                          + +
                                                                                                                          + table() + +  : self +
                                                                                                                          +
                                                                                                                          Set the current db table for operations
                                                                                                                          + +
                                                                                                                          + tableExists() + +  : bool +
                                                                                                                          +
                                                                                                                          Check if a database table exists
                                                                                                                          + +
                                                                                                                          + transaction() + +  : bool +
                                                                                                                          +
                                                                                                                          Run a database transaction
                                                                                                                          + +
                                                                                                                          + unique() + +  : mixed +
                                                                                                                          +
                                                                                                                          Make sure a value doesn't already exist in a table to avoid duplicates.
                                                                                                                          + +
                                                                                                                          + update() + +  : self +
                                                                                                                          +
                                                                                                                          Update a row in a db table
                                                                                                                          + +
                                                                                                                          + use() + +  : Core +
                                                                                                                          +
                                                                                                                          Set the current connection to use for queries
                                                                                                                          + +
                                                                                                                          + where() + +  : self +
                                                                                                                          +
                                                                                                                          Add a where clause to db query
                                                                                                                          + +
                                                                                                                          + whereJson() + +  : self +
                                                                                                                          +
                                                                                                                          Add a JSON where clause to the query
                                                                                                                          + +
                                                                                                                          + whereJsonContains() + +  : self +
                                                                                                                          +
                                                                                                                          Add a JSON contains clause to the query
                                                                                                                          + +
                                                                                                                          + with() + +  : self +
                                                                                                                          +
                                                                                                                          Fetch current query with all related data
                                                                                                                          + +
                                                                                                                          + clearState() + +  : mixed +
                                                                                                                          +
                                                                                                                          Prepare leaf db to handle next query
                                                                                                                          + +
                                                                                                                          + copyState() + +  : mixed +
                                                                                                                          +
                                                                                                                          Copy internal state
                                                                                                                          + +
                                                                                                                          + dsn() + +  : string +
                                                                                                                          + +
                                                                                                                          + env() + +  : string|bool +
                                                                                                                          +
                                                                                                                          Returns the value of the environment variable by using Leaf's `_env` primarily.
                                                                                                                          + +
                                                                                                                          + + + + + + +
                                                                                                                          +

                                                                                                                          + Properties + + +

                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $added + + + + +

                                                                                                                          + + +

                                                                                                                          Items to add to query results

                                                                                                                          + + + + protected + mixed + $added + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $bindings + + + + +

                                                                                                                          + + +

                                                                                                                          Params bound to query

                                                                                                                          + + + + protected + mixed + $bindings + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $config + + + + +

                                                                                                                          + + +

                                                                                                                          Config for leaf db

                                                                                                                          + + + + protected + mixed + $config + = ['dbtype' => 'mysql', 'charset' => null, 'port' => '3306', 'unixSocket' => null, 'host' => '127.0.0.1', 'username' => 'root', 'password' => '', 'dbname' => ''] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $connections + + + + +

                                                                                                                          + + +

                                                                                                                          List of connected db instances

                                                                                                                          + + + + protected + mixed + $connections + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $currentConnection + + + + +

                                                                                                                          + + +

                                                                                                                          Current connection to use for db

                                                                                                                          + + + + protected + string|null + $currentConnection + = null + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $eager + + + + +

                                                                                                                          + + +

                                                                                                                          Items to eager load

                                                                                                                          + + + + protected + mixed + $eager + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $errors + + + + +

                                                                                                                          + + +

                                                                                                                          Errors caught in leaf db

                                                                                                                          + + + + protected + mixed + $errors + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $hidden + + + + +

                                                                                                                          + + +

                                                                                                                          Items to hide from query results

                                                                                                                          + + + + protected + mixed + $hidden + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $params + + + + +

                                                                                                                          + + +

                                                                                                                          Full list of params passed into leaf db

                                                                                                                          + + + + protected + mixed + $params + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $query + + + + +

                                                                                                                          + + +

                                                                                                                          Actual query to run

                                                                                                                          + + + + protected + mixed + $query + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $queryResult + + + + +

                                                                                                                          + + +

                                                                                                                          Query result

                                                                                                                          + + + + protected + PDOStatement + $queryResult + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $table + + + + +

                                                                                                                          + + +

                                                                                                                          Db table to peform operations on

                                                                                                                          + + + + protected + mixed + $table + = null + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + $uniques + + + + +

                                                                                                                          + + +

                                                                                                                          Items which should be unique in db

                                                                                                                          + + + + protected + mixed + $uniques + = [] + + + + + + + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +

                                                                                                                          + Methods + + +

                                                                                                                          +
                                                                                                                          +

                                                                                                                          + __construct() + + +

                                                                                                                          + + +

                                                                                                                          Initialize leaf db with a database connection

                                                                                                                          + + + public + __construct([string|array<string|int, mixed> $host = '' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $host + : string|array<string|int, mixed> + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Host Name or full config

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbname + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database name

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $user + : string + = 'root'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database username

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $password + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database password

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbtype + : string + = 'mysql'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Type of database: mysql, postgres, sqlite, ...

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + add() + + +

                                                                                                                          + + +

                                                                                                                          Add particular fields to the final value returned

                                                                                                                          + + + public + add(string|array<string|int, mixed> $name[, string $value = null ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $name + : string|array<string|int, mixed> +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          What to add

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : string + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value to add

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + addConnections() + + +

                                                                                                                          + + +

                                                                                                                          Add a list of database connections

                                                                                                                          + + + public + addConnections(array<string|int, mixed> $connections[, string|null $default = null ]) : Core + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $connections + : array<string|int, mixed> +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          List of database connections

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $default + : string|null + = null
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + Core +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + all() + + +

                                                                                                                          + + +

                                                                                                                          Alias for fetchAll

                                                                                                                          + + + public + all([mixed $type = 'assoc' ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $type + : mixed + = 'assoc'
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + assoc() + + +

                                                                                                                          + + +

                                                                                                                          Alias for fetchAssoc

                                                                                                                          + + + public + assoc() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + autoConnect() + + +

                                                                                                                          + + +

                                                                                                                          Connect to database using environment variables

                                                                                                                          + + + public + autoConnect([array<string|int, mixed> $pdoOptions = [] ]) : Core + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Options for PDO connection

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + Core +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + backup() + + +

                                                                                                                          + + +

                                                                                                                          Backup a database

                                                                                                                          + + + public + backup(string $dbName, string $destination[, string $withDifferential = false ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $dbName + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The name of the database to backup

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $destination + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The path to backup database to

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $withDifferential + : string + = false
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Whether to use differential backups or not

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + beginTransaction() + + +

                                                                                                                          + + +

                                                                                                                          Begin a database transaction

                                                                                                                          + + + public + beginTransaction() : self + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + bind() + + +

                                                                                                                          + + +

                                                                                                                          Bind parameters to a query

                                                                                                                          + + + public + bind(mixed ...$bindings) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $bindings + : mixed +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + close() + + +

                                                                                                                          + + +

                                                                                                                          Closes Db connection

                                                                                                                          + + + public + close() : void + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + column() + + +

                                                                                                                          + + +

                                                                                                                          Fetch column from results

                                                                                                                          + + + public + column() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + commit() + + +

                                                                                                                          + + +

                                                                                                                          Commit the current transaction

                                                                                                                          + + + public + commit() : self + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + config() + + +

                                                                                                                          + + +

                                                                                                                          Configure leaf db - syncs with leaf config

                                                                                                                          + + + public + config(mixed $name[, mixed $value = null ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $name + : mixed +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed + = null
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + connect() + + +

                                                                                                                          + + +

                                                                                                                          Connect to database

                                                                                                                          + + + public + connect([string|array<string|int, mixed> $host = '127.0.0.1' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ][, array<string|int, mixed> $pdoOptions = [] ]) : Core + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $host + : string|array<string|int, mixed> + = '127.0.0.1'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Host Name or full config

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbname + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database name

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $user + : string + = 'root'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database username

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $password + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database password

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbtype + : string + = 'mysql'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Type of database: mysql, postgres, sqlite, ...

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Options for PDO connection

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + Core +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + connection() + + +

                                                                                                                          + + +

                                                                                                                          Return the database connection

                                                                                                                          + + + public + connection([PDO|string|null $connection = null ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $connection + : PDO|string|null + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Manual instance of PDO connection

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + connectSync() + + +

                                                                                                                          + + +

                                                                                                                          Connect to database immediately

                                                                                                                          + + + public + connectSync([string|array<string|int, mixed> $host = '127.0.0.1' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ][, array<string|int, mixed> $pdoOptions = [] ]) : PDO + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $host + : string|array<string|int, mixed> + = '127.0.0.1'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Host Name or full config

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbname + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database name

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $user + : string + = 'root'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database username

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $password + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database password

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbtype + : string + = 'mysql'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Type of database: mysql, postgres, sqlite, ...

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Options for PDO connection

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + PDO +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + count() + + +

                                                                                                                          + + +

                                                                                                                          Get the current count of objects in query

                                                                                                                          + + + public + count() : int + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + int +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + create() + + +

                                                                                                                          + + +

                                                                                                                          Create a database if it doesn't exist

                                                                                                                          + + + public + create(string $db) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $db + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The name of the database to create

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + createTable() + + +

                                                                                                                          + + +

                                                                                                                          Create database table

                                                                                                                          + + + public + createTable(string $table[, array<string|int, mixed> $fields = [] ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The name of the database table to create

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $fields + : array<string|int, mixed> + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The fields to create

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + createTableIfNotExists() + + +

                                                                                                                          + + +

                                                                                                                          Create database table

                                                                                                                          + + + public + createTableIfNotExists(string $table[, array<string|int, mixed> $fields = [] ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The name of the database table to create

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $fields + : array<string|int, mixed> + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The fields to create

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + debug() + + +

                                                                                                                          + + +

                                                                                                                          Get the current snapshot of leaf db internals

                                                                                                                          + + + public + debug() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + delete() + + +

                                                                                                                          + + +

                                                                                                                          Delete a table's records

                                                                                                                          + + + public + delete(string $table) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          : Db Table

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + drop() + + +

                                                                                                                          + + +

                                                                                                                          Drop a database if it exists

                                                                                                                          + + + public + drop(string $db) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $db + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The name of the database to drop

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + dropTable() + + +

                                                                                                                          + + +

                                                                                                                          Drop a database table

                                                                                                                          + + + public + dropTable(string $table) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          + Tags + + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + params +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          string $table The name of the table to drop

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + errors() + + +

                                                                                                                          + + +

                                                                                                                          Return caught errors if any

                                                                                                                          + + + public + errors() : array<string|int, mixed> + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + array<string|int, mixed> +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + execute() + + +

                                                                                                                          + + +

                                                                                                                          Execute a generated query

                                                                                                                          + + + public + execute() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + fetchAll() + + +

                                                                                                                          + + +

                                                                                                                          Fetch the items returned by query

                                                                                                                          + + + public + fetchAll([mixed $type = 'assoc' ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $type + : mixed + = 'assoc'
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + fetchAssoc() + + +

                                                                                                                          + + +

                                                                                                                          Fetch the items returned by query

                                                                                                                          + + + public + fetchAssoc() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + fetchObj() + + +

                                                                                                                          + + +

                                                                                                                          Fetch the items returned by query

                                                                                                                          + + + public + fetchObj() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + find() + + +

                                                                                                                          + + +

                                                                                                                          Add a find by id clause to query

                                                                                                                          + + + public + find(string|int $id) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $id + : string|int +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The id of the row to find

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + first() + + +

                                                                                                                          + + +

                                                                                                                          Find the first matching item for current query

                                                                                                                          + + + public + first() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + get() + + +

                                                                                                                          + + +

                                                                                                                          Alias for fetchAll

                                                                                                                          + + + public + get([mixed $type = 'assoc' ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $type + : mixed + = 'assoc'
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + groupBy() + + +

                                                                                                                          + + +

                                                                                                                          Group query results by a column

                                                                                                                          + + + public + groupBy(string $column) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $column + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The column to group results by

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          + Tags + + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + author +
                                                                                                                          +
                                                                                                                          + +

                                                                                                                          Milos Lukic https://github.com/iammiloslukic

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + hidden() + + +

                                                                                                                          + + +

                                                                                                                          Hide particular fields from the final value returned

                                                                                                                          + + + public + hidden(mixed ...$values) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $values + : mixed +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value(s) to hide

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + insert() + + +

                                                                                                                          + + +

                                                                                                                          Add a new row in a db table

                                                                                                                          + + + public + insert(string $table) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Db Table

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + last() + + +

                                                                                                                          + + +

                                                                                                                          Find the last matching item for current query

                                                                                                                          + + + public + last() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + lastInsertId() + + +

                                                                                                                          + + +

                                                                                                                          Returns the ID of the last inserted row or sequence value

                                                                                                                          + + + public + lastInsertId([string|null $name = null ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $name + : string|null + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Name of the sequence object from which the ID should be returned.

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + limit() + + +

                                                                                                                          + + +

                                                                                                                          Limit query items by a specific number

                                                                                                                          + + + public + limit(string|number $limit) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $limit + : string|number +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The number to limit by

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + load() + + +

                                                                                                                          + + +

                                                                                                                          Alias for connect

                                                                                                                          + + + public + load([string|array<string|int, mixed> $host = '127.0.0.1' ][, string $dbname = '' ][, string $user = 'root' ][, string $password = '' ][, string $dbtype = 'mysql' ][, array<string|int, mixed> $pdoOptions = [] ]) : Core + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $host + : string|array<string|int, mixed> + = '127.0.0.1'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Host Name or full config

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbname + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database name

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $user + : string + = 'root'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database username

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $password + : string + = ''
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Database password

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $dbtype + : string + = 'mysql'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Type of database: mysql, postgres, sqlite, ...

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $pdoOptions + : array<string|int, mixed> + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Options for PDO connection

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + Core +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + obj() + + +

                                                                                                                          + + +

                                                                                                                          Alias for fetchObj

                                                                                                                          + + + public + obj() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + offset() + + +

                                                                                                                          + + +

                                                                                                                          Offset query items by a specific number

                                                                                                                          + + + public + offset(string|number $offset) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $offset + : string|number +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The number to offset by

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + orderBy() + + +

                                                                                                                          + + +

                                                                                                                          Order query items by a specific

                                                                                                                          + + + public + orderBy(string $column[, string $direction = 'desc' ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $column + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The column to order results by

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $direction + : string + = 'desc'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The direction to order [DESC, ASC]

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + orWhere() + + +

                                                                                                                          + + +

                                                                                                                          Add a where clause with OR comparator to db query

                                                                                                                          + + + public + orWhere(string|array<string|int, mixed> $condition[, mixed $comparator = null ][, mixed $value = null ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $condition + : string|array<string|int, mixed> +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The condition to evaluate

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $comparator + : mixed + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Condition value or comparator

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value of condition if comparator is passed

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + orWhereJson() + + +

                                                                                                                          + + +

                                                                                                                          Add a JSON where clause with OR comparator to the query

                                                                                                                          + + + public + orWhereJson(string $column, string $jsonKey, mixed $value[, string $comparator = '=' ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $column + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The JSON column

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $jsonKey + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The key within the JSON structure

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value to compare against

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $comparator + : string + = '='
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The comparison operator (default '=')

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + orWhereJsonContains() + + +

                                                                                                                          + + +

                                                                                                                          Add a JSON contains clause with OR comparator to the query

                                                                                                                          + + + public + orWhereJsonContains(string $column, mixed $value[, string|null $jsonKey = null ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $column + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The JSON column

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value to check for

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $jsonKey + : string|null + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The key within the JSON structure (optional)

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + params() + + +

                                                                                                                          + + +

                                                                                                                          Pass in parameters into your query

                                                                                                                          + + + public + params(array<string|int, mixed>|string $params) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $params + : array<string|int, mixed>|string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Key or params to pass into query

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + query() + + +

                                                                                                                          + + +

                                                                                                                          Manually create a database query

                                                                                                                          + + + public + query(string $sql) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $sql + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Full db query

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + result() + + +

                                                                                                                          + + +

                                                                                                                          Get raw result of last query

                                                                                                                          + + + public + result() : PDOStatement + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + PDOStatement +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + rollback() + + +

                                                                                                                          + + +

                                                                                                                          Rollback the current transaction

                                                                                                                          + + + public + rollback() : self + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + +

                                                                                                                          Search a db table for a value

                                                                                                                          + + + public + search(string $row, string $value[, array<string|int, mixed>|null $hidden = [] ]) : array<string|int, mixed>|null + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $row + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The item to search for in table

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The keyword to search for

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $hidden + : array<string|int, mixed>|null + = []
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The items to hide from returned result

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + array<string|int, mixed>|null +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + select() + + +

                                                                                                                          + + +

                                                                                                                          Retrieve a row from table

                                                                                                                          + + + public + select(string $table[, string $items = '*' ]) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Db Table

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $items + : string + = '*'
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Specific table columns to fetch

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + table() + + +

                                                                                                                          + + +

                                                                                                                          Set the current db table for operations

                                                                                                                          + + + public + table(string $table) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Table to perform database operations on

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + tableExists() + + +

                                                                                                                          + + +

                                                                                                                          Check if a database table exists

                                                                                                                          + + + public + tableExists(string $table) : bool + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + bool + — +

                                                                                                                          true if the table exists

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + transaction() + + +

                                                                                                                          + + +

                                                                                                                          Run a database transaction

                                                                                                                          + + + public + transaction(callable $callback) : bool + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $callback + : callable +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The callback to run

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + bool + — +

                                                                                                                          Whether the transaction completed successfully

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + unique() + + +

                                                                                                                          + + +

                                                                                                                          Make sure a value doesn't already exist in a table to avoid duplicates.

                                                                                                                          + + + public + unique(mixed ...$uniques) : mixed + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $uniques + : mixed +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Items to check for

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + update() + + +

                                                                                                                          + + +

                                                                                                                          Update a row in a db table

                                                                                                                          + + + public + update(string $table) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Db Table

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + use() + + +

                                                                                                                          + + +

                                                                                                                          Set the current connection to use for queries

                                                                                                                          + + + public + use([string|null $connection = null ]) : Core + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $connection + : string|null + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The name of the connection to use

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + Core +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + where() + + +

                                                                                                                          + + +

                                                                                                                          Add a where clause to db query

                                                                                                                          + + + public + where(string|array<string|int, mixed> $condition[, mixed $comparator = null ][, mixed $value = null ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $condition + : string|array<string|int, mixed> +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The condition to evaluate

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $comparator + : mixed + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Condition value or comparator

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value of condition if comparator is passed

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + whereJson() + + +

                                                                                                                          + + +

                                                                                                                          Add a JSON where clause to the query

                                                                                                                          + + + public + whereJson(string $column, string $jsonKey, mixed $value[, string $comparator = '=' ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $column + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The JSON column

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $jsonKey + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The key within the JSON structure

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value to compare against

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $comparator + : string + = '='
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The comparison operator (default '=')

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + whereJsonContains() + + +

                                                                                                                          + + +

                                                                                                                          Add a JSON contains clause to the query

                                                                                                                          + + + public + whereJsonContains(string $column, mixed $value[, string|null $jsonKey = null ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $column + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The JSON column

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $value + : mixed +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The value to check for

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $jsonKey + : string|null + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The key within the JSON structure (optional)

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + with() + + +

                                                                                                                          + + +

                                                                                                                          Fetch current query with all related data

                                                                                                                          + + + public + with(string $table[, string $foreignKey = null ]) : self + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $table + : string +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The table to join

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + $foreignKey + : string + = null
                                                                                                                          +
                                                                                                                          +

                                                                                                                          The foreign key to use

                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + self +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + clearState() + + +

                                                                                                                          + + +

                                                                                                                          Prepare leaf db to handle next query

                                                                                                                          + + + protected + clearState() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + copyState() + + +

                                                                                                                          + + +

                                                                                                                          Copy internal state

                                                                                                                          + + + protected + copyState() : mixed + +
                                                                                                                          +
                                                                                                                          + + + + + + + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + dsn() + + +

                                                                                                                          + + + + + protected + dsn() : string + +
                                                                                                                          +
                                                                                                                          + + + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + string +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          + env() + + +

                                                                                                                          + + +

                                                                                                                          Returns the value of the environment variable by using Leaf's `_env` primarily.

                                                                                                                          + + + private + env(string $name) : string|bool + +
                                                                                                                          +
                                                                                                                          + + +
                                                                                                                          Parameters
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + $name + : string +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + + + +
                                                                                                                          +
                                                                                                                          Return values
                                                                                                                          + string|bool +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          
                                                                                                                          +        
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          + + + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          + +
                                                                                                                          + On this page + + +
                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          Search results

                                                                                                                          + +
                                                                                                                          +
                                                                                                                          +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-General.html b/src/public/api/classes/Leaf-Exception-General.html new file mode 100644 index 00000000..16ca7958 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-General.html @@ -0,0 +1,1324 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                            +

                                                                                                                            Leaf PHP

                                                                                                                            + + + + + +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            +

                                                                                                                            + General + + + extends Exception + + +
                                                                                                                            + in package + +
                                                                                                                            + + +

                                                                                                                            + +
                                                                                                                            + + +
                                                                                                                            + + + +

                                                                                                                            Stop Exception

                                                                                                                            + + +

                                                                                                                            This is a general exception thrown from the leaf app

                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + author +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            Michael Darko

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + since +
                                                                                                                            +
                                                                                                                            + 2.0.0 + + +
                                                                                                                            +
                                                                                                                            + + + + + +

                                                                                                                            + Table of Contents + + +

                                                                                                                            + + + + + + + + + +

                                                                                                                            + Properties + + +

                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $config + +  : mixed +
                                                                                                                            + +
                                                                                                                            + $response + +  : mixed +
                                                                                                                            + +
                                                                                                                            + +

                                                                                                                            + Methods + + +

                                                                                                                            +
                                                                                                                            +
                                                                                                                            + __construct() + +  : mixed +
                                                                                                                            + +
                                                                                                                            + configure() + +  : mixed +
                                                                                                                            +
                                                                                                                            Configure exception handler
                                                                                                                            + +
                                                                                                                            + csrf() + +  : mixed +
                                                                                                                            +
                                                                                                                            CSRF error
                                                                                                                            + +
                                                                                                                            + default404() + +  : mixed +
                                                                                                                            +
                                                                                                                            Default Not Found handler
                                                                                                                            + +
                                                                                                                            + defaultDown() + +  : mixed +
                                                                                                                            +
                                                                                                                            Default Not Found handler
                                                                                                                            + +
                                                                                                                            + defaultError() + +  : mixed +
                                                                                                                            +
                                                                                                                            Default Error handler
                                                                                                                            + +
                                                                                                                            + error() + +  : mixed +
                                                                                                                            +
                                                                                                                            Generic error page
                                                                                                                            + +
                                                                                                                            + handleErrors() + +  : bool +
                                                                                                                            +
                                                                                                                            Convert errors into ErrorException objects
                                                                                                                            + +
                                                                                                                            + toException() + +  : void|ErrorException +
                                                                                                                            +
                                                                                                                            Returns ErrorException objects from errors
                                                                                                                            + +
                                                                                                                            + errorMarkup() + +  : string +
                                                                                                                            +
                                                                                                                            Generate diagnostic template markup
                                                                                                                            + +
                                                                                                                            + exceptionMarkup() + +  : string +
                                                                                                                            +
                                                                                                                            Generate diagnostic template markup
                                                                                                                            + +
                                                                                                                            + handleException() + +  : mixed +
                                                                                                                            +
                                                                                                                            Handles an exception
                                                                                                                            + +
                                                                                                                            + renderBody() + +  : string +
                                                                                                                            +
                                                                                                                            Render response body
                                                                                                                            + +
                                                                                                                            + + + + + + +
                                                                                                                            +

                                                                                                                            + Properties + + +

                                                                                                                            +
                                                                                                                            +

                                                                                                                            + $config + + + + +

                                                                                                                            + + + + + + protected + mixed + $config + = [] + + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + $response + + + + +

                                                                                                                            + + + + + + protected + mixed + $response + + + + + + + + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +

                                                                                                                            + Methods + + +

                                                                                                                            +
                                                                                                                            +

                                                                                                                            + __construct() + + +

                                                                                                                            + + + + + public + __construct(mixed $throwable) : mixed + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $throwable + : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + configure() + + +

                                                                                                                            + + +

                                                                                                                            Configure exception handler

                                                                                                                            + + + public + configure(mixed $config) : mixed + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $config + : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + csrf() + + +

                                                                                                                            + + +

                                                                                                                            CSRF error

                                                                                                                            + + + public + static csrf([mixed $error = null ]) : mixed + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $error + : mixed + = null
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + default404() + + +

                                                                                                                            + + +

                                                                                                                            Default Not Found handler

                                                                                                                            + + + public + static default404() : mixed + +
                                                                                                                            +
                                                                                                                            + + + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + defaultDown() + + +

                                                                                                                            + + +

                                                                                                                            Default Not Found handler

                                                                                                                            + + + public + static defaultDown() : mixed + +
                                                                                                                            +
                                                                                                                            + + + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + defaultError() + + +

                                                                                                                            + + +

                                                                                                                            Default Error handler

                                                                                                                            + + + public + static defaultError([mixed $e = null ]) : mixed + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $e + : mixed + = null
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + error() + + +

                                                                                                                            + + +

                                                                                                                            Generic error page

                                                                                                                            + + + public + static error(mixed $title, mixed $message[, mixed $code = 500 ]) : mixed + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $title + : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $message + : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $code + : mixed + = 500
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + handleErrors() + + +

                                                                                                                            + + +

                                                                                                                            Convert errors into ErrorException objects

                                                                                                                            + + + public + static handleErrors(int $errno[, string $errstr = '' ][, string $errfile = '' ][, int $errline = '' ]) : bool + +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            This method catches PHP errors and converts them into \ErrorException objects; +these \ErrorException objects are then thrown and caught by Leaf's +built-in or custom error handlers.

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $errno + : int +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The numeric type of the Error

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $errstr + : string + = ''
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The error message

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $errfile + : string + = ''
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The absolute path to the affected file

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $errline + : int + = ''
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The line number of the error in the affected file

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            + Tags + + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + throws +
                                                                                                                            +
                                                                                                                            + ErrorException + + +
                                                                                                                            +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            Return values
                                                                                                                            + bool +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + toException() + + +

                                                                                                                            + + +

                                                                                                                            Returns ErrorException objects from errors

                                                                                                                            + + + public + static toException(int $errno[, string $errstr = '' ][, string $errfile = '' ][, int $errline = '' ]) : void|ErrorException + +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            This method catches PHP errors and converts them into \ErrorException objects; +these \ErrorException objects are then thrown and caught by Leaf's +built-in or custom error handlers.

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $errno + : int +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The numeric type of the Error

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $errstr + : string + = ''
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The error message

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $errfile + : string + = ''
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The absolute path to the affected file

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $errline + : int + = ''
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The line number of the error in the affected file

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + +
                                                                                                                            +
                                                                                                                            Return values
                                                                                                                            + void|ErrorException +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + errorMarkup() + + +

                                                                                                                            + + +

                                                                                                                            Generate diagnostic template markup

                                                                                                                            + + + protected + static errorMarkup(string $title, string $body) : string + +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            This method accepts a title and body content to generate an HTML document layout.

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $title + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The title of the HTML template

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $body + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The body content of the HTML template

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + +
                                                                                                                            +
                                                                                                                            Return values
                                                                                                                            + string +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + exceptionMarkup() + + +

                                                                                                                            + + +

                                                                                                                            Generate diagnostic template markup

                                                                                                                            + + + protected + static exceptionMarkup(string $title, string $body) : string + +
                                                                                                                            +
                                                                                                                            + +

                                                                                                                            This method accepts a title and body content to generate an HTML document layout.

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $title + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The title of the HTML template

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + $body + : string +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            The body content of the HTML template

                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + +
                                                                                                                            +
                                                                                                                            Return values
                                                                                                                            + string +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + handleException() + + +

                                                                                                                            + + +

                                                                                                                            Handles an exception

                                                                                                                            + + + protected + handleException(mixed $throwable) : mixed + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $throwable + : mixed +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            + renderBody() + + +

                                                                                                                            + + +

                                                                                                                            Render response body

                                                                                                                            + + + protected + static renderBody(Exception $exception) : string + +
                                                                                                                            +
                                                                                                                            + + +
                                                                                                                            Parameters
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + $exception + : Exception +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + + + +
                                                                                                                            +
                                                                                                                            Return values
                                                                                                                            + string +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            
                                                                                                                            +        
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            + + + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            + +
                                                                                                                            + On this page + + +
                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            Search results

                                                                                                                            + +
                                                                                                                            +
                                                                                                                            +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-CallbackHandler.html b/src/public/api/classes/Leaf-Exception-Handler-CallbackHandler.html new file mode 100644 index 00000000..f2f6eb00 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-CallbackHandler.html @@ -0,0 +1,1120 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                              +

                                                                                                                              Leaf PHP

                                                                                                                              + + + + + +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              +

                                                                                                                              + CallbackHandler + + + extends Handler + + +
                                                                                                                              + in package + +
                                                                                                                              + + +

                                                                                                                              + +
                                                                                                                              + + +
                                                                                                                              + + + +

                                                                                                                              Wrapper for Closures passed as handlers. Can be used +directly, or will be instantiated automagically by Whoops\Run +if passed to Run::pushHandler

                                                                                                                              + + + + + + + + + +

                                                                                                                              + Table of Contents + + +

                                                                                                                              + + + + + + + +

                                                                                                                              + Constants + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + DONE + +  = 0x10 +
                                                                                                                              + +
                                                                                                                              + LAST_HANDLER + +  = 0x20 +
                                                                                                                              +
                                                                                                                              The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                              + +
                                                                                                                              + QUIT + +  = 0x30 +
                                                                                                                              +
                                                                                                                              The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                              + +
                                                                                                                              + + +

                                                                                                                              + Properties + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $callable + +  : callable +
                                                                                                                              + +
                                                                                                                              + $exception + +  : Throwable +
                                                                                                                              + +
                                                                                                                              + $inspector + +  : Inspector +
                                                                                                                              + +
                                                                                                                              + $run + +  : RunInterface +
                                                                                                                              + +
                                                                                                                              + +

                                                                                                                              + Methods + + +

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + __construct() + +  : mixed +
                                                                                                                              + +
                                                                                                                              + handle() + +  : int|null +
                                                                                                                              + +
                                                                                                                              + setException() + +  : void +
                                                                                                                              + +
                                                                                                                              + setInspector() + +  : void +
                                                                                                                              + +
                                                                                                                              + setRun() + +  : void +
                                                                                                                              + +
                                                                                                                              + getException() + +  : Throwable +
                                                                                                                              + +
                                                                                                                              + getInspector() + +  : Inspector +
                                                                                                                              + +
                                                                                                                              + getRun() + +  : RunInterface +
                                                                                                                              + +
                                                                                                                              + + + + +
                                                                                                                              +

                                                                                                                              + Constants + + +

                                                                                                                              +
                                                                                                                              +

                                                                                                                              + DONE + + +

                                                                                                                              + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + LAST_HANDLER + + +

                                                                                                                              + + + +

                                                                                                                              The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                              + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                              Execution will continue.

                                                                                                                              +
                                                                                                                              + + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + QUIT + + +

                                                                                                                              + + + +

                                                                                                                              The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                              + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              +

                                                                                                                              + Properties + + +

                                                                                                                              +
                                                                                                                              +

                                                                                                                              + $callable + + + + +

                                                                                                                              + + + + + + protected + callable + $callable + + + + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + $exception + + + + +

                                                                                                                              + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + $inspector + + + + +

                                                                                                                              + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                              + +
                                                                                                                              + +
                                                                                                                              +

                                                                                                                              + Methods + + +

                                                                                                                              +
                                                                                                                              +

                                                                                                                              + __construct() + + +

                                                                                                                              + + + + + public + __construct(callable $callable) : mixed + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $callable + : callable +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              + Tags + + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + throws +
                                                                                                                              +
                                                                                                                              + InvalidArgumentException + +

                                                                                                                              If argument is not callable

                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + handle() + + +

                                                                                                                              + + + + + public + handle() : int|null + +
                                                                                                                              +
                                                                                                                              + + + + + + + +
                                                                                                                              +
                                                                                                                              Return values
                                                                                                                              + int|null +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + setException() + + +

                                                                                                                              + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $exception + : Throwable +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + + + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + setInspector() + + +

                                                                                                                              + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                              +
                                                                                                                              + + +
                                                                                                                              Parameters
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + $inspector + : Inspector +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + + + + +
                                                                                                                              + +
                                                                                                                              +

                                                                                                                              + getException() + + +

                                                                                                                              + + + + + protected + getException() : Throwable + +
                                                                                                                              +
                                                                                                                              + + + + + + + +
                                                                                                                              +
                                                                                                                              Return values
                                                                                                                              + Throwable +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              + getInspector() + + +

                                                                                                                              + + + + + protected + getInspector() : Inspector + +
                                                                                                                              +
                                                                                                                              + + + + + + + +
                                                                                                                              +
                                                                                                                              Return values
                                                                                                                              + Inspector +
                                                                                                                              + +
                                                                                                                              + +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              
                                                                                                                              +        
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              + + + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              + +
                                                                                                                              + On this page + + +
                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              Search results

                                                                                                                              + +
                                                                                                                              +
                                                                                                                              +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-CustomHandler.html b/src/public/api/classes/Leaf-Exception-Handler-CustomHandler.html new file mode 100644 index 00000000..c0c29f1a --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-CustomHandler.html @@ -0,0 +1,1161 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                +

                                                                                                                                Leaf PHP

                                                                                                                                + + + + + +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + + +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                +

                                                                                                                                + CustomHandler + + + extends Handler + + +
                                                                                                                                + in package + +
                                                                                                                                + + +

                                                                                                                                + +
                                                                                                                                + + +
                                                                                                                                + + + +

                                                                                                                                Abstract implementation of a Handler.

                                                                                                                                + + + + + + + + + +

                                                                                                                                + Table of Contents + + +

                                                                                                                                + + + + + + + +

                                                                                                                                + Constants + + +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + DONE + +  = 0x10 +
                                                                                                                                + +
                                                                                                                                + LAST_HANDLER + +  = 0x20 +
                                                                                                                                +
                                                                                                                                The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                                + +
                                                                                                                                + QUIT + +  = 0x30 +
                                                                                                                                +
                                                                                                                                The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                                + +
                                                                                                                                + + +

                                                                                                                                + Properties + + +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + $handler + +  : mixed +
                                                                                                                                + +
                                                                                                                                + $templateHelper + +  : TemplateHelper +
                                                                                                                                + +
                                                                                                                                + $exception + +  : Throwable +
                                                                                                                                + +
                                                                                                                                + $inspector + +  : Inspector +
                                                                                                                                + +
                                                                                                                                + $run + +  : RunInterface +
                                                                                                                                + +
                                                                                                                                + +

                                                                                                                                + Methods + + +

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + __construct() + +  : void +
                                                                                                                                +
                                                                                                                                Constructor.
                                                                                                                                + +
                                                                                                                                + handle() + +  : int|null +
                                                                                                                                + +
                                                                                                                                + setException() + +  : void +
                                                                                                                                + +
                                                                                                                                + setInspector() + +  : void +
                                                                                                                                + +
                                                                                                                                + setRun() + +  : void +
                                                                                                                                + +
                                                                                                                                + getException() + +  : Throwable +
                                                                                                                                + +
                                                                                                                                + getInspector() + +  : Inspector +
                                                                                                                                + +
                                                                                                                                + getRun() + +  : RunInterface +
                                                                                                                                + +
                                                                                                                                + + + + +
                                                                                                                                +

                                                                                                                                + Constants + + +

                                                                                                                                +
                                                                                                                                +

                                                                                                                                + DONE + + +

                                                                                                                                + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + LAST_HANDLER + + +

                                                                                                                                + + + +

                                                                                                                                The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                                + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                                Execution will continue.

                                                                                                                                +
                                                                                                                                + + + + + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + QUIT + + +

                                                                                                                                + + + +

                                                                                                                                The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                                + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                +

                                                                                                                                + Properties + + +

                                                                                                                                +
                                                                                                                                +

                                                                                                                                + $handler + + + + +

                                                                                                                                + + + + + + protected + mixed + $handler + = null + + + + + + + +
                                                                                                                                + +
                                                                                                                                +

                                                                                                                                + $exception + + + + +

                                                                                                                                + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + $inspector + + + + +

                                                                                                                                + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                                + +
                                                                                                                                + +
                                                                                                                                +

                                                                                                                                + Methods + + +

                                                                                                                                +
                                                                                                                                +

                                                                                                                                + __construct() + + +

                                                                                                                                + + +

                                                                                                                                Constructor.

                                                                                                                                + + + public + __construct([mixed $handler = null ]) : void + +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                Parameters
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + $handler + : mixed + = null
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + + + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + handle() + + +

                                                                                                                                + + + + + public + handle() : int|null + +
                                                                                                                                +
                                                                                                                                + + + + +
                                                                                                                                + Tags + + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + throws +
                                                                                                                                +
                                                                                                                                + Exception + + +
                                                                                                                                +
                                                                                                                                + + + +
                                                                                                                                +
                                                                                                                                Return values
                                                                                                                                + int|null +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + setException() + + +

                                                                                                                                + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                Parameters
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + $exception + : Throwable +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + + + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + setInspector() + + +

                                                                                                                                + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                +
                                                                                                                                + + +
                                                                                                                                Parameters
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + $inspector + : Inspector +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + + + + +
                                                                                                                                + +
                                                                                                                                +

                                                                                                                                + getException() + + +

                                                                                                                                + + + + + protected + getException() : Throwable + +
                                                                                                                                +
                                                                                                                                + + + + + + + +
                                                                                                                                +
                                                                                                                                Return values
                                                                                                                                + Throwable +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                + getInspector() + + +

                                                                                                                                + + + + + protected + getInspector() : Inspector + +
                                                                                                                                +
                                                                                                                                + + + + + + + +
                                                                                                                                +
                                                                                                                                Return values
                                                                                                                                + Inspector +
                                                                                                                                + +
                                                                                                                                + +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                
                                                                                                                                +        
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                + + + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                + +
                                                                                                                                + On this page + + +
                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                Search results

                                                                                                                                + +
                                                                                                                                +
                                                                                                                                +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-Handler.html b/src/public/api/classes/Leaf-Exception-Handler-Handler.html new file mode 100644 index 00000000..97a04707 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-Handler.html @@ -0,0 +1,971 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                  +

                                                                                                                                  Leaf PHP

                                                                                                                                  + + + + + +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + + +
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  +

                                                                                                                                  + Handler + + +
                                                                                                                                  + in package + +
                                                                                                                                  + + + implements + HandlerInterface + +

                                                                                                                                  + +
                                                                                                                                  + + +
                                                                                                                                  AbstractYes
                                                                                                                                  + +
                                                                                                                                  + + + +

                                                                                                                                  Abstract implementation of a Handler.

                                                                                                                                  + + + + + + + + + +

                                                                                                                                  + Table of Contents + + +

                                                                                                                                  + + + +

                                                                                                                                  + Interfaces + + +

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  HandlerInterface
                                                                                                                                  + + + + +

                                                                                                                                  + Constants + + +

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + DONE + +  = 0x10 +
                                                                                                                                  + +
                                                                                                                                  + LAST_HANDLER + +  = 0x20 +
                                                                                                                                  +
                                                                                                                                  The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                                  + +
                                                                                                                                  + QUIT + +  = 0x30 +
                                                                                                                                  +
                                                                                                                                  The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                                  + +
                                                                                                                                  + + +

                                                                                                                                  + Properties + + +

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + $exception + +  : Throwable +
                                                                                                                                  + +
                                                                                                                                  + $inspector + +  : Inspector +
                                                                                                                                  + +
                                                                                                                                  + $run + +  : RunInterface +
                                                                                                                                  + +
                                                                                                                                  + +

                                                                                                                                  + Methods + + +

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + setException() + +  : void +
                                                                                                                                  + +
                                                                                                                                  + setInspector() + +  : void +
                                                                                                                                  + +
                                                                                                                                  + setRun() + +  : void +
                                                                                                                                  + +
                                                                                                                                  + getException() + +  : Throwable +
                                                                                                                                  + +
                                                                                                                                  + getInspector() + +  : Inspector +
                                                                                                                                  + +
                                                                                                                                  + getRun() + +  : RunInterface +
                                                                                                                                  + +
                                                                                                                                  + + + + +
                                                                                                                                  +

                                                                                                                                  + Constants + + +

                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + DONE + + +

                                                                                                                                  + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + LAST_HANDLER + + +

                                                                                                                                  + + + +

                                                                                                                                  The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                                  + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                                  Execution will continue.

                                                                                                                                  +
                                                                                                                                  + + + + + + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + QUIT + + +

                                                                                                                                  + + + +

                                                                                                                                  The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                                  + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  +

                                                                                                                                  + Properties + + +

                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + $exception + + + + +

                                                                                                                                  + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + $inspector + + + + +

                                                                                                                                  + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                                  + +
                                                                                                                                  + +
                                                                                                                                  +

                                                                                                                                  + Methods + + +

                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + setException() + + +

                                                                                                                                  + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  Parameters
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + $exception + : Throwable +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + + + + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + setInspector() + + +

                                                                                                                                  + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                  +
                                                                                                                                  + + +
                                                                                                                                  Parameters
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + $inspector + : Inspector +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + + + + +
                                                                                                                                  + +
                                                                                                                                  +

                                                                                                                                  + getException() + + +

                                                                                                                                  + + + + + protected + getException() : Throwable + +
                                                                                                                                  +
                                                                                                                                  + + + + + + + +
                                                                                                                                  +
                                                                                                                                  Return values
                                                                                                                                  + Throwable +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  + getInspector() + + +

                                                                                                                                  + + + + + protected + getInspector() : Inspector + +
                                                                                                                                  +
                                                                                                                                  + + + + + + + +
                                                                                                                                  +
                                                                                                                                  Return values
                                                                                                                                  + Inspector +
                                                                                                                                  + +
                                                                                                                                  + +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  
                                                                                                                                  +        
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  + + + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + +
                                                                                                                                  + On this page + + +
                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  Search results

                                                                                                                                  + +
                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-HandlerInterface.html b/src/public/api/classes/Leaf-Exception-Handler-HandlerInterface.html new file mode 100644 index 00000000..e479be9a --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-HandlerInterface.html @@ -0,0 +1,573 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                    +

                                                                                                                                    Leaf PHP

                                                                                                                                    + + + + + +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + + +
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    +

                                                                                                                                    + HandlerInterface +
                                                                                                                                    + in + +
                                                                                                                                    +

                                                                                                                                    + + + + + + + + + + + + +

                                                                                                                                    + Table of Contents + + +

                                                                                                                                    + + + + + + + + + + +

                                                                                                                                    + Methods + + +

                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + handle() + +  : int|null +
                                                                                                                                    + +
                                                                                                                                    + setException() + +  : void +
                                                                                                                                    + +
                                                                                                                                    + setInspector() + +  : void +
                                                                                                                                    + +
                                                                                                                                    + setRun() + +  : void +
                                                                                                                                    + +
                                                                                                                                    + + + + + + +
                                                                                                                                    +

                                                                                                                                    + Methods + + +

                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + handle() + + +

                                                                                                                                    + + + + + public + handle() : int|null + +
                                                                                                                                    +
                                                                                                                                    + + + + + + + +
                                                                                                                                    +
                                                                                                                                    Return values
                                                                                                                                    + int|null + — +

                                                                                                                                    A handler may return nothing, or a Handler::HANDLE_* constant

                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + setException() + + +

                                                                                                                                    + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    Parameters
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + $exception + : Throwable +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + + + + +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    + setInspector() + + +

                                                                                                                                    + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                    +
                                                                                                                                    + + +
                                                                                                                                    Parameters
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + $inspector + : Inspector +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + + + + +
                                                                                                                                    + +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    
                                                                                                                                    +        
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    + + + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + +
                                                                                                                                    + On this page + + +
                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    Search results

                                                                                                                                    + +
                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-JsonResponseHandler.html b/src/public/api/classes/Leaf-Exception-Handler-JsonResponseHandler.html new file mode 100644 index 00000000..85c3ad81 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-JsonResponseHandler.html @@ -0,0 +1,1254 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                      +

                                                                                                                                      Leaf PHP

                                                                                                                                      + + + + + +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +

                                                                                                                                      + JsonResponseHandler + + + extends Handler + + +
                                                                                                                                      + in package + +
                                                                                                                                      + + +

                                                                                                                                      + +
                                                                                                                                      + + +
                                                                                                                                      + + + +

                                                                                                                                      Catches an exception and converts it to a JSON +response. Additionally can also return exception +frames for consumption by an API.

                                                                                                                                      + + + + + + + + + +

                                                                                                                                      + Table of Contents + + +

                                                                                                                                      + + + + + + + +

                                                                                                                                      + Constants + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + DONE + +  = 0x10 +
                                                                                                                                      + +
                                                                                                                                      + LAST_HANDLER + +  = 0x20 +
                                                                                                                                      +
                                                                                                                                      The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                                      + +
                                                                                                                                      + QUIT + +  = 0x30 +
                                                                                                                                      +
                                                                                                                                      The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                                      + +
                                                                                                                                      + + +

                                                                                                                                      + Properties + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $exception + +  : Throwable +
                                                                                                                                      + +
                                                                                                                                      + $inspector + +  : Inspector +
                                                                                                                                      + +
                                                                                                                                      + $jsonApi + +  : bool +
                                                                                                                                      + +
                                                                                                                                      + $returnFrames + +  : bool +
                                                                                                                                      + +
                                                                                                                                      + $run + +  : RunInterface +
                                                                                                                                      + +
                                                                                                                                      + +

                                                                                                                                      + Methods + + +

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + addTraceToOutput() + +  : bool|static +
                                                                                                                                      + +
                                                                                                                                      + contentType() + +  : string +
                                                                                                                                      + +
                                                                                                                                      + handle() + +  : int +
                                                                                                                                      + +
                                                                                                                                      + setException() + +  : void +
                                                                                                                                      + +
                                                                                                                                      + setInspector() + +  : void +
                                                                                                                                      + +
                                                                                                                                      + setJsonApi() + +  : static +
                                                                                                                                      +
                                                                                                                                      Returns errors[[]] instead of error[] to be in compliance with the json:api spec
                                                                                                                                      + +
                                                                                                                                      + setRun() + +  : void +
                                                                                                                                      + +
                                                                                                                                      + getException() + +  : Throwable +
                                                                                                                                      + +
                                                                                                                                      + getInspector() + +  : Inspector +
                                                                                                                                      + +
                                                                                                                                      + getRun() + +  : RunInterface +
                                                                                                                                      + +
                                                                                                                                      + + + + +
                                                                                                                                      +

                                                                                                                                      + Constants + + +

                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + DONE + + +

                                                                                                                                      + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + LAST_HANDLER + + +

                                                                                                                                      + + + +

                                                                                                                                      The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                                      + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                                      Execution will continue.

                                                                                                                                      +
                                                                                                                                      + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + QUIT + + +

                                                                                                                                      + + + +

                                                                                                                                      The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                                      + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      +

                                                                                                                                      + Properties + + +

                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + $exception + + + + +

                                                                                                                                      + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + $inspector + + + + +

                                                                                                                                      + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + $jsonApi + + + + +

                                                                                                                                      + + + + + + private + bool + $jsonApi + = false + + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + $returnFrames + + + + +

                                                                                                                                      + + + + + + private + bool + $returnFrames + = false + + + + + + + +
                                                                                                                                      + +
                                                                                                                                      + +
                                                                                                                                      +

                                                                                                                                      + Methods + + +

                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + addTraceToOutput() + + +

                                                                                                                                      + + + + + public + addTraceToOutput([bool|null $returnFrames = null ]) : bool|static + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $returnFrames + : bool|null + = null
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + + + +
                                                                                                                                      +
                                                                                                                                      Return values
                                                                                                                                      + bool|static +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + contentType() + + +

                                                                                                                                      + + + + + public + contentType() : string + +
                                                                                                                                      +
                                                                                                                                      + + + + + + + +
                                                                                                                                      +
                                                                                                                                      Return values
                                                                                                                                      + string +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + handle() + + +

                                                                                                                                      + + + + + public + handle() : int + +
                                                                                                                                      +
                                                                                                                                      + + + + + + + +
                                                                                                                                      +
                                                                                                                                      Return values
                                                                                                                                      + int +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + setException() + + +

                                                                                                                                      + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $exception + : Throwable +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + setInspector() + + +

                                                                                                                                      + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $inspector + : Inspector +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + + + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + setJsonApi() + + +

                                                                                                                                      + + +

                                                                                                                                      Returns errors[[]] instead of error[] to be in compliance with the json:api spec

                                                                                                                                      + + + public + setJsonApi([bool $jsonApi = false ]) : static + +
                                                                                                                                      +
                                                                                                                                      + + +
                                                                                                                                      Parameters
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + $jsonApi + : bool + = false
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Default is false

                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + + + +
                                                                                                                                      +
                                                                                                                                      Return values
                                                                                                                                      + static +
                                                                                                                                      + +
                                                                                                                                      + +
                                                                                                                                      +

                                                                                                                                      + getException() + + +

                                                                                                                                      + + + + + protected + getException() : Throwable + +
                                                                                                                                      +
                                                                                                                                      + + + + + + + +
                                                                                                                                      +
                                                                                                                                      Return values
                                                                                                                                      + Throwable +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      + getInspector() + + +

                                                                                                                                      + + + + + protected + getInspector() : Inspector + +
                                                                                                                                      +
                                                                                                                                      + + + + + + + +
                                                                                                                                      +
                                                                                                                                      Return values
                                                                                                                                      + Inspector +
                                                                                                                                      + +
                                                                                                                                      + +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      
                                                                                                                                      +        
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      + + + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + +
                                                                                                                                      + On this page + + +
                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Search results

                                                                                                                                      + +
                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-PlainTextHandler.html b/src/public/api/classes/Leaf-Exception-Handler-PlainTextHandler.html new file mode 100644 index 00000000..1d76d59b --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-PlainTextHandler.html @@ -0,0 +1,2294 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                        +

                                                                                                                                        Leaf PHP

                                                                                                                                        + + + + + +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        +

                                                                                                                                        + PlainTextHandler + + + extends Handler + + +
                                                                                                                                        + in package + +
                                                                                                                                        + + +

                                                                                                                                        + +
                                                                                                                                        + + +
                                                                                                                                        + + + +

                                                                                                                                        Handler outputing plaintext error messages. Can be used +directly, or will be instantiated automagically by Whoops\Run +if passed to Run::pushHandler

                                                                                                                                        + + + + + + + + + +

                                                                                                                                        + Table of Contents + + +

                                                                                                                                        + + + + + + + +

                                                                                                                                        + Constants + + +

                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + DONE + +  = 0x10 +
                                                                                                                                        + +
                                                                                                                                        + LAST_HANDLER + +  = 0x20 +
                                                                                                                                        +
                                                                                                                                        The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                                        + +
                                                                                                                                        + QUIT + +  = 0x30 +
                                                                                                                                        +
                                                                                                                                        The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                                        + +
                                                                                                                                        + VAR_DUMP_PREFIX + +  = ' | ' +
                                                                                                                                        + +
                                                                                                                                        + + +

                                                                                                                                        + Properties + + +

                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $dumper + +  : callable +
                                                                                                                                        + +
                                                                                                                                        + $logger + +  : LoggerInterface +
                                                                                                                                        + +
                                                                                                                                        + $addPreviousToOutput + +  : bool +
                                                                                                                                        + +
                                                                                                                                        + $addTraceFunctionArgsToOutput + +  : bool|int +
                                                                                                                                        + +
                                                                                                                                        + $addTraceToOutput + +  : bool +
                                                                                                                                        + +
                                                                                                                                        + $exception + +  : Throwable +
                                                                                                                                        + +
                                                                                                                                        + $inspector + +  : Inspector +
                                                                                                                                        + +
                                                                                                                                        + $loggerOnly + +  : bool +
                                                                                                                                        + +
                                                                                                                                        + $run + +  : RunInterface +
                                                                                                                                        + +
                                                                                                                                        + $traceFunctionArgsOutputLimit + +  : int +
                                                                                                                                        + +
                                                                                                                                        + +

                                                                                                                                        + Methods + + +

                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + __construct() + +  : mixed +
                                                                                                                                        +
                                                                                                                                        Constructor.
                                                                                                                                        + +
                                                                                                                                        + addPreviousToOutput() + +  : bool|static +
                                                                                                                                        +
                                                                                                                                        Add previous exceptions to output.
                                                                                                                                        + +
                                                                                                                                        + addTraceFunctionArgsToOutput() + +  : static|bool|int +
                                                                                                                                        +
                                                                                                                                        Add error trace function arguments to output.
                                                                                                                                        + +
                                                                                                                                        + addTraceToOutput() + +  : bool|static +
                                                                                                                                        +
                                                                                                                                        Add error trace to output.
                                                                                                                                        + +
                                                                                                                                        + contentType() + +  : string +
                                                                                                                                        + +
                                                                                                                                        + generateResponse() + +  : string +
                                                                                                                                        +
                                                                                                                                        Create plain text response and return it as a string
                                                                                                                                        + +
                                                                                                                                        + getLogger() + +  : LoggerInterface|null +
                                                                                                                                        + +
                                                                                                                                        + getTraceFunctionArgsOutputLimit() + +  : int +
                                                                                                                                        +
                                                                                                                                        Get the size limit in bytes of frame arguments var_dump output.
                                                                                                                                        + +
                                                                                                                                        + handle() + +  : int +
                                                                                                                                        + +
                                                                                                                                        + loggerOnly() + +  : static|bool +
                                                                                                                                        +
                                                                                                                                        Only output to logger.
                                                                                                                                        + +
                                                                                                                                        + setDumper() + +  : static +
                                                                                                                                        +
                                                                                                                                        Set var dumper callback function.
                                                                                                                                        + +
                                                                                                                                        + setException() + +  : void +
                                                                                                                                        + +
                                                                                                                                        + setInspector() + +  : void +
                                                                                                                                        + +
                                                                                                                                        + setLogger() + +  : mixed +
                                                                                                                                        +
                                                                                                                                        Set the output logger interface.
                                                                                                                                        + +
                                                                                                                                        + setRun() + +  : void +
                                                                                                                                        + +
                                                                                                                                        + setTraceFunctionArgsOutputLimit() + +  : static +
                                                                                                                                        +
                                                                                                                                        Set the size limit in bytes of frame arguments var_dump output.
                                                                                                                                        + +
                                                                                                                                        + dump() + +  : void +
                                                                                                                                        +
                                                                                                                                        Dump variable.
                                                                                                                                        + +
                                                                                                                                        + getException() + +  : Throwable +
                                                                                                                                        + +
                                                                                                                                        + getInspector() + +  : Inspector +
                                                                                                                                        + +
                                                                                                                                        + getRun() + +  : RunInterface +
                                                                                                                                        + +
                                                                                                                                        + canOutput() + +  : bool +
                                                                                                                                        +
                                                                                                                                        Test if handler can output to stdout.
                                                                                                                                        + +
                                                                                                                                        + getExceptionOutput() + +  : string +
                                                                                                                                        +
                                                                                                                                        Get the exception as plain text.
                                                                                                                                        + +
                                                                                                                                        + getFrameArgsOutput() + +  : string +
                                                                                                                                        +
                                                                                                                                        Get the frame args var_dump.
                                                                                                                                        + +
                                                                                                                                        + getTraceOutput() + +  : string +
                                                                                                                                        +
                                                                                                                                        Get the exception trace as plain text.
                                                                                                                                        + +
                                                                                                                                        + + + + +
                                                                                                                                        +

                                                                                                                                        + Constants + + +

                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + DONE + + +

                                                                                                                                        + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + LAST_HANDLER + + +

                                                                                                                                        + + + +

                                                                                                                                        The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                                        + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                                        Execution will continue.

                                                                                                                                        +
                                                                                                                                        + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + QUIT + + +

                                                                                                                                        + + + +

                                                                                                                                        The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                                        + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + VAR_DUMP_PREFIX + + +

                                                                                                                                        + + + + + + + public + mixed + VAR_DUMP_PREFIX + = ' | ' + + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        +

                                                                                                                                        + Properties + + +

                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + $dumper + + + + +

                                                                                                                                        + + + + + + protected + callable + $dumper + + + + + + + + +
                                                                                                                                        + +
                                                                                                                                        +

                                                                                                                                        + $addPreviousToOutput + + + + +

                                                                                                                                        + + + + + + private + bool + $addPreviousToOutput + = true + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + $addTraceFunctionArgsToOutput + + + + +

                                                                                                                                        + + + + + + private + bool|int + $addTraceFunctionArgsToOutput + = false + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + $addTraceToOutput + + + + +

                                                                                                                                        + + + + + + private + bool + $addTraceToOutput + = true + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + $exception + + + + +

                                                                                                                                        + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + $inspector + + + + +

                                                                                                                                        + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + $loggerOnly + + + + +

                                                                                                                                        + + + + + + private + bool + $loggerOnly + = false + + + + + + + +
                                                                                                                                        + +
                                                                                                                                        +

                                                                                                                                        + $traceFunctionArgsOutputLimit + + + + +

                                                                                                                                        + + + + + + private + int + $traceFunctionArgsOutputLimit + = 1024 + + + + + + + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +

                                                                                                                                        + Methods + + +

                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + __construct() + + +

                                                                                                                                        + + +

                                                                                                                                        Constructor.

                                                                                                                                        + + + public + __construct([LoggerInterface|null $logger = null ]) : mixed + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $logger + : LoggerInterface|null + = null
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + Tags + + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + throws +
                                                                                                                                        +
                                                                                                                                        + InvalidArgumentException + +

                                                                                                                                        If argument is not null or a LoggerInterface

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + addPreviousToOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Add previous exceptions to output.

                                                                                                                                        + + + public + addPreviousToOutput([bool|null $addPreviousToOutput = null ]) : bool|static + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $addPreviousToOutput + : bool|null + = null
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + bool|static +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + addTraceFunctionArgsToOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Add error trace function arguments to output.

                                                                                                                                        + + + public + addTraceFunctionArgsToOutput([bool|int|null $addTraceFunctionArgsToOutput = null ]) : static|bool|int + +
                                                                                                                                        +
                                                                                                                                        + +

                                                                                                                                        Set to True for all frame args, or integer for the n first frame args.

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $addTraceFunctionArgsToOutput + : bool|int|null + = null
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + static|bool|int +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + addTraceToOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Add error trace to output.

                                                                                                                                        + + + public + addTraceToOutput([bool|null $addTraceToOutput = null ]) : bool|static + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $addTraceToOutput + : bool|null + = null
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + bool|static +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + contentType() + + +

                                                                                                                                        + + + + + public + contentType() : string + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + string +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + generateResponse() + + +

                                                                                                                                        + + +

                                                                                                                                        Create plain text response and return it as a string

                                                                                                                                        + + + public + generateResponse() : string + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + string +
                                                                                                                                        + +
                                                                                                                                        + +
                                                                                                                                        +

                                                                                                                                        + getTraceFunctionArgsOutputLimit() + + +

                                                                                                                                        + + +

                                                                                                                                        Get the size limit in bytes of frame arguments var_dump output.

                                                                                                                                        + + + public + getTraceFunctionArgsOutputLimit() : int + +
                                                                                                                                        +
                                                                                                                                        + +

                                                                                                                                        If the limit is reached, the var_dump output is discarded. +Prevent memory limit errors.

                                                                                                                                        +
                                                                                                                                        + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + int +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + handle() + + +

                                                                                                                                        + + + + + public + handle() : int + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + int +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + loggerOnly() + + +

                                                                                                                                        + + +

                                                                                                                                        Only output to logger.

                                                                                                                                        + + + public + loggerOnly([bool|null $loggerOnly = null ]) : static|bool + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $loggerOnly + : bool|null + = null
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + static|bool +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + setDumper() + + +

                                                                                                                                        + + +

                                                                                                                                        Set var dumper callback function.

                                                                                                                                        + + + public + setDumper(callable $dumper) : static + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $dumper + : callable +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + static +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + setException() + + +

                                                                                                                                        + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $exception + : Throwable +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + setInspector() + + +

                                                                                                                                        + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $inspector + : Inspector +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + setLogger() + + +

                                                                                                                                        + + +

                                                                                                                                        Set the output logger interface.

                                                                                                                                        + + + public + setLogger([LoggerInterface|null $logger = null ]) : mixed + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $logger + : LoggerInterface|null + = null
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        + Tags + + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + throws +
                                                                                                                                        +
                                                                                                                                        + InvalidArgumentException + +

                                                                                                                                        If argument is not null or a LoggerInterface

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + +
                                                                                                                                        + +
                                                                                                                                        +

                                                                                                                                        + setTraceFunctionArgsOutputLimit() + + +

                                                                                                                                        + + +

                                                                                                                                        Set the size limit in bytes of frame arguments var_dump output.

                                                                                                                                        + + + public + setTraceFunctionArgsOutputLimit(mixed $traceFunctionArgsOutputLimit) : static + +
                                                                                                                                        +
                                                                                                                                        + +

                                                                                                                                        If the limit is reached, the var_dump output is discarded. +Prevent memory limit errors.

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $traceFunctionArgsOutputLimit + : mixed +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + static +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + dump() + + +

                                                                                                                                        + + +

                                                                                                                                        Dump variable.

                                                                                                                                        + + + protected + dump(mixed $var) : void + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $var + : mixed +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getException() + + +

                                                                                                                                        + + + + + protected + getException() : Throwable + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + Throwable +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getInspector() + + +

                                                                                                                                        + + + + + protected + getInspector() : Inspector + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + Inspector +
                                                                                                                                        + +
                                                                                                                                        + +
                                                                                                                                        +

                                                                                                                                        + canOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Test if handler can output to stdout.

                                                                                                                                        + + + private + canOutput() : bool + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + bool +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getExceptionOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Get the exception as plain text.

                                                                                                                                        + + + private + getExceptionOutput(Throwable $exception) : string + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $exception + : Throwable +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + string +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getFrameArgsOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Get the frame args var_dump.

                                                                                                                                        + + + private + getFrameArgsOutput(Frame $frame, int $line) : string + +
                                                                                                                                        +
                                                                                                                                        + + +
                                                                                                                                        Parameters
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + $frame + : Frame +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        [description]

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + $line + : int +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        [description]

                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + string +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        + getTraceOutput() + + +

                                                                                                                                        + + +

                                                                                                                                        Get the exception trace as plain text.

                                                                                                                                        + + + private + getTraceOutput() : string + +
                                                                                                                                        +
                                                                                                                                        + + + + + + + +
                                                                                                                                        +
                                                                                                                                        Return values
                                                                                                                                        + string +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        
                                                                                                                                        +        
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        + + + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + +
                                                                                                                                        + On this page + + +
                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        Search results

                                                                                                                                        + +
                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-PrettyPageHandler.html b/src/public/api/classes/Leaf-Exception-Handler-PrettyPageHandler.html new file mode 100644 index 00000000..2228f1b4 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-PrettyPageHandler.html @@ -0,0 +1,3827 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                          +

                                                                                                                                          Leaf PHP

                                                                                                                                          + + + + + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          +

                                                                                                                                          + PrettyPageHandler + + + extends Handler + + +
                                                                                                                                          + in package + +
                                                                                                                                          + + +

                                                                                                                                          + +
                                                                                                                                          + + +
                                                                                                                                          + + + +

                                                                                                                                          Abstract implementation of a Handler.

                                                                                                                                          + + + + + + + + + +

                                                                                                                                          + Table of Contents + + +

                                                                                                                                          + + + + + + + +

                                                                                                                                          + Constants + + +

                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + DONE + +  = 0x10 +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_ATOM + +  = "atom" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_EMACS + +  = "emacs" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_ESPRESSO + +  = "espresso" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_IDEA + +  = "idea" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_MACVIM + +  = "macvim" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_NETBEANS + +  = "netbeans" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_PHPSTORM + +  = "phpstorm" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_SUBLIME + +  = "sublime" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_TEXTMATE + +  = "textmate" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_VSCODE + +  = "vscode" +
                                                                                                                                          + +
                                                                                                                                          + EDITOR_XDEBUG + +  = "xdebug" +
                                                                                                                                          + +
                                                                                                                                          + LAST_HANDLER + +  = 0x20 +
                                                                                                                                          +
                                                                                                                                          The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                                          + +
                                                                                                                                          + QUIT + +  = 0x30 +
                                                                                                                                          +
                                                                                                                                          The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                                          + +
                                                                                                                                          + + +

                                                                                                                                          + Properties + + +

                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $editor + +  : callable|string +
                                                                                                                                          +
                                                                                                                                          An identifier for a known IDE/text editor.
                                                                                                                                          + +
                                                                                                                                          + $editors + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          A list of known editor strings.
                                                                                                                                          + +
                                                                                                                                          + $templateHelper + +  : TemplateHelper +
                                                                                                                                          + +
                                                                                                                                          + $applicationPaths + +  : array<string|int, array<string|int, mixed>> +
                                                                                                                                          + +
                                                                                                                                          + $blacklist + +  : array<string|int, array<string|int, mixed>> +
                                                                                                                                          + +
                                                                                                                                          + $customCss + +  : string|null +
                                                                                                                                          +
                                                                                                                                          The name of the custom css file.
                                                                                                                                          + +
                                                                                                                                          + $customJs + +  : string|null +
                                                                                                                                          +
                                                                                                                                          The name of the custom js file.
                                                                                                                                          + +
                                                                                                                                          + $exception + +  : Throwable +
                                                                                                                                          + +
                                                                                                                                          + $extraTables + +  : array<string|int, array<string|int, mixed>> +
                                                                                                                                          + +
                                                                                                                                          + $handleUnconditionally + +  : bool +
                                                                                                                                          + +
                                                                                                                                          + $inspector + +  : Inspector +
                                                                                                                                          + +
                                                                                                                                          + $pageTitle + +  : string +
                                                                                                                                          + +
                                                                                                                                          + $resourceCache + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          Fast lookup cache for known resource locations.
                                                                                                                                          + +
                                                                                                                                          + $run + +  : RunInterface +
                                                                                                                                          + +
                                                                                                                                          + $searchPaths + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          Search paths to be scanned for resources.
                                                                                                                                          + +
                                                                                                                                          + +

                                                                                                                                          + Methods + + +

                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + __construct() + +  : void +
                                                                                                                                          +
                                                                                                                                          Constructor.
                                                                                                                                          + +
                                                                                                                                          + addCustomCss() + +  : static +
                                                                                                                                          +
                                                                                                                                          Adds a custom css file to be loaded.
                                                                                                                                          + +
                                                                                                                                          + addCustomJs() + +  : static +
                                                                                                                                          +
                                                                                                                                          Adds a custom js file to be loaded.
                                                                                                                                          + +
                                                                                                                                          + addDataTable() + +  : static +
                                                                                                                                          +
                                                                                                                                          Adds an entry to the list of tables displayed in the template.
                                                                                                                                          + +
                                                                                                                                          + addDataTableCallback() + +  : static +
                                                                                                                                          +
                                                                                                                                          Lazily adds an entry to the list of tables displayed in the table.
                                                                                                                                          + +
                                                                                                                                          + addEditor() + +  : static +
                                                                                                                                          +
                                                                                                                                          Adds an editor resolver.
                                                                                                                                          + +
                                                                                                                                          + addResourcePath() + +  : static +
                                                                                                                                          +
                                                                                                                                          Adds a path to the list of paths to be searched for resources.
                                                                                                                                          + +
                                                                                                                                          + blacklist() + +  : static +
                                                                                                                                          +
                                                                                                                                          blacklist a sensitive value within one of the superglobal arrays.
                                                                                                                                          + +
                                                                                                                                          + contentType() + +  : string +
                                                                                                                                          + +
                                                                                                                                          + getApplicationPaths() + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          Return the application paths.
                                                                                                                                          + +
                                                                                                                                          + getDataTables() + +  : array<string|int, array<string|int, mixed>>|callable +
                                                                                                                                          +
                                                                                                                                          Returns all the extra data tables registered with this handler.
                                                                                                                                          + +
                                                                                                                                          + getEditorAjax() + +  : bool +
                                                                                                                                          +
                                                                                                                                          Determine if the editor link should act as an Ajax request.
                                                                                                                                          + +
                                                                                                                                          + getEditorHref() + +  : string|bool +
                                                                                                                                          +
                                                                                                                                          Get the editor href for a given file and line, if available.
                                                                                                                                          + +
                                                                                                                                          + getPageTitle() + +  : string +
                                                                                                                                          +
                                                                                                                                          Get the page title.
                                                                                                                                          + +
                                                                                                                                          + getResourcePaths() + +  : array<string|int, mixed> +
                                                                                                                                          + +
                                                                                                                                          + getResourcesPath() + +  : string +
                                                                                                                                          + +
                                                                                                                                          + handle() + +  : int|null +
                                                                                                                                          + +
                                                                                                                                          + handleUnconditionally() + +  : bool|static +
                                                                                                                                          +
                                                                                                                                          Set whether to handle unconditionally.
                                                                                                                                          + +
                                                                                                                                          + hideSuperglobalKey() + +  : static +
                                                                                                                                          +
                                                                                                                                          Hide a sensitive value within one of the superglobal arrays.
                                                                                                                                          + +
                                                                                                                                          + isLocal() + +  : bool +
                                                                                                                                          +
                                                                                                                                          is Local Environment +Check if the application is running in a local environment.
                                                                                                                                          + +
                                                                                                                                          + setApplicationPaths() + +  : void +
                                                                                                                                          +
                                                                                                                                          Set the application paths.
                                                                                                                                          + +
                                                                                                                                          + setApplicationRootPath() + +  : void +
                                                                                                                                          +
                                                                                                                                          Set the application root path.
                                                                                                                                          + +
                                                                                                                                          + setEditor() + +  : static +
                                                                                                                                          +
                                                                                                                                          Set the editor to use to open referenced files.
                                                                                                                                          + +
                                                                                                                                          + setException() + +  : void +
                                                                                                                                          + +
                                                                                                                                          + setInspector() + +  : void +
                                                                                                                                          + +
                                                                                                                                          + setPageTitle() + +  : static +
                                                                                                                                          +
                                                                                                                                          Set the page title.
                                                                                                                                          + +
                                                                                                                                          + setResourcesPath() + +  : static +
                                                                                                                                          + +
                                                                                                                                          + setRun() + +  : void +
                                                                                                                                          + +
                                                                                                                                          + getEditor() + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          Determines both the editor and if ajax should be used.
                                                                                                                                          + +
                                                                                                                                          + getException() + +  : Throwable +
                                                                                                                                          + +
                                                                                                                                          + getExceptionCode() + +  : string +
                                                                                                                                          +
                                                                                                                                          Get the code of the exception currently being handled.
                                                                                                                                          + +
                                                                                                                                          + getExceptionFrames() + +  : FrameCollection +
                                                                                                                                          +
                                                                                                                                          Get the stack trace frames of the exception currently being handled.
                                                                                                                                          + +
                                                                                                                                          + getInspector() + +  : Inspector +
                                                                                                                                          + +
                                                                                                                                          + getResource() + +  : string +
                                                                                                                                          +
                                                                                                                                          Finds a resource, by its relative path, in all available search paths.
                                                                                                                                          + +
                                                                                                                                          + getRun() + +  : RunInterface +
                                                                                                                                          + +
                                                                                                                                          + masked() + +  : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          Checks all values within the given superGlobal array.
                                                                                                                                          + +
                                                                                                                                          + + + + +
                                                                                                                                          +

                                                                                                                                          + Constants + + +

                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + DONE + + +

                                                                                                                                          + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_ATOM + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_ATOM + = "atom" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_EMACS + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_EMACS + = "emacs" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_ESPRESSO + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_ESPRESSO + = "espresso" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_IDEA + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_IDEA + = "idea" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_MACVIM + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_MACVIM + = "macvim" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_NETBEANS + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_NETBEANS + = "netbeans" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_PHPSTORM + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_PHPSTORM + = "phpstorm" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_SUBLIME + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_SUBLIME + = "sublime" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_TEXTMATE + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_TEXTMATE + = "textmate" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_VSCODE + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_VSCODE + = "vscode" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + EDITOR_XDEBUG + + +

                                                                                                                                          + + + + + + + public + mixed + EDITOR_XDEBUG + = "xdebug" + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + LAST_HANDLER + + +

                                                                                                                                          + + + +

                                                                                                                                          The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                                          + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                                          Execution will continue.

                                                                                                                                          +
                                                                                                                                          + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + QUIT + + +

                                                                                                                                          + + + +

                                                                                                                                          The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                                          + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          +

                                                                                                                                          + Properties + + +

                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $editor + + + + +

                                                                                                                                          + + +

                                                                                                                                          An identifier for a known IDE/text editor.

                                                                                                                                          + + + + protected + callable|string + $editor + + +

                                                                                                                                          Either a string, or a calalble that resolves a string, that can be used +to open a given file in an editor. If the string contains the special +substrings %file or %line, they will be replaced with the correct data.

                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + example +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          "txmt://open?url=%file&line=%line"

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $editors + + + + +

                                                                                                                                          + + +

                                                                                                                                          A list of known editor strings.

                                                                                                                                          + + + + protected + array<string|int, mixed> + $editors + = ["sublime" => "subl://open?url=file://%file&line=%line", "textmate" => "txmt://open?url=file://%file&line=%line", "emacs" => "emacs://open?url=file://%file&line=%line", "macvim" => "mvim://open/?url=file://%file&line=%line", "phpstorm" => "phpstorm://open?file=%file&line=%line", "idea" => "idea://open?file=%file&line=%line", "vscode" => "vscode://file/%file:%line", "atom" => "atom://core/open/file?filename=%file&line=%line", "espresso" => "x-espresso://open?filepath=%file&lines=%line", "netbeans" => "netbeans://open/?f=%file:%line"] + + + + + + + +
                                                                                                                                          + +
                                                                                                                                          +

                                                                                                                                          + $applicationPaths + + + + +

                                                                                                                                          + + + + + + private + array<string|int, array<string|int, mixed>> + $applicationPaths + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $blacklist + + + + +

                                                                                                                                          + + + + + + private + array<string|int, array<string|int, mixed>> + $blacklist + = ['_GET' => [], '_POST' => [], '_FILES' => [], '_COOKIE' => [], '_SESSION' => [], '' => [], '_ENV' => []] + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $customCss + + + + +

                                                                                                                                          + + +

                                                                                                                                          The name of the custom css file.

                                                                                                                                          + + + + private + string|null + $customCss + = null + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $customJs + + + + +

                                                                                                                                          + + +

                                                                                                                                          The name of the custom js file.

                                                                                                                                          + + + + private + string|null + $customJs + = null + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $exception + + + + +

                                                                                                                                          + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $extraTables + + + + +

                                                                                                                                          + + + + + + private + array<string|int, array<string|int, mixed>> + $extraTables + = [] + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $handleUnconditionally + + + + +

                                                                                                                                          + + + + + + private + bool + $handleUnconditionally + = false + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $inspector + + + + +

                                                                                                                                          + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $pageTitle + + + + +

                                                                                                                                          + + + + + + private + string + $pageTitle + = "Whoops! There was an error." + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + $resourceCache + + + + +

                                                                                                                                          + + +

                                                                                                                                          Fast lookup cache for known resource locations.

                                                                                                                                          + + + + private + array<string|int, mixed> + $resourceCache + = [] + + + + + + + +
                                                                                                                                          + +
                                                                                                                                          +

                                                                                                                                          + $searchPaths + + + + +

                                                                                                                                          + + +

                                                                                                                                          Search paths to be scanned for resources.

                                                                                                                                          + + + + private + array<string|int, mixed> + $searchPaths + = [] + +

                                                                                                                                          Stored in the reverse order they're declared.

                                                                                                                                          +
                                                                                                                                          + + + + + + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +

                                                                                                                                          + Methods + + +

                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + __construct() + + +

                                                                                                                                          + + +

                                                                                                                                          Constructor.

                                                                                                                                          + + + public + __construct() : void + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + addCustomCss() + + +

                                                                                                                                          + + +

                                                                                                                                          Adds a custom css file to be loaded.

                                                                                                                                          + + + public + addCustomCss(string|null $name) : static + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $name + : string|null +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + addCustomJs() + + +

                                                                                                                                          + + +

                                                                                                                                          Adds a custom js file to be loaded.

                                                                                                                                          + + + public + addCustomJs(string|null $name) : static + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $name + : string|null +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + addDataTable() + + +

                                                                                                                                          + + +

                                                                                                                                          Adds an entry to the list of tables displayed in the template.

                                                                                                                                          + + + public + addDataTable(string $label, array<string|int, mixed> $data) : static + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          The expected data is a simple associative array. Any nested arrays +will be flattened with print_r.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $label + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $data + : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + addDataTableCallback() + + +

                                                                                                                                          + + +

                                                                                                                                          Lazily adds an entry to the list of tables displayed in the table.

                                                                                                                                          + + + public + addDataTableCallback(string $label, callable $callback) : static + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          The supplied callback argument will be called when the error is +rendered, it should produce a simple associative array. Any nested +arrays will be flattened with print_r.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $label + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $callback + : callable +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Callable returning an associative array

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + InvalidArgumentException + +

                                                                                                                                          If $callback is not callable

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + addEditor() + + +

                                                                                                                                          + + +

                                                                                                                                          Adds an editor resolver.

                                                                                                                                          + + + public + addEditor(string $identifier, string|callable $resolver) : static + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          Either a string, or a closure that resolves a string, that can be used +to open a given file in an editor. If the string contains the special +substrings %file or %line, they will be replaced with the correct data.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $identifier + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $resolver + : string|callable +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + example +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          $run->addEditor('macvim', "mvim://open?url=file://%file&line=%line")

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + example +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          $run->addEditor('remove-it', function($file, $line) { +unlink($file); +return "http://stackoverflow.com"; +});

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + addResourcePath() + + +

                                                                                                                                          + + +

                                                                                                                                          Adds a path to the list of paths to be searched for resources.

                                                                                                                                          + + + public + addResourcePath(string $path) : static + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $path + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + InvalidArgumentException + +

                                                                                                                                          If $path is not a valid directory

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + blacklist() + + +

                                                                                                                                          + + +

                                                                                                                                          blacklist a sensitive value within one of the superglobal arrays.

                                                                                                                                          + + + public + blacklist(string $superGlobalName, string $key) : static + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          Alias for the hideSuperglobalKey method.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $superGlobalName + : string +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          The name of the superglobal array, e.g. '_GET'

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $key + : string +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          The key within the superglobal

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + see +
                                                                                                                                          +
                                                                                                                                          + hideSuperglobalKey + + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + contentType() + + +

                                                                                                                                          + + + + + public + contentType() : string + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + string +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getApplicationPaths() + + +

                                                                                                                                          + + +

                                                                                                                                          Return the application paths.

                                                                                                                                          + + + public + getApplicationPaths() : array<string|int, mixed> + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getDataTables() + + +

                                                                                                                                          + + +

                                                                                                                                          Returns all the extra data tables registered with this handler.

                                                                                                                                          + + + public + getDataTables([string|null $label = null ]) : array<string|int, array<string|int, mixed>>|callable + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          Optionally accepts a 'label' parameter, to only return the data table +under that label.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $label + : string|null + = null
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, array<string|int, mixed>>|callable +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getEditorAjax() + + +

                                                                                                                                          + + +

                                                                                                                                          Determine if the editor link should act as an Ajax request.

                                                                                                                                          + + + public + getEditorAjax(string $filePath, int $line) : bool + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $filePath + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $line + : int +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + UnexpectedValueException + +

                                                                                                                                          If editor resolver does not return a boolean

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + bool +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getEditorHref() + + +

                                                                                                                                          + + +

                                                                                                                                          Get the editor href for a given file and line, if available.

                                                                                                                                          + + + public + getEditorHref(string $filePath, int $line) : string|bool + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $filePath + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $line + : int +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + InvalidArgumentException + +

                                                                                                                                          If editor resolver does not return a string

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + string|bool +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getPageTitle() + + +

                                                                                                                                          + + +

                                                                                                                                          Get the page title.

                                                                                                                                          + + + public + getPageTitle() : string + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + string +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getResourcePaths() + + +

                                                                                                                                          + + + + + public + getResourcePaths() : array<string|int, mixed> + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getResourcesPath() + + +

                                                                                                                                          + + + + + public + getResourcesPath() : string + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + string +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + handle() + + +

                                                                                                                                          + + + + + public + handle() : int|null + +
                                                                                                                                          +
                                                                                                                                          + + + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + Exception + + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + int|null +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + handleUnconditionally() + + +

                                                                                                                                          + + +

                                                                                                                                          Set whether to handle unconditionally.

                                                                                                                                          + + + public + handleUnconditionally([bool|null $value = null ]) : bool|static + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          Allows to disable all attempts to dynamically decide whether to handle +or return prematurely. Set this to ensure that the handler will perform, +no matter what.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $value + : bool|null + = null
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + bool|static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + hideSuperglobalKey() + + +

                                                                                                                                          + + +

                                                                                                                                          Hide a sensitive value within one of the superglobal arrays.

                                                                                                                                          + + + public + hideSuperglobalKey(string $superGlobalName, string $key) : static + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $superGlobalName + : string +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          The name of the superglobal array, e.g. '_GET'

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $key + : string +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          The key within the superglobal

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + isLocal() + + +

                                                                                                                                          + + +

                                                                                                                                          is Local Environment +Check if the application is running in a local environment.

                                                                                                                                          + + + public + isLocal() : bool + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + bool + — +

                                                                                                                                          True if running locally, otherwise false.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setApplicationPaths() + + +

                                                                                                                                          + + +

                                                                                                                                          Set the application paths.

                                                                                                                                          + + + public + setApplicationPaths(array<string|int, mixed> $applicationPaths) : void + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $applicationPaths + : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setApplicationRootPath() + + +

                                                                                                                                          + + +

                                                                                                                                          Set the application root path.

                                                                                                                                          + + + public + setApplicationRootPath(string $applicationRootPath) : void + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $applicationRootPath + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setEditor() + + +

                                                                                                                                          + + +

                                                                                                                                          Set the editor to use to open referenced files.

                                                                                                                                          + + + public + setEditor(string|callable $editor) : static + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          Pass either the name of a configured editor, or a closure that directly +resolves an editor string.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $editor + : string|callable +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + example +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          $run->setEditor(function($file, $line) { return "file:///{$file}"; });

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + example +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          $run->setEditor('sublime');

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + InvalidArgumentException + +

                                                                                                                                          If invalid argument identifier provided

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setException() + + +

                                                                                                                                          + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $exception + : Throwable +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setInspector() + + +

                                                                                                                                          + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $inspector + : Inspector +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setPageTitle() + + +

                                                                                                                                          + + +

                                                                                                                                          Set the page title.

                                                                                                                                          + + + public + setPageTitle(string $title) : static + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $title + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + setResourcesPath() + + +

                                                                                                                                          + + + + + public + setResourcesPath(string $resourcesPath) : static + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $resourcesPath + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + static +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          +

                                                                                                                                          + getEditor() + + +

                                                                                                                                          + + +

                                                                                                                                          Determines both the editor and if ajax should be used.

                                                                                                                                          + + + protected + getEditor(string $filePath, int $line) : array<string|int, mixed> + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $filePath + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $line + : int +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getException() + + +

                                                                                                                                          + + + + + protected + getException() : Throwable + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + Throwable +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getExceptionCode() + + +

                                                                                                                                          + + +

                                                                                                                                          Get the code of the exception currently being handled.

                                                                                                                                          + + + protected + getExceptionCode() : string + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + string +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getExceptionFrames() + + +

                                                                                                                                          + + +

                                                                                                                                          Get the stack trace frames of the exception currently being handled.

                                                                                                                                          + + + protected + getExceptionFrames() : FrameCollection + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + FrameCollection +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getInspector() + + +

                                                                                                                                          + + + + + protected + getInspector() : Inspector + +
                                                                                                                                          +
                                                                                                                                          + + + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + Inspector +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          + getResource() + + +

                                                                                                                                          + + +

                                                                                                                                          Finds a resource, by its relative path, in all available search paths.

                                                                                                                                          + + + protected + getResource(string $resource) : string + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          The search is performed starting at the last search path, and all the +way back to the first, enabling a cascading-type system of overrides for +all resources.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $resource + : string +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + +
                                                                                                                                          + Tags + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + throws +
                                                                                                                                          +
                                                                                                                                          + RuntimeException + +

                                                                                                                                          If resource cannot be found in any of the available paths

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + string +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          +

                                                                                                                                          + masked() + + +

                                                                                                                                          + + +

                                                                                                                                          Checks all values within the given superGlobal array.

                                                                                                                                          + + + private + masked(array<string|int, mixed> $superGlobal, string $superGlobalName) : array<string|int, mixed> + +
                                                                                                                                          +
                                                                                                                                          + +

                                                                                                                                          Blacklisted values will be replaced by a equal length string containing +only '*' characters for string values. +Non-string values will be replaced with a fixed asterisk count. +We intentionally dont rely on $GLOBALS as it depends on the 'auto_globals_jit' php.ini setting.

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          Parameters
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + $superGlobal + : array<string|int, mixed> +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          One of the superglobal arrays

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + $superGlobalName + : string +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          The name of the superglobal array, e.g. '_GET'

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + + + +
                                                                                                                                          +
                                                                                                                                          Return values
                                                                                                                                          + array<string|int, mixed> + — +

                                                                                                                                          $values without sensitive data

                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          
                                                                                                                                          +        
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          + + + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + +
                                                                                                                                          + On this page + + +
                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Search results

                                                                                                                                          + +
                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Handler-XmlResponseHandler.html b/src/public/api/classes/Leaf-Exception-Handler-XmlResponseHandler.html new file mode 100644 index 00000000..36c1d8d2 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Handler-XmlResponseHandler.html @@ -0,0 +1,1281 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                            +

                                                                                                                                            Leaf PHP

                                                                                                                                            + + + + + +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            +

                                                                                                                                            + XmlResponseHandler + + + extends Handler + + +
                                                                                                                                            + in package + +
                                                                                                                                            + + +

                                                                                                                                            + +
                                                                                                                                            + + +
                                                                                                                                            + + + +

                                                                                                                                            Catches an exception and converts it to an XML +response. Additionally can also return exception +frames for consumption by an API.

                                                                                                                                            + + + + + + + + + +

                                                                                                                                            + Table of Contents + + +

                                                                                                                                            + + + + + + + +

                                                                                                                                            + Constants + + +

                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + DONE + +  = 0x10 +
                                                                                                                                            + +
                                                                                                                                            + LAST_HANDLER + +  = 0x20 +
                                                                                                                                            +
                                                                                                                                            The Handler has handled the Throwable in some way, and wishes to skip any other Handler.
                                                                                                                                            + +
                                                                                                                                            + QUIT + +  = 0x30 +
                                                                                                                                            +
                                                                                                                                            The Handler has handled the Throwable in some way, and wishes to quit/stop execution
                                                                                                                                            + +
                                                                                                                                            + + +

                                                                                                                                            + Properties + + +

                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $exception + +  : Throwable +
                                                                                                                                            + +
                                                                                                                                            + $inspector + +  : Inspector +
                                                                                                                                            + +
                                                                                                                                            + $returnFrames + +  : bool +
                                                                                                                                            + +
                                                                                                                                            + $run + +  : RunInterface +
                                                                                                                                            + +
                                                                                                                                            + +

                                                                                                                                            + Methods + + +

                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + addTraceToOutput() + +  : bool|static +
                                                                                                                                            + +
                                                                                                                                            + contentType() + +  : string +
                                                                                                                                            + +
                                                                                                                                            + handle() + +  : int +
                                                                                                                                            + +
                                                                                                                                            + setException() + +  : void +
                                                                                                                                            + +
                                                                                                                                            + setInspector() + +  : void +
                                                                                                                                            + +
                                                                                                                                            + setRun() + +  : void +
                                                                                                                                            + +
                                                                                                                                            + getException() + +  : Throwable +
                                                                                                                                            + +
                                                                                                                                            + getInspector() + +  : Inspector +
                                                                                                                                            + +
                                                                                                                                            + getRun() + +  : RunInterface +
                                                                                                                                            + +
                                                                                                                                            + addDataToNode() + +  : SimpleXMLElement +
                                                                                                                                            + +
                                                                                                                                            + toXml() + +  : string +
                                                                                                                                            +
                                                                                                                                            The main function for converting to an XML document.
                                                                                                                                            + +
                                                                                                                                            + + + + +
                                                                                                                                            +

                                                                                                                                            + Constants + + +

                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + DONE + + +

                                                                                                                                            + + + + + + + public + mixed + DONE + = 0x10 + + + + + + + + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + LAST_HANDLER + + +

                                                                                                                                            + + + +

                                                                                                                                            The Handler has handled the Throwable in some way, and wishes to skip any other Handler.

                                                                                                                                            + + + + public + mixed + LAST_HANDLER + = 0x20 + + + +

                                                                                                                                            Execution will continue.

                                                                                                                                            +
                                                                                                                                            + + + + + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + QUIT + + +

                                                                                                                                            + + + +

                                                                                                                                            The Handler has handled the Throwable in some way, and wishes to quit/stop execution

                                                                                                                                            + + + + public + mixed + QUIT + = 0x30 + + + + + + + + + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            +

                                                                                                                                            + Properties + + +

                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + $exception + + + + +

                                                                                                                                            + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + $inspector + + + + +

                                                                                                                                            + + + + + + private + Inspector + $inspector + + + + + + + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + $returnFrames + + + + +

                                                                                                                                            + + + + + + private + bool + $returnFrames + = false + + + + + + + +
                                                                                                                                            + +
                                                                                                                                            + +
                                                                                                                                            +

                                                                                                                                            + Methods + + +

                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + addTraceToOutput() + + +

                                                                                                                                            + + + + + public + addTraceToOutput([bool|null $returnFrames = null ]) : bool|static + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $returnFrames + : bool|null + = null
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + bool|static +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + contentType() + + +

                                                                                                                                            + + + + + public + contentType() : string + +
                                                                                                                                            +
                                                                                                                                            + + + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + string +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + handle() + + +

                                                                                                                                            + + + + + public + handle() : int + +
                                                                                                                                            +
                                                                                                                                            + + + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + int +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + setException() + + +

                                                                                                                                            + + + + + public + setException(Throwable $exception) : void + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $exception + : Throwable +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + setInspector() + + +

                                                                                                                                            + + + + + public + setInspector(Inspector $inspector) : void + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $inspector + : Inspector +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + + + +
                                                                                                                                            + +
                                                                                                                                            +

                                                                                                                                            + getException() + + +

                                                                                                                                            + + + + + protected + getException() : Throwable + +
                                                                                                                                            +
                                                                                                                                            + + + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + Throwable +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + getInspector() + + +

                                                                                                                                            + + + + + protected + getInspector() : Inspector + +
                                                                                                                                            +
                                                                                                                                            + + + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + Inspector +
                                                                                                                                            + +
                                                                                                                                            + +
                                                                                                                                            +

                                                                                                                                            + addDataToNode() + + +

                                                                                                                                            + + + + + private + static addDataToNode(SimpleXMLElement $node, array<string|int, mixed>|Traversable $data) : SimpleXMLElement + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $node + : SimpleXMLElement +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            Node to append data to, will be modified in place

                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + $data + : array<string|int, mixed>|Traversable +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + SimpleXMLElement + — +

                                                                                                                                            The modified node, for chaining

                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            + toXml() + + +

                                                                                                                                            + + +

                                                                                                                                            The main function for converting to an XML document.

                                                                                                                                            + + + private + static toXml(array<string|int, mixed>|Traversable $data) : string + +
                                                                                                                                            +
                                                                                                                                            + + +
                                                                                                                                            Parameters
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + $data + : array<string|int, mixed>|Traversable +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + + + +
                                                                                                                                            +
                                                                                                                                            Return values
                                                                                                                                            + string + — +

                                                                                                                                            XML

                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            
                                                                                                                                            +        
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            + + + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + +
                                                                                                                                            + On this page + + +
                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            Search results

                                                                                                                                            + +
                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Run.html b/src/public/api/classes/Leaf-Exception-Run.html new file mode 100644 index 00000000..a830ab24 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Run.html @@ -0,0 +1,2159 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                              +

                                                                                                                                              Leaf PHP

                                                                                                                                              + + + + + +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              +

                                                                                                                                              + Run + + +
                                                                                                                                              + in package + +
                                                                                                                                              + + + implements + RunInterface + +

                                                                                                                                              + +
                                                                                                                                              + +
                                                                                                                                              FinalYes
                                                                                                                                              + + +
                                                                                                                                              + + + + + + + + + + + + +

                                                                                                                                              + Table of Contents + + +

                                                                                                                                              + + + +

                                                                                                                                              + Interfaces + + +

                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              RunInterface
                                                                                                                                              + + + + + + +

                                                                                                                                              + Properties + + +

                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $allowQuit + +  : bool +
                                                                                                                                              + +
                                                                                                                                              + $canThrowExceptions + +  : bool +
                                                                                                                                              +
                                                                                                                                              In certain scenarios, like in shutdown handler, we can not throw exceptions.
                                                                                                                                              + +
                                                                                                                                              + $handlerStack + +  : array<string|int, HandlerInterface> +
                                                                                                                                              + +
                                                                                                                                              + $isRegistered + +  : bool +
                                                                                                                                              + +
                                                                                                                                              + $sendExitCode + +  : int|false +
                                                                                                                                              + +
                                                                                                                                              + $sendHttpCode + +  : int|false +
                                                                                                                                              + +
                                                                                                                                              + $sendOutput + +  : bool +
                                                                                                                                              + +
                                                                                                                                              + $silencedPatterns + +  : array<string|int, mixed> +
                                                                                                                                              + +
                                                                                                                                              + $system + +  : SystemFacade +
                                                                                                                                              + +
                                                                                                                                              + +

                                                                                                                                              + Methods + + +

                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + __construct() + +  : mixed +
                                                                                                                                              + +
                                                                                                                                              + allowQuit() + +  : bool +
                                                                                                                                              +
                                                                                                                                              Should Whoops allow Handlers to force the script to quit?
                                                                                                                                              + +
                                                                                                                                              + appendHandler() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Explicitly request your handler runs as the last of all currently registered handlers.
                                                                                                                                              + +
                                                                                                                                              + clearHandlers() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Clears all handlers in the handlerStack, including the default PrettyPage handler.
                                                                                                                                              + +
                                                                                                                                              + getHandlers() + +  : array<string|int, mixed> +
                                                                                                                                              +
                                                                                                                                              Returns an array with all handlers, in the order they were added to the stack.
                                                                                                                                              + +
                                                                                                                                              + getSilenceErrorsInPaths() + +  : array<string|int, mixed> +
                                                                                                                                              +
                                                                                                                                              Returns an array with silent errors in path configuration.
                                                                                                                                              + +
                                                                                                                                              + handleError() + +  : bool +
                                                                                                                                              +
                                                                                                                                              Converts generic PHP errors to \ErrorException instances, before passing them off to be handled.
                                                                                                                                              + +
                                                                                                                                              + handleException() + +  : string +
                                                                                                                                              +
                                                                                                                                              Handles an exception, ultimately generating a Whoops error page.
                                                                                                                                              + +
                                                                                                                                              + handleShutdown() + +  : void +
                                                                                                                                              +
                                                                                                                                              Special case to deal with Fatal errors and the like.
                                                                                                                                              + +
                                                                                                                                              + popHandler() + +  : HandlerInterface|null +
                                                                                                                                              +
                                                                                                                                              Removes and returns the last handler pushed to the handler stack.
                                                                                                                                              + +
                                                                                                                                              + prependHandler() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Explicitly request your handler runs as the first of all currently registered handlers.
                                                                                                                                              + +
                                                                                                                                              + pushHandler() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Register your handler as the last of all currently registered handlers (to be executed first).
                                                                                                                                              + +
                                                                                                                                              + register() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Registers this instance as an error handler.
                                                                                                                                              + +
                                                                                                                                              + removeFirstHandler() + +  : void +
                                                                                                                                              +
                                                                                                                                              Removes the first handler.
                                                                                                                                              + +
                                                                                                                                              + removeLastHandler() + +  : void +
                                                                                                                                              +
                                                                                                                                              Removes the last handler.
                                                                                                                                              + +
                                                                                                                                              + sendExitCode() + +  : int +
                                                                                                                                              +
                                                                                                                                              Should Whoops exit with a specific code on the CLI if possible? +Whoops will exit with 1 by default, but you can specify something else.
                                                                                                                                              + +
                                                                                                                                              + sendHttpCode() + +  : int|false +
                                                                                                                                              +
                                                                                                                                              Should Whoops send HTTP error code to the browser if possible? +Whoops will by default send HTTP code 500, but you may wish to +use 502, 503, or another 5xx family code.
                                                                                                                                              + +
                                                                                                                                              + silenceErrorsInPaths() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Silence particular errors in particular files.
                                                                                                                                              + +
                                                                                                                                              + unregister() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Unregisters all handlers registered by this Whoops\Run instance.
                                                                                                                                              + +
                                                                                                                                              + writeToOutput() + +  : bool +
                                                                                                                                              +
                                                                                                                                              Should Whoops push output directly to the client? +If this is false, output will be returned by handleException.
                                                                                                                                              + +
                                                                                                                                              + getInspector() + +  : Inspector +
                                                                                                                                              + +
                                                                                                                                              + resolveHandler() + +  : HandlerInterface +
                                                                                                                                              +
                                                                                                                                              Resolves the giving handler.
                                                                                                                                              + +
                                                                                                                                              + writeToOutputNow() + +  : Run +
                                                                                                                                              +
                                                                                                                                              Echo something to the browser.
                                                                                                                                              + +
                                                                                                                                              + + + + + + +
                                                                                                                                              +

                                                                                                                                              + Properties + + +

                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $allowQuit + + + + +

                                                                                                                                              + + + + + + private + bool + $allowQuit + = true + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $canThrowExceptions + + + + +

                                                                                                                                              + + +

                                                                                                                                              In certain scenarios, like in shutdown handler, we can not throw exceptions.

                                                                                                                                              + + + + private + bool + $canThrowExceptions + = true + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $handlerStack + + + + +

                                                                                                                                              + + + + + + private + array<string|int, HandlerInterface> + $handlerStack + = [] + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $isRegistered + + + + +

                                                                                                                                              + + + + + + private + bool + $isRegistered + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $sendExitCode + + + + +

                                                                                                                                              + + + + + + private + int|false + $sendExitCode + = 1 + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $sendHttpCode + + + + +

                                                                                                                                              + + + + + + private + int|false + $sendHttpCode + = 500 + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $sendOutput + + + + +

                                                                                                                                              + + + + + + private + bool + $sendOutput + = true + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $silencedPatterns + + + + +

                                                                                                                                              + + + + + + private + array<string|int, mixed> + $silencedPatterns + = [] + + + + +
                                                                                                                                              + Tags + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + psalm-var +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              list<array{patterns: string, levels: int}>

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + $system + + + + +

                                                                                                                                              + + + + + + private + SystemFacade + $system + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +

                                                                                                                                              + Methods + + +

                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + __construct() + + +

                                                                                                                                              + + + + + public + __construct([SystemFacade|null $system = null ]) : mixed + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $system + : SystemFacade|null + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + allowQuit() + + +

                                                                                                                                              + + +

                                                                                                                                              Should Whoops allow Handlers to force the script to quit?

                                                                                                                                              + + + public + allowQuit([bool|int $exit = null ]) : bool + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $exit + : bool|int + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + bool +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + appendHandler() + + +

                                                                                                                                              + + +

                                                                                                                                              Explicitly request your handler runs as the last of all currently registered handlers.

                                                                                                                                              + + + public + appendHandler(HandlerInterface $handler) : Run + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $handler + : HandlerInterface +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + clearHandlers() + + +

                                                                                                                                              + + +

                                                                                                                                              Clears all handlers in the handlerStack, including the default PrettyPage handler.

                                                                                                                                              + + + public + clearHandlers() : Run + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getHandlers() + + +

                                                                                                                                              + + +

                                                                                                                                              Returns an array with all handlers, in the order they were added to the stack.

                                                                                                                                              + + + public + getHandlers() : array<string|int, mixed> + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getSilenceErrorsInPaths() + + +

                                                                                                                                              + + +

                                                                                                                                              Returns an array with silent errors in path configuration.

                                                                                                                                              + + + public + getSilenceErrorsInPaths() : array<string|int, mixed> + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + handleError() + + +

                                                                                                                                              + + +

                                                                                                                                              Converts generic PHP errors to \ErrorException instances, before passing them off to be handled.

                                                                                                                                              + + + public + handleError(int $level, string $message[, string|null $file = null ][, int|null $line = null ]) : bool + +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              This method MUST be compatible with set_error_handler.

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $level + : int +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $message + : string +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $file + : string|null + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $line + : int|null + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + throws +
                                                                                                                                              +
                                                                                                                                              + ErrorException + + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + bool +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + handleException() + + +

                                                                                                                                              + + +

                                                                                                                                              Handles an exception, ultimately generating a Whoops error page.

                                                                                                                                              + + + public + handleException(Throwable $exception) : string + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $exception + : Throwable +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + string + — +

                                                                                                                                              Output generated by handlers.

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + handleShutdown() + + +

                                                                                                                                              + + +

                                                                                                                                              Special case to deal with Fatal errors and the like.

                                                                                                                                              + + + public + handleShutdown() : void + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + popHandler() + + +

                                                                                                                                              + + +

                                                                                                                                              Removes and returns the last handler pushed to the handler stack.

                                                                                                                                              + + + public + popHandler() : HandlerInterface|null + +
                                                                                                                                              +
                                                                                                                                              + + + + +
                                                                                                                                              + Tags + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + see +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              Run::removeFirstHandler(), Run::removeLastHandler()

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + HandlerInterface|null +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + prependHandler() + + +

                                                                                                                                              + + +

                                                                                                                                              Explicitly request your handler runs as the first of all currently registered handlers.

                                                                                                                                              + + + public + prependHandler(HandlerInterface $handler) : Run + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $handler + : HandlerInterface +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + pushHandler() + + +

                                                                                                                                              + + +

                                                                                                                                              Register your handler as the last of all currently registered handlers (to be executed first).

                                                                                                                                              + + + public + pushHandler(callable|HandlerInterface $handler) : Run + +
                                                                                                                                              +
                                                                                                                                              + +

                                                                                                                                              Prefer using appendHandler and prependHandler for clarity.

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $handler + : callable|HandlerInterface +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + throws +
                                                                                                                                              +
                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                              If argument is not callable or instance of HandlerInterface.

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + register() + + +

                                                                                                                                              + + +

                                                                                                                                              Registers this instance as an error handler.

                                                                                                                                              + + + public + register() : Run + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + removeFirstHandler() + + +

                                                                                                                                              + + +

                                                                                                                                              Removes the first handler.

                                                                                                                                              + + + public + removeFirstHandler() : void + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + removeLastHandler() + + +

                                                                                                                                              + + +

                                                                                                                                              Removes the last handler.

                                                                                                                                              + + + public + removeLastHandler() : void + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + sendExitCode() + + +

                                                                                                                                              + + +

                                                                                                                                              Should Whoops exit with a specific code on the CLI if possible? +Whoops will exit with 1 by default, but you can specify something else.

                                                                                                                                              + + + public + sendExitCode([int $code = null ]) : int + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $code + : int + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + throws +
                                                                                                                                              +
                                                                                                                                              + InvalidArgumentException + + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + int +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + sendHttpCode() + + +

                                                                                                                                              + + +

                                                                                                                                              Should Whoops send HTTP error code to the browser if possible? +Whoops will by default send HTTP code 500, but you may wish to +use 502, 503, or another 5xx family code.

                                                                                                                                              + + + public + sendHttpCode([bool|int $code = null ]) : int|false + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $code + : bool|int + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              + Tags + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + throws +
                                                                                                                                              +
                                                                                                                                              + InvalidArgumentException + + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + int|false +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + silenceErrorsInPaths() + + +

                                                                                                                                              + + +

                                                                                                                                              Silence particular errors in particular files.

                                                                                                                                              + + + public + silenceErrorsInPaths(array<string|int, mixed>|string $patterns[, int $levels = 10240 ]) : Run + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $patterns + : array<string|int, mixed>|string +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              List or a single regex pattern to match.

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + $levels + : int + = 10240
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Defaults to E_STRICT | E_DEPRECATED.

                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + unregister() + + +

                                                                                                                                              + + +

                                                                                                                                              Unregisters all handlers registered by this Whoops\Run instance.

                                                                                                                                              + + + public + unregister() : Run + +
                                                                                                                                              +
                                                                                                                                              + + + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + writeToOutput() + + +

                                                                                                                                              + + +

                                                                                                                                              Should Whoops push output directly to the client? +If this is false, output will be returned by handleException.

                                                                                                                                              + + + public + writeToOutput([bool|int $send = null ]) : bool + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $send + : bool|int + = null
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + bool +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              + getInspector() + + +

                                                                                                                                              + + + + + private + getInspector(Throwable $exception) : Inspector + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $exception + : Throwable +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Inspector +
                                                                                                                                              + +
                                                                                                                                              + +
                                                                                                                                              +

                                                                                                                                              + writeToOutputNow() + + +

                                                                                                                                              + + +

                                                                                                                                              Echo something to the browser.

                                                                                                                                              + + + private + writeToOutputNow(string $output) : Run + +
                                                                                                                                              +
                                                                                                                                              + + +
                                                                                                                                              Parameters
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + $output + : string +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + + + +
                                                                                                                                              +
                                                                                                                                              Return values
                                                                                                                                              + Run +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              
                                                                                                                                              +        
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              + + + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + +
                                                                                                                                              + On this page + + +
                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Search results

                                                                                                                                              + +
                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-RunInterface.html b/src/public/api/classes/Leaf-Exception-RunInterface.html new file mode 100644 index 00000000..bc475ad4 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-RunInterface.html @@ -0,0 +1,1325 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                +

                                                                                                                                                Leaf PHP

                                                                                                                                                + + + + + +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                +

                                                                                                                                                + RunInterface +
                                                                                                                                                + in + +
                                                                                                                                                +

                                                                                                                                                + + + + + + + + + + + + +

                                                                                                                                                + Table of Contents + + +

                                                                                                                                                + + + + + + + +

                                                                                                                                                + Constants + + +

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + ERROR_HANDLER + +  = "handleError" +
                                                                                                                                                + +
                                                                                                                                                + EXCEPTION_HANDLER + +  = "handleException" +
                                                                                                                                                + +
                                                                                                                                                + SHUTDOWN_HANDLER + +  = "handleShutdown" +
                                                                                                                                                + +
                                                                                                                                                + + + +

                                                                                                                                                + Methods + + +

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + allowQuit() + +  : bool +
                                                                                                                                                +
                                                                                                                                                Should Whoops allow Handlers to force the script to quit?
                                                                                                                                                + +
                                                                                                                                                + clearHandlers() + +  : Run +
                                                                                                                                                +
                                                                                                                                                Clears all handlers in the handlerStack, including +the default PrettyPage handler.
                                                                                                                                                + +
                                                                                                                                                + getHandlers() + +  : array<string|int, mixed> +
                                                                                                                                                +
                                                                                                                                                Returns an array with all handlers, in the +order they were added to the stack.
                                                                                                                                                + +
                                                                                                                                                + handleError() + +  : bool +
                                                                                                                                                +
                                                                                                                                                Converts generic PHP errors to \ErrorException +instances, before passing them off to be handled.
                                                                                                                                                + +
                                                                                                                                                + handleException() + +  : string +
                                                                                                                                                +
                                                                                                                                                Handles an exception, ultimately generating a Whoops error +page.
                                                                                                                                                + +
                                                                                                                                                + handleShutdown() + +  : mixed +
                                                                                                                                                +
                                                                                                                                                Special case to deal with Fatal errors and the like.
                                                                                                                                                + +
                                                                                                                                                + popHandler() + +  : null|HandlerInterface +
                                                                                                                                                +
                                                                                                                                                Removes the last handler in the stack and returns it.
                                                                                                                                                + +
                                                                                                                                                + pushHandler() + +  : Run +
                                                                                                                                                +
                                                                                                                                                Pushes a handler to the end of the stack
                                                                                                                                                + +
                                                                                                                                                + register() + +  : Run +
                                                                                                                                                +
                                                                                                                                                Registers this instance as an error handler.
                                                                                                                                                + +
                                                                                                                                                + sendExitCode() + +  : int +
                                                                                                                                                +
                                                                                                                                                Should Whoops exit with a specific code on the CLI if possible? +Whoops will exit with 1 by default, but you can specify something else.
                                                                                                                                                + +
                                                                                                                                                + sendHttpCode() + +  : int|false +
                                                                                                                                                +
                                                                                                                                                Should Whoops send HTTP error code to the browser if possible? +Whoops will by default send HTTP code 500, but you may wish to +use 502, 503, or another 5xx family code.
                                                                                                                                                + +
                                                                                                                                                + silenceErrorsInPaths() + +  : Run +
                                                                                                                                                +
                                                                                                                                                Silence particular errors in particular files
                                                                                                                                                + +
                                                                                                                                                + unregister() + +  : Run +
                                                                                                                                                +
                                                                                                                                                Unregisters all handlers registered by this Whoops\Run instance
                                                                                                                                                + +
                                                                                                                                                + writeToOutput() + +  : bool +
                                                                                                                                                +
                                                                                                                                                Should Whoops push output directly to the client? +If this is false, output will be returned by handleException
                                                                                                                                                + +
                                                                                                                                                + + + + + +
                                                                                                                                                +

                                                                                                                                                + Constants + + +

                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + ERROR_HANDLER + + +

                                                                                                                                                + + + + + + + public + mixed + ERROR_HANDLER + = "handleError" + + + + + + + + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + EXCEPTION_HANDLER + + +

                                                                                                                                                + + + + + + + public + mixed + EXCEPTION_HANDLER + = "handleException" + + + + + + + + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + SHUTDOWN_HANDLER + + +

                                                                                                                                                + + + + + + + public + mixed + SHUTDOWN_HANDLER + = "handleShutdown" + + + + + + + + + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +

                                                                                                                                                + Methods + + +

                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + allowQuit() + + +

                                                                                                                                                + + +

                                                                                                                                                Should Whoops allow Handlers to force the script to quit?

                                                                                                                                                + + + public + allowQuit([bool|int $exit = null ]) : bool + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $exit + : bool|int + = null
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + bool +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + clearHandlers() + + +

                                                                                                                                                + + +

                                                                                                                                                Clears all handlers in the handlerStack, including +the default PrettyPage handler.

                                                                                                                                                + + + public + clearHandlers() : Run + +
                                                                                                                                                +
                                                                                                                                                + + + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + Run +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + getHandlers() + + +

                                                                                                                                                + + +

                                                                                                                                                Returns an array with all handlers, in the +order they were added to the stack.

                                                                                                                                                + + + public + getHandlers() : array<string|int, mixed> + +
                                                                                                                                                +
                                                                                                                                                + + + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + handleError() + + +

                                                                                                                                                + + +

                                                                                                                                                Converts generic PHP errors to \ErrorException +instances, before passing them off to be handled.

                                                                                                                                                + + + public + handleError(int $level, string $message[, string $file = null ][, int $line = null ]) : bool + +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                This method MUST be compatible with set_error_handler.

                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $level + : int +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $message + : string +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $file + : string + = null
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $line + : int + = null
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                + Tags + + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + throws +
                                                                                                                                                +
                                                                                                                                                + ErrorException + + +
                                                                                                                                                +
                                                                                                                                                + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + bool +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + handleException() + + +

                                                                                                                                                + + +

                                                                                                                                                Handles an exception, ultimately generating a Whoops error +page.

                                                                                                                                                + + + public + handleException(Throwable $exception) : string + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $exception + : Throwable +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + string + — +

                                                                                                                                                Output generated by handlers

                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + handleShutdown() + + +

                                                                                                                                                + + +

                                                                                                                                                Special case to deal with Fatal errors and the like.

                                                                                                                                                + + + public + handleShutdown() : mixed + +
                                                                                                                                                +
                                                                                                                                                + + + + + + + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + popHandler() + + +

                                                                                                                                                + + +

                                                                                                                                                Removes the last handler in the stack and returns it.

                                                                                                                                                + + + public + popHandler() : null|HandlerInterface + +
                                                                                                                                                +
                                                                                                                                                + +

                                                                                                                                                Returns null if there"s nothing else to pop.

                                                                                                                                                +
                                                                                                                                                + + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + null|HandlerInterface +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + pushHandler() + + +

                                                                                                                                                + + +

                                                                                                                                                Pushes a handler to the end of the stack

                                                                                                                                                + + + public + pushHandler(callable|HandlerInterface $handler) : Run + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $handler + : callable|HandlerInterface +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                + Tags + + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + throws +
                                                                                                                                                +
                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                If argument is not callable or instance of HandlerInterface

                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + Run +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + register() + + +

                                                                                                                                                + + +

                                                                                                                                                Registers this instance as an error handler.

                                                                                                                                                + + + public + register() : Run + +
                                                                                                                                                +
                                                                                                                                                + + + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + Run +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + sendExitCode() + + +

                                                                                                                                                + + +

                                                                                                                                                Should Whoops exit with a specific code on the CLI if possible? +Whoops will exit with 1 by default, but you can specify something else.

                                                                                                                                                + + + public + sendExitCode([int $code = null ]) : int + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $code + : int + = null
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + int +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + sendHttpCode() + + +

                                                                                                                                                + + +

                                                                                                                                                Should Whoops send HTTP error code to the browser if possible? +Whoops will by default send HTTP code 500, but you may wish to +use 502, 503, or another 5xx family code.

                                                                                                                                                + + + public + sendHttpCode([bool|int $code = null ]) : int|false + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $code + : bool|int + = null
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + int|false +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + silenceErrorsInPaths() + + +

                                                                                                                                                + + +

                                                                                                                                                Silence particular errors in particular files

                                                                                                                                                + + + public + silenceErrorsInPaths(array<string|int, mixed>|string $patterns[, int $levels = 10240 ]) : Run + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $patterns + : array<string|int, mixed>|string +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                List or a single regex pattern to match

                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + $levels + : int + = 10240
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                Defaults to E_STRICT | E_DEPRECATED

                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + Run +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + unregister() + + +

                                                                                                                                                + + +

                                                                                                                                                Unregisters all handlers registered by this Whoops\Run instance

                                                                                                                                                + + + public + unregister() : Run + +
                                                                                                                                                +
                                                                                                                                                + + + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + Run +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                + writeToOutput() + + +

                                                                                                                                                + + +

                                                                                                                                                Should Whoops push output directly to the client? +If this is false, output will be returned by handleException

                                                                                                                                                + + + public + writeToOutput([bool|int $send = null ]) : bool + +
                                                                                                                                                +
                                                                                                                                                + + +
                                                                                                                                                Parameters
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + $send + : bool|int + = null
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + + + +
                                                                                                                                                +
                                                                                                                                                Return values
                                                                                                                                                + bool +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                
                                                                                                                                                +        
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                + + + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + +
                                                                                                                                                + On this page + + +
                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                Search results

                                                                                                                                                + +
                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + + +
                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Util-HtmlDumperOutput.html b/src/public/api/classes/Leaf-Exception-Util-HtmlDumperOutput.html new file mode 100644 index 00000000..3cc7d69f --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Util-HtmlDumperOutput.html @@ -0,0 +1,600 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                  +

                                                                                                                                                  Leaf PHP

                                                                                                                                                  + + + + + +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + + + + +
                                                                                                                                                  +
                                                                                                                                                  + + +
                                                                                                                                                  +

                                                                                                                                                  + HtmlDumperOutput + + +
                                                                                                                                                  + in package + +
                                                                                                                                                  + + +

                                                                                                                                                  + +
                                                                                                                                                  + + +
                                                                                                                                                  + + + +

                                                                                                                                                  Used as output callable for Symfony\Component\VarDumper\Dumper\HtmlDumper::dump()

                                                                                                                                                  + + + + +
                                                                                                                                                  + Tags + + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + see +
                                                                                                                                                  +
                                                                                                                                                  + TemplateHelper::dump() + + +
                                                                                                                                                  +
                                                                                                                                                  + + + + + +

                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                  + + + + + + + + + +

                                                                                                                                                  + Properties + + +

                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + $output + +  : mixed +
                                                                                                                                                  + +
                                                                                                                                                  + +

                                                                                                                                                  + Methods + + +

                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + __invoke() + +  : mixed +
                                                                                                                                                  + +
                                                                                                                                                  + clear() + +  : mixed +
                                                                                                                                                  + +
                                                                                                                                                  + getOutput() + +  : mixed +
                                                                                                                                                  + +
                                                                                                                                                  + + + + + + +
                                                                                                                                                  +

                                                                                                                                                  + Properties + + +

                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  + $output + + + + +

                                                                                                                                                  + + + + + + private + mixed + $output + + + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +

                                                                                                                                                  + Methods + + +

                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  + __invoke() + + +

                                                                                                                                                  + + + + + public + __invoke(mixed $line, mixed $depth) : mixed + +
                                                                                                                                                  +
                                                                                                                                                  + + +
                                                                                                                                                  Parameters
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + $line + : mixed +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + $depth + : mixed +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  + clear() + + +

                                                                                                                                                  + + + + + public + clear() : mixed + +
                                                                                                                                                  +
                                                                                                                                                  + + + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  + getOutput() + + +

                                                                                                                                                  + + + + + public + getOutput() : mixed + +
                                                                                                                                                  +
                                                                                                                                                  + + + + + + + + +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  
                                                                                                                                                  +        
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  + + + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + +
                                                                                                                                                  + On this page + + +
                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  Search results

                                                                                                                                                  + +
                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + +
                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Util-Misc.html b/src/public/api/classes/Leaf-Exception-Util-Misc.html new file mode 100644 index 00000000..33f321bc --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Util-Misc.html @@ -0,0 +1,634 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                    +

                                                                                                                                                    Leaf PHP

                                                                                                                                                    + + + + + +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + + + + +
                                                                                                                                                    +
                                                                                                                                                    + + +
                                                                                                                                                    +

                                                                                                                                                    + Misc + + +
                                                                                                                                                    + in package + +
                                                                                                                                                    + + +

                                                                                                                                                    + +
                                                                                                                                                    + + +
                                                                                                                                                    + + + + + + + + + + + + +

                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                    + Methods + + +

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + canSendHeaders() + +  : bool +
                                                                                                                                                    +
                                                                                                                                                    Can we at this point in time send HTTP headers?
                                                                                                                                                    + +
                                                                                                                                                    + isAjaxRequest() + +  : mixed +
                                                                                                                                                    + +
                                                                                                                                                    + isCommandLine() + +  : bool +
                                                                                                                                                    +
                                                                                                                                                    Check, if possible, that this execution was triggered by a command line.
                                                                                                                                                    + +
                                                                                                                                                    + isLevelFatal() + +  : bool +
                                                                                                                                                    +
                                                                                                                                                    Determine if an error level is fatal (halts execution)
                                                                                                                                                    + +
                                                                                                                                                    + translateErrorCode() + +  : string +
                                                                                                                                                    +
                                                                                                                                                    Translate ErrorException code into the represented constant.
                                                                                                                                                    + +
                                                                                                                                                    + + + + + + + +
                                                                                                                                                    +

                                                                                                                                                    + Methods + + +

                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + canSendHeaders() + + +

                                                                                                                                                    + + +

                                                                                                                                                    Can we at this point in time send HTTP headers?

                                                                                                                                                    + + + public + static canSendHeaders() : bool + +
                                                                                                                                                    +
                                                                                                                                                    + +

                                                                                                                                                    Currently this checks if we are even serving an HTTP request, +as opposed to running from a command line.

                                                                                                                                                    +

                                                                                                                                                    If we are serving an HTTP request, we check if it's not too late.

                                                                                                                                                    +
                                                                                                                                                    + + + + + + +
                                                                                                                                                    +
                                                                                                                                                    Return values
                                                                                                                                                    + bool +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + isAjaxRequest() + + +

                                                                                                                                                    + + + + + public + static isAjaxRequest() : mixed + +
                                                                                                                                                    +
                                                                                                                                                    + + + + + + + + +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + isCommandLine() + + +

                                                                                                                                                    + + +

                                                                                                                                                    Check, if possible, that this execution was triggered by a command line.

                                                                                                                                                    + + + public + static isCommandLine() : bool + +
                                                                                                                                                    +
                                                                                                                                                    + + + + + + + +
                                                                                                                                                    +
                                                                                                                                                    Return values
                                                                                                                                                    + bool +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + isLevelFatal() + + +

                                                                                                                                                    + + +

                                                                                                                                                    Determine if an error level is fatal (halts execution)

                                                                                                                                                    + + + public + static isLevelFatal(int $level) : bool + +
                                                                                                                                                    +
                                                                                                                                                    + + +
                                                                                                                                                    Parameters
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + $level + : int +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + + + + + +
                                                                                                                                                    +
                                                                                                                                                    Return values
                                                                                                                                                    + bool +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    + translateErrorCode() + + +

                                                                                                                                                    + + +

                                                                                                                                                    Translate ErrorException code into the represented constant.

                                                                                                                                                    + + + public + static translateErrorCode(int $error_code) : string + +
                                                                                                                                                    +
                                                                                                                                                    + + +
                                                                                                                                                    Parameters
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + $error_code + : int +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + + + + + +
                                                                                                                                                    +
                                                                                                                                                    Return values
                                                                                                                                                    + string +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    
                                                                                                                                                    +        
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    + + + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + On this page + + +
                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    Search results

                                                                                                                                                    + +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Util-SystemFacade.html b/src/public/api/classes/Leaf-Exception-Util-SystemFacade.html new file mode 100644 index 00000000..bcc6ca02 --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Util-SystemFacade.html @@ -0,0 +1,1050 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                      +

                                                                                                                                                      Leaf PHP

                                                                                                                                                      + + + + + +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      +

                                                                                                                                                      + SystemFacade + + +
                                                                                                                                                      + in package + +
                                                                                                                                                      + + +

                                                                                                                                                      + +
                                                                                                                                                      + + +
                                                                                                                                                      + + + + + + + + + + + + +

                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                      + Methods + + +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + cleanOutputBuffer() + +  : string|false +
                                                                                                                                                      + +
                                                                                                                                                      + endOutputBuffering() + +  : bool +
                                                                                                                                                      + +
                                                                                                                                                      + flushOutputBuffer() + +  : void +
                                                                                                                                                      + +
                                                                                                                                                      + getErrorReportingLevel() + +  : int +
                                                                                                                                                      + +
                                                                                                                                                      + getLastError() + +  : array<string|int, mixed>|null +
                                                                                                                                                      + +
                                                                                                                                                      + getOutputBufferLevel() + +  : int +
                                                                                                                                                      + +
                                                                                                                                                      + registerShutdownFunction() + +  : void +
                                                                                                                                                      + +
                                                                                                                                                      + restoreErrorHandler() + +  : void +
                                                                                                                                                      + +
                                                                                                                                                      + restoreExceptionHandler() + +  : void +
                                                                                                                                                      + +
                                                                                                                                                      + setErrorHandler() + +  : callable|null +
                                                                                                                                                      + +
                                                                                                                                                      + setExceptionHandler() + +  : callable|null +
                                                                                                                                                      + +
                                                                                                                                                      + setHttpResponseCode() + +  : int +
                                                                                                                                                      + +
                                                                                                                                                      + startOutputBuffering() + +  : bool +
                                                                                                                                                      +
                                                                                                                                                      Turns on output buffering.
                                                                                                                                                      + +
                                                                                                                                                      + stopExecution() + +  : mixed +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +

                                                                                                                                                      + Methods + + +

                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + cleanOutputBuffer() + + +

                                                                                                                                                      + + + + + public + cleanOutputBuffer() : string|false + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + string|false +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + endOutputBuffering() + + +

                                                                                                                                                      + + + + + public + endOutputBuffering() : bool + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + bool +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + flushOutputBuffer() + + +

                                                                                                                                                      + + + + + public + flushOutputBuffer() : void + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + getErrorReportingLevel() + + +

                                                                                                                                                      + + + + + public + getErrorReportingLevel() : int + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + int +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + getLastError() + + +

                                                                                                                                                      + + + + + public + getLastError() : array<string|int, mixed>|null + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + array<string|int, mixed>|null +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + getOutputBufferLevel() + + +

                                                                                                                                                      + + + + + public + getOutputBufferLevel() : int + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + int +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + registerShutdownFunction() + + +

                                                                                                                                                      + + + + + public + registerShutdownFunction(callable $function) : void + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $function + : callable +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + restoreErrorHandler() + + +

                                                                                                                                                      + + + + + public + restoreErrorHandler() : void + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + restoreExceptionHandler() + + +

                                                                                                                                                      + + + + + public + restoreExceptionHandler() : void + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + setErrorHandler() + + +

                                                                                                                                                      + + + + + public + setErrorHandler(callable $handler[, int $types = 'use-php-defaults' ]) : callable|null + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $handler + : callable +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + $types + : int + = 'use-php-defaults'
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + callable|null +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + setExceptionHandler() + + +

                                                                                                                                                      + + + + + public + setExceptionHandler(callable $handler) : callable|null + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $handler + : callable +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + callable|null +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + setHttpResponseCode() + + +

                                                                                                                                                      + + + + + public + setHttpResponseCode(int $httpCode) : int + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $httpCode + : int +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + int +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + startOutputBuffering() + + +

                                                                                                                                                      + + +

                                                                                                                                                      Turns on output buffering.

                                                                                                                                                      + + + public + startOutputBuffering() : bool + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      Return values
                                                                                                                                                      + bool +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + stopExecution() + + +

                                                                                                                                                      + + + + + public + stopExecution(int $exitStatus) : mixed + +
                                                                                                                                                      +
                                                                                                                                                      + + +
                                                                                                                                                      Parameters
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + $exitStatus + : int +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + + + + +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      
                                                                                                                                                      +        
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      + + + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + On this page + + +
                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      Search results

                                                                                                                                                      + +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exception-Util-TemplateHelper.html b/src/public/api/classes/Leaf-Exception-Util-TemplateHelper.html new file mode 100644 index 00000000..b414c27d --- /dev/null +++ b/src/public/api/classes/Leaf-Exception-Util-TemplateHelper.html @@ -0,0 +1,1654 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                        +

                                                                                                                                                        Leaf PHP

                                                                                                                                                        + + + + + +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        +

                                                                                                                                                        + TemplateHelper + + +
                                                                                                                                                        + in package + +
                                                                                                                                                        + + +

                                                                                                                                                        + +
                                                                                                                                                        + + +
                                                                                                                                                        + + + +

                                                                                                                                                        Exposes useful tools for working with/in templates

                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                        + Properties + + +

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $applicationRootPath + +  : string +
                                                                                                                                                        + +
                                                                                                                                                        + $cloner + +  : AbstractCloner +
                                                                                                                                                        + +
                                                                                                                                                        + $htmlDumper + +  : HtmlDumper +
                                                                                                                                                        + +
                                                                                                                                                        + $htmlDumperOutput + +  : HtmlDumperOutput +
                                                                                                                                                        + +
                                                                                                                                                        + $variables + +  : array<string|int, mixed> +
                                                                                                                                                        +
                                                                                                                                                        An array of variables to be passed to all templates
                                                                                                                                                        + +
                                                                                                                                                        + +

                                                                                                                                                        + Methods + + +

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + __construct() + +  : mixed +
                                                                                                                                                        + +
                                                                                                                                                        + breakOnDelimiter() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Makes sure that the given string breaks on the delimiter.
                                                                                                                                                        + +
                                                                                                                                                        + delVariable() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Unsets a single template variable, by its name
                                                                                                                                                        + +
                                                                                                                                                        + dump() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Format the given value into a human readable string.
                                                                                                                                                        + +
                                                                                                                                                        + dumpArgs() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Format the args of the given Frame as a human readable html string
                                                                                                                                                        + +
                                                                                                                                                        + escape() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Escapes a string for output in an HTML document
                                                                                                                                                        + +
                                                                                                                                                        + escapeButPreserveUris() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Escapes a string for output in an HTML document, but preserves +URIs within it, and converts them to clickable anchor elements.
                                                                                                                                                        + +
                                                                                                                                                        + getApplicationRootPath() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Return the application root path.
                                                                                                                                                        + +
                                                                                                                                                        + getCloner() + +  : AbstractCloner +
                                                                                                                                                        +
                                                                                                                                                        Get the cloner used for dumping variables.
                                                                                                                                                        + +
                                                                                                                                                        + getVariable() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Gets a single template variable, by its name, or +$defaultValue if the variable does not exist
                                                                                                                                                        + +
                                                                                                                                                        + getVariables() + +  : array<string|int, mixed> +
                                                                                                                                                        +
                                                                                                                                                        Returns all variables for this helper
                                                                                                                                                        + +
                                                                                                                                                        + render() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Given a template path, render it within its own scope. This +method also accepts an array of additional variables to be +passed to the template.
                                                                                                                                                        + +
                                                                                                                                                        + setApplicationRootPath() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Set the application root path.
                                                                                                                                                        + +
                                                                                                                                                        + setCloner() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Set the cloner used for dumping variables.
                                                                                                                                                        + +
                                                                                                                                                        + setVariable() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Sets a single template variable, by its name:
                                                                                                                                                        + +
                                                                                                                                                        + setVariables() + +  : mixed +
                                                                                                                                                        +
                                                                                                                                                        Sets the variables to be passed to all templates rendered +by this template helper.
                                                                                                                                                        + +
                                                                                                                                                        + shorten() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Replace the part of the path that all files have in common.
                                                                                                                                                        + +
                                                                                                                                                        + slug() + +  : string +
                                                                                                                                                        +
                                                                                                                                                        Convert a string to a slug version of itself
                                                                                                                                                        + +
                                                                                                                                                        + getDumper() + +  : mixed +
                                                                                                                                                        + +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +

                                                                                                                                                        + Properties + + +

                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + $applicationRootPath + + + + +

                                                                                                                                                        + + + + + + private + string + $applicationRootPath + + + + + + + + +
                                                                                                                                                        + + + +
                                                                                                                                                        +

                                                                                                                                                        + $variables + + + + +

                                                                                                                                                        + + +

                                                                                                                                                        An array of variables to be passed to all templates

                                                                                                                                                        + + + + private + array<string|int, mixed> + $variables + = [] + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +

                                                                                                                                                        + Methods + + +

                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + __construct() + + +

                                                                                                                                                        + + + + + public + __construct() : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + breakOnDelimiter() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Makes sure that the given string breaks on the delimiter.

                                                                                                                                                        + + + public + breakOnDelimiter(string $delimiter, string $s) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $delimiter + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + $s + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + delVariable() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Unsets a single template variable, by its name

                                                                                                                                                        + + + public + delVariable(string $variableName) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $variableName + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + dump() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Format the given value into a human readable string.

                                                                                                                                                        + + + public + dump(mixed $value) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $value + : mixed +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + dumpArgs() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Format the args of the given Frame as a human readable html string

                                                                                                                                                        + + + public + dumpArgs(Frame $frame) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $frame + : Frame +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string + — +

                                                                                                                                                        the rendered html

                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + escape() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Escapes a string for output in an HTML document

                                                                                                                                                        + + + public + escape(string $raw) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $raw + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + escapeButPreserveUris() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Escapes a string for output in an HTML document, but preserves +URIs within it, and converts them to clickable anchor elements.

                                                                                                                                                        + + + public + escapeButPreserveUris(string $raw) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $raw + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + getApplicationRootPath() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Return the application root path.

                                                                                                                                                        + + + public + getApplicationRootPath() : string + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        + +
                                                                                                                                                        +

                                                                                                                                                        + getVariable() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Gets a single template variable, by its name, or +$defaultValue if the variable does not exist

                                                                                                                                                        + + + public + getVariable(string $variableName[, mixed $defaultValue = null ]) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $variableName + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + $defaultValue + : mixed + = null
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + getVariables() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Returns all variables for this helper

                                                                                                                                                        + + + public + getVariables() : array<string|int, mixed> + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + render() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Given a template path, render it within its own scope. This +method also accepts an array of additional variables to be +passed to the template.

                                                                                                                                                        + + + public + render(string $template[, array<string|int, mixed> $additionalVariables = null ]) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $template + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + $additionalVariables + : array<string|int, mixed> + = null
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + setApplicationRootPath() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Set the application root path.

                                                                                                                                                        + + + public + setApplicationRootPath(string $applicationRootPath) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $applicationRootPath + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + setCloner() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Set the cloner used for dumping variables.

                                                                                                                                                        + + + public + setCloner(AbstractCloner $cloner) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $cloner + : AbstractCloner +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + setVariable() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Sets a single template variable, by its name:

                                                                                                                                                        + + + public + setVariable(string $variableName, mixed $variableValue) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $variableName + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + $variableValue + : mixed +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + setVariables() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Sets the variables to be passed to all templates rendered +by this template helper.

                                                                                                                                                        + + + public + setVariables(array<string|int, mixed> $variables) : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $variables + : array<string|int, mixed> +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + shorten() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Replace the part of the path that all files have in common.

                                                                                                                                                        + + + public + shorten(string $path) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $path + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + slug() + + +

                                                                                                                                                        + + +

                                                                                                                                                        Convert a string to a slug version of itself

                                                                                                                                                        + + + public + slug(string $original) : string + +
                                                                                                                                                        +
                                                                                                                                                        + + +
                                                                                                                                                        Parameters
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + $original + : string +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + +
                                                                                                                                                        +
                                                                                                                                                        Return values
                                                                                                                                                        + string +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        + getDumper() + + +

                                                                                                                                                        + + + + + private + getDumper() : mixed + +
                                                                                                                                                        +
                                                                                                                                                        + + + + + + + + +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        
                                                                                                                                                        +        
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        + + + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + +
                                                                                                                                                        + On this page + + +
                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        Search results

                                                                                                                                                        + +
                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + + +
                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exceptions-ErrorException.html b/src/public/api/classes/Leaf-Exceptions-ErrorException.html new file mode 100644 index 00000000..b3140eec --- /dev/null +++ b/src/public/api/classes/Leaf-Exceptions-ErrorException.html @@ -0,0 +1,365 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          +

                                                                                                                                                          Leaf PHP

                                                                                                                                                          + + + + + +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          + + + + +
                                                                                                                                                          +
                                                                                                                                                          + + +
                                                                                                                                                          +

                                                                                                                                                          + ErrorException + + + extends ErrorException + + +
                                                                                                                                                          + in package + +
                                                                                                                                                          + + +

                                                                                                                                                          + +
                                                                                                                                                          + + +
                                                                                                                                                          + + + +

                                                                                                                                                          Wraps ErrorException; mostly used for typing (at least now) +to easily cleanup the stack trace of redundant info.

                                                                                                                                                          + + + + + + + + + +

                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                          + + + + + + + + + + + + + + + + + + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          
                                                                                                                                                          +        
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          + + + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          + On this page + +
                                                                                                                                                            +
                                                                                                                                                          • Table Of Contents
                                                                                                                                                          • +
                                                                                                                                                          • +
                                                                                                                                                              +
                                                                                                                                                            +
                                                                                                                                                          • + + +
                                                                                                                                                          +
                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          +

                                                                                                                                                          Search results

                                                                                                                                                          + +
                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exceptions-Formatter.html b/src/public/api/classes/Leaf-Exceptions-Formatter.html new file mode 100644 index 00000000..097c7baa --- /dev/null +++ b/src/public/api/classes/Leaf-Exceptions-Formatter.html @@ -0,0 +1,497 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                            +

                                                                                                                                                            Leaf PHP

                                                                                                                                                            + + + + + +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + + +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            +

                                                                                                                                                            + Formatter + + +
                                                                                                                                                            + in package + +
                                                                                                                                                            + + +

                                                                                                                                                            + +
                                                                                                                                                            + + +
                                                                                                                                                            + + + + + + + + + + + + +

                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                            + Methods + + +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + formatExceptionAsDataArray() + +  : array<string|int, mixed> +
                                                                                                                                                            +
                                                                                                                                                            Returns all basic information about the exception in a simple array +for further convertion to other languages
                                                                                                                                                            + +
                                                                                                                                                            + formatExceptionPlain() + +  : mixed +
                                                                                                                                                            + +
                                                                                                                                                            + + + + + + + +
                                                                                                                                                            +

                                                                                                                                                            + Methods + + +

                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + formatExceptionAsDataArray() + + +

                                                                                                                                                            + + +

                                                                                                                                                            Returns all basic information about the exception in a simple array +for further convertion to other languages

                                                                                                                                                            + + + public + static formatExceptionAsDataArray(Inspector $inspector, bool $shouldAddTrace) : array<string|int, mixed> + +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $inspector + : Inspector +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + $shouldAddTrace + : bool +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + + + +
                                                                                                                                                            +
                                                                                                                                                            Return values
                                                                                                                                                            + array<string|int, mixed> +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            + formatExceptionPlain() + + +

                                                                                                                                                            + + + + + public + static formatExceptionPlain(Inspector $inspector) : mixed + +
                                                                                                                                                            +
                                                                                                                                                            + + +
                                                                                                                                                            Parameters
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + $inspector + : Inspector +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + + + + +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            
                                                                                                                                                            +        
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            + + + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + On this page + + +
                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            Search results

                                                                                                                                                            + +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exceptions-Frame.html b/src/public/api/classes/Leaf-Exceptions-Frame.html new file mode 100644 index 00000000..4d092d9e --- /dev/null +++ b/src/public/api/classes/Leaf-Exceptions-Frame.html @@ -0,0 +1,1482 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                              +

                                                                                                                                                              Leaf PHP

                                                                                                                                                              + + + + + +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              +

                                                                                                                                                              + Frame + + +
                                                                                                                                                              + in package + +
                                                                                                                                                              + + +

                                                                                                                                                              + +
                                                                                                                                                              + + +
                                                                                                                                                              + + + + + + + + + + + + +

                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                              + + + + + + + + + +

                                                                                                                                                              + Properties + + +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $application + +  : bool +
                                                                                                                                                              + +
                                                                                                                                                              + $comments + +  : array<string|int, array<string|int, mixed>> +
                                                                                                                                                              + +
                                                                                                                                                              + $fileContentsCache + +  : string +
                                                                                                                                                              + +
                                                                                                                                                              + $frame + +  : array<string|int, mixed> +
                                                                                                                                                              + +
                                                                                                                                                              + +

                                                                                                                                                              + Methods + + +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + __construct() + +  : mixed +
                                                                                                                                                              + +
                                                                                                                                                              + addComment() + +  : mixed +
                                                                                                                                                              +
                                                                                                                                                              Adds a comment to this frame, that can be received and +used by other handlers. For example, the PrettyPage handler +can attach these comments under the code for each frame.
                                                                                                                                                              + +
                                                                                                                                                              + equals() + +  : bool +
                                                                                                                                                              +
                                                                                                                                                              Compares Frame against one another
                                                                                                                                                              + +
                                                                                                                                                              + getArgs() + +  : array<string|int, mixed> +
                                                                                                                                                              + +
                                                                                                                                                              + getClass() + +  : string|null +
                                                                                                                                                              + +
                                                                                                                                                              + getComments() + +  : array<string|int, array<string|int, mixed>> +
                                                                                                                                                              +
                                                                                                                                                              Returns all comments for this frame. Optionally allows +a filter to only retrieve comments from a specific +context.
                                                                                                                                                              + +
                                                                                                                                                              + getFile() + +  : string|null +
                                                                                                                                                              + +
                                                                                                                                                              + getFileContents() + +  : string|null +
                                                                                                                                                              +
                                                                                                                                                              Returns the full contents of the file for this frame, +if it's known.
                                                                                                                                                              + +
                                                                                                                                                              + getFileLines() + +  : array<string|int, string>|null +
                                                                                                                                                              +
                                                                                                                                                              Returns the contents of the file for this frame as an +array of lines, and optionally as a clamped range of lines.
                                                                                                                                                              + +
                                                                                                                                                              + getFunction() + +  : string|null +
                                                                                                                                                              + +
                                                                                                                                                              + getLine() + +  : int|null +
                                                                                                                                                              + +
                                                                                                                                                              + getRawFrame() + +  : array<string|int, mixed> +
                                                                                                                                                              +
                                                                                                                                                              Returns the array containing the raw frame data from which +this Frame object was built
                                                                                                                                                              + +
                                                                                                                                                              + isApplication() + +  : bool +
                                                                                                                                                              +
                                                                                                                                                              Returns whether this frame belongs to the application or not.
                                                                                                                                                              + +
                                                                                                                                                              + serialize() + +  : string +
                                                                                                                                                              +
                                                                                                                                                              Implements the Serializable interface, with special +steps to also save the existing comments.
                                                                                                                                                              + +
                                                                                                                                                              + setApplication() + +  : mixed +
                                                                                                                                                              +
                                                                                                                                                              Mark as an frame belonging to the application.
                                                                                                                                                              + +
                                                                                                                                                              + unserialize() + +  : mixed +
                                                                                                                                                              +
                                                                                                                                                              Unserializes the frame data, while also preserving +any existing comment data.
                                                                                                                                                              + +
                                                                                                                                                              + + + + + + +
                                                                                                                                                              +

                                                                                                                                                              + Properties + + +

                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + $application + + + + +

                                                                                                                                                              + + + + + + protected + bool + $application + + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + $comments + + + + +

                                                                                                                                                              + + + + + + protected + array<string|int, array<string|int, mixed>> + $comments + = [] + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + $fileContentsCache + + + + +

                                                                                                                                                              + + + + + + protected + string + $fileContentsCache + + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + $frame + + + + +

                                                                                                                                                              + + + + + + protected + array<string|int, mixed> + $frame + + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +

                                                                                                                                                              + Methods + + +

                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + __construct() + + +

                                                                                                                                                              + + + + + public + __construct(array<string|int, mixed> $frame) : mixed + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $frame + : array<string|int, mixed> +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + addComment() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Adds a comment to this frame, that can be received and +used by other handlers. For example, the PrettyPage handler +can attach these comments under the code for each frame.

                                                                                                                                                              + + + public + addComment(string $comment[, string $context = 'global' ]) : mixed + +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              An interesting use for this would be, for example, code analysis +& annotations.

                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $comment + : string +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + $context + : string + = 'global'
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              Optional string identifying the origin of the comment

                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + equals() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Compares Frame against one another

                                                                                                                                                              + + + public + equals(Frame $frame) : bool + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $frame + : Frame +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + bool +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getArgs() + + +

                                                                                                                                                              + + + + + public + getArgs() : array<string|int, mixed> + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getClass() + + +

                                                                                                                                                              + + + + + public + getClass() : string|null + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + string|null +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getComments() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Returns all comments for this frame. Optionally allows +a filter to only retrieve comments from a specific +context.

                                                                                                                                                              + + + public + getComments([string $filter = null ]) : array<string|int, array<string|int, mixed>> + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $filter + : string + = null
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + array<string|int, array<string|int, mixed>> +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getFile() + + +

                                                                                                                                                              + + + + + public + getFile([bool $shortened = false ]) : string|null + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $shortened + : bool + = false
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + string|null +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getFileContents() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Returns the full contents of the file for this frame, +if it's known.

                                                                                                                                                              + + + public + getFileContents() : string|null + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + string|null +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getFileLines() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Returns the contents of the file for this frame as an +array of lines, and optionally as a clamped range of lines.

                                                                                                                                                              + + + public + getFileLines([int $start = 0 ][, int $length = null ]) : array<string|int, string>|null + +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              NOTE: lines are 0-indexed

                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $start + : int + = 0
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + $length + : int + = null
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              + Tags + + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + example +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              Get all lines for this file +$frame->getFileLines(); // => array( 0 => '<?php', 1 => '...', ...)

                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + example +
                                                                                                                                                              +
                                                                                                                                                              + +

                                                                                                                                                              Get one line for this file, starting at line 10 (zero-indexed, remember!) +$frame->getFileLines(9, 1); // array( 9 => '...' )

                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + throws +
                                                                                                                                                              +
                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                              if $length is less than or equal to 0

                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + array<string|int, string>|null +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getFunction() + + +

                                                                                                                                                              + + + + + public + getFunction() : string|null + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + string|null +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getLine() + + +

                                                                                                                                                              + + + + + public + getLine() : int|null + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + int|null +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + getRawFrame() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Returns the array containing the raw frame data from which +this Frame object was built

                                                                                                                                                              + + + public + getRawFrame() : array<string|int, mixed> + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + isApplication() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Returns whether this frame belongs to the application or not.

                                                                                                                                                              + + + public + isApplication() : bool + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + bool +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + serialize() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Implements the Serializable interface, with special +steps to also save the existing comments.

                                                                                                                                                              + + + public + serialize() : string + +
                                                                                                                                                              +
                                                                                                                                                              + + + + +
                                                                                                                                                              + Tags + + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + see +
                                                                                                                                                              +
                                                                                                                                                              + Serializable::serialize + + +
                                                                                                                                                              +
                                                                                                                                                              + + + +
                                                                                                                                                              +
                                                                                                                                                              Return values
                                                                                                                                                              + string +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + setApplication() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Mark as an frame belonging to the application.

                                                                                                                                                              + + + public + setApplication(bool $application) : mixed + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $application + : bool +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + + + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + unserialize() + + +

                                                                                                                                                              + + +

                                                                                                                                                              Unserializes the frame data, while also preserving +any existing comment data.

                                                                                                                                                              + + + public + unserialize(string $serializedFrame) : mixed + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              Parameters
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + $serializedFrame + : string +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              + Tags + + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + see +
                                                                                                                                                              +
                                                                                                                                                              + Serializable::unserialize + + +
                                                                                                                                                              +
                                                                                                                                                              + + + + +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              
                                                                                                                                                              +        
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              + + + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + +
                                                                                                                                                              + On this page + + +
                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              Search results

                                                                                                                                                              + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exceptions-FrameCollection.html b/src/public/api/classes/Leaf-Exceptions-FrameCollection.html new file mode 100644 index 00000000..dc854e3f --- /dev/null +++ b/src/public/api/classes/Leaf-Exceptions-FrameCollection.html @@ -0,0 +1,1374 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                +

                                                                                                                                                                Leaf PHP

                                                                                                                                                                + + + + + +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                +

                                                                                                                                                                + FrameCollection + + +
                                                                                                                                                                + in package + +
                                                                                                                                                                + + + implements + IteratorAggregate, Countable + +

                                                                                                                                                                + +
                                                                                                                                                                + + +
                                                                                                                                                                + + + +

                                                                                                                                                                Exposes a fluent interface for dealing with an ordered list +of stack-trace frames.

                                                                                                                                                                + + + + + + + + + +

                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                + + + +

                                                                                                                                                                + Interfaces + + +

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                IteratorAggregate
                                                                                                                                                                Countable
                                                                                                                                                                + + + + + + +

                                                                                                                                                                + Properties + + +

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $frames + +  : array<string|int, array<string|int, mixed>> +
                                                                                                                                                                + +
                                                                                                                                                                + +

                                                                                                                                                                + Methods + + +

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + __construct() + +  : mixed +
                                                                                                                                                                + +
                                                                                                                                                                + count() + +  : int +
                                                                                                                                                                + +
                                                                                                                                                                + countIsApplication() + +  : int +
                                                                                                                                                                +
                                                                                                                                                                Count the frames that belongs to the application.
                                                                                                                                                                + +
                                                                                                                                                                + filter() + +  : FrameCollection +
                                                                                                                                                                +
                                                                                                                                                                Filters frames using a callable, returns the same FrameCollection
                                                                                                                                                                + +
                                                                                                                                                                + getArray() + +  : array<string|int, mixed> +
                                                                                                                                                                +
                                                                                                                                                                Returns an array with all frames, does not affect +the internal array.
                                                                                                                                                                + +
                                                                                                                                                                + getIterator() + +  : Traversable +
                                                                                                                                                                + +
                                                                                                                                                                + map() + +  : FrameCollection +
                                                                                                                                                                +
                                                                                                                                                                Map the collection of frames
                                                                                                                                                                + +
                                                                                                                                                                + offsetExists() + +  : bool +
                                                                                                                                                                + +
                                                                                                                                                                + offsetGet() + +  : mixed +
                                                                                                                                                                + +
                                                                                                                                                                + offsetSet() + +  : void +
                                                                                                                                                                + +
                                                                                                                                                                + offsetUnset() + +  : void +
                                                                                                                                                                + +
                                                                                                                                                                + prependFrames() + +  : mixed +
                                                                                                                                                                + +
                                                                                                                                                                + serialize() + +  : string +
                                                                                                                                                                + +
                                                                                                                                                                + topDiff() + +  : array<string|int, Frame> +
                                                                                                                                                                +
                                                                                                                                                                Gets the innermost part of stack trace that is not the same as that of outer exception
                                                                                                                                                                + +
                                                                                                                                                                + unserialize() + +  : mixed +
                                                                                                                                                                + +
                                                                                                                                                                + + + + + + +
                                                                                                                                                                +

                                                                                                                                                                + Properties + + +

                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + $frames + + + + +

                                                                                                                                                                + + + + + + private + array<string|int, array<string|int, mixed>> + $frames + + + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +

                                                                                                                                                                + Methods + + +

                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + __construct() + + +

                                                                                                                                                                + + + + + public + __construct(array<string|int, mixed> $frames) : mixed + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $frames + : array<string|int, mixed> +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + count() + + +

                                                                                                                                                                + + + + + public + count() : int + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + Countable::count + + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + int +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + countIsApplication() + + +

                                                                                                                                                                + + +

                                                                                                                                                                Count the frames that belongs to the application.

                                                                                                                                                                + + + public + countIsApplication() : int + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + int +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + filter() + + +

                                                                                                                                                                + + +

                                                                                                                                                                Filters frames using a callable, returns the same FrameCollection

                                                                                                                                                                + + + public + filter(callable $callable) : FrameCollection + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $callable + : callable +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + FrameCollection +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + getArray() + + +

                                                                                                                                                                + + +

                                                                                                                                                                Returns an array with all frames, does not affect +the internal array.

                                                                                                                                                                + + + public + getArray() : array<string|int, mixed> + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + todo +
                                                                                                                                                                +
                                                                                                                                                                + +

                                                                                                                                                                If this gets any more complex than this, +have getIterator use this method.

                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + FrameCollection::getIterator + + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + getIterator() + + +

                                                                                                                                                                + + + + + public + getIterator() : Traversable + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + IteratorAggregate::getIterator + + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + Traversable +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + map() + + +

                                                                                                                                                                + + +

                                                                                                                                                                Map the collection of frames

                                                                                                                                                                + + + public + map(callable $callable) : FrameCollection + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $callable + : callable +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + FrameCollection +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + offsetExists() + + +

                                                                                                                                                                + + + + + public + offsetExists(int $offset) : bool + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $offset + : int +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + ArrayAccess::offsetExists + + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + bool +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + offsetGet() + + +

                                                                                                                                                                + + + + + public + offsetGet(int $offset) : mixed + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $offset + : int +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + ArrayAccess::offsetGet + + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + offsetSet() + + +

                                                                                                                                                                + + + + + public + offsetSet(int $offset, mixed $value) : void + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $offset + : int +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + $value + : mixed +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + ArrayAccess::offsetSet + + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + offsetUnset() + + +

                                                                                                                                                                + + + + + public + offsetUnset(int $offset) : void + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $offset + : int +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + ArrayAccess::offsetUnset + + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + prependFrames() + + +

                                                                                                                                                                + + + + + public + prependFrames(array<string|int, Frame$frames) : mixed + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $frames + : array<string|int, Frame> +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                Array of Frame instances, usually from $e->getPrevious()

                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + serialize() + + +

                                                                                                                                                                + + + + + public + serialize() : string + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + Serializable::serialize + + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + string +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + topDiff() + + +

                                                                                                                                                                + + +

                                                                                                                                                                Gets the innermost part of stack trace that is not the same as that of outer exception

                                                                                                                                                                + + + public + topDiff(FrameCollection $parentFrames) : array<string|int, Frame> + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $parentFrames + : FrameCollection +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                Outer exception frames to compare tail against

                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + + + +
                                                                                                                                                                +
                                                                                                                                                                Return values
                                                                                                                                                                + array<string|int, Frame> +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                + unserialize() + + +

                                                                                                                                                                + + + + + public + unserialize(string $serializedFrames) : mixed + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                Parameters
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + $serializedFrames + : string +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + +
                                                                                                                                                                + Tags + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + see +
                                                                                                                                                                +
                                                                                                                                                                + Serializable::unserialize + + +
                                                                                                                                                                +
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                
                                                                                                                                                                +        
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                + + + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + +
                                                                                                                                                                + On this page + + +
                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                Search results

                                                                                                                                                                + +
                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Exceptions-Inspector.html b/src/public/api/classes/Leaf-Exceptions-Inspector.html new file mode 100644 index 00000000..fb7023db --- /dev/null +++ b/src/public/api/classes/Leaf-Exceptions-Inspector.html @@ -0,0 +1,1390 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                  +

                                                                                                                                                                  Leaf PHP

                                                                                                                                                                  + + + + + +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  +

                                                                                                                                                                  + Inspector + + +
                                                                                                                                                                  + in package + +
                                                                                                                                                                  + + +

                                                                                                                                                                  + +
                                                                                                                                                                  + + +
                                                                                                                                                                  + + + + + + + + + + + + +

                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                  + + + + + + + + + +

                                                                                                                                                                  + Properties + + +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $exception + +  : Throwable +
                                                                                                                                                                  + +
                                                                                                                                                                  + $frames + +  : FrameCollection +
                                                                                                                                                                  + +
                                                                                                                                                                  + $previousExceptionInspector + +  : Inspector +
                                                                                                                                                                  + +
                                                                                                                                                                  + $previousExceptions + +  : array<string|int, Throwable> +
                                                                                                                                                                  + +
                                                                                                                                                                  + +

                                                                                                                                                                  + Methods + + +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + __construct() + +  : mixed +
                                                                                                                                                                  + +
                                                                                                                                                                  + getException() + +  : Throwable +
                                                                                                                                                                  + +
                                                                                                                                                                  + getExceptionDocrefUrl() + +  : string|null +
                                                                                                                                                                  +
                                                                                                                                                                  Returns a url to the php-manual related to the underlying error - when available.
                                                                                                                                                                  + +
                                                                                                                                                                  + getExceptionMessage() + +  : string +
                                                                                                                                                                  + +
                                                                                                                                                                  + getExceptionName() + +  : string +
                                                                                                                                                                  + +
                                                                                                                                                                  + getFrames() + +  : FrameCollection +
                                                                                                                                                                  +
                                                                                                                                                                  Returns an iterator for the inspected exception's +frames.
                                                                                                                                                                  + +
                                                                                                                                                                  + getPreviousExceptionCodes() + +  : array<string|int, int> +
                                                                                                                                                                  + +
                                                                                                                                                                  + getPreviousExceptionInspector() + +  : Inspector +
                                                                                                                                                                  +
                                                                                                                                                                  Returns an Inspector for a previous Exception, if any.
                                                                                                                                                                  + +
                                                                                                                                                                  + getPreviousExceptionMessages() + +  : array<string|int, string> +
                                                                                                                                                                  + +
                                                                                                                                                                  + getPreviousExceptions() + +  : array<string|int, Throwable> +
                                                                                                                                                                  +
                                                                                                                                                                  Returns an array of all previous exceptions for this inspector's exception
                                                                                                                                                                  + +
                                                                                                                                                                  + hasPreviousException() + +  : bool +
                                                                                                                                                                  +
                                                                                                                                                                  Does the wrapped Exception has a previous Exception?
                                                                                                                                                                  + +
                                                                                                                                                                  + getFrameFromError() + +  : array<string|int, mixed> +
                                                                                                                                                                  +
                                                                                                                                                                  Given an error, generates an array in the format +generated by ErrorException
                                                                                                                                                                  + +
                                                                                                                                                                  + getFrameFromException() + +  : array<string|int, mixed> +
                                                                                                                                                                  +
                                                                                                                                                                  Given an exception, generates an array in the format +generated by Exception::getTrace()
                                                                                                                                                                  + +
                                                                                                                                                                  + getTrace() + +  : array<string|int, mixed> +
                                                                                                                                                                  +
                                                                                                                                                                  Gets the backtrace from an exception.
                                                                                                                                                                  + +
                                                                                                                                                                  + isValidNextFrame() + +  : bool +
                                                                                                                                                                  +
                                                                                                                                                                  Determine if the frame can be used to fill in previous frame's missing info +happens for call_user_func and call_user_func_array usages (PHP Bug #44428)
                                                                                                                                                                  + +
                                                                                                                                                                  + extractDocrefUrl() + +  : mixed +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + + +
                                                                                                                                                                  +

                                                                                                                                                                  + Properties + + +

                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + $exception + + + + +

                                                                                                                                                                  + + + + + + private + Throwable + $exception + + + + + + + + +
                                                                                                                                                                  + +
                                                                                                                                                                  +

                                                                                                                                                                  + $previousExceptionInspector + + + + +

                                                                                                                                                                  + + + + + + private + Inspector + $previousExceptionInspector + + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + $previousExceptions + + + + +

                                                                                                                                                                  + + + + + + private + array<string|int, Throwable> + $previousExceptions + + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +

                                                                                                                                                                  + Methods + + +

                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + __construct() + + +

                                                                                                                                                                  + + + + + public + __construct(Throwable $exception) : mixed + +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  Parameters
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $exception + : Throwable +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  The exception to inspect

                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getException() + + +

                                                                                                                                                                  + + + + + public + getException() : Throwable + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + Throwable +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getExceptionDocrefUrl() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Returns a url to the php-manual related to the underlying error - when available.

                                                                                                                                                                  + + + public + getExceptionDocrefUrl() : string|null + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + string|null +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getExceptionMessage() + + +

                                                                                                                                                                  + + + + + public + getExceptionMessage() : string + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + string +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getExceptionName() + + +

                                                                                                                                                                  + + + + + public + getExceptionName() : string + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + string +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getFrames() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Returns an iterator for the inspected exception's +frames.

                                                                                                                                                                  + + + public + getFrames() : FrameCollection + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + FrameCollection +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getPreviousExceptionCodes() + + +

                                                                                                                                                                  + + + + + public + getPreviousExceptionCodes() : array<string|int, int> + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + array<string|int, int> +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getPreviousExceptionInspector() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Returns an Inspector for a previous Exception, if any.

                                                                                                                                                                  + + + public + getPreviousExceptionInspector() : Inspector + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + +
                                                                                                                                                                  + Tags + + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + todo +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  Clean this up a bit, cache stuff a bit better.

                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + Inspector +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getPreviousExceptionMessages() + + +

                                                                                                                                                                  + + + + + public + getPreviousExceptionMessages() : array<string|int, string> + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + array<string|int, string> +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getPreviousExceptions() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Returns an array of all previous exceptions for this inspector's exception

                                                                                                                                                                  + + + public + getPreviousExceptions() : array<string|int, Throwable> + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + array<string|int, Throwable> +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + hasPreviousException() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Does the wrapped Exception has a previous Exception?

                                                                                                                                                                  + + + public + hasPreviousException() : bool + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + bool +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getFrameFromError() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Given an error, generates an array in the format +generated by ErrorException

                                                                                                                                                                  + + + protected + getFrameFromError(ErrorException $exception) : array<string|int, mixed> + +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  Parameters
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $exception + : ErrorException +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getFrameFromException() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Given an exception, generates an array in the format +generated by Exception::getTrace()

                                                                                                                                                                  + + + protected + getFrameFromException(Throwable $exception) : array<string|int, mixed> + +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  Parameters
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $exception + : Throwable +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + getTrace() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Gets the backtrace from an exception.

                                                                                                                                                                  + + + protected + getTrace(Throwable $e) : array<string|int, mixed> + +
                                                                                                                                                                  +
                                                                                                                                                                  + +

                                                                                                                                                                  If xdebug is installed

                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  Parameters
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $e + : Throwable +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + isValidNextFrame() + + +

                                                                                                                                                                  + + +

                                                                                                                                                                  Determine if the frame can be used to fill in previous frame's missing info +happens for call_user_func and call_user_func_array usages (PHP Bug #44428)

                                                                                                                                                                  + + + protected + isValidNextFrame(array<string|int, mixed> $frame) : bool + +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  Parameters
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $frame + : array<string|int, mixed> +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  Return values
                                                                                                                                                                  + bool +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  + extractDocrefUrl() + + +

                                                                                                                                                                  + + + + + private + extractDocrefUrl(mixed $message) : mixed + +
                                                                                                                                                                  +
                                                                                                                                                                  + + +
                                                                                                                                                                  Parameters
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + $message + : mixed +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + + + +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  
                                                                                                                                                                  +        
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  + + + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + On this page + + +
                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  Search results

                                                                                                                                                                  + +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-FS-Directory.html b/src/public/api/classes/Leaf-FS-Directory.html new file mode 100644 index 00000000..b8de18f3 --- /dev/null +++ b/src/public/api/classes/Leaf-FS-Directory.html @@ -0,0 +1,1264 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                    +

                                                                                                                                                                    Leaf PHP

                                                                                                                                                                    + + + + + +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    +

                                                                                                                                                                    + Directory + + +
                                                                                                                                                                    + in package + +
                                                                                                                                                                    + + +

                                                                                                                                                                    + +
                                                                                                                                                                    + + +
                                                                                                                                                                    + + + +

                                                                                                                                                                    Directory operations +---- +This class provides a set of methods for local directory operations

                                                                                                                                                                    + + + + +
                                                                                                                                                                    + Tags + + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + since +
                                                                                                                                                                    +
                                                                                                                                                                    + 3.0.0 + + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                    + + + + + + + + + +

                                                                                                                                                                    + Properties + + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirCreateOptions + +  : mixed +
                                                                                                                                                                    + +
                                                                                                                                                                    + $errorsArray + +  : mixed +
                                                                                                                                                                    + +
                                                                                                                                                                    + +

                                                                                                                                                                    + Methods + + +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + copy() + +  : bool +
                                                                                                                                                                    +
                                                                                                                                                                    Copy a directory
                                                                                                                                                                    + +
                                                                                                                                                                    + create() + +  : bool +
                                                                                                                                                                    +
                                                                                                                                                                    Create a new directory
                                                                                                                                                                    + +
                                                                                                                                                                    + delete() + +  : bool +
                                                                                                                                                                    +
                                                                                                                                                                    Delete a directory
                                                                                                                                                                    + +
                                                                                                                                                                    + dirs() + +  : array<string|int, mixed>|false +
                                                                                                                                                                    +
                                                                                                                                                                    Get all directories in a directory
                                                                                                                                                                    + +
                                                                                                                                                                    + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                    +
                                                                                                                                                                    Return all errors that occurred during dir operations
                                                                                                                                                                    + +
                                                                                                                                                                    + exists() + +  : bool +
                                                                                                                                                                    +
                                                                                                                                                                    Check if a directory exists
                                                                                                                                                                    + +
                                                                                                                                                                    + files() + +  : array<string|int, mixed>|false +
                                                                                                                                                                    +
                                                                                                                                                                    Get all files in a directory
                                                                                                                                                                    + +
                                                                                                                                                                    + info() + +  : array<string|int, mixed>|bool +
                                                                                                                                                                    +
                                                                                                                                                                    Get a summary of the dir information
                                                                                                                                                                    + +
                                                                                                                                                                    + isEmpty() + +  : bool +
                                                                                                                                                                    +
                                                                                                                                                                    Check if a directory is empty
                                                                                                                                                                    + +
                                                                                                                                                                    + move() + +  : bool +
                                                                                                                                                                    +
                                                                                                                                                                    Move a directory to a new location
                                                                                                                                                                    + +
                                                                                                                                                                    + read() + +  : array<string|int, mixed>|false +
                                                                                                                                                                    +
                                                                                                                                                                    List all files and folders in a directory
                                                                                                                                                                    + +
                                                                                                                                                                    + size() + +  : number +
                                                                                                                                                                    +
                                                                                                                                                                    Get the total size of a directory
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + + +
                                                                                                                                                                    +

                                                                                                                                                                    + Properties + + +

                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + $dirCreateOptions + + + + +

                                                                                                                                                                    + + + + + + protected + static mixed + $dirCreateOptions + = ['mode' => 0777, 'rename' => false, 'recursive' => false, 'overwrite' => false] + + + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + $errorsArray + + + + +

                                                                                                                                                                    + + + + + + protected + static mixed + $errorsArray + = [] + + + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +

                                                                                                                                                                    + Methods + + +

                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + copy() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Copy a directory

                                                                                                                                                                    + + + public + static copy(string $source, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $source + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the dir to copy

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $destination + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path to copy the dir to

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $options + : array<string|int, mixed> + = []
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    Options for copying the dir

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + create() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Create a new directory

                                                                                                                                                                    + + + public + static create(string $dirPath[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the new directory

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $options + : array<string|int, mixed> + = []
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    Options for creating the directory

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + delete() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Delete a directory

                                                                                                                                                                    + + + public + static delete(string $dirPath[, mixed $options = [] ]) : bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the directory to delete

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $options + : mixed + = []
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + dirs() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Get all directories in a directory

                                                                                                                                                                    + + + public + static dirs(string $dirPath) : array<string|int, mixed>|false + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the dir to get the directories from

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + array<string|int, mixed>|false +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + errors() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Return all errors that occurred during dir operations

                                                                                                                                                                    + + + public + static errors() : array<string|int, mixed> + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + array<string|int, mixed> +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + exists() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Check if a directory exists

                                                                                                                                                                    + + + public + static exists(mixed $filePath) : bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $filePath + : mixed +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + files() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Get all files in a directory

                                                                                                                                                                    + + + public + static files(string $dirPath) : array<string|int, mixed>|false + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the dir to get the files from

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + array<string|int, mixed>|false +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + info() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Get a summary of the dir information

                                                                                                                                                                    + + + public + static info(string $dirPath) : array<string|int, mixed>|bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the dir to get the summary of

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + array<string|int, mixed>|bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + isEmpty() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Check if a directory is empty

                                                                                                                                                                    + + + public + static isEmpty(string $dirPath) : bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the directory to check

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + move() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Move a directory to a new location

                                                                                                                                                                    + + + public + static move(string $source, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $source + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the dir to move

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $destination + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path to move the dir to

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $options + : array<string|int, mixed> + = []
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    Options for moving the dir

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + bool +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + read() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    List all files and folders in a directory

                                                                                                                                                                    + + + public + static read(string $dirPath[, string|callable|null $pattern = null ]) : array<string|int, mixed>|false + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $pattern + : string|callable|null + = null
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + array<string|int, mixed>|false +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    + size() + + +

                                                                                                                                                                    + + +

                                                                                                                                                                    Get the total size of a directory

                                                                                                                                                                    + + + public + static size(string $dirPath[, string $unit = 'byte' ]) : number + +
                                                                                                                                                                    +
                                                                                                                                                                    + + +
                                                                                                                                                                    Parameters
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + $dirPath + : string +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The path of the directory to get the size of

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + $unit + : string + = 'byte'
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    The unit to return the size in

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    +
                                                                                                                                                                    Return values
                                                                                                                                                                    + number +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    
                                                                                                                                                                    +        
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + On this page + + +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    Search results

                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-FS-File.html b/src/public/api/classes/Leaf-FS-File.html new file mode 100644 index 00000000..4d355f8f --- /dev/null +++ b/src/public/api/classes/Leaf-FS-File.html @@ -0,0 +1,1531 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                      +

                                                                                                                                                                      Leaf PHP

                                                                                                                                                                      + + + + + +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      +

                                                                                                                                                                      + File + + +
                                                                                                                                                                      + in package + +
                                                                                                                                                                      + + +

                                                                                                                                                                      + +
                                                                                                                                                                      + + +
                                                                                                                                                                      + + + +

                                                                                                                                                                      File operations +---- +This class provides a set of methods for local file operations

                                                                                                                                                                      + + + + +
                                                                                                                                                                      + Tags + + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + since +
                                                                                                                                                                      +
                                                                                                                                                                      + 3.0.0 + + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                      + + + + + + + + + +

                                                                                                                                                                      + Properties + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $errorsArray + +  : mixed +
                                                                                                                                                                      + +
                                                                                                                                                                      + $fileCreateOptions + +  : mixed +
                                                                                                                                                                      + +
                                                                                                                                                                      + +

                                                                                                                                                                      + Methods + + +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + copy() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Copy a file
                                                                                                                                                                      + +
                                                                                                                                                                      + create() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Create a new file
                                                                                                                                                                      + +
                                                                                                                                                                      + delete() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Delete a file
                                                                                                                                                                      + +
                                                                                                                                                                      + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                      +
                                                                                                                                                                      Return all errors that occured during file operations
                                                                                                                                                                      + +
                                                                                                                                                                      + exists() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Check if a file exists
                                                                                                                                                                      + +
                                                                                                                                                                      + info() + +  : array<string|int, mixed>|bool +
                                                                                                                                                                      +
                                                                                                                                                                      Get a summary of the file information
                                                                                                                                                                      + +
                                                                                                                                                                      + isEmpty() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Check if a file is empty
                                                                                                                                                                      + +
                                                                                                                                                                      + lastModified() + +  : string +
                                                                                                                                                                      +
                                                                                                                                                                      Get the last modified date of a file
                                                                                                                                                                      + +
                                                                                                                                                                      + mimeType() + +  : string +
                                                                                                                                                                      +
                                                                                                                                                                      Get the mime type of a file
                                                                                                                                                                      + +
                                                                                                                                                                      + move() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Move a file
                                                                                                                                                                      + +
                                                                                                                                                                      + read() + +  : mixed +
                                                                                                                                                                      +
                                                                                                                                                                      Read the content of a file
                                                                                                                                                                      + +
                                                                                                                                                                      + size() + +  : number +
                                                                                                                                                                      +
                                                                                                                                                                      Get the size of a file
                                                                                                                                                                      + +
                                                                                                                                                                      + systemType() + +  : string +
                                                                                                                                                                      +
                                                                                                                                                                      Get the system file type of a file
                                                                                                                                                                      + +
                                                                                                                                                                      + type() + +  : string +
                                                                                                                                                                      +
                                                                                                                                                                      Get the human readable file type of a file
                                                                                                                                                                      + +
                                                                                                                                                                      + upload() + +  : array<string|int, mixed>|bool +
                                                                                                                                                                      +
                                                                                                                                                                      Upload a file
                                                                                                                                                                      + +
                                                                                                                                                                      + write() + +  : bool +
                                                                                                                                                                      +
                                                                                                                                                                      Write content to an existing file
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + + +
                                                                                                                                                                      +

                                                                                                                                                                      + Properties + + +

                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + $errorsArray + + + + +

                                                                                                                                                                      + + + + + + protected + static mixed + $errorsArray + = [] + + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + $fileCreateOptions + + + + +

                                                                                                                                                                      + + + + + + protected + static mixed + $fileCreateOptions + = ['mode' => 0777, 'rename' => false, 'recursive' => false, 'overwrite' => false] + + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +

                                                                                                                                                                      + Methods + + +

                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + copy() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Copy a file

                                                                                                                                                                      + + + public + static copy(string $source, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $source + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to copy

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $destination + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path to copy the file to

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      Options for copying the file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + create() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Create a new file

                                                                                                                                                                      + + + public + static create(string $filePath[, mixed $content = null ][, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the new file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $content + : mixed + = null
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The content of the new file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      Options for creating the file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + delete() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Delete a file

                                                                                                                                                                      + + + public + static delete(string $filePath) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to delete

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + errors() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Return all errors that occured during file operations

                                                                                                                                                                      + + + public + static errors() : array<string|int, mixed> + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + exists() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Check if a file exists

                                                                                                                                                                      + + + public + static exists(string $filePath) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to check

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + info() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Get a summary of the file information

                                                                                                                                                                      + + + public + static info(string $filePath) : array<string|int, mixed>|bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to get the summary of

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + array<string|int, mixed>|bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + isEmpty() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Check if a file is empty

                                                                                                                                                                      + + + public + static isEmpty(string $filePath) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to check

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + lastModified() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Get the last modified date of a file

                                                                                                                                                                      + + + public + static lastModified(string $filePath) : string + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to get the last modified date of

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + string +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + mimeType() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Get the mime type of a file

                                                                                                                                                                      + + + public + static mimeType(string $filePath) : string + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to get the mime type of

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + string +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + move() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Move a file

                                                                                                                                                                      + + + public + static move(string $source, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $source + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to move

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $destination + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path to move the file to

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      Options for moving the file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + read() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Read the content of a file

                                                                                                                                                                      + + + public + static read(string $filePath) : mixed + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to read

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + size() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Get the size of a file

                                                                                                                                                                      + + + public + static size(string $filePath[, string $unit = 'byte' ]) : number + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to get the size of

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $unit + : string + = 'byte'
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The unit to return the size in

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + number +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + systemType() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Get the system file type of a file

                                                                                                                                                                      + + + public + static systemType(string $filePath) : string + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to get the type of

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + string +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + type() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Get the human readable file type of a file

                                                                                                                                                                      + + + public + static type(string $filePath) : string + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to get the type of

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + string +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + upload() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Upload a file

                                                                                                                                                                      + + + public + static upload(mixed $file, string $destination[, array<string|int, mixed> $options = [] ]) : array<string|int, mixed>|bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $file + : mixed +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to upload

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $destination + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path to upload the file to

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      Options for uploading the file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + array<string|int, mixed>|bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      + write() + + +

                                                                                                                                                                      + + +

                                                                                                                                                                      Write content to an existing file

                                                                                                                                                                      + + + public + static write(string $filePath, mixed $content[, int $mode = 0 ]) : bool + +
                                                                                                                                                                      +
                                                                                                                                                                      + + +
                                                                                                                                                                      Parameters
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + $filePath + : string +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The path of the file to write to

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $content + : mixed +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The content to write to the file

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + $mode + : int + = 0
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      The mode to write the file in

                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      +
                                                                                                                                                                      Return values
                                                                                                                                                                      + bool +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      
                                                                                                                                                                      +        
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      + + + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + On this page + + +
                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      Search results

                                                                                                                                                                      + +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + +
                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-FS-Path.html b/src/public/api/classes/Leaf-FS-Path.html new file mode 100644 index 00000000..1c7977b4 --- /dev/null +++ b/src/public/api/classes/Leaf-FS-Path.html @@ -0,0 +1,739 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                        +

                                                                                                                                                                        Leaf PHP

                                                                                                                                                                        + + + + + +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        + + +
                                                                                                                                                                        +

                                                                                                                                                                        + Path + + +
                                                                                                                                                                        + in package + +
                                                                                                                                                                        + + +

                                                                                                                                                                        + +
                                                                                                                                                                        + + +
                                                                                                                                                                        + + + + + + + + + + + + +

                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                        + Properties + + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + $pathToParse + +  : string +
                                                                                                                                                                        + +
                                                                                                                                                                        + +

                                                                                                                                                                        + Methods + + +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + __construct() + +  : mixed +
                                                                                                                                                                        + +
                                                                                                                                                                        + basename() + +  : string +
                                                                                                                                                                        +
                                                                                                                                                                        Return the last part of the path
                                                                                                                                                                        + +
                                                                                                                                                                        + dirname() + +  : string +
                                                                                                                                                                        +
                                                                                                                                                                        Return the parent directory of the path
                                                                                                                                                                        + +
                                                                                                                                                                        + extension() + +  : string +
                                                                                                                                                                        +
                                                                                                                                                                        Return the extension of the path
                                                                                                                                                                        + +
                                                                                                                                                                        + join() + +  : string +
                                                                                                                                                                        +
                                                                                                                                                                        Join multiple path parts using the correct directory separator
                                                                                                                                                                        + +
                                                                                                                                                                        + normalize() + +  : string +
                                                                                                                                                                        +
                                                                                                                                                                        Fix the path to use the correct directory separator
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + + +
                                                                                                                                                                        +

                                                                                                                                                                        + Properties + + +

                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + $pathToParse + + + + +

                                                                                                                                                                        + + + + + + public + string + $pathToParse + + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +

                                                                                                                                                                        + Methods + + +

                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + __construct() + + +

                                                                                                                                                                        + + + + + public + __construct(mixed $path) : mixed + +
                                                                                                                                                                        +
                                                                                                                                                                        + + +
                                                                                                                                                                        Parameters
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + $path + : mixed +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + basename() + + +

                                                                                                                                                                        + + +

                                                                                                                                                                        Return the last part of the path

                                                                                                                                                                        + + + public + basename() : string + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        Return values
                                                                                                                                                                        + string +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + dirname() + + +

                                                                                                                                                                        + + +

                                                                                                                                                                        Return the parent directory of the path

                                                                                                                                                                        + + + public + dirname() : string + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        Return values
                                                                                                                                                                        + string +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + extension() + + +

                                                                                                                                                                        + + +

                                                                                                                                                                        Return the extension of the path

                                                                                                                                                                        + + + public + extension() : string + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        Return values
                                                                                                                                                                        + string +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + join() + + +

                                                                                                                                                                        + + +

                                                                                                                                                                        Join multiple path parts using the correct directory separator

                                                                                                                                                                        + + + public + join(array<string|int, mixed> ...$paths) : string + +
                                                                                                                                                                        +
                                                                                                                                                                        + + +
                                                                                                                                                                        Parameters
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + $paths + : array<string|int, mixed> +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        Return values
                                                                                                                                                                        + string +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        + normalize() + + +

                                                                                                                                                                        + + +

                                                                                                                                                                        Fix the path to use the correct directory separator

                                                                                                                                                                        + + + public + normalize() : string + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                        +
                                                                                                                                                                        Return values
                                                                                                                                                                        + string +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        
                                                                                                                                                                        +        
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        + + + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + On this page + + +
                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        Search results

                                                                                                                                                                        + +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-FS-Storage.html b/src/public/api/classes/Leaf-FS-Storage.html new file mode 100644 index 00000000..86d9956f --- /dev/null +++ b/src/public/api/classes/Leaf-FS-Storage.html @@ -0,0 +1,1961 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                          +

                                                                                                                                                                          Leaf PHP

                                                                                                                                                                          + + + + + +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          +

                                                                                                                                                                          + Storage + + +
                                                                                                                                                                          + in package + +
                                                                                                                                                                          + + +

                                                                                                                                                                          + +
                                                                                                                                                                          + + +
                                                                                                                                                                          + + + + + + + + + + + + +

                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                          + + + + + + + + + +

                                                                                                                                                                          + Properties + + +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $errorsArray + +  : mixed +
                                                                                                                                                                          + +
                                                                                                                                                                          + +

                                                                                                                                                                          + Methods + + +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + basename() + +  : string +
                                                                                                                                                                          +
                                                                                                                                                                          Return the last part of the path
                                                                                                                                                                          + +
                                                                                                                                                                          + chmod() + +  : mixed +
                                                                                                                                                                          +
                                                                                                                                                                          Get or set UNIX mode of a file or directory.
                                                                                                                                                                          + +
                                                                                                                                                                          + copy() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Copy a file or directory
                                                                                                                                                                          + +
                                                                                                                                                                          + createFile() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Create a new file
                                                                                                                                                                          + +
                                                                                                                                                                          + createFolder() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Create a new directory
                                                                                                                                                                          + +
                                                                                                                                                                          + delete() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Delete a file or directory
                                                                                                                                                                          + +
                                                                                                                                                                          + dirname() + +  : string +
                                                                                                                                                                          +
                                                                                                                                                                          Return the parent directory of the path
                                                                                                                                                                          + +
                                                                                                                                                                          + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                          +
                                                                                                                                                                          Return all errors that occurred
                                                                                                                                                                          + +
                                                                                                                                                                          + exists() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Check if a file/directory exists
                                                                                                                                                                          + +
                                                                                                                                                                          + extension() + +  : string +
                                                                                                                                                                          +
                                                                                                                                                                          Return the extension of the file
                                                                                                                                                                          + +
                                                                                                                                                                          + info() + +  : array<string|int, mixed>|bool +
                                                                                                                                                                          +
                                                                                                                                                                          Get a summary of the file/directory information
                                                                                                                                                                          + +
                                                                                                                                                                          + isDir() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Check if a path is a directory
                                                                                                                                                                          + +
                                                                                                                                                                          + isEmpty() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Check if a file or directory is empty
                                                                                                                                                                          + +
                                                                                                                                                                          + isFile() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Check if a path is a file
                                                                                                                                                                          + +
                                                                                                                                                                          + lastModified() + +  : string +
                                                                                                                                                                          +
                                                                                                                                                                          Get the last modified date of a file
                                                                                                                                                                          + +
                                                                                                                                                                          + link() + +  : string|bool +
                                                                                                                                                                          +
                                                                                                                                                                          Create a symlink to the target file or directory. On Windows, a hard link is created if the target is a file.
                                                                                                                                                                          + +
                                                                                                                                                                          + list() + +  : mixed +
                                                                                                                                                                          + +
                                                                                                                                                                          + move() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Move a file or directory
                                                                                                                                                                          + +
                                                                                                                                                                          + read() + +  : mixed +
                                                                                                                                                                          +
                                                                                                                                                                          Read the content of a file
                                                                                                                                                                          + +
                                                                                                                                                                          + rename() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Rename a file or directory
                                                                                                                                                                          + +
                                                                                                                                                                          + size() + +  : number +
                                                                                                                                                                          +
                                                                                                                                                                          Get the size of a file/folder
                                                                                                                                                                          + +
                                                                                                                                                                          + type() + +  : string +
                                                                                                                                                                          +
                                                                                                                                                                          Get the human readable file type of a file
                                                                                                                                                                          + +
                                                                                                                                                                          + upload() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Upload a file
                                                                                                                                                                          + +
                                                                                                                                                                          + writeFile() + +  : bool +
                                                                                                                                                                          +
                                                                                                                                                                          Write content to a file
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + + +
                                                                                                                                                                          +

                                                                                                                                                                          + Properties + + +

                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + $errorsArray + + + + +

                                                                                                                                                                          + + + + + + protected + static mixed + $errorsArray + = [] + + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +

                                                                                                                                                                          + Methods + + +

                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + basename() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Return the last part of the path

                                                                                                                                                                          + + + public + static basename(string $filePath) : string + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to get the basename of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + string +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + chmod() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Get or set UNIX mode of a file or directory.

                                                                                                                                                                          + + + public + static chmod(string $path[, int|null $mode = null ]) : mixed + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $path + : string +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $mode + : int|null + = null
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + copy() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Copy a file or directory

                                                                                                                                                                          + + + public + static copy(string $source, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $source + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file or directory to copy

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $destination + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path to copy the file or directory to

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $options + : array<string|int, mixed> + = []
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Options for copying the file or directory

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + createFile() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Create a new file

                                                                                                                                                                          + + + public + static createFile(string $filePath[, mixed $content = null ][, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the new file

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $content + : mixed + = null
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The content of the new file

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $options + : array<string|int, mixed> + = []
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Options for creating the file

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + createFolder() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Create a new directory

                                                                                                                                                                          + + + public + static createFolder(string $dirPath[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $dirPath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the new directory

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $options + : array<string|int, mixed> + = []
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Options for creating the directory

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + delete() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Delete a file or directory

                                                                                                                                                                          + + + public + static delete(string $source) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $source + : string +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + dirname() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Return the parent directory of the path

                                                                                                                                                                          + + + public + static dirname(string $filePath) : string + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to get the dirname of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + string +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + errors() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Return all errors that occurred

                                                                                                                                                                          + + + public + static errors() : array<string|int, mixed> + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + exists() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Check if a file/directory exists

                                                                                                                                                                          + + + public + static exists(string $filePath) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file/directory to check

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + extension() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Return the extension of the file

                                                                                                                                                                          + + + public + static extension(string $filePath) : string + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to get the extension of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + string +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + info() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Get a summary of the file/directory information

                                                                                                                                                                          + + + public + static info(string $filePath) : array<string|int, mixed>|bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file/directory to get the summary of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + array<string|int, mixed>|bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + isDir() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Check if a path is a directory

                                                                                                                                                                          + + + public + static isDir(string $dirPath) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $dirPath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to check

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + isEmpty() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Check if a file or directory is empty

                                                                                                                                                                          + + + public + static isEmpty(string $path) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $path + : string +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + isFile() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Check if a path is a file

                                                                                                                                                                          + + + public + static isFile(string $filePath) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to check

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + lastModified() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Get the last modified date of a file

                                                                                                                                                                          + + + public + static lastModified(string $filePath) : string + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to get the last modified date of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + string +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + +

                                                                                                                                                                          Create a symlink to the target file or directory. On Windows, a hard link is created if the target is a file.

                                                                                                                                                                          + + + public + static link(string $target, string $link) : string|bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $target + : string +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $link + : string +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + string|bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + list() + + +

                                                                                                                                                                          + + + + + public + static list(string $dirPath[, mixed $filter = null ]) : mixed + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $dirPath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $filter + : mixed + = null
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + move() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Move a file or directory

                                                                                                                                                                          + + + public + static move(string $source, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $source + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file or directory to move

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $destination + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path to move the file or directory to

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $options + : array<string|int, mixed> + = []
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Options for moving the file or directory

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + read() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Read the content of a file

                                                                                                                                                                          + + + public + static read(string $filePath) : mixed + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to read

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + rename() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Rename a file or directory

                                                                                                                                                                          + + + public + static rename(string $name, string $newName) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $name + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file/directory to rename

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $newName + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path to rename the file/directory to

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + size() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Get the size of a file/folder

                                                                                                                                                                          + + + public + static size(string $filePath[, string $unit = 'byte' ]) : number + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file/folder to get the size of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $unit + : string + = 'byte'
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The unit to return the size in

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + number +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + type() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Get the human readable file type of a file

                                                                                                                                                                          + + + public + static type(string $filePath) : string + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to get the type of

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + string +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + upload() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Upload a file

                                                                                                                                                                          + + + public + static upload(mixed $filePath, string $destination[, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : mixed +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to upload

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $destination + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path to upload the file to

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $options + : array<string|int, mixed> + = []
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Options for uploading the file

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          + writeFile() + + +

                                                                                                                                                                          + + +

                                                                                                                                                                          Write content to a file

                                                                                                                                                                          + + + public + static writeFile(string $filePath, mixed $content[, int $mode = 0 ]) : bool + +
                                                                                                                                                                          +
                                                                                                                                                                          + + +
                                                                                                                                                                          Parameters
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + $filePath + : string +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The path of the file to write to

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $content + : mixed +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The content to write to the file

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + $mode + : int + = 0
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          The mode to write the file in

                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          +
                                                                                                                                                                          Return values
                                                                                                                                                                          + bool +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          
                                                                                                                                                                          +        
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          + + + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + On this page + + +
                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Search results

                                                                                                                                                                          + +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Fetch.html b/src/public/api/classes/Leaf-Fetch.html new file mode 100644 index 00000000..35fdc73a --- /dev/null +++ b/src/public/api/classes/Leaf-Fetch.html @@ -0,0 +1,1820 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                            +

                                                                                                                                                                            Leaf PHP

                                                                                                                                                                            + + + + + +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            +

                                                                                                                                                                            + Fetch + + +
                                                                                                                                                                            + in package + +
                                                                                                                                                                            + + +

                                                                                                                                                                            + +
                                                                                                                                                                            + + +
                                                                                                                                                                            + + + +

                                                                                                                                                                            Leaf Fetch +--------- +Plain simple PHP http client.

                                                                                                                                                                            + + + + + + + + + +

                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                            + + + + + + + +

                                                                                                                                                                            + Constants + + +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + DELETE + +  = 'DELETE' +
                                                                                                                                                                            + +
                                                                                                                                                                            + GET + +  = 'GET' +
                                                                                                                                                                            + +
                                                                                                                                                                            + HEAD + +  = 'HEAD' +
                                                                                                                                                                            + +
                                                                                                                                                                            + OPTIONS + +  = 'OPTIONS' +
                                                                                                                                                                            + +
                                                                                                                                                                            + OVERRIDE + +  = '_METHOD' +
                                                                                                                                                                            + +
                                                                                                                                                                            + PATCH + +  = 'PATCH' +
                                                                                                                                                                            + +
                                                                                                                                                                            + POST + +  = 'POST' +
                                                                                                                                                                            + +
                                                                                                                                                                            + PUT + +  = 'PUT' +
                                                                                                                                                                            + +
                                                                                                                                                                            + + +

                                                                                                                                                                            + Properties + + +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $options + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Default fetch options
                                                                                                                                                                            + +
                                                                                                                                                                            + $handler + +  : mixed +
                                                                                                                                                                            + +
                                                                                                                                                                            + +

                                                                                                                                                                            + Methods + + +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + baseUrl() + +  : mixed +
                                                                                                                                                                            + +
                                                                                                                                                                            + buildHTTPCurlQuery() + +  : array<string|int, mixed> +
                                                                                                                                                                            +
                                                                                                                                                                            This function is useful for serializing multidimensional arrays, and avoid getting +the 'Array to string conversion' notice
                                                                                                                                                                            + +
                                                                                                                                                                            + delete() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Make a delete request
                                                                                                                                                                            + +
                                                                                                                                                                            + get() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Make a get request
                                                                                                                                                                            + +
                                                                                                                                                                            + getInfo() + +  : mixed +
                                                                                                                                                                            + +
                                                                                                                                                                            + options() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Make an options request
                                                                                                                                                                            + +
                                                                                                                                                                            + patch() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Make a patch request
                                                                                                                                                                            + +
                                                                                                                                                                            + post() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Make a post request
                                                                                                                                                                            + +
                                                                                                                                                                            + put() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Make a put request
                                                                                                                                                                            + +
                                                                                                                                                                            + request() + +  : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            Base method for network requests
                                                                                                                                                                            + +
                                                                                                                                                                            + call() + +  : mixed +
                                                                                                                                                                            + +
                                                                                                                                                                            + parseHeaders() + +  : array<string|int, mixed> +
                                                                                                                                                                            +
                                                                                                                                                                            if PECL_HTTP is not available use a fall back function
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +

                                                                                                                                                                            + Constants + + +

                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + DELETE + + +

                                                                                                                                                                            + + + + + + + public + mixed + DELETE + = 'DELETE' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + GET + + +

                                                                                                                                                                            + + + + + + + public + mixed + GET + = 'GET' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + HEAD + + +

                                                                                                                                                                            + + + + + + + public + mixed + HEAD + = 'HEAD' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + OPTIONS + + +

                                                                                                                                                                            + + + + + + + public + mixed + OPTIONS + = 'OPTIONS' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + OVERRIDE + + +

                                                                                                                                                                            + + + + + + + public + mixed + OVERRIDE + = '_METHOD' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + PATCH + + +

                                                                                                                                                                            + + + + + + + public + mixed + PATCH + = 'PATCH' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + POST + + +

                                                                                                                                                                            + + + + + + + public + mixed + POST + = 'POST' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + PUT + + +

                                                                                                                                                                            + + + + + + + public + mixed + PUT + = 'PUT' + + + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            +

                                                                                                                                                                            + Properties + + +

                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + $options + + + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Default fetch options

                                                                                                                                                                            + + + + protected + static mixed + $options + = [ + // `url` is the server URL that will be used for the request + "url" => null, + // `method` is the request method to be used when making the request + "method" => "GET", + // default + // `baseURL` will be prepended to `url` unless `url` is absolute. + // It can be convenient to set `baseURL` for an instance of axios to pass relative URLs + // to methods of that instance. + "baseUrl" => "", + // `transformRequest` allows changes to the request data before it is sent to the server + // This is only applicable for request methods 'PUT', 'POST', 'PATCH' and 'DELETE' + // The last function in the array must return a string or an instance of Buffer, ArrayBuffer, + // FormData or Stream + // You may modify the headers object. + // "transformRequest" => function ($data, $headers) { + // // Do whatever you want to transform the data + // return $data; + // }, + // `transformResponse` allows changes to the response data to be made before + // it is passed to then/catch + // "transformResponse" => function ($data) { + // // Do whatever you want to transform the data + // return $data; + // }, + // `headers` are custom headers to be sent + "headers" => [], + // `params` are the URL parameters to be sent with the request + // Must be a plain object or a URLSearchParams object + "params" => [], + // `paramsSerializer` is an optional function in charge of serializing `params` + // (e.g. https://www.npmjs.com/package/qs, http://api.jquery.com/jquery.param/) + // "paramsSerializer" => function ($params) { + // return Qs.stringify($params, ["arrayFormat" => "brackets"]); + // }, + // `data` is the data to be sent as the request body + // Only applicable for request methods 'PUT', 'POST', 'DELETE , and 'PATCH' + // When no `transformRequest` is set, must be of one of the following types: + // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams + // - Browser "only" => FormData, File, Blob + // - Node "only" => Stream, Buffer + "data" => [], + // `timeout` specifies the number of milliseconds before the request times out. + // If the request takes longer than `timeout`, the request will be aborted. + "timeout" => 0, + // default is `0` (no timeout) + // `withCredentials` indicates whether or not cross-site Access-Control requests + // should be made using credentials + "withCredentials" => false, + // default + // `adapter` allows custom handling of requests which makes testing easier. + // Return a promise and supply a valid response (see lib/adapters/README.md). + // "adapter" => function ($config) { + // /* ... */ + // }, + // `auth` indicates that HTTP Basic auth should be used, and supplies credentials. + // This will set an `Authorization` header, overwriting any existing + // `Authorization` custom headers you have set using `headers`. + // Please note that only HTTP Basic auth is configurable through this parameter. + // For Bearer tokens and such, use `Authorization` custom headers instead. + "auth" => [], + // `responseType` indicates the type of data that the server will respond with + // options "are" => 'arraybuffer', 'document', 'json', 'text', 'stream' + // browser "only" => 'blob' + "responseType" => "json", + // default + // `responseEncoding` indicates encoding to use for decoding responses (Node.js only) + // "Note" => Ignored for `responseType` of 'stream' or client-side requests + "responseEncoding" => "utf8", + // default + // `xsrfCookieName` is the name of the cookie to use as a value for xsrf token + "xsrfCookieName" => "XSRF-TOKEN", + // default + // `xsrfHeaderName` is the name of the http header that carries the xsrf token value + "xsrfHeaderName" => "X-XSRF-TOKEN", + // default + // `onUploadProgress` allows handling of progress events for uploads + // browser only + // "onUploadProgress" => function ($progressEvent) { + // // Do whatever you want with the native progress event + // }, + // `onDownloadProgress` allows handling of progress events for downloads + // browser only + // "onDownloadProgress" => function ($progressEvent) { + // // Do whatever you want with the native progress event + // }, + // `maxContentLength` defines the max size of the http response content in bytes allowed in node.js + "maxContentLength" => 2000, + // `maxBodyLength` (Node only option) defines the max size of the http request content in bytes allowed + "maxBodyLength" => 2000, + // `validateStatus` defines whether to resolve or reject the promise for a given + // HTTP response status code. If `validateStatus` returns `true` (or is set to `null` + // or `undefined`), the promise will be resolved; otherwise, the promise will be + // rejected. + // "validateStatus" => function ($status) { + // return $status >= 200 && $status < 300; // default + // }, + // `maxRedirects` defines the maximum number of redirects to follow in node.js. + // If set to 0, no redirects will be followed. + "maxRedirects" => 5, + // default + // `socketPath` defines a UNIX Socket to be used in node.js. + // e.g. '/var/run/docker.sock' to send requests to the docker daemon. + // Only either `socketPath` or `proxy` can be specified. + // If both are specified, `socketPath` is used. + "socketPath" => null, + // default + // `proxy` defines the hostname, port, and protocol of the proxy server. + // You can also define your proxy using the conventional `http_proxy` and + // `https_proxy` environment variables. If you are using environment variables + // for your proxy configuration, you can also define a `no_proxy` environment + // variable as a comma-separated list of domains that should not be proxied. + // Use `false` to disable proxies, ignoring environment variables. + // `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and + // supplies credentials. + // This will set an `Proxy-Authorization` header, overwriting any existing + // `Proxy-Authorization` custom headers you have set using `headers`. + // If the proxy server uses HTTPS, then you must set the protocol to `https`. + "proxy" => [], + // `decompress` indicates whether or not the response body should be decompressed + // automatically. If set to `true` will also remove the 'content-encoding' header + // from the responses objects of all decompressed responses + // - Node only (XHR cannot turn off decompression) + "decompress" => true, + // default + // If false, fetch will try to parse json responses + "rawResponse" => false, + // CURLOPT_SSL_VERIFYHOST accepts only 0 (false) or 2 (true). + // Future versions of libcurl will treat values 1 and 2 as equals + "verifyHost" => true, + // default + "verifyPeer" => true, + // default + // Set additional options for curl. + "curl" => [], +] + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + $handler + + + + +

                                                                                                                                                                            + + + + + + private + static mixed + $handler + = null + + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +

                                                                                                                                                                            + Methods + + +

                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + baseUrl() + + +

                                                                                                                                                                            + + + + + public + static baseUrl(mixed $url) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + buildHTTPCurlQuery() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            This function is useful for serializing multidimensional arrays, and avoid getting +the 'Array to string conversion' notice

                                                                                                                                                                            + + + public + static buildHTTPCurlQuery(array<string|int, mixed> $data[, bool|string $parent = false ]) : array<string|int, mixed> + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $data + : array<string|int, mixed> +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            array to flatten.

                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $parent + : bool|string + = false
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            parent key or false if no parent

                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + author +
                                                                                                                                                                            +
                                                                                                                                                                            + +

                                                                                                                                                                            Mashape (https://www.mashape.com)

                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + +
                                                                                                                                                                            +
                                                                                                                                                                            Return values
                                                                                                                                                                            + array<string|int, mixed> +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + delete() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Make a delete request

                                                                                                                                                                            + + + public + static delete(mixed $url[, mixed $config = [] ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + get() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Make a get request

                                                                                                                                                                            + + + public + static get(mixed $url[, mixed $config = [] ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + getInfo() + + +

                                                                                                                                                                            + + + + + public + static getInfo([mixed $opt = false ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $opt + : mixed + = false
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + options() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Make an options request

                                                                                                                                                                            + + + public + static options(mixed $url[, mixed $config = [] ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + patch() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Make a patch request

                                                                                                                                                                            + + + public + static patch(mixed $url, mixed $data[, mixed $config = [] ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + post() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Make a post request

                                                                                                                                                                            + + + public + static post(mixed $url, mixed $data[, mixed $config = [] ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + put() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Make a put request

                                                                                                                                                                            + + + public + static put(mixed $url, mixed $data[, mixed $config = [] ]) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $url + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + request() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            Base method for network requests

                                                                                                                                                                            + + + public + static request(mixed $options) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $options + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + call() + + +

                                                                                                                                                                            + + + + + private + static call(mixed $request) : mixed + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $request + : mixed +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + throws +
                                                                                                                                                                            +
                                                                                                                                                                            + Exception + + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + parseHeaders() + + +

                                                                                                                                                                            + + +

                                                                                                                                                                            if PECL_HTTP is not available use a fall back function

                                                                                                                                                                            + + + private + static parseHeaders(string $raw_headers) : array<string|int, mixed> + +
                                                                                                                                                                            +
                                                                                                                                                                            + +

                                                                                                                                                                            thanks to ricardovermeltfoort@gmail.com +http://php.net/manual/en/function.http-parse-headers.php#112986

                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            Parameters
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + $raw_headers + : string +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            raw headers

                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + +
                                                                                                                                                                            + Tags + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + author +
                                                                                                                                                                            +
                                                                                                                                                                            + +

                                                                                                                                                                            Mashape (https://www.mashape.com)

                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + +
                                                                                                                                                                            +
                                                                                                                                                                            Return values
                                                                                                                                                                            + array<string|int, mixed> +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            
                                                                                                                                                                            +        
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            + + + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + On this page + + +
                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            Search results

                                                                                                                                                                            + +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Flash.html b/src/public/api/classes/Leaf-Flash.html new file mode 100644 index 00000000..9d50d5fa --- /dev/null +++ b/src/public/api/classes/Leaf-Flash.html @@ -0,0 +1,947 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                              +

                                                                                                                                                                              Leaf PHP

                                                                                                                                                                              + + + + + +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              +

                                                                                                                                                                              + Flash + + +
                                                                                                                                                                              + in package + +
                                                                                                                                                                              + + +

                                                                                                                                                                              + +
                                                                                                                                                                              + + +
                                                                                                                                                                              + + + +

                                                                                                                                                                              Leaf Flash +----- +Simple flash messages for your leaf apps

                                                                                                                                                                              + + + + +
                                                                                                                                                                              + Tags + + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + author +
                                                                                                                                                                              +
                                                                                                                                                                              + +

                                                                                                                                                                              Michael Darko mickdd22@gmail.com

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + since +
                                                                                                                                                                              +
                                                                                                                                                                              + 2.5.0 + + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                              + + + + + + + + + +

                                                                                                                                                                              + Properties + + +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $config + +  : mixed +
                                                                                                                                                                              + +
                                                                                                                                                                              + +

                                                                                                                                                                              + Methods + + +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + clearSaved() + +  : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              Clear the saved flash message
                                                                                                                                                                              + +
                                                                                                                                                                              + config() + +  : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              Configure leaf flash
                                                                                                                                                                              + +
                                                                                                                                                                              + display() + +  : string +
                                                                                                                                                                              +
                                                                                                                                                                              Display a flash message
                                                                                                                                                                              + +
                                                                                                                                                                              + displaySaved() + +  : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              Display the saved flash message
                                                                                                                                                                              + +
                                                                                                                                                                              + remove() + +  : void +
                                                                                                                                                                              +
                                                                                                                                                                              Manually remove set flash message
                                                                                                                                                                              + +
                                                                                                                                                                              + save() + +  : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              Save a flash message (won't delete after view).
                                                                                                                                                                              + +
                                                                                                                                                                              + set() + +  : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              Set a new flash message
                                                                                                                                                                              + +
                                                                                                                                                                              + unset() + +  : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              Remove a flash message
                                                                                                                                                                              + +
                                                                                                                                                                              + get() + +  : string|array<string|int, mixed> +
                                                                                                                                                                              +
                                                                                                                                                                              Get the flash array
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + + +
                                                                                                                                                                              +

                                                                                                                                                                              + Properties + + +

                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + $config + + + + +

                                                                                                                                                                              + + + + + + private + static mixed + $config + = ['key' => 'leaf.flash', 'default' => 'message', 'saved' => 'leaf.flashSaved'] + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +

                                                                                                                                                                              + Methods + + +

                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + clearSaved() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Clear the saved flash message

                                                                                                                                                                              + + + public + static clearSaved() : mixed + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + config() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Configure leaf flash

                                                                                                                                                                              + + + public + static config(array<string|int, mixed> $config) : mixed + +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              Parameters
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $config + : array<string|int, mixed> +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              Configuration for leaf flash

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + display() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Display a flash message

                                                                                                                                                                              + + + public + static display([string $key = 'default' ]) : string + +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              Parameters
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $key + : string + = 'default'
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              The key of message to display

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              Return values
                                                                                                                                                                              + string +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + displaySaved() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Display the saved flash message

                                                                                                                                                                              + + + public + static displaySaved() : mixed + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + remove() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Manually remove set flash message

                                                                                                                                                                              + + + public + static remove() : void + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + save() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Save a flash message (won't delete after view).

                                                                                                                                                                              + + + public + static save(string $message) : mixed + +
                                                                                                                                                                              +
                                                                                                                                                                              + +

                                                                                                                                                                              You can save only one message at a time.

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              Parameters
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $message + : string +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              The flash message to save

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + set() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Set a new flash message

                                                                                                                                                                              + + + public + static set(mixed $message[, string $key = 'default' ]) : mixed + +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              Parameters
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $message + : mixed +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              The flash message to set

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + $key + : string + = 'default'
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              The key to save message

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + unset() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Remove a flash message

                                                                                                                                                                              + + + public + static unset([string|null $key = null ]) : mixed + +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              Parameters
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $key + : string|null + = null
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              The key of message to remove

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              + get() + + +

                                                                                                                                                                              + + +

                                                                                                                                                                              Get the flash array

                                                                                                                                                                              + + + protected + static get([string|null $key = null ]) : string|array<string|int, mixed> + +
                                                                                                                                                                              +
                                                                                                                                                                              + + +
                                                                                                                                                                              Parameters
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + $key + : string|null + = null
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              The key of message to get

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + + +
                                                                                                                                                                              +
                                                                                                                                                                              Return values
                                                                                                                                                                              + string|array<string|int, mixed> +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              
                                                                                                                                                                              +        
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + On this page + + +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              Search results

                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Form.html b/src/public/api/classes/Leaf-Form.html new file mode 100644 index 00000000..85cc36e6 --- /dev/null +++ b/src/public/api/classes/Leaf-Form.html @@ -0,0 +1,1437 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                +

                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                + + + + + +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                +

                                                                                                                                                                                + Form + + +
                                                                                                                                                                                + in package + +
                                                                                                                                                                                + + +

                                                                                                                                                                                + +
                                                                                                                                                                                + + +
                                                                                                                                                                                + + + +

                                                                                                                                                                                Leaf Form +---- +Leaf's form validation library

                                                                                                                                                                                + + + + +
                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + version +
                                                                                                                                                                                +
                                                                                                                                                                                + 3.0.0 + + +
                                                                                                                                                                                +
                                                                                                                                                                                + since +
                                                                                                                                                                                +
                                                                                                                                                                                + 1.0.0 + + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                + + + + + + + + + +

                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $errors + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Validation errors
                                                                                                                                                                                + +
                                                                                                                                                                                + $messages + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Validation error messages
                                                                                                                                                                                + +
                                                                                                                                                                                + $rules + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Validation rules
                                                                                                                                                                                + +
                                                                                                                                                                                + +

                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + __construct() + +  : mixed +
                                                                                                                                                                                + +
                                                                                                                                                                                + addError() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Add validation error
                                                                                                                                                                                + +
                                                                                                                                                                                + addErrorMessage() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Add validation error message
                                                                                                                                                                                + +
                                                                                                                                                                                + addMessage() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Add validation error message
                                                                                                                                                                                + +
                                                                                                                                                                                + addRule() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Add custom validation rule
                                                                                                                                                                                + +
                                                                                                                                                                                + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                Get validation errors
                                                                                                                                                                                + +
                                                                                                                                                                                + isEmail() + +  : bool +
                                                                                                                                                                                + +
                                                                                                                                                                                + message() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Alias for addMessage
                                                                                                                                                                                + +
                                                                                                                                                                                + rule() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Alias for addRule
                                                                                                                                                                                + +
                                                                                                                                                                                + submit() + +  : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                Directly 'submit' a form without having to work with any mark-up
                                                                                                                                                                                + +
                                                                                                                                                                                + supportedRules() + +  : array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                Get a list of all supported rules.
                                                                                                                                                                                + +
                                                                                                                                                                                + validate() + +  : false|array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                Validate form data
                                                                                                                                                                                + +
                                                                                                                                                                                + validateRule() + +  : bool +
                                                                                                                                                                                +
                                                                                                                                                                                Validate a single rule
                                                                                                                                                                                + +
                                                                                                                                                                                + test() + +  : bool +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +

                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + $errors + + + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Validation errors

                                                                                                                                                                                + + + + protected + mixed + $errors + = [] + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + $messages + + + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Validation error messages

                                                                                                                                                                                + + + + protected + mixed + $messages + = ['required' => '{Field} is required', 'email' => '{Field} must be a valid email address', 'alpha' => '{Field} must contain only alphabets and spaces', 'text' => '{Field} must contain only alphabets and spaces', 'string' => '{Field} must contain only alphabets and spaces', 'textonly' => '{Field} must contain only alphabets', 'alphanum' => '{Field} must contain only alphabets and numbers', 'alphadash' => '{Field} must contain only alphabets, numbers, dashes and underscores', 'username' => '{Field} must contain only alphabets, numbers and underscores', 'number' => '{Field} must contain only numbers', 'numeric' => '{Field} must be numeric', 'float' => '{Field} must contain only floating point numbers', 'hardfloat' => '{Field} must contain only floating point numbers', 'date' => '{Field} must be a valid date', 'min' => '{Field} must be at least %s characters long', 'max' => '{Field} must not exceed %s characters', 'between' => '{Field} must be between %s and %s characters long', 'match' => '{Field} must match the %s field', 'matchesvalueof' => '{Field} must match the value of %s', 'contains' => '{Field} must contain %s', 'boolean' => '{Field} must be a boolean', 'truefalse' => '{Field} must be a boolean', 'in' => '{Field} must be one of the following: %s', 'notin' => '{Field} must not be one of the following: %s', 'ip' => '{Field} must be a valid IP address', 'ipv4' => '{Field} must be a valid IPv4 address', 'ipv6' => '{Field} must be a valid IPv6 address', 'url' => '{Field} must be a valid URL', 'domain' => '{Field} must be a valid domain', 'creditcard' => '{Field} must be a valid credit card number', 'phone' => '{Field} must be a valid phone number', 'uuid' => '{Field} must be a valid UUID', 'slug' => '{Field} must be a valid slug', 'json' => '{Field} must be a valid JSON string', 'regex' => '{Field} must match the pattern %s', 'array' => '{field} must be an array'] + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + $rules + + + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Validation rules

                                                                                                                                                                                + + + + protected + mixed + $rules + = ['optional' => '/^.*$/', 'email' => '/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/', 'alpha' => '/^[a-zA-Z\s]+$/', 'text' => '/^[a-zA-Z\s]+$/', 'textonly' => '/^[a-zA-Z]+$/', 'alphanum' => '/^[a-zA-Z0-9\s]+$/', 'alphadash' => '/^[a-zA-Z0-9-_]+$/', 'username' => '/^[a-zA-Z0-9_]+$/', 'number' => '/^[0-9]+$/', 'float' => '/^[0-9]+(\.[0-9]+)$/', 'date' => '/^\d{4}-\d{2}-\d{2}$/', 'min' => '/^.{%s,}$/', 'max' => '/^.{0,%s}$/', 'between' => '/^.{%s,%s}$/', 'match' => '/^%s$/', 'contains' => '/%s/', 'boolean' => '/^(true|false|1|0)$/', 'truefalse' => '/^(true|false)$/', 'ip' => '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/', 'ipv4' => '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/', 'ipv6' => '/^([a-fA-F0-9]{1,4}:){7}[a-fA-F0-9]{1,4}$/', 'url' => '/^(https?|ftp):\/\/(-\.)?([^\s\/?\.#-]+\.?)+(\/[^\s]*)?$/i', 'domain' => '/^([a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,}$/i', 'creditcard' => '/^([0-9]{4}-){3}[0-9]{4}$/', 'phone' => '/^\+?(\d.*){3,}$/', 'uuid' => '/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', 'slug' => '/^[a-z0-9]+(-[a-z0-9]+)*$/i', 'json' => '/^[\w\s\-\{\}\[\]\"]+$/', 'regex' => '/%s/'] + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +

                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + __construct() + + +

                                                                                                                                                                                + + + + + public + __construct() : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + addError() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Add validation error

                                                                                                                                                                                + + + public + addError(string $field, string $error) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $field + : string +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The field that has an error

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $error + : string +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The error message

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + addErrorMessage() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Add validation error message

                                                                                                                                                                                + + + public + addErrorMessage(string|array<string|int, mixed> $field[, string|null $message = null ]) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $field + : string|array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The field to add the message to

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $message + : string|null + = null
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The error message if $field is a string

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + addMessage() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Add validation error message

                                                                                                                                                                                + + + public + addMessage(string|array<string|int, mixed> $field[, string|null $message = null ]) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $field + : string|array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The field to add the message to

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $message + : string|null + = null
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The error message if $field is a string

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + addRule() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Add custom validation rule

                                                                                                                                                                                + + + public + addRule(string $name, string|callable $handler[, string|null $message = null ]) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The name of the rule

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $handler + : string|callable +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The rule handler

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $message + : string|null + = null
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The error message

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + errors() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Get validation errors

                                                                                                                                                                                + + + public + errors() : array<string|int, mixed> + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                Return values
                                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + isEmail() + + +

                                                                                                                                                                                + + + + + public + isEmail(mixed $value) : bool + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $value + : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                Return values
                                                                                                                                                                                + bool +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + message() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Alias for addMessage

                                                                                                                                                                                + + + public + message(string|array<string|int, mixed> $field[, string|null $message = null ]) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $field + : string|array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The field to add the message to

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $message + : string|null + = null
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The error message if $field is a string

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + rule() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Alias for addRule

                                                                                                                                                                                + + + public + rule(string $name, string|callable $handler[, string|null $message = null ]) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The name of the rule

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $handler + : string|callable +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The rule handler

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $message + : string|null + = null
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The error message

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + submit() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Directly 'submit' a form without having to work with any mark-up

                                                                                                                                                                                + + + public + submit(string $method, string $action, array<string|int, mixed> $fields) : mixed + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $method + : string +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $action + : string +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $fields + : array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + supportedRules() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Get a list of all supported rules.

                                                                                                                                                                                + + + public + supportedRules() : array<string|int, mixed> + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                Return values
                                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + validate() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Validate form data

                                                                                                                                                                                + + + public + validate(array<string|int, mixed> $dataSource, array<string|int, mixed> $validationSet) : false|array<string|int, mixed> + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $dataSource + : array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The data to validate

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $validationSet + : array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The rules to validate against

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                Return values
                                                                                                                                                                                + false|array<string|int, mixed> + — +

                                                                                                                                                                                Returns false if validation fails, otherwise returns the validated data

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + validateRule() + + +

                                                                                                                                                                                + + +

                                                                                                                                                                                Validate a single rule

                                                                                                                                                                                + + + public + validateRule(string|array<string|int, mixed> $rule, mixed $valueToTest[, mixed $fieldName = 'item' ]) : bool + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $rule + : string|array<string|int, mixed> +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The rule(s) to validate against

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $valueToTest + : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The value to validate

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $fieldName + : mixed + = 'item'
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                The rule parameter

                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                Return values
                                                                                                                                                                                + bool +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + test() + + +

                                                                                                                                                                                + + + + + protected + test(mixed $rule, mixed $valueToTest[, mixed $fieldName = 'item' ]) : bool + +
                                                                                                                                                                                +
                                                                                                                                                                                + + +
                                                                                                                                                                                Parameters
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + $rule + : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $valueToTest + : mixed +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + $fieldName + : mixed + = 'item'
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                Return values
                                                                                                                                                                                + bool +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                
                                                                                                                                                                                +        
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                + + + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                Search results

                                                                                                                                                                                + +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Helpers-Password.html b/src/public/api/classes/Leaf-Helpers-Password.html new file mode 100644 index 00000000..6aedf3d4 --- /dev/null +++ b/src/public/api/classes/Leaf-Helpers-Password.html @@ -0,0 +1,1079 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                  +

                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  +

                                                                                                                                                                                  + Password + + +
                                                                                                                                                                                  + in package + +
                                                                                                                                                                                  + + +

                                                                                                                                                                                  + +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  + + + +

                                                                                                                                                                                  Leaf Password Helper +--------------------------------------------- +Work easier and faster with passwords

                                                                                                                                                                                  + + + + +
                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + author +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +

                                                                                                                                                                                  Michael Darko mychi.darko@gmail.com

                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + since +
                                                                                                                                                                                  +
                                                                                                                                                                                  + 2.0.0 + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                  + + + + + + + +

                                                                                                                                                                                  + Constants + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + ARGON2 + +  = PASSWORD_ARGON2I +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + BCRYPT + +  = PASSWORD_BCRYPT +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + DEFAULT + +  = PASSWORD_DEFAULT +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + MD5 + +  = "md5" +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + + +

                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $spice + +  : mixed +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + +

                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + argon2() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Generate an Argon2 hashed password
                                                                                                                                                                                  + +
                                                                                                                                                                                  + argon2Verify() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Checks if the given argon2 hash matches the given options.
                                                                                                                                                                                  + +
                                                                                                                                                                                  + bcrypt() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Generate an Argon2 hashed password
                                                                                                                                                                                  + +
                                                                                                                                                                                  + bcryptVerify() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Checks if the given BCRYPT hash matches the given options.
                                                                                                                                                                                  + +
                                                                                                                                                                                  + hash() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Create a password hash
                                                                                                                                                                                  + +
                                                                                                                                                                                  + spice() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Get or set password 'spice'
                                                                                                                                                                                  + +
                                                                                                                                                                                  + verify() + +  : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  Checks if the given hash matches the given options.
                                                                                                                                                                                  + +
                                                                                                                                                                                  + + + + +
                                                                                                                                                                                  +

                                                                                                                                                                                  + Constants + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + ARGON2 + + +

                                                                                                                                                                                  + + + + + + + public + mixed + ARGON2 + = PASSWORD_ARGON2I + + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + BCRYPT + + +

                                                                                                                                                                                  + + + + + + + public + mixed + BCRYPT + = PASSWORD_BCRYPT + + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + DEFAULT + + +

                                                                                                                                                                                  + + + + + + + public + mixed + DEFAULT + = PASSWORD_DEFAULT + + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + MD5 + + +

                                                                                                                                                                                  + + + + + + + public + mixed + MD5 + = "md5" + + + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  +

                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + $spice + + + + +

                                                                                                                                                                                  + + + + + + protected + static mixed + $spice + = null + + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +

                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + argon2() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Generate an Argon2 hashed password

                                                                                                                                                                                  + + + public + static argon2(string $password[, array<string|int, mixed> $options = [] ]) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $password + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  The user's password to hash

                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  Options for Argon hash

                                                                                                                                                                                  +

                                                                                                                                                                                  Supported Options:

                                                                                                                                                                                  +
                                                                                                                                                                                    +
                                                                                                                                                                                  • memory_cost (integer) - Maximum memory (in bytes) that may be used to compute the Argon2 hash. Defaults to PASSWORD_ARGON2_DEFAULT_MEMORY_COST.
                                                                                                                                                                                  • +
                                                                                                                                                                                  • time_cost (integer) - Maximum amount of time it may take to compute the Argon2 hash. Defaults to PASSWORD_ARGON2_DEFAULT_TIME_COST.
                                                                                                                                                                                  • +
                                                                                                                                                                                  • threads (integer) - Number of threads to use for computing the Argon2 hash. Defaults to PASSWORD_ARGON2_DEFAULT_THREADS.
                                                                                                                                                                                  • +
                                                                                                                                                                                  +

                                                                                                                                                                                  Available as of PHP 7.2.0.

                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + argon2Verify() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Checks if the given argon2 hash matches the given options.

                                                                                                                                                                                  + + + public + static argon2Verify(string $password, string $hashedPassword) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $password + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $hashedPassword + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + bcrypt() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Generate an Argon2 hashed password

                                                                                                                                                                                  + + + public + static bcrypt(string $password[, array<string|int, mixed> $options = [] ]) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $password + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  The user's password to hash

                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  Options for Argon hash

                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + bcryptVerify() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Checks if the given BCRYPT hash matches the given options.

                                                                                                                                                                                  + + + public + static bcryptVerify(string $password, string $hashedPassword) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $password + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $hashedPassword + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + hash() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Create a password hash

                                                                                                                                                                                  + + + public + static hash(string $password[, mixed $algorithm = self::DEFAULT ][, array<string|int, mixed> $options = [] ]) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +

                                                                                                                                                                                  See the password algorithm constants for documentation on the supported options for each algorithm.

                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $password + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $algorithm + : mixed + = self::DEFAULT
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + spice() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Get or set password 'spice'

                                                                                                                                                                                  + + + public + static spice([mixed $spice = null ]) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $spice + : mixed + = null
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  + verify() + + +

                                                                                                                                                                                  + + +

                                                                                                                                                                                  Checks if the given hash matches the given options.

                                                                                                                                                                                  + + + public + static verify(string $password, mixed $hashedPassword) : mixed + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  Parameters
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $password + : string +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + $hashedPassword + : mixed +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  
                                                                                                                                                                                  +        
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + +
                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  Search results

                                                                                                                                                                                  + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Cache.html b/src/public/api/classes/Leaf-Http-Cache.html new file mode 100644 index 00000000..f97f6770 --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Cache.html @@ -0,0 +1,603 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                    +

                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    +

                                                                                                                                                                                    + Cache + + +
                                                                                                                                                                                    + in package + +
                                                                                                                                                                                    + + +

                                                                                                                                                                                    + +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    + + + +

                                                                                                                                                                                    Leaf Http Caching +------------------------------------ +HTTP Caching made simple with Leaf

                                                                                                                                                                                    + + + + +
                                                                                                                                                                                    + Tags + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + author +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    Michael Darko

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + since +
                                                                                                                                                                                    +
                                                                                                                                                                                    + 3.0.0 + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + etag() + +  : mixed +
                                                                                                                                                                                    +
                                                                                                                                                                                    Set ETag HTTP Response Header
                                                                                                                                                                                    + +
                                                                                                                                                                                    + expires() + +  : mixed +
                                                                                                                                                                                    +
                                                                                                                                                                                    Set Expires HTTP response header
                                                                                                                                                                                    + +
                                                                                                                                                                                    + lastModified() + +  : mixed +
                                                                                                                                                                                    +
                                                                                                                                                                                    Set Last-Modified HTTP Response Header
                                                                                                                                                                                    + +
                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                    +

                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + etag() + + +

                                                                                                                                                                                    + + +

                                                                                                                                                                                    Set ETag HTTP Response Header

                                                                                                                                                                                    + + + public + static etag(string $value[, string $type = "strong" ]) : mixed + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    Set the etag header and stop if the conditional GET request matches. +The value argument is a unique identifier for the current resource. +The type argument indicates whether the etag should be used as a strong or +weak cache validator.

                                                                                                                                                                                    +

                                                                                                                                                                                    When the current request includes an 'If-None-Match' header with +a matching etag, execution is immediately stopped. If the request +method is GET or HEAD, a '304 Not Modified' response is sent.

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    Parameters
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + $value + : string +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    The etag value

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + $type + : string + = "strong"
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    The type of etag to create; either "strong" or "weak"

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + expires() + + +

                                                                                                                                                                                    + + +

                                                                                                                                                                                    Set Expires HTTP response header

                                                                                                                                                                                    + + + public + static expires(string|int $time) : mixed + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    The Expires header tells the HTTP client the time at which +the current resource should be considered stale. At that time the HTTP +client will send a conditional GET request to the server; the server +may return a 200 OK if the resource has changed, else a 304 Not Modified +if the resource has not changed. The Expires header should be used in +conjunction with the etag() or lastModified() methods above.

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    Parameters
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + $time + : string|int +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    If string, a time to be parsed by strtotime(); If int, a UNIX timestamp;

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    + lastModified() + + +

                                                                                                                                                                                    + + +

                                                                                                                                                                                    Set Last-Modified HTTP Response Header

                                                                                                                                                                                    + + + public + static lastModified(int $time) : mixed + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +

                                                                                                                                                                                    Set the HTTP 'Last-Modified' header and stop if a conditional +GET request's If-Modified-Since header matches the last modified time +of the resource. The time argument is a UNIX timestamp integer value. +When the current request includes an 'If-Modified-Since' header that +matches the specified last modified time, the application will stop +and send a '304 Not Modified' response to the client.

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    Parameters
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + $time + : int +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    The last modified UNIX timestamp

                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    
                                                                                                                                                                                    +        
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + +
                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    Search results

                                                                                                                                                                                    + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Cors.html b/src/public/api/classes/Leaf-Http-Cors.html new file mode 100644 index 00000000..ca686cea --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Cors.html @@ -0,0 +1,862 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                      +

                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      +

                                                                                                                                                                                      + Cors + + +
                                                                                                                                                                                      + in package + +
                                                                                                                                                                                      + + +

                                                                                                                                                                                      + +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      + + + +

                                                                                                                                                                                      Leaf CORS Module +------- +CORS simplified. Enable CORS with various options.

                                                                                                                                                                                      + + +

                                                                                                                                                                                      Inspired by Express JS' CORS package.

                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + version +
                                                                                                                                                                                      +
                                                                                                                                                                                      + 1.0.1 + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + since +
                                                                                                                                                                                      +
                                                                                                                                                                                      + 3.0-beta + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                      + + + + + + + + + +

                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + $config + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + $defaultConfig + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + +

                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + config() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + configureCredentials() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + configureExposedHeaders() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + configureHeaders() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + configureMaxAge() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + configureMethods() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + configureOrigin() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + isOriginAllowed() + +  : mixed +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                      +

                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + $config + + + + +

                                                                                                                                                                                      + + + + + + protected + static mixed + $config + = [] + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + $defaultConfig + + + + +

                                                                                                                                                                                      + + + + + + protected + static mixed + $defaultConfig + = ['origin' => '*', 'methods' => 'GET,HEAD,PUT,PATCH,POST,DELETE', 'allowedHeaders' => '*', 'exposedHeaders' => '', 'credentials' => false, 'maxAge' => null, 'preflightContinue' => false, 'optionsSuccessStatus' => 204] + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +

                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + config() + + +

                                                                                                                                                                                      + + + + + public + static config([mixed $config = [] ]) : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      Parameters
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + $config + : mixed + = []
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + configureCredentials() + + +

                                                                                                                                                                                      + + + + + protected + static configureCredentials() : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + configureExposedHeaders() + + +

                                                                                                                                                                                      + + + + + protected + static configureExposedHeaders() : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + configureHeaders() + + +

                                                                                                                                                                                      + + + + + protected + static configureHeaders() : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + configureMaxAge() + + +

                                                                                                                                                                                      + + + + + protected + static configureMaxAge() : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + configureMethods() + + +

                                                                                                                                                                                      + + + + + protected + static configureMethods() : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + configureOrigin() + + +

                                                                                                                                                                                      + + + + + protected + static configureOrigin() : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      + isOriginAllowed() + + +

                                                                                                                                                                                      + + + + + protected + static isOriginAllowed(mixed $allowedOrigin) : mixed + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      Parameters
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + $allowedOrigin + : mixed +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      
                                                                                                                                                                                      +        
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + +
                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      Search results

                                                                                                                                                                                      + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Headers.html b/src/public/api/classes/Leaf-Http-Headers.html new file mode 100644 index 00000000..d42ff296 --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Headers.html @@ -0,0 +1,1209 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                        +

                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        +

                                                                                                                                                                                        + Headers + + +
                                                                                                                                                                                        + in package + +
                                                                                                                                                                                        + + +

                                                                                                                                                                                        + +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        + + + +

                                                                                                                                                                                        HTTP Headers +--------------------- +Response header management made simple with Leaf

                                                                                                                                                                                        + + + + +
                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + author +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +

                                                                                                                                                                                        Michael Darko

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + since +
                                                                                                                                                                                        +
                                                                                                                                                                                        + 2.0.0 + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $httpCode + +  : int +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + +

                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + accessControl() + +  : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        Quickly set an access control header
                                                                                                                                                                                        + +
                                                                                                                                                                                        + all() + +  : array<string|int, mixed> +
                                                                                                                                                                                        +
                                                                                                                                                                                        Get all headers passed into application
                                                                                                                                                                                        + +
                                                                                                                                                                                        + contentHtml() + +  : void +
                                                                                                                                                                                        +
                                                                                                                                                                                        Set the content-type to html
                                                                                                                                                                                        + +
                                                                                                                                                                                        + contentJSON() + +  : void +
                                                                                                                                                                                        +
                                                                                                                                                                                        Set the content-type to json
                                                                                                                                                                                        + +
                                                                                                                                                                                        + contentPlain() + +  : void +
                                                                                                                                                                                        +
                                                                                                                                                                                        Set the content-type to plain text
                                                                                                                                                                                        + +
                                                                                                                                                                                        + contentXml() + +  : void +
                                                                                                                                                                                        +
                                                                                                                                                                                        Set the content-type to xml
                                                                                                                                                                                        + +
                                                                                                                                                                                        + get() + +  : array<string|int, mixed>|string|null +
                                                                                                                                                                                        +
                                                                                                                                                                                        Return a particular header passed into app
                                                                                                                                                                                        + +
                                                                                                                                                                                        + has() + +  : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        Check if a header is present
                                                                                                                                                                                        + +
                                                                                                                                                                                        + remove() + +  : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        Remove a header
                                                                                                                                                                                        + +
                                                                                                                                                                                        + resetStatus() + +  : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        Force an HTTP code for response using PHP's `http_response_code`
                                                                                                                                                                                        + +
                                                                                                                                                                                        + set() + +  : void +
                                                                                                                                                                                        +
                                                                                                                                                                                        Set a new header
                                                                                                                                                                                        + +
                                                                                                                                                                                        + status() + +  : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        Get or Set an HTTP code for response
                                                                                                                                                                                        + +
                                                                                                                                                                                        + findHeaders() + +  : mixed +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +

                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + $httpCode + + + + +

                                                                                                                                                                                        + + + + + + protected + static int + $httpCode + = 200 + + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +

                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + accessControl() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Quickly set an access control header

                                                                                                                                                                                        + + + public + static accessControl(mixed $key[, mixed $value = "" ][, mixed $code = 200 ]) : mixed + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $key + : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $value + : mixed + = ""
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $code + : mixed + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + all() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Get all headers passed into application

                                                                                                                                                                                        + + + public + static all([bool $safeOutput = false ]) : array<string|int, mixed> + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $safeOutput + : bool + = false
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        Try to sanitize header data

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        Return values
                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + contentHtml() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Set the content-type to html

                                                                                                                                                                                        + + + public + static contentHtml([mixed $code = 200 ]) : void + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $code + : mixed + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + contentJSON() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Set the content-type to json

                                                                                                                                                                                        + + + public + static contentJSON([mixed $code = 200 ]) : void + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $code + : mixed + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + contentPlain() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Set the content-type to plain text

                                                                                                                                                                                        + + + public + static contentPlain([mixed $code = 200 ]) : void + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $code + : mixed + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + contentXml() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Set the content-type to xml

                                                                                                                                                                                        + + + public + static contentXml([mixed $code = 200 ]) : void + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $code + : mixed + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + get() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Return a particular header passed into app

                                                                                                                                                                                        + + + public + static get(array<string|int, mixed>|string $params[, bool $safeOutput = false ]) : array<string|int, mixed>|string|null + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $params + : array<string|int, mixed>|string +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        The header(s) to return

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $safeOutput + : bool + = false
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        Try to sanitize header data

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        Return values
                                                                                                                                                                                        + array<string|int, mixed>|string|null +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + has() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Check if a header is present

                                                                                                                                                                                        + + + public + static has(string $header) : mixed + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $header + : string +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        The header to check

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + remove() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Remove a header

                                                                                                                                                                                        + + + public + static remove(mixed $keys) : mixed + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $keys + : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + resetStatus() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Force an HTTP code for response using PHP's `http_response_code`

                                                                                                                                                                                        + + + public + static resetStatus([int $httpCode = 200 ]) : mixed + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $httpCode + : int + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        The response code to set

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + set() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Set a new header

                                                                                                                                                                                        + + + public + static set(mixed $key[, string $value = "" ][, mixed $replace = true ][, int $httpCode = 200 ]) : void + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $key + : mixed +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $value + : string + = ""
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $replace + : mixed + = true
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $httpCode + : int + = 200
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + status() + + +

                                                                                                                                                                                        + + +

                                                                                                                                                                                        Get or Set an HTTP code for response

                                                                                                                                                                                        + + + public + static status([int|null $httpCode = null ]) : mixed + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        Parameters
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + $httpCode + : int|null + = null
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        The current response code.

                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        + findHeaders() + + +

                                                                                                                                                                                        + + + + + protected + static findHeaders() : mixed + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        
                                                                                                                                                                                        +        
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + +
                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        Search results

                                                                                                                                                                                        + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Request.html b/src/public/api/classes/Leaf-Http-Request.html new file mode 100644 index 00000000..56ff8e42 --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Request.html @@ -0,0 +1,3630 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                          +

                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Request + + +
                                                                                                                                                                                          + in package + +
                                                                                                                                                                                          + + +

                                                                                                                                                                                          + +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          + + + +

                                                                                                                                                                                          Leaf HTTP Request +--------

                                                                                                                                                                                          + + +

                                                                                                                                                                                          This class provides an object-oriented way to interact with the current +HTTP request being handled by your application as well as retrieve the input, +cookies, and files that were submitted with the request.

                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + author +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          Michael Darko

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + since +
                                                                                                                                                                                          +
                                                                                                                                                                                          + 1.0.0 + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + version +
                                                                                                                                                                                          +
                                                                                                                                                                                          + 2.3.0 + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                          + + + + + + + +

                                                                                                                                                                                          + Constants + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + METHOD_DELETE + +  = 'DELETE' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_GET + +  = 'GET' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_HEAD + +  = 'HEAD' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_OPTIONS + +  = 'OPTIONS' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_OVERRIDE + +  = '_METHOD' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_PATCH + +  = 'PATCH' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_POST + +  = 'POST' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + METHOD_PUT + +  = 'PUT' +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + + +

                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $errors + +  : mixed +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + $formDataMediaTypes + +  : mixed +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + $validator + +  : Form +
                                                                                                                                                                                          +
                                                                                                                                                                                          Internal instance of Leaf Form
                                                                                                                                                                                          + +
                                                                                                                                                                                          + +

                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + __construct() + +  : mixed +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + body() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get all the request data as an associative array
                                                                                                                                                                                          + +
                                                                                                                                                                                          + cookies() + +  : array<string|int, mixed>|string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Fetch COOKIE data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                                          +
                                                                                                                                                                                          Handle errors from validation/auth/upload
                                                                                                                                                                                          + +
                                                                                                                                                                                          + files() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get all files passed into the request.
                                                                                                                                                                                          + +
                                                                                                                                                                                          + flash() + +  : array<string|int, mixed>|string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Display a flash message from the previous request
                                                                                                                                                                                          + +
                                                                                                                                                                                          + get() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Returns request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getContentCharset() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Content Charset
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getContentLength() + +  : int +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Content-Length
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getContentType() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Content Type
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getFullUrl() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Full URL (scheme + host [ + port if non-standard ] + path + query string)
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getHost() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Host
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getHostWithPort() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Host with Port
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getIp() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get IP
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getMediaType() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Media Type (type/subtype within Content Type header)
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getMediaTypeParams() + +  : array<string|int, mixed> +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Media Type Params
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getMethod() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get HTTP method
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getOrDefault() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Returns request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getOriginalMethod() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get original method
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getPath() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Path
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getPathInfo() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Path Info (virtual path)
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getPhysicalPath() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get physical path
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getPort() + +  : int +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Port
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getQueryString() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get query string
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getReferer() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Referer (for those who can't spell)
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getReferrer() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Referrer
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getScheme() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Scheme (https or http)
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getScriptName() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Script Name
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getUrl() + +  : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get URL (scheme + host [ + port if non-standard ])
                                                                                                                                                                                          + +
                                                                                                                                                                                          + getUserAgent() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get User Agent
                                                                                                                                                                                          + +
                                                                                                                                                                                          + hasHeader() + +  : bool +
                                                                                                                                                                                          +
                                                                                                                                                                                          Find if request has a particular header
                                                                                                                                                                                          + +
                                                                                                                                                                                          + headers() + +  : array<string|int, mixed>|string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get Headers
                                                                                                                                                                                          + +
                                                                                                                                                                                          + input() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Access stream that allows you to read raw data from the request body. **This is not for form data**
                                                                                                                                                                                          + +
                                                                                                                                                                                          + isAjax() + +  : bool +
                                                                                                                                                                                          +
                                                                                                                                                                                          Is this an AJAX request?
                                                                                                                                                                                          + +
                                                                                                                                                                                          + isFormData() + +  : bool +
                                                                                                                                                                                          +
                                                                                                                                                                                          Does the Request body contain parsed form data?
                                                                                                                                                                                          + +
                                                                                                                                                                                          + isXhr() + +  : bool +
                                                                                                                                                                                          +
                                                                                                                                                                                          Is this an XHR request? (alias of Leaf_Http_Request::isAjax)
                                                                                                                                                                                          + +
                                                                                                                                                                                          + methodOverride() + +  : string|null +
                                                                                                                                                                                          +
                                                                                                                                                                                          Is this a method override request?
                                                                                                                                                                                          + +
                                                                                                                                                                                          + next() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get data passed from the previous middleware
                                                                                                                                                                                          + +
                                                                                                                                                                                          + params() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Returns request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + postData() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return only get request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + query() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return only get request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + rawData() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get raw request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + try() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Attempt to retrieve data from the request.
                                                                                                                                                                                          + +
                                                                                                                                                                                          + typeIs() + +  : bool +
                                                                                                                                                                                          +
                                                                                                                                                                                          Check for request method type
                                                                                                                                                                                          + +
                                                                                                                                                                                          + upload() + +  : array<string|int, mixed>|false +
                                                                                                                                                                                          +
                                                                                                                                                                                          Store a file from the request.
                                                                                                                                                                                          + +
                                                                                                                                                                                          + uploadAs() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Store a file from the request with a given name
                                                                                                                                                                                          + +
                                                                                                                                                                                          + urlData() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return only get request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + user() + +  : mixed +
                                                                                                                                                                                          +
                                                                                                                                                                                          Get the authenticated user
                                                                                                                                                                                          + +
                                                                                                                                                                                          + validate() + +  : false|array<string|int, mixed> +
                                                                                                                                                                                          +
                                                                                                                                                                                          Validate the request data
                                                                                                                                                                                          + +
                                                                                                                                                                                          + validator() + +  : Form +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return validator instance
                                                                                                                                                                                          + +
                                                                                                                                                                                          + auth() + +  : Auth +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return the auth instance
                                                                                                                                                                                          + +
                                                                                                                                                                                          + + + + +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Constants + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_DELETE + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_DELETE + = 'DELETE' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_GET + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_GET + = 'GET' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_HEAD + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_HEAD + = 'HEAD' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_OPTIONS + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_OPTIONS + = 'OPTIONS' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_OVERRIDE + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_OVERRIDE + = '_METHOD' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_PATCH + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_PATCH + = 'PATCH' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_POST + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_POST + = 'POST' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + METHOD_PUT + + +

                                                                                                                                                                                          + + + + + + + public + mixed + METHOD_PUT + = 'PUT' + + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + $errors + + + + +

                                                                                                                                                                                          + + + + + + protected + static mixed + $errors + = [] + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + $formDataMediaTypes + + + + +

                                                                                                                                                                                          + + + + + + protected + static mixed + $formDataMediaTypes + = ['application/x-www-form-urlencoded'] + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + $validator + + + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Internal instance of Leaf Form

                                                                                                                                                                                          + + + + protected + static Form + $validator + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +

                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + __construct() + + +

                                                                                                                                                                                          + + + + + public + __construct() : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + body() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get all the request data as an associative array

                                                                                                                                                                                          + + + public + static body([bool $safeData = true ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $safeData + : bool + = true
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Sanitize output

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + cookies() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Fetch COOKIE data

                                                                                                                                                                                          + + + public + static cookies([string|null $key = null ]) : array<string|int, mixed>|string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          This method returns a key-value array of Cookie data sent in the HTTP request, or +the value of an array key if requested. If the array key does not exist, NULL is returned.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + array<string|int, mixed>|string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + errors() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Handle errors from validation/auth/upload

                                                                                                                                                                                          + + + public + static errors() : array<string|int, mixed> + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + files() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get all files passed into the request.

                                                                                                                                                                                          + + + public + static files([array<string|int, mixed>|string|null $filenames = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $filenames + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The file(s) you want to get

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + flash() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Display a flash message from the previous request

                                                                                                                                                                                          + + + public + static flash([string|null $key = null ]) : array<string|int, mixed>|string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The key to get from the flash data

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + array<string|int, mixed>|string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + get() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Returns request data

                                                                                                                                                                                          + + + public + static get(array<string|int, mixed>|string $params[, bool $safeData = true ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          This method returns get, post, put patch, delete or raw form data or NULL +if the data isn't found.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $params + : array<string|int, mixed>|string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The parameter(s) to return

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $safeData + : bool + = true
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Sanitize output

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getContentCharset() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Content Charset

                                                                                                                                                                                          + + + public + static getContentCharset() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getContentLength() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Content-Length

                                                                                                                                                                                          + + + public + static getContentLength() : int + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + int +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getContentType() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Content Type

                                                                                                                                                                                          + + + public + static getContentType() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getFullUrl() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Full URL (scheme + host [ + port if non-standard ] + path + query string)

                                                                                                                                                                                          + + + public + static getFullUrl() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getHost() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Host

                                                                                                                                                                                          + + + public + static getHost() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getHostWithPort() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Host with Port

                                                                                                                                                                                          + + + public + static getHostWithPort() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getIp() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get IP

                                                                                                                                                                                          + + + public + static getIp() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getMediaType() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Media Type (type/subtype within Content Type header)

                                                                                                                                                                                          + + + public + static getMediaType() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getMediaTypeParams() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Media Type Params

                                                                                                                                                                                          + + + public + static getMediaTypeParams() : array<string|int, mixed> + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getMethod() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get HTTP method

                                                                                                                                                                                          + + + public + static getMethod() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getOrDefault() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Returns request data

                                                                                                                                                                                          + + + public + static getOrDefault([string|null $key = null ][, mixed|null $default = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          This method returns get, post, put patch, delete or raw form data or NULL +if the data isn't found.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $default + : mixed|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getOriginalMethod() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get original method

                                                                                                                                                                                          + + + public + static getOriginalMethod() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getPath() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Path

                                                                                                                                                                                          + + + public + static getPath() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getPathInfo() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Path Info (virtual path)

                                                                                                                                                                                          + + + public + static getPathInfo() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getPhysicalPath() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get physical path

                                                                                                                                                                                          + + + public + static getPhysicalPath() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getPort() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Port

                                                                                                                                                                                          + + + public + static getPort() : int + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + int +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getQueryString() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get query string

                                                                                                                                                                                          + + + public + static getQueryString() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getReferer() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Referer (for those who can't spell)

                                                                                                                                                                                          + + + public + static getReferer() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getReferrer() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Referrer

                                                                                                                                                                                          + + + public + static getReferrer() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getScheme() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Scheme (https or http)

                                                                                                                                                                                          + + + public + static getScheme() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getScriptName() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Script Name

                                                                                                                                                                                          + + + public + static getScriptName() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getUrl() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get URL (scheme + host [ + port if non-standard ])

                                                                                                                                                                                          + + + public + static getUrl() : string + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + getUserAgent() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get User Agent

                                                                                                                                                                                          + + + public + static getUserAgent() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + hasHeader() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Find if request has a particular header

                                                                                                                                                                                          + + + public + static hasHeader(string $header) : bool + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $header + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Header to check for

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + bool +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + headers() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get Headers

                                                                                                                                                                                          + + + public + static headers([array<string|int, mixed>|string|null $key = null ][, bool $safeData = true ]) : array<string|int, mixed>|string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          This method returns a key-value array of headers sent in the HTTP request, or +the value of a hash key if requested. If the array key does not exist, NULL is returned.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The header(s) to return

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $safeData + : bool + = true
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Attempt to sanitize headers

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + array<string|int, mixed>|string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + input() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Access stream that allows you to read raw data from the request body. **This is not for form data**

                                                                                                                                                                                          + + + public + static input([bool $safeData = true ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $safeData + : bool + = true
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Sanitize data?

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + isAjax() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Is this an AJAX request?

                                                                                                                                                                                          + + + public + static isAjax() : bool + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + bool +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + isFormData() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Does the Request body contain parsed form data?

                                                                                                                                                                                          + + + public + static isFormData() : bool + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + bool +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + isXhr() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Is this an XHR request? (alias of Leaf_Http_Request::isAjax)

                                                                                                                                                                                          + + + public + static isXhr() : bool + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + bool +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + methodOverride() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Is this a method override request?

                                                                                                                                                                                          + + + public + static methodOverride() : string|null + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + string|null +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + next() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get data passed from the previous middleware

                                                                                                                                                                                          + + + public + static next([string|null $key = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The key to get from the middleware data

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + params() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Returns request data

                                                                                                                                                                                          + + + public + static params([string|null $key = null ][, mixed|null $default = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          This method returns get, post, put patch, delete or raw form data or NULL +if the data isn't found.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $default + : mixed|null + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + postData() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Return only get request data

                                                                                                                                                                                          + + + public + static postData([string|array<string|int, mixed> $item = null ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $item + : string|array<string|int, mixed> + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The items to output

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $default + : mixed + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The default value to return if no data is available

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + query() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Return only get request data

                                                                                                                                                                                          + + + public + static query([string|array<string|int, mixed> $item = null ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $item + : string|array<string|int, mixed> + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The items to output

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $default + : mixed + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The default value to return if no data is available

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + rawData() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get raw request data

                                                                                                                                                                                          + + + public + static rawData([string|array<string|int, mixed> $item = null ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $item + : string|array<string|int, mixed> + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The items to output

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $default + : mixed + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The default value to return if no data is available

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + try() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Attempt to retrieve data from the request.

                                                                                                                                                                                          + + + public + static try(array<string|int, mixed> $params[, bool $safeData = true ][, bool $noEmptyString = false ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +

                                                                                                                                                                                          Data which is not found in the request parameters will +be completely removed instead of returning null. Use get +if you want to return null or params if you want to set +a default value.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $params + : array<string|int, mixed> +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The parameters to return

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $safeData + : bool + = true
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Sanitize output?

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $noEmptyString + : bool + = false
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Remove empty strings from return data?

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + typeIs() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Check for request method type

                                                                                                                                                                                          + + + public + static typeIs(string $type) : bool + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $type + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The type of request to check for

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + bool +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + upload() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Store a file from the request.

                                                                                                                                                                                          + + + public + static upload(string $key, string $destination[, array<string|int, mixed> $config = [] ]) : array<string|int, mixed>|false + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The name of the file input the request.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $destination + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The directory where the file should be stored.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $config + : array<string|int, mixed> + = []
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Optional configurations: max_file_size, file_type, extensions

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + array<string|int, mixed>|false + — +

                                                                                                                                                                                          An array containing the status or false for a failure.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + uploadAs() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Store a file from the request with a given name

                                                                                                                                                                                          + + + public + static uploadAs(string $key, string $destination, string $name[, array<string|int, mixed> $config = [] ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $key + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The name of the file input the request.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $destination + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The directory where the file should be stored.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $name + : string +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The name to store the file as.

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $config + : array<string|int, mixed> + = []
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Optional configurations: max_file_size, file_type, extensions

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + urlData() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Return only get request data

                                                                                                                                                                                          + + + public + static urlData([string|array<string|int, mixed> $item = null ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $item + : string|array<string|int, mixed> + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The items to output

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $default + : mixed + = null
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The default value to return if no data is available

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + user() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Get the authenticated user

                                                                                                                                                                                          + + + public + static user() : mixed + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + validate() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Validate the request data

                                                                                                                                                                                          + + + public + static validate(array<string|int, mixed> $rules[, bool $returnFullData = false ]) : false|array<string|int, mixed> + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          Parameters
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $rules + : array<string|int, mixed> +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          The rules to validate against

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + $returnFullData + : bool + = false
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Return the full data or just the validated data?

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + false|array<string|int, mixed> + — +

                                                                                                                                                                                          Returns false if validation fails, or the validated data if validation passes

                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + validator() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Return validator instance

                                                                                                                                                                                          + + + public + static validator() : Form + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + Form +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          + auth() + + +

                                                                                                                                                                                          + + +

                                                                                                                                                                                          Return the auth instance

                                                                                                                                                                                          + + + protected + static auth() : Auth + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          Return values
                                                                                                                                                                                          + Auth +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          
                                                                                                                                                                                          +        
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + +
                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Search results

                                                                                                                                                                                          + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Response.html b/src/public/api/classes/Leaf-Http-Response.html new file mode 100644 index 00000000..e090506d --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Response.html @@ -0,0 +1,2465 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                            +

                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            +

                                                                                                                                                                                            + Response + + +
                                                                                                                                                                                            + in package + +
                                                                                                                                                                                            + + +

                                                                                                                                                                                            + +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            + + + +

                                                                                                                                                                                            Leaf HTTP Response +----------- +This is a simple abstraction over top an HTTP response. This +provides methods to set the HTTP status, the HTTP headers, +and the HTTP body.

                                                                                                                                                                                            + + + + +
                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + author +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +

                                                                                                                                                                                            Michael Darko

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + since +
                                                                                                                                                                                            +
                                                                                                                                                                                            + 1.0.0 + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + version +
                                                                                                                                                                                            +
                                                                                                                                                                                            + 2.0 + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                            + + + + + + + + + +

                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $cookies + +  : array<string|int, mixed> +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + $headers + +  : array<string|int, mixed> +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + $content + +  : string +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + $status + +  : int +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + $version + +  : string +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + +

                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + closeOutputBuffers() + +  : void +
                                                                                                                                                                                            +
                                                                                                                                                                                            Cleans or flushes output buffers up to target level.
                                                                                                                                                                                            + +
                                                                                                                                                                                            + custom() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output any text
                                                                                                                                                                                            + +
                                                                                                                                                                                            + die() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output some data and break the application
                                                                                                                                                                                            + +
                                                                                                                                                                                            + download() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output plain text
                                                                                                                                                                                            + +
                                                                                                                                                                                            + echo() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Alias of custom
                                                                                                                                                                                            + +
                                                                                                                                                                                            + exit() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output some data and break the application
                                                                                                                                                                                            + +
                                                                                                                                                                                            + getMessageForCode() + +  : string|null +
                                                                                                                                                                                            +
                                                                                                                                                                                            Get message for HTTP status code
                                                                                                                                                                                            + +
                                                                                                                                                                                            + httpVersion() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Get/Set Http Version
                                                                                                                                                                                            + +
                                                                                                                                                                                            + inertia() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Render an inertia view file if inertia is installed
                                                                                                                                                                                            + +
                                                                                                                                                                                            + js() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output js script
                                                                                                                                                                                            + +
                                                                                                                                                                                            + json() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output json encoded data with an HTTP code/message
                                                                                                                                                                                            + +
                                                                                                                                                                                            + markup() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output some html/PHP
                                                                                                                                                                                            + +
                                                                                                                                                                                            + next() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Pass data to the route handler
                                                                                                                                                                                            + +
                                                                                                                                                                                            + noContent() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            The HTTP 204 No Content success status response code indicates +that a request has succeeded, but that the client doesn't +need to navigate away from its current page.
                                                                                                                                                                                            + +
                                                                                                                                                                                            + page() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output data from an HTML or PHP file
                                                                                                                                                                                            + +
                                                                                                                                                                                            + plain() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output plain text
                                                                                                                                                                                            + +
                                                                                                                                                                                            + redirect() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Redirect
                                                                                                                                                                                            + +
                                                                                                                                                                                            + render() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Render a view file if a view engine is available
                                                                                                                                                                                            + +
                                                                                                                                                                                            + send() + +  : $this +
                                                                                                                                                                                            +
                                                                                                                                                                                            Send the Http headers and content
                                                                                                                                                                                            + +
                                                                                                                                                                                            + sendContent() + +  : $this +
                                                                                                                                                                                            +
                                                                                                                                                                                            Sends content for the current web response.
                                                                                                                                                                                            + +
                                                                                                                                                                                            + sendCookies() + +  : Response +
                                                                                                                                                                                            +
                                                                                                                                                                                            Send cookies
                                                                                                                                                                                            + +
                                                                                                                                                                                            + sendHeaders() + +  : $this +
                                                                                                                                                                                            +
                                                                                                                                                                                            Sends HTTP headers.
                                                                                                                                                                                            + +
                                                                                                                                                                                            + status() + +  : Response +
                                                                                                                                                                                            +
                                                                                                                                                                                            Force set HTTP status code
                                                                                                                                                                                            + +
                                                                                                                                                                                            + view() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Render a view file if a view engine is available
                                                                                                                                                                                            + +
                                                                                                                                                                                            + withCookie() + +  : Response +
                                                                                                                                                                                            +
                                                                                                                                                                                            Shorthand method of setting a cookie + value + expire time
                                                                                                                                                                                            + +
                                                                                                                                                                                            + withFlash() + +  : Response +
                                                                                                                                                                                            +
                                                                                                                                                                                            Flash a piece of data to the session.
                                                                                                                                                                                            + +
                                                                                                                                                                                            + withHeader() + +  : Response +
                                                                                                                                                                                            +
                                                                                                                                                                                            set header
                                                                                                                                                                                            + +
                                                                                                                                                                                            + withoutCookie() + +  : Response +
                                                                                                                                                                                            +
                                                                                                                                                                                            Delete cookie
                                                                                                                                                                                            + +
                                                                                                                                                                                            + xml() + +  : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            Output xml text
                                                                                                                                                                                            + +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +

                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + $cookies + + + + +

                                                                                                                                                                                            + + + + + + public + array<string|int, mixed> + $cookies + = [] + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + $headers + + + + +

                                                                                                                                                                                            + + + + + + public + array<string|int, mixed> + $headers + = [] + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + $content + + + + +

                                                                                                                                                                                            + + + + + + protected + string + $content + = '' + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + $status + + + + +

                                                                                                                                                                                            + + + + + + protected + int + $status + = 200 + + +

                                                                                                                                                                                            HTTP status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + $version + + + + +

                                                                                                                                                                                            + + + + + + protected + string + $version + + + +

                                                                                                                                                                                            HTTP Version

                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +

                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + closeOutputBuffers() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Cleans or flushes output buffers up to target level.

                                                                                                                                                                                            + + + public + static closeOutputBuffers(int $targetLevel, bool $flush) : void + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +

                                                                                                                                                                                            Resulting level can be greater than target level if a non-removable buffer has been encountered.

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $targetLevel + : int +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $flush + : bool +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + final +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + custom() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output any text

                                                                                                                                                                                            + + + public + custom(string $data[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + die() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output some data and break the application

                                                                                                                                                                                            + + + public + die(mixed $data[, int $code = 500 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 500
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The Http status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + download() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output plain text

                                                                                                                                                                                            + + + public + download(string $file[, string|null $name = null ][, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $file + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Path to the file to download

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $name + : string|null + = null
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The of the file as shown to user

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + echo() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Alias of custom

                                                                                                                                                                                            + + + public + echo(string $data[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + exit() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output some data and break the application

                                                                                                                                                                                            + + + public + exit(mixed $data[, int $code = 500 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 500
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The Http status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + getMessageForCode() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Get message for HTTP status code

                                                                                                                                                                                            + + + public + static getMessageForCode(int $status) : string|null + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $status + : int +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + string|null +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + httpVersion() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Get/Set Http Version

                                                                                                                                                                                            + + + public + httpVersion([string|null $version = null ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $version + : string|null + = null
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + inertia() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Render an inertia view file if inertia is installed

                                                                                                                                                                                            + + + public + inertia(string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $view + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The view file to render

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : array<string|int, mixed> + = []
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to pass to the view

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + js() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output js script

                                                                                                                                                                                            + + + public + js(string $data[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + json() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output json encoded data with an HTTP code/message

                                                                                                                                                                                            + + + public + json(mixed $data[, int $code = 200 ][, bool $showCode = false ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $showCode + : bool + = false
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Show response code in body?

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + markup() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output some html/PHP

                                                                                                                                                                                            + + + public + markup(string $markup[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $markup + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The http status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + next() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Pass data to the route handler

                                                                                                                                                                                            + + + public + next(mixed $data) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to pass

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + noContent() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            The HTTP 204 No Content success status response code indicates +that a request has succeeded, but that the client doesn't +need to navigate away from its current page.

                                                                                                                                                                                            + + + public + noContent() : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + page() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output data from an HTML or PHP file

                                                                                                                                                                                            + + + public + page(string $file[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $file + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The file to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The http status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + plain() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output plain text

                                                                                                                                                                                            + + + public + plain(mixed $data[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + redirect() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Redirect

                                                                                                                                                                                            + + + public + redirect(string|array<string|int, mixed> $url[, int $status = 302 ][, bool $exit = true ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +

                                                                                                                                                                                            This method prepares this response to return an HTTP Redirect response +to the HTTP client.

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $url + : string|array<string|int, mixed> +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The redirect destination

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $status + : int + = 302
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The redirect HTTP status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $exit + : bool + = true
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + render() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Render a view file if a view engine is available

                                                                                                                                                                                            + + + public + render(string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $view + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The view file to render

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : array<string|int, mixed> + = []
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to pass to the view

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + send() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Send the Http headers and content

                                                                                                                                                                                            + + + public + send() : $this + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + $this +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + sendContent() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Sends content for the current web response.

                                                                                                                                                                                            + + + public + sendContent() : $this + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + $this +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + sendCookies() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Send cookies

                                                                                                                                                                                            + + + public + sendCookies() : Response + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + Response +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + sendHeaders() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Sends HTTP headers.

                                                                                                                                                                                            + + + public + sendHeaders() : $this + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + $this +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + status() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Force set HTTP status code

                                                                                                                                                                                            + + + public + status([int|null $code = null ]) : Response + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int|null + = null
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + Response +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + view() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Render a view file if a view engine is available

                                                                                                                                                                                            + + + public + view(string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $view + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The view file to render

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : array<string|int, mixed> + = []
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to pass to the view

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + withCookie() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Shorthand method of setting a cookie + value + expire time

                                                                                                                                                                                            + + + public + withCookie(string $name, string $value[, int|null $expire = null ]) : Response + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The name of the cookie

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $value + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The value of cookie

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $expire + : int|null + = null
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            When the cookie expires. Default: 7 days

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + Response +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + withFlash() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Flash a piece of data to the session.

                                                                                                                                                                                            + + + public + withFlash(mixed $key[, mixed $value = null ]) : Response + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $key + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $value + : mixed + = null
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The value of flash item

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + Response +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + withHeader() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            set header

                                                                                                                                                                                            + + + public + withHeader(string|array<string|int, mixed> $name[, string|null $value = '' ][, bool $replace = true ][, int $httpCode = 200 ]) : Response + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $name + : string|array<string|int, mixed> +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Header name

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $value + : string|null + = ''
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Header value

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $replace + : bool + = true
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Replace existing header

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $httpCode + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The HTTP status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + Response +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + withoutCookie() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Delete cookie

                                                                                                                                                                                            + + + public + withoutCookie(mixed $name) : Response + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $name + : mixed +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The name of the cookie

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            Return values
                                                                                                                                                                                            + Response +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            + xml() + + +

                                                                                                                                                                                            + + +

                                                                                                                                                                                            Output xml text

                                                                                                                                                                                            + + + public + xml(string $data[, int $code = 200 ]) : mixed + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            Parameters
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $data + : string +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The data to output

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + $code + : int + = 200
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            The response status code

                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            
                                                                                                                                                                                            +        
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + +
                                                                                                                                                                                            + On this page + + +
                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            Search results

                                                                                                                                                                                            + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Session.html b/src/public/api/classes/Leaf-Http-Session.html new file mode 100644 index 00000000..776f3fcb --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Session.html @@ -0,0 +1,1459 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                              +

                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              +

                                                                                                                                                                                              + Session + + +
                                                                                                                                                                                              + in package + +
                                                                                                                                                                                              + + +

                                                                                                                                                                                              + +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              + + + +

                                                                                                                                                                                              Leaf Session +---------------- +App session management made simple with Leaf

                                                                                                                                                                                              + + + + +
                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + author +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              Michael Darko

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + since +
                                                                                                                                                                                              +
                                                                                                                                                                                              + 1.5.0 + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + all() + +  : array<string|int, mixed> +
                                                                                                                                                                                              +
                                                                                                                                                                                              Get all session variables as an array
                                                                                                                                                                                              + +
                                                                                                                                                                                              + body() + +  : array<string|int, mixed> +
                                                                                                                                                                                              +
                                                                                                                                                                                              Get all session variables as an array
                                                                                                                                                                                              + +
                                                                                                                                                                                              + clear() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Remove all session variables
                                                                                                                                                                                              + +
                                                                                                                                                                                              + decode() + +  : bool +
                                                                                                                                                                                              +
                                                                                                                                                                                              Decodes session data from a string
                                                                                                                                                                                              + +
                                                                                                                                                                                              + delete() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Alias for unset
                                                                                                                                                                                              + +
                                                                                                                                                                                              + destroy() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              End the current session
                                                                                                                                                                                              + +
                                                                                                                                                                                              + encode() + +  : string +
                                                                                                                                                                                              +
                                                                                                                                                                                              Encodes the current session data as a string
                                                                                                                                                                                              + +
                                                                                                                                                                                              + flash() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Set or get a flash message
                                                                                                                                                                                              + +
                                                                                                                                                                                              + get() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Get a session variable
                                                                                                                                                                                              + +
                                                                                                                                                                                              + has() + +  : bool +
                                                                                                                                                                                              +
                                                                                                                                                                                              Has Session Item
                                                                                                                                                                                              + +
                                                                                                                                                                                              + id() + +  : string +
                                                                                                                                                                                              +
                                                                                                                                                                                              Get the current session id: will set the session id if none is found
                                                                                                                                                                                              + +
                                                                                                                                                                                              + regenerate() + +  : bool +
                                                                                                                                                                                              +
                                                                                                                                                                                              Regenerate the session id/Generate a new session if none exists
                                                                                                                                                                                              + +
                                                                                                                                                                                              + remove() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Remove a session variable
                                                                                                                                                                                              + +
                                                                                                                                                                                              + reset() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Reset the current session
                                                                                                                                                                                              + +
                                                                                                                                                                                              + retrieve() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Returns the requested value and removes it from the session
                                                                                                                                                                                              + +
                                                                                                                                                                                              + set() + +  : void +
                                                                                                                                                                                              +
                                                                                                                                                                                              Set a new session variable
                                                                                                                                                                                              + +
                                                                                                                                                                                              + start() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Start a session if one isn't already started
                                                                                                                                                                                              + +
                                                                                                                                                                                              + unset() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Remove a session variable
                                                                                                                                                                                              + +
                                                                                                                                                                                              + unsetSessionVar() + +  : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              Remove a session variable
                                                                                                                                                                                              + +
                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                              +

                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + all() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Get all session variables as an array

                                                                                                                                                                                              + + + public + static all() : array<string|int, mixed> + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + body() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Get all session variables as an array

                                                                                                                                                                                              + + + public + static body() : array<string|int, mixed> + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + array<string|int, mixed> + — +

                                                                                                                                                                                              array of session variables

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + clear() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Remove all session variables

                                                                                                                                                                                              + + + public + static clear() : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + decode() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Decodes session data from a string

                                                                                                                                                                                              + + + public + static decode(mixed $data) : bool + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $data + : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + bool +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + delete() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Alias for unset

                                                                                                                                                                                              + + + public + static delete(mixed $key) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + destroy() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              End the current session

                                                                                                                                                                                              + + + public + static destroy() : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + encode() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Encodes the current session data as a string

                                                                                                                                                                                              + + + public + static encode() : string + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + string +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + flash() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Set or get a flash message

                                                                                                                                                                                              + + + public + static flash([string|null $message = null ]) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $message + : string|null + = null
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              The flash message

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + get() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Get a session variable

                                                                                                                                                                                              + + + public + static get(string|array<string|int, mixed> $param[, mixed $default = null ][, bool $sanitize = true ]) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $param + : string|array<string|int, mixed> +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              The session variable to get

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              The default value to return if the requested value cannot be found

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $sanitize + : bool + = true
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              Sanitize the data before returning it?

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + has() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Has Session Item

                                                                                                                                                                                              + + + public + static has(mixed $key) : bool + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + bool +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + id() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Get the current session id: will set the session id if none is found

                                                                                                                                                                                              + + + public + static id([string $id = null ]) : string + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $id + : string + = null
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              id to override the default

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + string +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + regenerate() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Regenerate the session id/Generate a new session if none exists

                                                                                                                                                                                              + + + public + static regenerate([bool $clearData = false ]) : bool + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $clearData + : bool + = false
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              Clear all session data?

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + bool + — +

                                                                                                                                                                                              True on success, false on failure

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + remove() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Remove a session variable

                                                                                                                                                                                              + + + public + static remove(mixed $key) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + reset() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Reset the current session

                                                                                                                                                                                              + + + public + static reset([string $id = null ]) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $id + : string + = null
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              id to overwrite the default

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + retrieve() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Returns the requested value and removes it from the session

                                                                                                                                                                                              + + + public + static retrieve(string $key[, mixed $default = null ][, bool $sanitize = true ]) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +

                                                                                                                                                                                              This is identical to calling get first and then unset for the same key

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : string +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              the key to retrieve and remove the value for

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $sanitize + : bool + = true
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              Whether to sanitize the returned value

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              Return values
                                                                                                                                                                                              + mixed + — +

                                                                                                                                                                                              the requested value or the default value

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + set() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Set a new session variable

                                                                                                                                                                                              + + + public + static set(mixed $key[, mixed $value = null ]) : void + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              : The session variable key

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $value + : mixed + = null
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              : The session variable value

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + start() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Start a session if one isn't already started

                                                                                                                                                                                              + + + public + static start() : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + unset() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Remove a session variable

                                                                                                                                                                                              + + + public + static unset(string $key) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : string +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              : The session variable key

                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              + unsetSessionVar() + + +

                                                                                                                                                                                              + + +

                                                                                                                                                                                              Remove a session variable

                                                                                                                                                                                              + + + protected + static unsetSessionVar(mixed $key) : mixed + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              Parameters
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              
                                                                                                                                                                                              +        
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + +
                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              Search results

                                                                                                                                                                                              + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Http-Status.html b/src/public/api/classes/Leaf-Http-Status.html new file mode 100644 index 00000000..73557379 --- /dev/null +++ b/src/public/api/classes/Leaf-Http-Status.html @@ -0,0 +1,2968 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                + Status + + +
                                                                                                                                                                                                + in package + +
                                                                                                                                                                                                + + +

                                                                                                                                                                                                + +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                + + + +

                                                                                                                                                                                                Leaf Status Code Helper

                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + since +
                                                                                                                                                                                                +
                                                                                                                                                                                                + 2.0 + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + version +
                                                                                                                                                                                                +
                                                                                                                                                                                                + 1.0 + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                + + + + + + + +

                                                                                                                                                                                                + Constants + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + HTTP_ACCEPTED + +  = 202 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_ALREADY_REPORTED + +  = 208 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_BAD_GATEWAY + +  = 502 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_BAD_REQUEST + +  = 400 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_CONFLICT + +  = 409 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_CONTINUE + +  = 100 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_CREATED + +  = 201 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_EARLY_HINTS + +  = 103 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_EXPECTATION_FAILED + +  = 417 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_FAILED_DEPENDENCY + +  = 424 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_FORBIDDEN + +  = 403 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_FOUND + +  = 302 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_GATEWAY_TIMEOUT + +  = 504 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_GONE + +  = 410 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_I_AM_A_TEAPOT + +  = 418 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_IM_USED + +  = 226 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_INSUFFICIENT_STORAGE + +  = 507 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_INTERNAL_SERVER_ERROR + +  = 500 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_LENGTH_REQUIRED + +  = 411 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_LOCKED + +  = 423 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_LOOP_DETECTED + +  = 508 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_METHOD_NOT_ALLOWED + +  = 405 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_MISDIRECTED_REQUEST + +  = 421 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_MOVED_PERMANENTLY + +  = 301 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_MULTI_STATUS + +  = 207 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_MULTIPLE_CHOICES + +  = 300 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NETWORK_AUTHENTICATION_REQUIRED + +  = 511 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NO_CONTENT + +  = 204 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NON_AUTHORITATIVE_INFORMATION + +  = 203 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NOT_ACCEPTABLE + +  = 406 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NOT_EXTENDED + +  = 510 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NOT_FOUND + +  = 404 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NOT_IMPLEMENTED + +  = 501 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_NOT_MODIFIED + +  = 304 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_OK + +  = 200 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PARTIAL_CONTENT + +  = 206 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PAYMENT_REQUIRED + +  = 402 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PERMANENTLY_REDIRECT + +  = 308 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PRECONDITION_FAILED + +  = 412 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PRECONDITION_REQUIRED + +  = 428 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PROCESSING + +  = 102 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_PROXY_AUTHENTICATION_REQUIRED + +  = 407 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_REQUEST_ENTITY_TOO_LARGE + +  = 413 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE + +  = 431 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_REQUEST_TIMEOUT + +  = 408 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_REQUEST_URI_TOO_LONG + +  = 414 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_REQUESTED_RANGE_NOT_SATISFIABLE + +  = 416 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_RESERVED + +  = 306 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_RESET_CONTENT + +  = 205 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_SEE_OTHER + +  = 303 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_SERVICE_UNAVAILABLE + +  = 503 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_SWITCHING_PROTOCOLS + +  = 101 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_TEMPORARY_REDIRECT + +  = 307 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_TOO_EARLY + +  = 425 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_TOO_MANY_REQUESTS + +  = 429 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_UNAUTHORIZED + +  = 401 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_UNAVAILABLE_FOR_LEGAL_REASONS + +  = 451 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_UNPROCESSABLE_ENTITY + +  = 422 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_UNSUPPORTED_MEDIA_TYPE + +  = 415 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_UPGRADE_REQUIRED + +  = 426 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_USE_PROXY + +  = 305 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL + +  = 506 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + HTTP_VERSION_NOT_SUPPORTED + +  = 505 +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + +

                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + $statusTexts + +  : array<string|int, mixed> +
                                                                                                                                                                                                +
                                                                                                                                                                                                Status codes translation table.
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                + Constants + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_ACCEPTED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_ACCEPTED + = 202 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_ALREADY_REPORTED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_ALREADY_REPORTED + = 208 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_BAD_GATEWAY + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_BAD_GATEWAY + = 502 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_BAD_REQUEST + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_BAD_REQUEST + = 400 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_CONFLICT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_CONFLICT + = 409 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_CONTINUE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_CONTINUE + = 100 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_CREATED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_CREATED + = 201 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_EARLY_HINTS + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_EARLY_HINTS + = 103 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_EXPECTATION_FAILED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_EXPECTATION_FAILED + = 417 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_FAILED_DEPENDENCY + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_FAILED_DEPENDENCY + = 424 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_FORBIDDEN + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_FORBIDDEN + = 403 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_FOUND + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_FOUND + = 302 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_GATEWAY_TIMEOUT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_GATEWAY_TIMEOUT + = 504 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_GONE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_GONE + = 410 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_I_AM_A_TEAPOT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_I_AM_A_TEAPOT + = 418 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_IM_USED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_IM_USED + = 226 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_INSUFFICIENT_STORAGE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_INSUFFICIENT_STORAGE + = 507 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_INTERNAL_SERVER_ERROR + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_INTERNAL_SERVER_ERROR + = 500 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_LENGTH_REQUIRED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_LENGTH_REQUIRED + = 411 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_LOCKED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_LOCKED + = 423 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_LOOP_DETECTED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_LOOP_DETECTED + = 508 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_METHOD_NOT_ALLOWED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_METHOD_NOT_ALLOWED + = 405 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_MISDIRECTED_REQUEST + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_MISDIRECTED_REQUEST + = 421 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_MOVED_PERMANENTLY + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_MOVED_PERMANENTLY + = 301 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_MULTI_STATUS + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_MULTI_STATUS + = 207 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_MULTIPLE_CHOICES + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_MULTIPLE_CHOICES + = 300 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NETWORK_AUTHENTICATION_REQUIRED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NETWORK_AUTHENTICATION_REQUIRED + = 511 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NO_CONTENT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NO_CONTENT + = 204 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NON_AUTHORITATIVE_INFORMATION + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NON_AUTHORITATIVE_INFORMATION + = 203 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NOT_ACCEPTABLE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NOT_ACCEPTABLE + = 406 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NOT_EXTENDED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NOT_EXTENDED + = 510 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NOT_FOUND + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NOT_FOUND + = 404 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NOT_IMPLEMENTED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NOT_IMPLEMENTED + = 501 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_NOT_MODIFIED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_NOT_MODIFIED + = 304 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_OK + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_OK + = 200 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PARTIAL_CONTENT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PARTIAL_CONTENT + = 206 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PAYMENT_REQUIRED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PAYMENT_REQUIRED + = 402 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PERMANENTLY_REDIRECT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PERMANENTLY_REDIRECT + = 308 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PRECONDITION_FAILED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PRECONDITION_FAILED + = 412 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PRECONDITION_REQUIRED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PRECONDITION_REQUIRED + = 428 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PROCESSING + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PROCESSING + = 102 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_PROXY_AUTHENTICATION_REQUIRED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_PROXY_AUTHENTICATION_REQUIRED + = 407 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_REQUEST_ENTITY_TOO_LARGE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_REQUEST_ENTITY_TOO_LARGE + = 413 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE + = 431 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_REQUEST_TIMEOUT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_REQUEST_TIMEOUT + = 408 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_REQUEST_URI_TOO_LONG + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_REQUEST_URI_TOO_LONG + = 414 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_REQUESTED_RANGE_NOT_SATISFIABLE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_REQUESTED_RANGE_NOT_SATISFIABLE + = 416 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_RESERVED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_RESERVED + = 306 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_RESET_CONTENT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_RESET_CONTENT + = 205 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_SEE_OTHER + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_SEE_OTHER + = 303 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_SERVICE_UNAVAILABLE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_SERVICE_UNAVAILABLE + = 503 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_SWITCHING_PROTOCOLS + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_SWITCHING_PROTOCOLS + = 101 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_TEMPORARY_REDIRECT + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_TEMPORARY_REDIRECT + = 307 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_TOO_EARLY + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_TOO_EARLY + = 425 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_TOO_MANY_REQUESTS + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_TOO_MANY_REQUESTS + = 429 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_UNAUTHORIZED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_UNAUTHORIZED + = 401 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + + + + + public + mixed + HTTP_UNAVAILABLE_FOR_LEGAL_REASONS + = 451 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_UNPROCESSABLE_ENTITY + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_UNPROCESSABLE_ENTITY + = 422 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_UNSUPPORTED_MEDIA_TYPE + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_UNSUPPORTED_MEDIA_TYPE + = 415 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_UPGRADE_REQUIRED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_UPGRADE_REQUIRED + = 426 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_USE_PROXY + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_USE_PROXY + = 305 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL + = 506 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + HTTP_VERSION_NOT_SUPPORTED + + +

                                                                                                                                                                                                + + + + + + + public + mixed + HTTP_VERSION_NOT_SUPPORTED + = 505 + + + + + + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                +

                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                + $statusTexts + + + + +

                                                                                                                                                                                                + + +

                                                                                                                                                                                                Status codes translation table.

                                                                                                                                                                                                + + + + public + static array<string|int, mixed> + $statusTexts + = [ + 100 => 'Continue', + 101 => 'Switching Protocols', + 102 => 'Processing', + // RFC2518 + 103 => 'Early Hints', + 200 => 'OK', + 201 => 'Created', + 202 => 'Accepted', + 203 => 'Non-Authoritative Information', + 204 => 'No Content', + 205 => 'Reset Content', + 206 => 'Partial Content', + 207 => 'Multi-Status', + // RFC4918 + 208 => 'Already Reported', + // RFC5842 + 226 => 'IM Used', + // RFC3229 + 300 => 'Multiple Choices', + 301 => 'Moved Permanently', + 302 => 'Found', + 303 => 'See Other', + 304 => 'Not Modified', + 305 => 'Use Proxy', + 307 => 'Temporary Redirect', + 308 => 'Permanent Redirect', + // RFC7238 + 400 => 'Bad Request', + 401 => 'Unauthorized', + 402 => 'Payment Required', + 403 => 'Forbidden', + 404 => 'Not Found', + 405 => 'Method Not Allowed', + 406 => 'Not Acceptable', + 407 => 'Proxy Authentication Required', + 408 => 'Request Timeout', + 409 => 'Conflict', + 410 => 'Gone', + 411 => 'Length Required', + 412 => 'Precondition Failed', + 413 => 'Content Too Large', + // RFC-ietf-httpbis-semantics + 414 => 'URI Too Long', + 415 => 'Unsupported Media Type', + 416 => 'Range Not Satisfiable', + 417 => 'Expectation Failed', + 418 => 'I\'m a teapot', + // RFC2324 + 421 => 'Misdirected Request', + // RFC7540 + 422 => 'Unprocessable Content', + // RFC-ietf-httpbis-semantics + 423 => 'Locked', + // RFC4918 + 424 => 'Failed Dependency', + // RFC4918 + 425 => 'Too Early', + // RFC-ietf-httpbis-replay-04 + 426 => 'Upgrade Required', + // RFC2817 + 428 => 'Precondition Required', + // RFC6585 + 429 => 'Too Many Requests', + // RFC6585 + 431 => 'Request Header Fields Too Large', + // RFC6585 + 451 => 'Unavailable For Legal Reasons', + // RFC7725 + 500 => 'Internal Server Error', + 501 => 'Not Implemented', + 502 => 'Bad Gateway', + 503 => 'Service Unavailable', + 504 => 'Gateway Timeout', + 505 => 'HTTP Version Not Supported', + 506 => 'Variant Also Negotiates', + // RFC2295 + 507 => 'Insufficient Storage', + // RFC4918 + 508 => 'Loop Detected', + // RFC5842 + 510 => 'Not Extended', + // RFC2774 + 511 => 'Network Authentication Required', +] + +

                                                                                                                                                                                                The list of codes is complete according to the +Hypertext Transfer Protocol (HTTP) Status Code Registry +(last updated 2021-10-01).

                                                                                                                                                                                                +

                                                                                                                                                                                                Unless otherwise noted, the status code is defined in RFC2616.

                                                                                                                                                                                                +
                                                                                                                                                                                                + + + +
                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + author +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +

                                                                                                                                                                                                Fabien Potencier fabien@symfony.com

                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                
                                                                                                                                                                                                +        
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                Search results

                                                                                                                                                                                                + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Inertia-Ssr-BundleDetector.html b/src/public/api/classes/Leaf-Inertia-Ssr-BundleDetector.html new file mode 100644 index 00000000..54c69637 --- /dev/null +++ b/src/public/api/classes/Leaf-Inertia-Ssr-BundleDetector.html @@ -0,0 +1,422 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + BundleDetector + + +
                                                                                                                                                                                                  + in package + +
                                                                                                                                                                                                  + + +

                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  + + + + + + + + + + + + +

                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + detect() + +  : mixed +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  + detect() + + +

                                                                                                                                                                                                  + + + + + public + detect() : mixed + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  
                                                                                                                                                                                                  +        
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Search results

                                                                                                                                                                                                  + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Inertia-Ssr-Gateway.html b/src/public/api/classes/Leaf-Inertia-Ssr-Gateway.html new file mode 100644 index 00000000..53641155 --- /dev/null +++ b/src/public/api/classes/Leaf-Inertia-Ssr-Gateway.html @@ -0,0 +1,434 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + Gateway + + +
                                                                                                                                                                                                    + in package + +
                                                                                                                                                                                                    + + +

                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    + + + + + + + + + + + + +

                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + dispatch() + +  : mixed +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    Dispatch the Inertia page to the Server Side Rendering engine.
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    + dispatch() + + +

                                                                                                                                                                                                    + + +

                                                                                                                                                                                                    Dispatch the Inertia page to the Server Side Rendering engine.

                                                                                                                                                                                                    + + + public + dispatch(array<string|int, mixed> $page) : mixed + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + $page + : array<string|int, mixed> +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    
                                                                                                                                                                                                    +        
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Search results

                                                                                                                                                                                                    + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Inertia-Ssr-Response.html b/src/public/api/classes/Leaf-Inertia-Ssr-Response.html new file mode 100644 index 00000000..6fd7b3c3 --- /dev/null +++ b/src/public/api/classes/Leaf-Inertia-Ssr-Response.html @@ -0,0 +1,547 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + Response + + +
                                                                                                                                                                                                      + in package + +
                                                                                                                                                                                                      + + +

                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      + + + + + + + + + + + + +

                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                      + + + + + + + + + +

                                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + $body + +  : string +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + $head + +  : string +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + +

                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + __construct() + +  : mixed +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      Prepare the Inertia Server Side Rendering (SSR) response.
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + $body + + + + +

                                                                                                                                                                                                      + + + + + + public + string + $body + + + + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + $head + + + + +

                                                                                                                                                                                                      + + + + + + public + string + $head + + + + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      + __construct() + + +

                                                                                                                                                                                                      + + +

                                                                                                                                                                                                      Prepare the Inertia Server Side Rendering (SSR) response.

                                                                                                                                                                                                      + + + public + __construct(string $head, string $body) : mixed + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + $head + : string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + $body + : string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      
                                                                                                                                                                                                      +        
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Search results

                                                                                                                                                                                                      + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Inertia.html b/src/public/api/classes/Leaf-Inertia.html new file mode 100644 index 00000000..2020db55 --- /dev/null +++ b/src/public/api/classes/Leaf-Inertia.html @@ -0,0 +1,802 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + Inertia + + +
                                                                                                                                                                                                        + in package + +
                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                        Inertia Adapter for Leaf +---- +This adapter allows you to use InertiaJS with Leaf.

                                                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + $rootView + +  : mixed +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Root view
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + +

                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + getSharedPageInfo() + +  : mixed +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Get shared page info
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + getSharedProps() + +  : mixed +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Get shared props
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + getVersion() + +  : mixed +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Get version
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + isBladeProject() + +  : mixed +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + render() + +  : mixed +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Render InertiaJS view
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + resolvePropertyInstances() + +  : array<string|int, mixed> +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Resolve all necessary class instances in the given props.
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + setRootView() + +  : mixed +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Set root view
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + $rootView + + + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Root view

                                                                                                                                                                                                        + + + + protected + static mixed + $rootView + = '_inertia' + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + getSharedPageInfo() + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Get shared page info

                                                                                                                                                                                                        + + + public + static getSharedPageInfo() : mixed + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + getSharedProps() + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Get shared props

                                                                                                                                                                                                        + + + public + static getSharedProps() : mixed + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + getVersion() + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Get version

                                                                                                                                                                                                        + + + public + static getVersion() : mixed + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + isBladeProject() + + +

                                                                                                                                                                                                        + + + + + public + static isBladeProject() : mixed + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + render() + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Render InertiaJS view

                                                                                                                                                                                                        + + + public + static render(string $component[, array<string|int, mixed> $props = [] ]) : mixed + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + $component + : string +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        The component to render.

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + $props + : array<string|int, mixed> + = []
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        The props to pass to the component.

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + resolvePropertyInstances() + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Resolve all necessary class instances in the given props.

                                                                                                                                                                                                        + + + public + static resolvePropertyInstances(array<string|int, mixed> $props[, bool $unpackDotProps = true ]) : array<string|int, mixed> + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + $props + : array<string|int, mixed> +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        The props to resolve.

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + $unpackDotProps + : bool + = true
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Whether to unpack dot props.

                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        Return values
                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        + setRootView() + + +

                                                                                                                                                                                                        + + +

                                                                                                                                                                                                        Set root view

                                                                                                                                                                                                        + + + public + static setRootView(string $rootView) : mixed + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + $rootView + : string +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        
                                                                                                                                                                                                        +        
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Search results

                                                                                                                                                                                                        + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Job.html b/src/public/api/classes/Leaf-Job.html new file mode 100644 index 00000000..40281e8b --- /dev/null +++ b/src/public/api/classes/Leaf-Job.html @@ -0,0 +1,1609 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + Job + + +
                                                                                                                                                                                                          + in package + +
                                                                                                                                                                                                          + + + implements + Dispatchable + +

                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          AbstractYes
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + + + + + + + + +

                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                          + Interfaces + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Dispatchable
                                                                                                                                                                                                          Contract for dispatchable classes
                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $connection + +  : string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Configured queue connection
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $data + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Data to pass to the job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $delay + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Number of seconds to wait before processing a job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $delayBeforeRetry + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Number of seconds to wait before retrying a job that has failed.
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $expire + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Number of seconds to wait before archiving a job that has not yet been processed
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $force + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Force the worker to process the job, even if it has expired or has reached its maximum number of retries
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $job + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Current job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $memory + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          The maximum amount of memory the job is allowed to consume (MB)
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $queue + +  : Queue +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Queue instance
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $timeout + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          The number of seconds a child process can run before being killed.
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + $tries + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          The maximum number of times the job may be attempted.
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + +

                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + connection() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Return configured connection
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + fromQueue() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Load a job for running
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + getConfig() + +  : array<string|int, mixed> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Return config for the job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + getJobId() + +  : string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Get the job identifier.
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + handleDelay() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Handle delay for job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + handleExpiry() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Handle job expiry
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + hasExpired() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Check if job has expired
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + hasReachedRetryLimit() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Check if job has reached retry limit
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + release() + +  : void +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Release the job back into the queue after (n) seconds.
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + removeFromQueue() + +  : mixed +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + retry() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Retry job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + setStatus() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Set job status
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + stack() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Return job stack if available
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + trigger() + +  : mixed +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + with() + +  : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Add data to the job
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $connection + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Configured queue connection

                                                                                                                                                                                                          + + + + protected + string + $connection + = 'default' + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $data + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Data to pass to the job

                                                                                                                                                                                                          + + + + protected + static mixed + $data + = [] + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $delay + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Number of seconds to wait before processing a job

                                                                                                                                                                                                          + + + + protected + mixed + $delay + = 0 + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $delayBeforeRetry + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Number of seconds to wait before retrying a job that has failed.

                                                                                                                                                                                                          + + + + protected + mixed + $delayBeforeRetry + = 0 + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $expire + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Number of seconds to wait before archiving a job that has not yet been processed

                                                                                                                                                                                                          + + + + protected + mixed + $expire + = 60 + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $force + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Force the worker to process the job, even if it has expired or has reached its maximum number of retries

                                                                                                                                                                                                          + + + + protected + mixed + $force + = false + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $job + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Current job

                                                                                                                                                                                                          + + + + protected + mixed + $job + = [] + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $memory + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          The maximum amount of memory the job is allowed to consume (MB)

                                                                                                                                                                                                          + + + + protected + mixed + $memory + = 128 + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $queue + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Queue instance

                                                                                                                                                                                                          + + + + protected + Queue + $queue + = null + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $timeout + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          The number of seconds a child process can run before being killed.

                                                                                                                                                                                                          + + + + protected + mixed + $timeout + = 60 + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + $tries + + + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          The maximum number of times the job may be attempted.

                                                                                                                                                                                                          + + + + protected + mixed + $tries + = 3 + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + connection() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Return configured connection

                                                                                                                                                                                                          + + + public + connection() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + fromQueue() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Load a job for running

                                                                                                                                                                                                          + + + public + fromQueue(mixed $job, mixed $config, mixed $queue) : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $job + : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $config + : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $queue + : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + getConfig() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Return config for the job

                                                                                                                                                                                                          + + + public + getConfig() : array<string|int, mixed> + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Return values
                                                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + getJobId() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Get the job identifier.

                                                                                                                                                                                                          + + + public + getJobId() : string + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          Return values
                                                                                                                                                                                                          + string +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + handleDelay() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Handle delay for job

                                                                                                                                                                                                          + + + public + handleDelay() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + handleExpiry() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Handle job expiry

                                                                                                                                                                                                          + + + public + handleExpiry() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + hasExpired() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Check if job has expired

                                                                                                                                                                                                          + + + public + hasExpired() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + hasReachedRetryLimit() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Check if job has reached retry limit

                                                                                                                                                                                                          + + + public + hasReachedRetryLimit() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + release() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Release the job back into the queue after (n) seconds.

                                                                                                                                                                                                          + + + public + release([int $delay = 0 ]) : void + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $delay + : int + = 0
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + removeFromQueue() + + +

                                                                                                                                                                                                          + + + + + public + removeFromQueue() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + retry() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Retry job

                                                                                                                                                                                                          + + + public + retry() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + setStatus() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Set job status

                                                                                                                                                                                                          + + + public + setStatus(mixed $status) : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $status + : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + stack() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Return job stack if available

                                                                                                                                                                                                          + + + public + stack() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + trigger() + + +

                                                                                                                                                                                                          + + + + + public + trigger() : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          + with() + + +

                                                                                                                                                                                                          + + +

                                                                                                                                                                                                          Add data to the job

                                                                                                                                                                                                          + + + public + static with(mixed $data) : mixed + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + $data + : mixed +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          
                                                                                                                                                                                                          +        
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Search results

                                                                                                                                                                                                          + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Log.html b/src/public/api/classes/Leaf-Log.html new file mode 100644 index 00000000..bad0ac4a --- /dev/null +++ b/src/public/api/classes/Leaf-Log.html @@ -0,0 +1,1967 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Log + + +
                                                                                                                                                                                                            + in package + +
                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                            Log

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            This is the primary logger for a Leaf application. You may provide +a Log Writer in conjunction with this Log to write to various output +destinations (e.g. a file). This class provides this interface:

                                                                                                                                                                                                            +

                                                                                                                                                                                                            debug( mixed $object, array $context ) +info( mixed $object, array $context ) +notice( mixed $object, array $context ) +warning( mixed $object, array $context ) +error( mixed $object, array $context ) +critical( mixed $object, array $context ) +alert( mixed $object, array $context ) +emergency( mixed $object, array $context ) +log( mixed $level, mixed $object, array $context )

                                                                                                                                                                                                            +

                                                                                                                                                                                                            This class assumes only that your Log Writer has a public write() method +that accepts any object as its one and only argument. The Log Writer +class may write or send its argument anywhere: a file, STDERR, +a remote web API, etc. The possibilities are endless.

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + author +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            Michael Darko

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + since +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + 1.5.0 + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                            + + + + + + + +

                                                                                                                                                                                                            + Constants + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + ALERT + +  = 2 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + CRITICAL + +  = 3 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + DEBUG + +  = 8 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + EMERGENCY + +  = 1 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + ERROR + +  = 4 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + INFO + +  = 7 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + NOTICE + +  = 6 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + WARN + +  = 5 +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $enabled + +  : bool +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + $level + +  : int +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + $levels + +  : array<string|int, mixed> +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + $writer + +  : mixed +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + __construct() + +  : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Constructor
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + alert() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log alert message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + critical() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log critical message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + debug() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log debug message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + emergency() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log emergency message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + enabled() + +  : bool|void +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Enable or disable logging/return logging state
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + error() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log error message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + getLevel() + +  : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Get/Set log level
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + info() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log info message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + isEnabled() + +  : bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Is logging enabled?
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + level() + +  : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Get/Set log level
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + log() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + notice() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log notice message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + warning() + +  : mixed|bool +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Log warning message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + writer() + +  : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Get/Set log writer
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + interpolate() + +  : string +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Interpolate log message
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Constants + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + ALERT + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + ALERT + = 2 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + CRITICAL + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + CRITICAL + = 3 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + DEBUG + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + DEBUG + = 8 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + EMERGENCY + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + EMERGENCY + = 1 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + ERROR + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + ERROR + = 4 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + INFO + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + INFO + = 7 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + NOTICE + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + NOTICE + = 6 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + WARN + + +

                                                                                                                                                                                                            + + + + + + + public + mixed + WARN + = 5 + + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + $enabled + + + + +

                                                                                                                                                                                                            + + + + + + protected + bool + $enabled + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + $level + + + + +

                                                                                                                                                                                                            + + + + + + protected + int + $level + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + $levels + + + + +

                                                                                                                                                                                                            + + + + + + protected + static array<string|int, mixed> + $levels + = [self::EMERGENCY => 'EMERGENCY', self::ALERT => 'ALERT', self::CRITICAL => 'CRITICAL', self::ERROR => 'ERROR', self::WARN => 'WARNING', self::NOTICE => 'NOTICE', self::INFO => 'INFO', self::DEBUG => 'DEBUG'] + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + $writer + + + + +

                                                                                                                                                                                                            + + + + + + protected + mixed + $writer + + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + __construct() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Constructor

                                                                                                                                                                                                            + + + public + __construct(mixed $writer) : mixed + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $writer + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + alert() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log alert message

                                                                                                                                                                                                            + + + public + alert(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + critical() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log critical message

                                                                                                                                                                                                            + + + public + critical(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + debug() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log debug message

                                                                                                                                                                                                            + + + public + debug(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + emergency() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log emergency message

                                                                                                                                                                                                            + + + public + emergency(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + enabled() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Enable or disable logging/return logging state

                                                                                                                                                                                                            + + + public + enabled([bool|null $enabled = null ]) : bool|void + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $enabled + : bool|null + = null
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Whether to enable or disable logging

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + bool|void +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + error() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log error message

                                                                                                                                                                                                            + + + public + error(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + getLevel() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Get/Set log level

                                                                                                                                                                                                            + + + public + static getLevel(int|null $level) : mixed + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $level + : int|null +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            The log level

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + info() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log info message

                                                                                                                                                                                                            + + + public + info(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + isEnabled() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Is logging enabled?

                                                                                                                                                                                                            + + + public + isEnabled() : bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + bool +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + level() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Get/Set log level

                                                                                                                                                                                                            + + + public + level([int|null $level = null ]) : mixed + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $level + : int|null + = null
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            The log level

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + log() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log message

                                                                                                                                                                                                            + + + public + log(mixed $level, mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $level + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                            If invalid log level

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + notice() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log notice message

                                                                                                                                                                                                            + + + public + notice(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + warning() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Log warning message

                                                                                                                                                                                                            + + + public + warning(mixed $object[, array<string|int, mixed> $context = [] ]) : mixed|bool + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $object + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + mixed|bool + — +

                                                                                                                                                                                                            What the Logger returns, or false if Logger not set or not enabled

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + writer() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Get/Set log writer

                                                                                                                                                                                                            + + + public + writer([mixed $writer = null ]) : mixed + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $writer + : mixed + = null
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + interpolate() + + +

                                                                                                                                                                                                            + + +

                                                                                                                                                                                                            Interpolate log message

                                                                                                                                                                                                            + + + protected + interpolate(mixed $message[, array<string|int, mixed> $context = [] ]) : string + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $message + : mixed +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            The log message

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + $context + : array<string|int, mixed> + = []
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            An array of placeholder values

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            Return values
                                                                                                                                                                                                            + string + — +

                                                                                                                                                                                                            The processed string

                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            
                                                                                                                                                                                                            +        
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + On this page + + +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Search results

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-LogWriter.html b/src/public/api/classes/Leaf-LogWriter.html new file mode 100644 index 00000000..39b67eb3 --- /dev/null +++ b/src/public/api/classes/Leaf-LogWriter.html @@ -0,0 +1,714 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + LogWriter + + +
                                                                                                                                                                                                              + in package + +
                                                                                                                                                                                                              + + +

                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                              Log Writer

                                                                                                                                                                                                              + + +

                                                                                                                                                                                                              This class is used by Leaf_Log to write log messages to a valid, writable +resource handle (e.g. a file or STDERR).

                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + author +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              Michael Darko

                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + since +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + 2.0.0 + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                              + + + + + + + + + +

                                                                                                                                                                                                              + Properties + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $logFile + +  : mixed +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + +

                                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + __construct() + +  : mixed +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              Constructor
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + write() + +  : int|bool +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              Write message
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + writeAsLeaf() + +  : mixed +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + writeAsLinux() + +  : mixed +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + Properties + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + $logFile + + + + +

                                                                                                                                                                                                              + + + + + + protected + mixed + $logFile + + + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + __construct() + + +

                                                                                                                                                                                                              + + +

                                                                                                                                                                                                              Constructor

                                                                                                                                                                                                              + + + public + __construct(string $file[, bool $createFile = false ]) : mixed + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $file + : string +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              File to log to

                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $createFile + : bool + = false
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Create file if it's not found

                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + write() + + +

                                                                                                                                                                                                              + + +

                                                                                                                                                                                                              Write message

                                                                                                                                                                                                              + + + public + write(mixed $message[, int $level = null ]) : int|bool + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $message + : mixed +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $level + : int + = null
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              Return values
                                                                                                                                                                                                              + int|bool +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + writeAsLeaf() + + +

                                                                                                                                                                                                              + + + + + protected + writeAsLeaf(mixed $message, mixed $level) : mixed + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $message + : mixed +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $level + : mixed +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              + writeAsLinux() + + +

                                                                                                                                                                                                              + + + + + protected + writeAsLinux(mixed $message, mixed $level) : mixed + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $message + : mixed +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + $level + : mixed +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              
                                                                                                                                                                                                              +        
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Search results

                                                                                                                                                                                                              + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Mail-Mailer.html b/src/public/api/classes/Leaf-Mail-Mailer.html new file mode 100644 index 00000000..5eed10f3 --- /dev/null +++ b/src/public/api/classes/Leaf-Mail-Mailer.html @@ -0,0 +1,876 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + Mailer + + +
                                                                                                                                                                                                                + in package + +
                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                + + + + + + + + + + + + +

                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                + + + + + + + + + +

                                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + $auth + +  : mixed +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + $config + +  : mixed +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + $errors + +  : mixed +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                Errors
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + $mailer + +  : mixed +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + +

                                                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + config() + +  : mixed +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + connect() + +  : mixed +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                SMTP Connection
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + errors() + +  : mixed +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                Return all errors
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + send() + +  : mixed +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                Send
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + useOAuth() + +  : mixed +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + validate() + +  : mixed +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + $auth + + + + +

                                                                                                                                                                                                                + + + + + + protected + static mixed + $auth + = 'SMTP' + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + $config + + + + +

                                                                                                                                                                                                                + + + + + + protected + static mixed + $config + = [] + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + $errors + + + + +

                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                Errors

                                                                                                                                                                                                                + + + + protected + static mixed + $errors + = [] + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + $mailer + + + + +

                                                                                                                                                                                                                + + + + + + protected + static mixed + $mailer + + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + config() + + +

                                                                                                                                                                                                                + + + + + public + static config([mixed $config = [] ]) : mixed + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + $config + : mixed + = []
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + connect() + + +

                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                SMTP Connection

                                                                                                                                                                                                                + + + public + static connect(mixed $connection) : mixed + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + $connection + : mixed +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + errors() + + +

                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                Return all errors

                                                                                                                                                                                                                + + + public + static errors() : mixed + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + send() + + +

                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                Send

                                                                                                                                                                                                                + + + public + static send(Mail $mail) : mixed + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + $mail + : Mail +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + useOAuth() + + +

                                                                                                                                                                                                                + + + + + public + static useOAuth(OAuth $oauth) : mixed + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + $oauth + : OAuth +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                + validate() + + +

                                                                                                                                                                                                                + + + + + protected + static validate(Mail $mail) : mixed + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + $mail + : Mail +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                
                                                                                                                                                                                                                +        
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Mail.html b/src/public/api/classes/Leaf-Mail.html new file mode 100644 index 00000000..0e317652 --- /dev/null +++ b/src/public/api/classes/Leaf-Mail.html @@ -0,0 +1,789 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + Mail + + +
                                                                                                                                                                                                                  + in package + +
                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + + + + + + + + + + + + +

                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                  + + + + + + + + + +

                                                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $mail + +  : mixed +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + __construct() + +  : mixed +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + attach() + +  : Mail +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Add attachments to your mail from your file system
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + connect() + +  : mixed +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Connect to your mail server
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + create() + +  : static +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Create a new mail instance
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + getMail() + +  : mixed +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + send() + +  : mixed +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Send your crafted email
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + $mail + + + + +

                                                                                                                                                                                                                  + + + + + + protected + mixed + $mail + = [] + + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + __construct() + + +

                                                                                                                                                                                                                  + + + + + public + __construct([mixed $mail = null ]) : mixed + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $mail + : mixed + = null
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + attach() + + +

                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                  Add attachments to your mail from your file system

                                                                                                                                                                                                                  + + + public + attach(mixed $path[, mixed $name = "" ][, mixed $encoding = PHPMailerPHPMailerPHPMailer::ENCODING_BASE64 ][, mixed $type = "" ][, mixed $disposition = "attachment" ]) : Mail + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $path + : mixed +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $name + : mixed + = ""
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $encoding + : mixed + = PHPMailerPHPMailerPHPMailer::ENCODING_BASE64
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $type + : mixed + = ""
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $disposition + : mixed + = "attachment"
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + Exception + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                  + Mail +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + connect() + + +

                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                  Connect to your mail server

                                                                                                                                                                                                                  + + + public + connect(array<string|int, mixed> $connection) : mixed + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $connection + : array<string|int, mixed> +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Connection details

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + create() + + +

                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                  Create a new mail instance

                                                                                                                                                                                                                  + + + public + static create(mixed $mail) : static + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + $mail + : mixed +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                  + static +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + getMail() + + +

                                                                                                                                                                                                                  + + + + + public + getMail() : mixed + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + send() + + +

                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                  Send your crafted email

                                                                                                                                                                                                                  + + + public + send() : mixed + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  
                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Middleware.html b/src/public/api/classes/Leaf-Middleware.html new file mode 100644 index 00000000..d207b410 --- /dev/null +++ b/src/public/api/classes/Leaf-Middleware.html @@ -0,0 +1,452 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + Middleware + + +
                                                                                                                                                                                                                    + in package + +
                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    AbstractYes
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                    Middleware

                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                    + Tags + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + author +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    Michael Darko

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + since +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + 1.5.0 + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + call() + +  : mixed +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Call
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + call() + + +

                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                    Call

                                                                                                                                                                                                                    + + + public + abstract call() : mixed + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                    Perform actions specific to this middleware and optionally +call the next downstream middleware.

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    
                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                    • Methods
                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Model.html b/src/public/api/classes/Leaf-Model.html new file mode 100644 index 00000000..a2c45cde --- /dev/null +++ b/src/public/api/classes/Leaf-Model.html @@ -0,0 +1,22888 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + Model + + + extends Model + + +
                                                                                                                                                                                                                      + in package + +
                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + + + + + + + + + + + + +

                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                      + + + + + + + +

                                                                                                                                                                                                                      + Constants + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + CREATED_AT + +  = 'created_at' +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The name of the "created at" column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + UPDATED_AT + +  = 'updated_at' +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The name of the "updated at" column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $encrypter + +  : Encrypter +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The encrypter instance that is used to encrypt attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $exists + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates if the model exists.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $incrementing + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates if the IDs are auto-incrementing.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $manyMethods + +  : array<string|int, string> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The many to many relationship methods.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $preventsLazyLoading + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates whether lazy loading will be prevented on this model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $snakeAttributes + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates whether attributes are snake cased on arrays.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $timestamps + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates if the model should be timestamped.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $wasRecentlyCreated + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates if the model was inserted during the current request lifecycle.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $appends + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The accessors to append to the model's array form.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $attributeCastCache + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that have been cast using "Attribute" return type mutators.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $attributeMutatorCache + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The cache of the "Attribute" return type marked mutated attributes for each class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $attributes + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The model's attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $booted + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The array of booted models.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $casts + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that should be cast.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $changes + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The changed model attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $classCastCache + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that have been cast using custom classes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $connection + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The connection name for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $dateFormat + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The storage format of the model's date columns.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $dates + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that should be mutated to dates.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $dispatcher + +  : Dispatcher +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The event dispatcher instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $dispatchesEvents + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The event map for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $escapeWhenCastingToString + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates that the object's string representation should be escaped when __toString is invoked.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $fillable + +  : array<string|int, string> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that are mass assignable.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $getAttributeMutatorCache + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The cache of the "Attribute" return type marked mutated, gettable attributes for each class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $globalScopes + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The array of global scopes on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $guardableColumns + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The actual columns that exist on the database and can be guarded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $guarded + +  : array<string|int, string>|bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that aren't mass assignable.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $hidden + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that should be hidden for serialization.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $ignoreOnTouch + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The list of models classes that should not be affected with touch.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $isBroadcasting + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates if broadcasting is currently enabled.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $keyType + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The "type" of the primary key ID.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $lazyLoadingViolationCallback + +  : callable|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The callback that is responsible for handling lazy loading violations.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $modelsShouldPreventLazyLoading + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates whether lazy loading should be restricted on all models.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $mutatorCache + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The cache of the mutated attributes for each class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $observables + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      User exposed observable events.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $original + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The model attribute's original state.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $perPage + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The number of models to return for pagination.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $primaryKey + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The primary key for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $primitiveCastTypes + +  : array<string|int, string> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The built-in, primitive cast types supported by Eloquent.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $relationResolvers + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The relation resolver callbacks.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $relations + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The loaded relationships for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $resolver + +  : ConnectionResolverInterface +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The connection resolver instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $setAttributeMutatorCache + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The cache of the "Attribute" return type marked mutated, settable attributes for each class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $table + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The table associated with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $touches + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The relationships that should be touched on save.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $traitInitializers + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The array of trait initializers that will be called on each new instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $unguarded + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicates if all mass assignment is enabled.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $visible + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The attributes that should be visible in serialization.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $with + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The relations to eager load on every query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + $withCount + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      The relationship counts that should be eager loaded on every query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + __call() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Handle dynamic method calls into the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __callStatic() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Handle dynamic static method calls into the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __construct() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new Eloquent model instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __get() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Dynamically retrieve attributes on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __isset() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if an attribute or relation exists on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __set() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Dynamically set attributes on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __sleep() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Prepare the object for serialization.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __toString() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Convert the model to its string representation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __unset() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Unset an attribute on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + __wakeup() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      When a model is being unserialized, check if it needs to be booted.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + addGlobalScope() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a new global scope on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + addObservableEvents() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Add an observable event name.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + all() + +  : Collection|array<string|int, static> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all of the models from the database.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + append() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Append attributes to query when building a query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + attributesToArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Convert the model's attributes to an array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + belongsTo() + +  : BelongsTo +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define an inverse one-to-one or many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + belongsToMany() + +  : BelongsToMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a many-to-many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + broadcastChannel() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the broadcast channel name that is associated with the given entity.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + broadcastChannelRoute() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the broadcast channel route definition that is associated with the given entity.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + cacheMutatedAttributes() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Extract and cache all the mutated attributes of a class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + callNamedScope() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Apply the given named scope if possible.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + clearBootedModels() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Clear the list of booted models so they will be re-booted.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + created() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a created model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + creating() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a creating model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + delete() + +  : bool|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Delete the model from the database.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + deleted() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a deleted model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + deleteOrFail() + +  : bool|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Delete the model from the database within a transaction.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + deleting() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a deleting model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + destroy() + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Destroy the models for the given IDs.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + encryptUsing() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the encrypter instance that will be used to encrypt attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + escapeWhenCastingToString() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Indicate that the object's string representation should be escaped when __toString is invoked.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fill() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Fill the model with an array of attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fillable() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the fillable attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fillJsonAttribute() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set a given JSON attribute on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + flushEventListeners() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Remove all of the event listeners for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + forceDelete() + +  : bool|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Force a hard delete on a soft deleted model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + forceFill() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Fill the model with an array of attributes. Force mass assignment.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fresh() + +  : static|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Reload a fresh model instance from the database.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + freshTimestamp() + +  : Carbon +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a fresh timestamp for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + freshTimestampString() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a fresh timestamp for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fromDateTime() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Convert a DateTime to a storable string.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fromEncryptedString() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Decrypt the given encrypted string.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fromFloat() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Decode the given float.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fromJson() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Decode the given JSON back into an array or object.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getActualClassNameForMorph() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the actual class name for a given morph class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an attribute from the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getAttributes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all of the current attributes on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getAttributeValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a plain attribute (not a relationship).
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getCasts() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the casts array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getChanges() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the attributes that were changed.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getConnection() + +  : Connection +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the database connection for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getConnectionName() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the current connection name for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getConnectionResolver() + +  : ConnectionResolverInterface +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the connection resolver instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getCreatedAtColumn() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the name of the "created at" column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getDateFormat() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the format for database stored dates.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getDates() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the attributes that should be converted to dates.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getDirty() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the attributes that have been changed since the last sync.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getEventDispatcher() + +  : Dispatcher +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the event dispatcher instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getFillable() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the fillable attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getForeignKey() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the default foreign key name for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getGlobalScope() + +  : Scope|Closure|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a global scope registered with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getGlobalScopes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the global scopes for this class instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getGuarded() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the guarded attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getHidden() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the hidden attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getIncrementing() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value indicating whether the IDs are incrementing.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getKey() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value of the model's primary key.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getKeyName() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the primary key for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getKeyType() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the auto-incrementing key type.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getMorphClass() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the class name for polymorphic relations.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getMutatedAttributes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the mutated attributes for a given instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getObservableEvents() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the observable event names.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getOriginal() + +  : mixed|array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the model's original attribute values.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getPerPage() + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the number of models to return per page.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getQualifiedCreatedAtColumn() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the fully qualified "created at" column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getQualifiedKeyName() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the table qualified key name.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getQualifiedUpdatedAtColumn() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the fully qualified "updated at" column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getQueueableConnection() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the queueable connection for the entity.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getQueueableId() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the queueable identity for the entity.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getQueueableRelations() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the queueable relationships for the entity.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRawOriginal() + +  : mixed|array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the model's raw original attribute values.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRelation() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a specified relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRelations() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all the loaded relations for the instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRelationValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRouteKey() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value of the model's route key.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRouteKeyName() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the route key for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getTable() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the table associated with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getTouchedRelations() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the relationships that are touched on save.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getUpdatedAtColumn() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the name of the "updated at" column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getVisible() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the visible attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + guard() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the guarded attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + handleLazyLoadingViolationUsing() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a callback that is responsible for handling lazy loading violations.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasAppended() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return whether the accessor attribute has been appended.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasAttributeGetMutator() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if a "Attribute" return type marked get mutator exists for an attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasAttributeMutator() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if a "Attribute" return type marked mutator exists for an attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasAttributeSetMutator() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if an "Attribute" return type marked set mutator exists for an attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasCast() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine whether an attribute should be cast to a native type.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasGetMutator() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if a get mutator exists for an attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasGlobalScope() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if a model has a global scope.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasMany() + +  : HasMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a one-to-many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasManyThrough() + +  : HasManyThrough +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a has-many-through relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasNamedScope() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model has a given scope.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasOne() + +  : HasOne +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a one-to-one relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasOneThrough() + +  : HasOneThrough +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a has-one-through relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasSetMutator() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if a set mutator exists for an attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + is() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if two models have the same ID and belong to the same table.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isClean() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model or all the given attribute(s) have remained the same.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isDirty() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model or any of the given attribute(s) have been modified.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isFillable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given attribute may be mass assigned.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isGuarded() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given key is guarded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isIgnoringTouch() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given model is ignoring touches.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isNot() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if two models are not the same.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isRelation() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given key is a relationship method on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isUnguarded() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the current state is "unguarded".
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + joiningTable() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the joining table name for a many-to-many relation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + joiningTableSegment() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get this model's half of the intermediate table name for belongsToMany relationships.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + jsonSerialize() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Convert the object into something JSON serializable.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + load() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relations on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadAggregate() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relation's column aggregations on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadAvg() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relation average column values on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadCount() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relation counts on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadExists() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load related model existence values on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMax() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relation max column values on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMin() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relation min column values on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMissing() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relations on the model if they are not already eager loaded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorph() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationships on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorphAggregate() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationship column aggregation on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorphAvg() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationship average column values on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorphCount() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationship counts on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorphMax() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationship max column values on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorphMin() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationship min column values on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadMorphSum() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relationship column summations on the polymorphic relation of a model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + loadSum() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Eager load relation's column summations on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + makeHidden() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Make the given, typically visible, attributes hidden.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + makeHiddenIf() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Make the given, typically visible, attributes hidden if the given truth test passes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + makeVisible() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Make the given, typically hidden, attributes visible.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + makeVisibleIf() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Make the given, typically hidden, attributes visible if the given truth test passes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mergeCasts() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Merge new casts with existing casts on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mergeFillable() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Merge new fillable attributes with existing fillable attributes on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mergeGuarded() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Merge new guarded attributes with existing guarded attributes on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphedByMany() + +  : MorphToMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic, inverse many-to-many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphMany() + +  : MorphMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic one-to-many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphOne() + +  : MorphOne +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic one-to-one relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphTo() + +  : MorphTo +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic, inverse one-to-one or many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphToMany() + +  : MorphToMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic many-to-many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newCollection() + +  : Collection +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new Eloquent Collection instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newEloquentBuilder() + +  : Builder|static +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new Eloquent query builder for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newFromBuilder() + +  : static +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new model instance that is existing.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newInstance() + +  : static +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new instance of the given model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newModelQuery() + +  : Builder|static +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query builder that doesn't have any global scopes or eager loading.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newPivot() + +  : Pivot +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new pivot model instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newQuery() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query builder for the model's table.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newQueryForRestoration() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query to restore one or more models by their queueable IDs.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newQueryWithoutRelationships() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query builder with no relationships loaded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newQueryWithoutScope() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query instance without a given scope.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newQueryWithoutScopes() + +  : Builder|static +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query builder that doesn't have any global scopes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + observe() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register observers with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + offsetExists() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given attribute exists.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + offsetGet() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value for a given offset.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + offsetSet() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value for a given offset.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + offsetUnset() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Unset the value for a given offset.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + on() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Begin querying the model on a given connection.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + only() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a subset of the model's attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + onWriteConnection() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Begin querying the model on the write connection.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + originalIsEquivalent() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the new and old values for a given key are equivalent.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + preventLazyLoading() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Prevent model relationships from being lazy loaded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + preventsLazyLoading() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if lazy loading is disabled.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + push() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Save the model and all of its relationships.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + qualifyColumn() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Qualify the given column name by the model's table.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + qualifyColumns() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Qualify the given columns with the model's table.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + query() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Begin querying the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + refresh() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Reload the current model instance with fresh attributes from the database.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + registerGlobalScopes() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register the global scopes for this builder instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + reguard() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Enable the mass assignment restrictions.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + relationLoaded() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given relation is loaded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + relationsToArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the model's relationships in array form.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + removeObservableEvents() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Remove an observable event name.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + replicate() + +  : static +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Clone the model into a new, non-existing instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + replicating() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a replicating model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveChildRouteBinding() + +  : Model|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the child model for a bound value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveConnection() + +  : Connection +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Resolve a connection instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveRelationUsing() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a dynamic relation resolver.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveRouteBinding() + +  : Model|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the model for a bound value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveRouteBindingQuery() + +  : Relation +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the model for a bound value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveSoftDeletableChildRouteBinding() + +  : Model|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the child model for a bound value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveSoftDeletableRouteBinding() + +  : Model|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the model for a bound value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + retrieved() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a retrieved model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + save() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Save the model to the database.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + saved() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a saved model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + saveOrFail() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Save the model to the database within a transaction.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + saveQuietly() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Save the model to the database without raising any events.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + saving() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a saving model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setAppends() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the accessors to append to model arrays.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set a given attribute on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setConnection() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the connection associated with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setConnectionResolver() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the connection resolver instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setCreatedAt() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value of the "created at" attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setDateFormat() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the date format used by the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setEventDispatcher() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the event dispatcher instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setHidden() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the hidden attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setIncrementing() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set whether IDs are incrementing.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setKeyName() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the primary key for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setKeyType() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the data type for the primary key.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setObservableEvents() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the observable event names.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setPerPage() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the number of models to return per page.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setRawAttributes() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the array of model attributes. No checking is done.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setRelation() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the given relationship on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setRelations() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the entire relations array on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setTable() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the table associated with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setTouchedRelations() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the relationships that are touched on save.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setUpdatedAt() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value of the "updated at" attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setVisible() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the visible attributes for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + syncChanges() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Sync the changed attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + syncOriginal() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Sync the original attributes with the current.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + syncOriginalAttribute() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Sync a single original attribute with its current value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + syncOriginalAttributes() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Sync multiple original attribute with their current values.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + toArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Convert the model instance to an array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + toJson() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Convert the model instance to JSON.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + totallyGuarded() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model is totally guarded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + touch() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Update the model's update timestamp.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + touches() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model touches a given relation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + touchOwners() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Touch the owning relations of the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + unguard() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Disable all mass assignable restrictions.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + unguarded() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Run the given callable while being unguarded.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + unsetConnectionResolver() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Unset the connection resolver for models.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + unsetEventDispatcher() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Unset the event dispatcher for models.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + unsetRelation() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Unset a loaded relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + unsetRelations() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Unset all the loaded relations for the instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + update() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Update the model in the database.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + updated() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register an updated model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + updateOrFail() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Update the model in the database within a transaction.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + updateQuietly() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Update the model in the database without raising any events.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + updateTimestamps() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Update the creation and update timestamps.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + updating() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register an updating model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + usesTimestamps() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model uses timestamps.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + wasChanged() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the model or any of the given attribute(s) have been modified.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + with() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Begin querying a model with eager loading.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + withoutBroadcasting() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Execute a callback without broadcasting any model events for all model types.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + withoutEvents() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Execute a callback without firing any model events for any model type.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + withoutRelations() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Duplicate the instance and unset all the loaded relations.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + withoutTouching() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Disables relationship model touching for the current class during given callback scope.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + withoutTouchingOn() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Disables relationship model touching for the given model classes during given callback scope.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + addCastAttributesToArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Add the casted attributes to the attributes array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + addDateAttributesToArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Add the date attributes to the attributes array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + addMutatedAttributesToArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Add the mutated attributes to the attributes array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + asDate() + +  : Carbon +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return a timestamp as DateTime object with time set to 00:00:00.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + asDateTime() + +  : Carbon +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return a timestamp as DateTime object.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + asDecimal() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return a decimal as string.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + asJson() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Encode the given value as JSON.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + asTimestamp() + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return a timestamp as unix timestamp.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + boot() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Bootstrap the model and its traits.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + booted() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Perform any actions required after the model boots.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + bootIfNotBooted() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Check if the model needs to be booted and if so, do it.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + booting() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Perform any actions required before the model boots.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + bootTraits() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Boot all of the bootable traits on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + castAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Cast an attribute to a native PHP type.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + castAttributeAsEncryptedString() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Cast the given attribute to an encrypted string.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + castAttributeAsJson() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Cast the given attribute to JSON.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + decrement() + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Decrement a column's value by a given amount.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + deviateClassCastableAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Increment or decrement the given attribute using the custom cast class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fillableFromArray() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the fillable attributes of a given array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + filterModelEventResults() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Filter the model event results.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + finishSave() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Perform any actions that are necessary after the model is saved.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fireCustomModelEvent() + +  : mixed|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Fire a custom model event for the given event.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + fireModelEvent() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Fire the given event for the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + forwardCallTo() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Forward a method call to the given object.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + forwardDecoratedCallTo() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Forward a method call to the given object, returning $this if the forwarded call returned itself.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getArrayableAppends() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all of the appendable values that are arrayable.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getArrayableAttributes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an attribute array of all arrayable attributes.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getArrayableItems() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an attribute array of all arrayable values.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getArrayableRelations() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an attribute array of all arrayable relations.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getArrayAttributeByKey() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an array attribute or return an empty array if it is not set.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getArrayAttributeWithValue() + +  : $this +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an array attribute with the given key and value set.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getAttributeFromArray() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get an attribute from the $attributes array.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getAttributeMarkedMutatorMethods() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all of the "Attribute" return typed attribute mutator methods.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getAttributesForInsert() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all of the current attributes on the model for an insert operation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getCastType() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the type of cast for a model attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getClassCastableAttributeValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Cast the given attribute using a custom cast class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getEnumCastableAttributeValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Cast the given attribute to an enum.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getKeyForSaveQuery() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the primary key value for a save query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getKeyForSelectQuery() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the primary key value for a select query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getMorphs() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the polymorphic relationship columns.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getMutatorMethods() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get all of the attribute mutator methods.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getOriginalWithoutRewindingModel() + +  : mixed|array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the model's original attribute values.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + getRelationshipFromMethod() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a relationship value from a method.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + guessBelongsToManyRelation() + +  : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the relationship name of the belongsToMany relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + guessBelongsToRelation() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Guess the "belongs to" relationship name.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + handleLazyLoadingViolation() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Handle a lazy loading violation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + hasChanges() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if any of the given attributes were changed.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + increment() + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Increment a column's value by a given amount.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + incrementOrDecrement() + +  : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Run the increment or decrement method on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + initializeTraits() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Initialize any initializable traits on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + insertAndSetId() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Insert the given attributes and set the ID on the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isClassCastable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given key is cast using a custom class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isClassDeviable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the key is deviable using a custom class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isClassSerializable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the key is serializable using a custom class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isCustomDateTimeCast() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the cast type is a custom date time cast.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isDateAttribute() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given attribute is a date or date castable.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isDateCastable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine whether a value is Date / DateTime castable for inbound manipulation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isDateCastableWithCustomFormat() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine whether a value is Date / DateTime custom-castable for inbound manipulation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isDecimalCast() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the cast type is a decimal cast.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isEncryptedCastable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine whether a value is an encrypted castable for inbound manipulation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isEnumCastable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given key is cast using an enum.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isGuardableColumn() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given column is a valid, guardable column.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isImmutableCustomDateTimeCast() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the cast type is an immutable custom date time cast.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isJsonCastable() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine whether a value is JSON castable for inbound manipulation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + isStandardDateFormat() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Determine if the given value is a standard date format.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mergeAttributesFromAttributeCasts() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Merge the cast class attributes back into the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mergeAttributesFromCachedCasts() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Merge the cast class and attribute cast attributes back into the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mergeAttributesFromClassCasts() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Merge the cast class attributes back into the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphEagerTo() + +  : MorphTo +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic, inverse one-to-one or many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + morphInstanceTo() + +  : MorphTo +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Define a polymorphic, inverse one-to-one or many relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mutateAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value of an attribute using its mutator.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mutateAttributeForArray() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value of an attribute using its mutator for array conversion.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + mutateAttributeMarkedAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get the value of an "Attribute" return type marked attribute using its mutator.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newBaseQueryBuilder() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Get a new query builder instance for the connection.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newBelongsTo() + +  : BelongsTo +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new BelongsTo relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newBelongsToMany() + +  : BelongsToMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new BelongsToMany relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newHasMany() + +  : HasMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new HasMany relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newHasManyThrough() + +  : HasManyThrough +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new HasManyThrough relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newHasOne() + +  : HasOne +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new HasOne relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newHasOneThrough() + +  : HasOneThrough +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new HasOneThrough relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newMorphMany() + +  : MorphMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new MorphMany relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newMorphOne() + +  : MorphOne +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new MorphOne relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newMorphTo() + +  : MorphTo +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new MorphTo relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newMorphToMany() + +  : MorphToMany +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Instantiate a new MorphToMany relationship.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + newRelatedInstance() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Create a new model instance for a related model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + normalizeCastClassResponse() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Normalize the response from a custom class caster.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + parseCasterClass() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Parse the given caster class, removing any arguments.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + performDeleteOnModel() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Perform the actual delete query on this model instance.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + performInsert() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Perform a model insert operation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + performUpdate() + +  : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Perform a model update operation.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + registerModelEvent() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a model event with the dispatcher.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + registerObserver() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Register a single observer with the model.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveCasterClass() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Resolve the custom caster class for a given key.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveChildRouteBindingQuery() + +  : Relation +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Retrieve the child model query for a bound value.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + serializeClassCastableAttribute() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Serialize the given attribute using the custom cast class.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + serializeDate() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Prepare a date for array / JSON serialization.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setAttributeMarkedMutatedAttributeValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value of a "Attribute" return type marked attribute using its mutator.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setClassCastableAttribute() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value of a class castable attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setEnumCastableAttribute() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value of an enum castable attribute.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setKeysForSaveQuery() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the keys for a save update query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setKeysForSelectQuery() + +  : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the keys for a select query.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + setMutatedAttributeValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Set the value of an attribute using its mutator.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + throwBadMethodCallException() + +  : void +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Throw a bad method call exception for the given method.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + transformModelValue() + +  : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Transform a raw model value using mutators, casts, etc.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + resolveObserverClassName() + +  : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Resolve the observer's class name from an object or string.
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + Constants + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + CREATED_AT + + +

                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                      The name of the "created at" column.

                                                                                                                                                                                                                      + + + + public + string|null + CREATED_AT + = 'created_at' + + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + UPDATED_AT + + +

                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                      The name of the "updated at" column.

                                                                                                                                                                                                                      + + + + public + string|null + UPDATED_AT + = 'updated_at' + + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $encrypter + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The encrypter instance that is used to encrypt attributes.

                                                                                                                                                                                                                      + + + + public + static Encrypter + $encrypter + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $exists + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates if the model exists.

                                                                                                                                                                                                                      + + + + public + bool + $exists + = false + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $incrementing + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates if the IDs are auto-incrementing.

                                                                                                                                                                                                                      + + + + public + bool + $incrementing + = true + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $manyMethods + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The many to many relationship methods.

                                                                                                                                                                                                                      + + + + public + static array<string|int, string> + $manyMethods + = ['belongsToMany', 'morphToMany', 'morphedByMany'] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $preventsLazyLoading + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates whether lazy loading will be prevented on this model.

                                                                                                                                                                                                                      + + + + public + bool + $preventsLazyLoading + = false + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $snakeAttributes + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates whether attributes are snake cased on arrays.

                                                                                                                                                                                                                      + + + + public + static bool + $snakeAttributes + = true + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $timestamps + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates if the model should be timestamped.

                                                                                                                                                                                                                      + + + + public + bool + $timestamps + = true + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $wasRecentlyCreated + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates if the model was inserted during the current request lifecycle.

                                                                                                                                                                                                                      + + + + public + bool + $wasRecentlyCreated + = false + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $appends + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The accessors to append to the model's array form.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $appends + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $attributeCastCache + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that have been cast using "Attribute" return type mutators.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $attributeCastCache + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $attributeMutatorCache + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The cache of the "Attribute" return type marked mutated attributes for each class.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $attributeMutatorCache + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $attributes + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The model's attributes.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $attributes + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $booted + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The array of booted models.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $booted + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $casts + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that should be cast.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $casts + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $changes + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The changed model attributes.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $changes + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $classCastCache + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that have been cast using custom classes.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $classCastCache + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $connection + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The connection name for the model.

                                                                                                                                                                                                                      + + + + protected + string|null + $connection + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $dateFormat + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The storage format of the model's date columns.

                                                                                                                                                                                                                      + + + + protected + string + $dateFormat + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $dates + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that should be mutated to dates.

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Use the "casts" property

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + protected + array<string|int, mixed> + $dates + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $dispatcher + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The event dispatcher instance.

                                                                                                                                                                                                                      + + + + protected + static Dispatcher + $dispatcher + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $dispatchesEvents + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The event map for the model.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $dispatchesEvents + = [] + +

                                                                                                                                                                                                                      Allows for object-based events for native Eloquent events.

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $escapeWhenCastingToString + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates that the object's string representation should be escaped when __toString is invoked.

                                                                                                                                                                                                                      + + + + protected + bool + $escapeWhenCastingToString + = false + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $fillable + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that are mass assignable.

                                                                                                                                                                                                                      + + + + protected + array<string|int, string> + $fillable + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $getAttributeMutatorCache + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The cache of the "Attribute" return type marked mutated, gettable attributes for each class.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $getAttributeMutatorCache + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $globalScopes + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The array of global scopes on the model.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $globalScopes + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $guardableColumns + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The actual columns that exist on the database and can be guarded.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $guardableColumns + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $guarded + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that aren't mass assignable.

                                                                                                                                                                                                                      + + + + protected + array<string|int, string>|bool + $guarded + = ['*'] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $hidden + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that should be hidden for serialization.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $hidden + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $ignoreOnTouch + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The list of models classes that should not be affected with touch.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $ignoreOnTouch + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $isBroadcasting + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates if broadcasting is currently enabled.

                                                                                                                                                                                                                      + + + + protected + static bool + $isBroadcasting + = true + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $keyType + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The "type" of the primary key ID.

                                                                                                                                                                                                                      + + + + protected + string + $keyType + = 'int' + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $lazyLoadingViolationCallback + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The callback that is responsible for handling lazy loading violations.

                                                                                                                                                                                                                      + + + + protected + static callable|null + $lazyLoadingViolationCallback + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $modelsShouldPreventLazyLoading + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates whether lazy loading should be restricted on all models.

                                                                                                                                                                                                                      + + + + protected + static bool + $modelsShouldPreventLazyLoading + = false + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $mutatorCache + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The cache of the mutated attributes for each class.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $mutatorCache + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $observables + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      User exposed observable events.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $observables + = [] + +

                                                                                                                                                                                                                      These are extra user-defined events observers may subscribe to.

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $original + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The model attribute's original state.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $original + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $perPage + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The number of models to return for pagination.

                                                                                                                                                                                                                      + + + + protected + int + $perPage + = 15 + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $primaryKey + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The primary key for the model.

                                                                                                                                                                                                                      + + + + protected + string + $primaryKey + = 'id' + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $primitiveCastTypes + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The built-in, primitive cast types supported by Eloquent.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, string> + $primitiveCastTypes + = ['array', 'bool', 'boolean', 'collection', 'custom_datetime', 'date', 'datetime', 'decimal', 'double', 'encrypted', 'encrypted:array', 'encrypted:collection', 'encrypted:json', 'encrypted:object', 'float', 'immutable_date', 'immutable_datetime', 'immutable_custom_datetime', 'int', 'integer', 'json', 'object', 'real', 'string', 'timestamp'] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $relationResolvers + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The relation resolver callbacks.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $relationResolvers + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $relations + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The loaded relationships for the model.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $relations + = [] + + + + + + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $setAttributeMutatorCache + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The cache of the "Attribute" return type marked mutated, settable attributes for each class.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $setAttributeMutatorCache + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $table + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The table associated with the model.

                                                                                                                                                                                                                      + + + + protected + string + $table + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $touches + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The relationships that should be touched on save.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $touches + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $traitInitializers + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The array of trait initializers that will be called on each new instance.

                                                                                                                                                                                                                      + + + + protected + static array<string|int, mixed> + $traitInitializers + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $unguarded + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicates if all mass assignment is enabled.

                                                                                                                                                                                                                      + + + + protected + static bool + $unguarded + = false + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $visible + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The attributes that should be visible in serialization.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $visible + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $with + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The relations to eager load on every query.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $with + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + $withCount + + + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      The relationship counts that should be eager loaded on every query.

                                                                                                                                                                                                                      + + + + protected + array<string|int, mixed> + $withCount + = [] + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __call() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Handle dynamic method calls into the model.

                                                                                                                                                                                                                      + + + public + __call(string $method, array<string|int, mixed> $parameters) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parameters + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __callStatic() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Handle dynamic static method calls into the model.

                                                                                                                                                                                                                      + + + public + static __callStatic(string $method, array<string|int, mixed> $parameters) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parameters + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __construct() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new Eloquent model instance.

                                                                                                                                                                                                                      + + + public + __construct([array<string|int, mixed> $attributes = [] ]) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __get() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Dynamically retrieve attributes on the model.

                                                                                                                                                                                                                      + + + public + __get(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __isset() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if an attribute or relation exists on the model.

                                                                                                                                                                                                                      + + + public + __isset(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __set() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Dynamically set attributes on the model.

                                                                                                                                                                                                                      + + + public + __set(string $key, mixed $value) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __sleep() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Prepare the object for serialization.

                                                                                                                                                                                                                      + + + public + __sleep() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __toString() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Convert the model to its string representation.

                                                                                                                                                                                                                      + + + public + __toString() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __unset() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Unset an attribute on the model.

                                                                                                                                                                                                                      + + + public + __unset(string $key) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + __wakeup() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      When a model is being unserialized, check if it needs to be booted.

                                                                                                                                                                                                                      + + + public + __wakeup() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + addGlobalScope() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a new global scope on the model.

                                                                                                                                                                                                                      + + + public + static addGlobalScope(Scope|Closure|string $scope[, Closure|null $implementation = null ]) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $scope + : Scope|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $implementation + : Closure|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + InvalidArgumentException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + addObservableEvents() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Add an observable event name.

                                                                                                                                                                                                                      + + + public + addObservableEvents(array<string|int, mixed>|mixed $observables) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $observables + : array<string|int, mixed>|mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + all() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all of the models from the database.

                                                                                                                                                                                                                      + + + public + static all([array<string|int, mixed>|mixed $columns = ['*'] ]) : Collection|array<string|int, static> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $columns + : array<string|int, mixed>|mixed + = ['*']
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Collection|array<string|int, static> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + append() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Append attributes to query when building a query.

                                                                                                                                                                                                                      + + + public + append(array<string|int, mixed>|string $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + attributesToArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Convert the model's attributes to an array.

                                                                                                                                                                                                                      + + + public + attributesToArray() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + belongsTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define an inverse one-to-one or many relationship.

                                                                                                                                                                                                                      + + + public + belongsTo(string $related[, string|null $foreignKey = null ][, string|null $ownerKey = null ][, string|null $relation = null ]) : BelongsTo + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ownerKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + BelongsTo +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + belongsToMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a many-to-many relationship.

                                                                                                                                                                                                                      + + + public + belongsToMany(string $related[, string|null $table = null ][, string|null $foreignPivotKey = null ][, string|null $relatedPivotKey = null ][, string|null $parentKey = null ][, string|null $relatedKey = null ][, string|null $relation = null ]) : BelongsToMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignPivotKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedPivotKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parentKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + BelongsToMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + broadcastChannel() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the broadcast channel name that is associated with the given entity.

                                                                                                                                                                                                                      + + + public + broadcastChannel() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + broadcastChannelRoute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the broadcast channel route definition that is associated with the given entity.

                                                                                                                                                                                                                      + + + public + broadcastChannelRoute() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + cacheMutatedAttributes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Extract and cache all the mutated attributes of a class.

                                                                                                                                                                                                                      + + + public + static cacheMutatedAttributes(string $class) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + callNamedScope() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Apply the given named scope if possible.

                                                                                                                                                                                                                      + + + public + callNamedScope(string $scope[, array<string|int, mixed> $parameters = [] ]) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $scope + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parameters + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + clearBootedModels() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Clear the list of booted models so they will be re-booted.

                                                                                                                                                                                                                      + + + public + static clearBootedModels() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + created() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a created model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static created(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + creating() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a creating model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static creating(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + delete() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Delete the model from the database.

                                                                                                                                                                                                                      + + + public + delete() : bool|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + LogicException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + deleted() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a deleted model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static deleted(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + deleteOrFail() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Delete the model from the database within a transaction.

                                                                                                                                                                                                                      + + + public + deleteOrFail() : bool|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Throwable + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + deleting() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a deleting model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static deleting(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + destroy() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Destroy the models for the given IDs.

                                                                                                                                                                                                                      + + + public + static destroy(Collection|array<string|int, mixed>|int|string $ids) : int + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ids + : Collection|array<string|int, mixed>|int|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + int +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + encryptUsing() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the encrypter instance that will be used to encrypt attributes.

                                                                                                                                                                                                                      + + + public + static encryptUsing(Encrypter $encrypter) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $encrypter + : Encrypter +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + escapeWhenCastingToString() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Indicate that the object's string representation should be escaped when __toString is invoked.

                                                                                                                                                                                                                      + + + public + escapeWhenCastingToString([bool $escape = true ]) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $escape + : bool + = true
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fill() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Fill the model with an array of attributes.

                                                                                                                                                                                                                      + + + public + fill(array<string|int, mixed> $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + MassAssignmentException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fillable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the fillable attributes for the model.

                                                                                                                                                                                                                      + + + public + fillable(array<string|int, mixed> $fillable) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $fillable + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fillJsonAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set a given JSON attribute on the model.

                                                                                                                                                                                                                      + + + public + fillJsonAttribute(string $key, mixed $value) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + flushEventListeners() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Remove all of the event listeners for the model.

                                                                                                                                                                                                                      + + + public + static flushEventListeners() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + forceDelete() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Force a hard delete on a soft deleted model.

                                                                                                                                                                                                                      + + + public + forceDelete() : bool|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                      This method protects developers from running forceDelete when the trait is missing.

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + forceFill() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Fill the model with an array of attributes. Force mass assignment.

                                                                                                                                                                                                                      + + + public + forceFill(array<string|int, mixed> $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fresh() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Reload a fresh model instance from the database.

                                                                                                                                                                                                                      + + + public + fresh([array<string|int, mixed>|string $with = [] ]) : static|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $with + : array<string|int, mixed>|string + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + static|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + freshTimestamp() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a fresh timestamp for the model.

                                                                                                                                                                                                                      + + + public + freshTimestamp() : Carbon + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Carbon +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + freshTimestampString() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a fresh timestamp for the model.

                                                                                                                                                                                                                      + + + public + freshTimestampString() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fromDateTime() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Convert a DateTime to a storable string.

                                                                                                                                                                                                                      + + + public + fromDateTime(mixed $value) : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fromEncryptedString() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Decrypt the given encrypted string.

                                                                                                                                                                                                                      + + + public + fromEncryptedString(string $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fromFloat() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Decode the given float.

                                                                                                                                                                                                                      + + + public + fromFloat(mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fromJson() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Decode the given JSON back into an array or object.

                                                                                                                                                                                                                      + + + public + fromJson(string $value[, bool $asObject = false ]) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $asObject + : bool + = false
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getActualClassNameForMorph() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the actual class name for a given morph class.

                                                                                                                                                                                                                      + + + public + static getActualClassNameForMorph(string $class) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an attribute from the model.

                                                                                                                                                                                                                      + + + public + getAttribute(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getAttributes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all of the current attributes on the model.

                                                                                                                                                                                                                      + + + public + getAttributes() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getAttributeValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a plain attribute (not a relationship).

                                                                                                                                                                                                                      + + + public + getAttributeValue(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getCasts() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the casts array.

                                                                                                                                                                                                                      + + + public + getCasts() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getChanges() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the attributes that were changed.

                                                                                                                                                                                                                      + + + public + getChanges() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getConnection() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the database connection for the model.

                                                                                                                                                                                                                      + + + public + getConnection() : Connection + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Connection +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getConnectionName() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the current connection name for the model.

                                                                                                                                                                                                                      + + + public + getConnectionName() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getCreatedAtColumn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the name of the "created at" column.

                                                                                                                                                                                                                      + + + public + getCreatedAtColumn() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getDateFormat() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the format for database stored dates.

                                                                                                                                                                                                                      + + + public + getDateFormat() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getDates() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the attributes that should be converted to dates.

                                                                                                                                                                                                                      + + + public + getDates() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getDirty() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the attributes that have been changed since the last sync.

                                                                                                                                                                                                                      + + + public + getDirty() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getEventDispatcher() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the event dispatcher instance.

                                                                                                                                                                                                                      + + + public + static getEventDispatcher() : Dispatcher + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Dispatcher +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getFillable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the fillable attributes for the model.

                                                                                                                                                                                                                      + + + public + getFillable() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getForeignKey() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the default foreign key name for the model.

                                                                                                                                                                                                                      + + + public + getForeignKey() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getGlobalScope() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a global scope registered with the model.

                                                                                                                                                                                                                      + + + public + static getGlobalScope(Scope|string $scope) : Scope|Closure|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $scope + : Scope|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Scope|Closure|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getGlobalScopes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the global scopes for this class instance.

                                                                                                                                                                                                                      + + + public + getGlobalScopes() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getGuarded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the guarded attributes for the model.

                                                                                                                                                                                                                      + + + public + getGuarded() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getHidden() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the hidden attributes for the model.

                                                                                                                                                                                                                      + + + public + getHidden() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getIncrementing() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value indicating whether the IDs are incrementing.

                                                                                                                                                                                                                      + + + public + getIncrementing() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getKey() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value of the model's primary key.

                                                                                                                                                                                                                      + + + public + getKey() : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getKeyName() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the primary key for the model.

                                                                                                                                                                                                                      + + + public + getKeyName() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getKeyType() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the auto-incrementing key type.

                                                                                                                                                                                                                      + + + public + getKeyType() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getMorphClass() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the class name for polymorphic relations.

                                                                                                                                                                                                                      + + + public + getMorphClass() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getMutatedAttributes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the mutated attributes for a given instance.

                                                                                                                                                                                                                      + + + public + getMutatedAttributes() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getObservableEvents() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the observable event names.

                                                                                                                                                                                                                      + + + public + getObservableEvents() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getOriginal() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the model's original attribute values.

                                                                                                                                                                                                                      + + + public + getOriginal([string|null $key = null ][, mixed $default = null ]) : mixed|array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $default + : mixed + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + mixed|array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getPerPage() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the number of models to return per page.

                                                                                                                                                                                                                      + + + public + getPerPage() : int + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + int +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getQualifiedCreatedAtColumn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the fully qualified "created at" column.

                                                                                                                                                                                                                      + + + public + getQualifiedCreatedAtColumn() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getQualifiedKeyName() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the table qualified key name.

                                                                                                                                                                                                                      + + + public + getQualifiedKeyName() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getQualifiedUpdatedAtColumn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the fully qualified "updated at" column.

                                                                                                                                                                                                                      + + + public + getQualifiedUpdatedAtColumn() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getQueueableConnection() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the queueable connection for the entity.

                                                                                                                                                                                                                      + + + public + getQueueableConnection() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getQueueableId() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the queueable identity for the entity.

                                                                                                                                                                                                                      + + + public + getQueueableId() : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getQueueableRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the queueable relationships for the entity.

                                                                                                                                                                                                                      + + + public + getQueueableRelations() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRawOriginal() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the model's raw original attribute values.

                                                                                                                                                                                                                      + + + public + getRawOriginal([string|null $key = null ][, mixed $default = null ]) : mixed|array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $default + : mixed + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + mixed|array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRelation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a specified relationship.

                                                                                                                                                                                                                      + + + public + getRelation(string $relation) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all the loaded relations for the instance.

                                                                                                                                                                                                                      + + + public + getRelations() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRelationValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a relationship.

                                                                                                                                                                                                                      + + + public + getRelationValue(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRouteKey() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value of the model's route key.

                                                                                                                                                                                                                      + + + public + getRouteKey() : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRouteKeyName() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the route key for the model.

                                                                                                                                                                                                                      + + + public + getRouteKeyName() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getTable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the table associated with the model.

                                                                                                                                                                                                                      + + + public + getTable() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getTouchedRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the relationships that are touched on save.

                                                                                                                                                                                                                      + + + public + getTouchedRelations() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getUpdatedAtColumn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the name of the "updated at" column.

                                                                                                                                                                                                                      + + + public + getUpdatedAtColumn() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getVisible() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the visible attributes for the model.

                                                                                                                                                                                                                      + + + public + getVisible() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + guard() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the guarded attributes for the model.

                                                                                                                                                                                                                      + + + public + guard(array<string|int, mixed> $guarded) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $guarded + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + handleLazyLoadingViolationUsing() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a callback that is responsible for handling lazy loading violations.

                                                                                                                                                                                                                      + + + public + static handleLazyLoadingViolationUsing(callable|null $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : callable|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasAppended() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Return whether the accessor attribute has been appended.

                                                                                                                                                                                                                      + + + public + hasAppended(string $attribute) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attribute + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasAttributeGetMutator() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if a "Attribute" return type marked get mutator exists for an attribute.

                                                                                                                                                                                                                      + + + public + hasAttributeGetMutator(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasAttributeMutator() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if a "Attribute" return type marked mutator exists for an attribute.

                                                                                                                                                                                                                      + + + public + hasAttributeMutator(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasAttributeSetMutator() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if an "Attribute" return type marked set mutator exists for an attribute.

                                                                                                                                                                                                                      + + + public + hasAttributeSetMutator(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasCast() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine whether an attribute should be cast to a native type.

                                                                                                                                                                                                                      + + + public + hasCast(string $key[, array<string|int, mixed>|string|null $types = null ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $types + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasGetMutator() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if a get mutator exists for an attribute.

                                                                                                                                                                                                                      + + + public + hasGetMutator(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasGlobalScope() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if a model has a global scope.

                                                                                                                                                                                                                      + + + public + static hasGlobalScope(Scope|string $scope) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $scope + : Scope|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a one-to-many relationship.

                                                                                                                                                                                                                      + + + public + hasMany(string $related[, string|null $foreignKey = null ][, string|null $localKey = null ]) : HasMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasManyThrough() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a has-many-through relationship.

                                                                                                                                                                                                                      + + + public + hasManyThrough(string $related, string $through[, string|null $firstKey = null ][, string|null $secondKey = null ][, string|null $localKey = null ][, string|null $secondLocalKey = null ]) : HasManyThrough + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $through + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $firstKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondLocalKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasManyThrough +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasNamedScope() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model has a given scope.

                                                                                                                                                                                                                      + + + public + hasNamedScope(string $scope) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $scope + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasOne() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a one-to-one relationship.

                                                                                                                                                                                                                      + + + public + hasOne(string $related[, string|null $foreignKey = null ][, string|null $localKey = null ]) : HasOne + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasOne +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasOneThrough() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a has-one-through relationship.

                                                                                                                                                                                                                      + + + public + hasOneThrough(string $related, string $through[, string|null $firstKey = null ][, string|null $secondKey = null ][, string|null $localKey = null ][, string|null $secondLocalKey = null ]) : HasOneThrough + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $through + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $firstKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondLocalKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasOneThrough +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasSetMutator() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if a set mutator exists for an attribute.

                                                                                                                                                                                                                      + + + public + hasSetMutator(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + is() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if two models have the same ID and belong to the same table.

                                                                                                                                                                                                                      + + + public + is(Model|null $model) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $model + : Model|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isClean() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model or all the given attribute(s) have remained the same.

                                                                                                                                                                                                                      + + + public + isClean([array<string|int, mixed>|string|null $attributes = null ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isDirty() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model or any of the given attribute(s) have been modified.

                                                                                                                                                                                                                      + + + public + isDirty([array<string|int, mixed>|string|null $attributes = null ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isFillable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given attribute may be mass assigned.

                                                                                                                                                                                                                      + + + public + isFillable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isGuarded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given key is guarded.

                                                                                                                                                                                                                      + + + public + isGuarded(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isIgnoringTouch() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given model is ignoring touches.

                                                                                                                                                                                                                      + + + public + static isIgnoringTouch([string|null $class = null ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isNot() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if two models are not the same.

                                                                                                                                                                                                                      + + + public + isNot(Model|null $model) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $model + : Model|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isRelation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given key is a relationship method on the model.

                                                                                                                                                                                                                      + + + public + isRelation(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isUnguarded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the current state is "unguarded".

                                                                                                                                                                                                                      + + + public + static isUnguarded() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + joiningTable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the joining table name for a many-to-many relation.

                                                                                                                                                                                                                      + + + public + joiningTable(string $related[, Model|null $instance = null ]) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $instance + : Model|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + joiningTableSegment() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get this model's half of the intermediate table name for belongsToMany relationships.

                                                                                                                                                                                                                      + + + public + joiningTableSegment() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + jsonSerialize() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Convert the object into something JSON serializable.

                                                                                                                                                                                                                      + + + public + jsonSerialize() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Attributes + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + #[ReturnTypeWillChange] +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + load() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relations on the model.

                                                                                                                                                                                                                      + + + public + load(array<string|int, mixed>|string $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadAggregate() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relation's column aggregations on the model.

                                                                                                                                                                                                                      + + + public + loadAggregate(array<string|int, mixed>|string $relations, string $column[, string $function = null ]) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $function + : string + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadAvg() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relation average column values on the model.

                                                                                                                                                                                                                      + + + public + loadAvg(array<string|int, mixed>|string $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadCount() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relation counts on the model.

                                                                                                                                                                                                                      + + + public + loadCount(array<string|int, mixed>|string $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadExists() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load related model existence values on the model.

                                                                                                                                                                                                                      + + + public + loadExists(array<string|int, mixed>|string $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMax() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relation max column values on the model.

                                                                                                                                                                                                                      + + + public + loadMax(array<string|int, mixed>|string $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMin() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relation min column values on the model.

                                                                                                                                                                                                                      + + + public + loadMin(array<string|int, mixed>|string $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMissing() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relations on the model if they are not already eager loaded.

                                                                                                                                                                                                                      + + + public + loadMissing(array<string|int, mixed>|string $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorph() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationships on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorph(string $relation, array<string|int, mixed> $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorphAggregate() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationship column aggregation on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorphAggregate(string $relation, array<string|int, mixed> $relations, string $column[, string $function = null ]) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $function + : string + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorphAvg() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationship average column values on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorphAvg(string $relation, array<string|int, mixed> $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorphCount() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationship counts on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorphCount(string $relation, array<string|int, mixed> $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorphMax() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationship max column values on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorphMax(string $relation, array<string|int, mixed> $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorphMin() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationship min column values on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorphMin(string $relation, array<string|int, mixed> $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadMorphSum() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relationship column summations on the polymorphic relation of a model.

                                                                                                                                                                                                                      + + + public + loadMorphSum(string $relation, array<string|int, mixed> $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + loadSum() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Eager load relation's column summations on the model.

                                                                                                                                                                                                                      + + + public + loadSum(array<string|int, mixed>|string $relations, string $column) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + makeHidden() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Make the given, typically visible, attributes hidden.

                                                                                                                                                                                                                      + + + public + makeHidden(array<string|int, mixed>|string|null $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + makeHiddenIf() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Make the given, typically visible, attributes hidden if the given truth test passes.

                                                                                                                                                                                                                      + + + public + makeHiddenIf(bool|Closure $condition, array<string|int, mixed>|string|null $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $condition + : bool|Closure +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + makeVisible() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Make the given, typically hidden, attributes visible.

                                                                                                                                                                                                                      + + + public + makeVisible(array<string|int, mixed>|string|null $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + makeVisibleIf() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Make the given, typically hidden, attributes visible if the given truth test passes.

                                                                                                                                                                                                                      + + + public + makeVisibleIf(bool|Closure $condition, array<string|int, mixed>|string|null $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $condition + : bool|Closure +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mergeCasts() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Merge new casts with existing casts on the model.

                                                                                                                                                                                                                      + + + public + mergeCasts(array<string|int, mixed> $casts) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $casts + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mergeFillable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Merge new fillable attributes with existing fillable attributes on the model.

                                                                                                                                                                                                                      + + + public + mergeFillable(array<string|int, mixed> $fillable) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $fillable + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mergeGuarded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Merge new guarded attributes with existing guarded attributes on the model.

                                                                                                                                                                                                                      + + + public + mergeGuarded(array<string|int, mixed> $guarded) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $guarded + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphedByMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic, inverse many-to-many relationship.

                                                                                                                                                                                                                      + + + public + morphedByMany(string $related, string $name[, string|null $table = null ][, string|null $foreignPivotKey = null ][, string|null $relatedPivotKey = null ][, string|null $parentKey = null ][, string|null $relatedKey = null ]) : MorphToMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignPivotKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedPivotKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parentKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphToMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic one-to-many relationship.

                                                                                                                                                                                                                      + + + public + morphMany(string $related, string $name[, string|null $type = null ][, string|null $id = null ][, string|null $localKey = null ]) : MorphMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphOne() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic one-to-one relationship.

                                                                                                                                                                                                                      + + + public + morphOne(string $related, string $name[, string|null $type = null ][, string|null $id = null ][, string|null $localKey = null ]) : MorphOne + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphOne +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic, inverse one-to-one or many relationship.

                                                                                                                                                                                                                      + + + public + morphTo([string|null $name = null ][, string|null $type = null ][, string|null $id = null ][, string|null $ownerKey = null ]) : MorphTo + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ownerKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphTo +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphToMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic many-to-many relationship.

                                                                                                                                                                                                                      + + + public + morphToMany(string $related, string $name[, string|null $table = null ][, string|null $foreignPivotKey = null ][, string|null $relatedPivotKey = null ][, string|null $parentKey = null ][, string|null $relatedKey = null ][, bool $inverse = false ]) : MorphToMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $related + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignPivotKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedPivotKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parentKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedKey + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $inverse + : bool + = false
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphToMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newCollection() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new Eloquent Collection instance.

                                                                                                                                                                                                                      + + + public + newCollection([array<string|int, mixed> $models = [] ]) : Collection + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $models + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Collection +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newEloquentBuilder() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new Eloquent query builder for the model.

                                                                                                                                                                                                                      + + + public + newEloquentBuilder(Builder $query) : Builder|static + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder|static +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newFromBuilder() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new model instance that is existing.

                                                                                                                                                                                                                      + + + public + newFromBuilder([array<string|int, mixed> $attributes = [] ][, string|null $connection = null ]) : static + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $connection + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + static +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newInstance() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new instance of the given model.

                                                                                                                                                                                                                      + + + public + newInstance([array<string|int, mixed> $attributes = [] ][, bool $exists = false ]) : static + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $exists + : bool + = false
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + static +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newModelQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query builder that doesn't have any global scopes or eager loading.

                                                                                                                                                                                                                      + + + public + newModelQuery() : Builder|static + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder|static +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newPivot() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new pivot model instance.

                                                                                                                                                                                                                      + + + public + newPivot(Model $parent, array<string|int, mixed> $attributes, string $table, bool $exists[, string|null $using = null ]) : Pivot + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $exists + : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $using + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Pivot +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query builder for the model's table.

                                                                                                                                                                                                                      + + + public + newQuery() : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newQueryForRestoration() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query to restore one or more models by their queueable IDs.

                                                                                                                                                                                                                      + + + public + newQueryForRestoration(array<string|int, mixed>|int $ids) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ids + : array<string|int, mixed>|int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newQueryWithoutRelationships() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query builder with no relationships loaded.

                                                                                                                                                                                                                      + + + public + newQueryWithoutRelationships() : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newQueryWithoutScope() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query instance without a given scope.

                                                                                                                                                                                                                      + + + public + newQueryWithoutScope(Scope|string $scope) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $scope + : Scope|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newQueryWithoutScopes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query builder that doesn't have any global scopes.

                                                                                                                                                                                                                      + + + public + newQueryWithoutScopes() : Builder|static + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder|static +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + observe() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register observers with the model.

                                                                                                                                                                                                                      + + + public + static observe(object|array<string|int, mixed>|string $classes) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $classes + : object|array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + RuntimeException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + offsetExists() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given attribute exists.

                                                                                                                                                                                                                      + + + public + offsetExists(mixed $offset) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $offset + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Attributes + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + #[ReturnTypeWillChange] +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + offsetGet() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value for a given offset.

                                                                                                                                                                                                                      + + + public + offsetGet(mixed $offset) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $offset + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Attributes + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + #[ReturnTypeWillChange] +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + offsetSet() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value for a given offset.

                                                                                                                                                                                                                      + + + public + offsetSet(mixed $offset, mixed $value) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $offset + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Attributes + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + #[ReturnTypeWillChange] +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + offsetUnset() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Unset the value for a given offset.

                                                                                                                                                                                                                      + + + public + offsetUnset(mixed $offset) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $offset + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Attributes + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + #[ReturnTypeWillChange] +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + on() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Begin querying the model on a given connection.

                                                                                                                                                                                                                      + + + public + static on([string|null $connection = null ]) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $connection + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + only() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a subset of the model's attributes.

                                                                                                                                                                                                                      + + + public + only(array<string|int, mixed>|mixed $attributes) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + onWriteConnection() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Begin querying the model on the write connection.

                                                                                                                                                                                                                      + + + public + static onWriteConnection() : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + originalIsEquivalent() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the new and old values for a given key are equivalent.

                                                                                                                                                                                                                      + + + public + originalIsEquivalent(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + preventLazyLoading() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Prevent model relationships from being lazy loaded.

                                                                                                                                                                                                                      + + + public + static preventLazyLoading([bool $value = true ]) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : bool + = true
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + preventsLazyLoading() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if lazy loading is disabled.

                                                                                                                                                                                                                      + + + public + static preventsLazyLoading() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + push() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Save the model and all of its relationships.

                                                                                                                                                                                                                      + + + public + push() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + qualifyColumn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Qualify the given column name by the model's table.

                                                                                                                                                                                                                      + + + public + qualifyColumn(string $column) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + qualifyColumns() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Qualify the given columns with the model's table.

                                                                                                                                                                                                                      + + + public + qualifyColumns(array<string|int, mixed> $columns) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $columns + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + query() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Begin querying the model.

                                                                                                                                                                                                                      + + + public + static query() : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + refresh() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Reload the current model instance with fresh attributes from the database.

                                                                                                                                                                                                                      + + + public + refresh() : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + registerGlobalScopes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register the global scopes for this builder instance.

                                                                                                                                                                                                                      + + + public + registerGlobalScopes(Builder $builder) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $builder + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + reguard() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Enable the mass assignment restrictions.

                                                                                                                                                                                                                      + + + public + static reguard() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + relationLoaded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given relation is loaded.

                                                                                                                                                                                                                      + + + public + relationLoaded(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + relationsToArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the model's relationships in array form.

                                                                                                                                                                                                                      + + + public + relationsToArray() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + removeObservableEvents() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Remove an observable event name.

                                                                                                                                                                                                                      + + + public + removeObservableEvents(array<string|int, mixed>|mixed $observables) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $observables + : array<string|int, mixed>|mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + replicate() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Clone the model into a new, non-existing instance.

                                                                                                                                                                                                                      + + + public + replicate([array<string|int, mixed>|null $except = null ]) : static + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $except + : array<string|int, mixed>|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + static +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + replicating() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a replicating model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static replicating(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveChildRouteBinding() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the child model for a bound value.

                                                                                                                                                                                                                      + + + public + resolveChildRouteBinding(string $childType, mixed $value, string|null $field) : Model|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $childType + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $field + : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Model|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveConnection() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Resolve a connection instance.

                                                                                                                                                                                                                      + + + public + static resolveConnection([string|null $connection = null ]) : Connection + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $connection + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Connection +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveRelationUsing() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a dynamic relation resolver.

                                                                                                                                                                                                                      + + + public + static resolveRelationUsing(string $name, Closure $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : Closure +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveRouteBinding() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the model for a bound value.

                                                                                                                                                                                                                      + + + public + resolveRouteBinding(mixed $value[, string|null $field = null ]) : Model|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $field + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Model|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveRouteBindingQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the model for a bound value.

                                                                                                                                                                                                                      + + + public + resolveRouteBindingQuery(Model|Relation $query, mixed $value[, string|null $field = null ]) : Relation + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Model|Relation +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $field + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Relation +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveSoftDeletableChildRouteBinding() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the child model for a bound value.

                                                                                                                                                                                                                      + + + public + resolveSoftDeletableChildRouteBinding(string $childType, mixed $value, string|null $field) : Model|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $childType + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $field + : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Model|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveSoftDeletableRouteBinding() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the model for a bound value.

                                                                                                                                                                                                                      + + + public + resolveSoftDeletableRouteBinding(mixed $value[, string|null $field = null ]) : Model|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $field + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Model|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + retrieved() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a retrieved model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static retrieved(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + save() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Save the model to the database.

                                                                                                                                                                                                                      + + + public + save([array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + saved() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a saved model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static saved(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + saveOrFail() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Save the model to the database within a transaction.

                                                                                                                                                                                                                      + + + public + saveOrFail([array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Throwable + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + saveQuietly() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Save the model to the database without raising any events.

                                                                                                                                                                                                                      + + + public + saveQuietly([array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + saving() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a saving model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static saving(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setAppends() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the accessors to append to model arrays.

                                                                                                                                                                                                                      + + + public + setAppends(array<string|int, mixed> $appends) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $appends + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set a given attribute on the model.

                                                                                                                                                                                                                      + + + public + setAttribute(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setConnection() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the connection associated with the model.

                                                                                                                                                                                                                      + + + public + setConnection(string|null $name) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setCreatedAt() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value of the "created at" attribute.

                                                                                                                                                                                                                      + + + public + setCreatedAt(mixed $value) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setDateFormat() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the date format used by the model.

                                                                                                                                                                                                                      + + + public + setDateFormat(string $format) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $format + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setEventDispatcher() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the event dispatcher instance.

                                                                                                                                                                                                                      + + + public + static setEventDispatcher(Dispatcher $dispatcher) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $dispatcher + : Dispatcher +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setHidden() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the hidden attributes for the model.

                                                                                                                                                                                                                      + + + public + setHidden(array<string|int, mixed> $hidden) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $hidden + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setIncrementing() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set whether IDs are incrementing.

                                                                                                                                                                                                                      + + + public + setIncrementing(bool $value) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : bool +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setKeyName() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the primary key for the model.

                                                                                                                                                                                                                      + + + public + setKeyName(string $key) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setKeyType() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the data type for the primary key.

                                                                                                                                                                                                                      + + + public + setKeyType(string $type) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setObservableEvents() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the observable event names.

                                                                                                                                                                                                                      + + + public + setObservableEvents(array<string|int, mixed> $observables) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $observables + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setPerPage() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the number of models to return per page.

                                                                                                                                                                                                                      + + + public + setPerPage(int $perPage) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $perPage + : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setRawAttributes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the array of model attributes. No checking is done.

                                                                                                                                                                                                                      + + + public + setRawAttributes(array<string|int, mixed> $attributes[, bool $sync = false ]) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $sync + : bool + = false
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setRelation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the given relationship on the model.

                                                                                                                                                                                                                      + + + public + setRelation(string $relation, mixed $value) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the entire relations array on the model.

                                                                                                                                                                                                                      + + + public + setRelations(array<string|int, mixed> $relations) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setTable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the table associated with the model.

                                                                                                                                                                                                                      + + + public + setTable(string $table) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setTouchedRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the relationships that are touched on save.

                                                                                                                                                                                                                      + + + public + setTouchedRelations(array<string|int, mixed> $touches) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $touches + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setUpdatedAt() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value of the "updated at" attribute.

                                                                                                                                                                                                                      + + + public + setUpdatedAt(mixed $value) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setVisible() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the visible attributes for the model.

                                                                                                                                                                                                                      + + + public + setVisible(array<string|int, mixed> $visible) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $visible + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + syncChanges() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Sync the changed attributes.

                                                                                                                                                                                                                      + + + public + syncChanges() : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + syncOriginal() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Sync the original attributes with the current.

                                                                                                                                                                                                                      + + + public + syncOriginal() : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + syncOriginalAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Sync a single original attribute with its current value.

                                                                                                                                                                                                                      + + + public + syncOriginalAttribute(string $attribute) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attribute + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + syncOriginalAttributes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Sync multiple original attribute with their current values.

                                                                                                                                                                                                                      + + + public + syncOriginalAttributes(array<string|int, mixed>|string $attributes) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + toArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Convert the model instance to an array.

                                                                                                                                                                                                                      + + + public + toArray() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + toJson() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Convert the model instance to JSON.

                                                                                                                                                                                                                      + + + public + toJson([int $options = 0 ]) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : int + = 0
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + JsonEncodingException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + totallyGuarded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model is totally guarded.

                                                                                                                                                                                                                      + + + public + totallyGuarded() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + touch() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Update the model's update timestamp.

                                                                                                                                                                                                                      + + + public + touch() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + touches() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model touches a given relation.

                                                                                                                                                                                                                      + + + public + touches(string $relation) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + touchOwners() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Touch the owning relations of the model.

                                                                                                                                                                                                                      + + + public + touchOwners() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + unguard() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Disable all mass assignable restrictions.

                                                                                                                                                                                                                      + + + public + static unguard([bool $state = true ]) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $state + : bool + = true
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + unguarded() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Run the given callable while being unguarded.

                                                                                                                                                                                                                      + + + public + static unguarded(callable $callback) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : callable +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + unsetConnectionResolver() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Unset the connection resolver for models.

                                                                                                                                                                                                                      + + + public + static unsetConnectionResolver() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + unsetEventDispatcher() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Unset the event dispatcher for models.

                                                                                                                                                                                                                      + + + public + static unsetEventDispatcher() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + unsetRelation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Unset a loaded relationship.

                                                                                                                                                                                                                      + + + public + unsetRelation(string $relation) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + unsetRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Unset all the loaded relations for the instance.

                                                                                                                                                                                                                      + + + public + unsetRelations() : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + update() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Update the model in the database.

                                                                                                                                                                                                                      + + + public + update([array<string|int, mixed> $attributes = [] ][, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + updated() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register an updated model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static updated(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + updateOrFail() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Update the model in the database within a transaction.

                                                                                                                                                                                                                      + + + public + updateOrFail([array<string|int, mixed> $attributes = [] ][, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + Throwable + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + updateQuietly() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Update the model in the database without raising any events.

                                                                                                                                                                                                                      + + + public + updateQuietly([array<string|int, mixed> $attributes = [] ][, array<string|int, mixed> $options = [] ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + updateTimestamps() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Update the creation and update timestamps.

                                                                                                                                                                                                                      + + + public + updateTimestamps() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + updating() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register an updating model event with the dispatcher.

                                                                                                                                                                                                                      + + + public + static updating(QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + usesTimestamps() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model uses timestamps.

                                                                                                                                                                                                                      + + + public + usesTimestamps() : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + wasChanged() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the model or any of the given attribute(s) have been modified.

                                                                                                                                                                                                                      + + + public + wasChanged([array<string|int, mixed>|string|null $attributes = null ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + with() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Begin querying a model with eager loading.

                                                                                                                                                                                                                      + + + public + static with(array<string|int, mixed>|string $relations) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relations + : array<string|int, mixed>|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + withoutBroadcasting() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Execute a callback without broadcasting any model events for all model types.

                                                                                                                                                                                                                      + + + public + static withoutBroadcasting(callable $callback) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : callable +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + withoutEvents() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Execute a callback without firing any model events for any model type.

                                                                                                                                                                                                                      + + + public + static withoutEvents(callable $callback) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : callable +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + withoutRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Duplicate the instance and unset all the loaded relations.

                                                                                                                                                                                                                      + + + public + withoutRelations() : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + withoutTouching() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Disables relationship model touching for the current class during given callback scope.

                                                                                                                                                                                                                      + + + public + static withoutTouching(callable $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : callable +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + withoutTouchingOn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Disables relationship model touching for the given model classes during given callback scope.

                                                                                                                                                                                                                      + + + public + static withoutTouchingOn(array<string|int, mixed> $models, callable $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $models + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : callable +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + addCastAttributesToArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Add the casted attributes to the attributes array.

                                                                                                                                                                                                                      + + + protected + addCastAttributesToArray(array<string|int, mixed> $attributes, array<string|int, mixed> $mutatedAttributes) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $mutatedAttributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + addDateAttributesToArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Add the date attributes to the attributes array.

                                                                                                                                                                                                                      + + + protected + addDateAttributesToArray(array<string|int, mixed> $attributes) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + addMutatedAttributesToArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Add the mutated attributes to the attributes array.

                                                                                                                                                                                                                      + + + protected + addMutatedAttributesToArray(array<string|int, mixed> $attributes, array<string|int, mixed> $mutatedAttributes) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $mutatedAttributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + asDate() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Return a timestamp as DateTime object with time set to 00:00:00.

                                                                                                                                                                                                                      + + + protected + asDate(mixed $value) : Carbon + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Carbon +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + asDateTime() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Return a timestamp as DateTime object.

                                                                                                                                                                                                                      + + + protected + asDateTime(mixed $value) : Carbon + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Carbon +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + asDecimal() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Return a decimal as string.

                                                                                                                                                                                                                      + + + protected + asDecimal(float $value, int $decimals) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : float +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $decimals + : int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + asJson() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Encode the given value as JSON.

                                                                                                                                                                                                                      + + + protected + asJson(mixed $value) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + asTimestamp() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Return a timestamp as unix timestamp.

                                                                                                                                                                                                                      + + + protected + asTimestamp(mixed $value) : int + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + int +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + boot() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Bootstrap the model and its traits.

                                                                                                                                                                                                                      + + + protected + static boot() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + booted() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Perform any actions required after the model boots.

                                                                                                                                                                                                                      + + + protected + static booted() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + bootIfNotBooted() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Check if the model needs to be booted and if so, do it.

                                                                                                                                                                                                                      + + + protected + bootIfNotBooted() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + booting() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Perform any actions required before the model boots.

                                                                                                                                                                                                                      + + + protected + static booting() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + bootTraits() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Boot all of the bootable traits on the model.

                                                                                                                                                                                                                      + + + protected + static bootTraits() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + castAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Cast an attribute to a native PHP type.

                                                                                                                                                                                                                      + + + protected + castAttribute(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + castAttributeAsEncryptedString() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Cast the given attribute to an encrypted string.

                                                                                                                                                                                                                      + + + protected + castAttributeAsEncryptedString(string $key, mixed $value) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + castAttributeAsJson() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Cast the given attribute to JSON.

                                                                                                                                                                                                                      + + + protected + castAttributeAsJson(string $key, mixed $value) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + decrement() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Decrement a column's value by a given amount.

                                                                                                                                                                                                                      + + + protected + decrement(string $column[, float|int $amount = 1 ][, array<string|int, mixed> $extra = [] ]) : int + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $amount + : float|int + = 1
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $extra + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + int +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + deviateClassCastableAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Increment or decrement the given attribute using the custom cast class.

                                                                                                                                                                                                                      + + + protected + deviateClassCastableAttribute(string $method, string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fillableFromArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the fillable attributes of a given array.

                                                                                                                                                                                                                      + + + protected + fillableFromArray(array<string|int, mixed> $attributes) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + filterModelEventResults() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Filter the model event results.

                                                                                                                                                                                                                      + + + protected + filterModelEventResults(mixed $result) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $result + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + finishSave() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Perform any actions that are necessary after the model is saved.

                                                                                                                                                                                                                      + + + protected + finishSave(array<string|int, mixed> $options) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $options + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fireCustomModelEvent() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Fire a custom model event for the given event.

                                                                                                                                                                                                                      + + + protected + fireCustomModelEvent(string $event, string $method) : mixed|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $event + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + mixed|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + fireModelEvent() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Fire the given event for the model.

                                                                                                                                                                                                                      + + + protected + fireModelEvent(string $event[, bool $halt = true ]) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $event + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $halt + : bool + = true
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + forwardCallTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Forward a method call to the given object.

                                                                                                                                                                                                                      + + + protected + forwardCallTo(mixed $object, string $method, array<string|int, mixed> $parameters) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $object + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parameters + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + BadMethodCallException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + forwardDecoratedCallTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Forward a method call to the given object, returning $this if the forwarded call returned itself.

                                                                                                                                                                                                                      + + + protected + forwardDecoratedCallTo(mixed $object, string $method, array<string|int, mixed> $parameters) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $object + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parameters + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + BadMethodCallException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getArrayableAppends() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all of the appendable values that are arrayable.

                                                                                                                                                                                                                      + + + protected + getArrayableAppends() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getArrayableAttributes() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an attribute array of all arrayable attributes.

                                                                                                                                                                                                                      + + + protected + getArrayableAttributes() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getArrayableItems() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an attribute array of all arrayable values.

                                                                                                                                                                                                                      + + + protected + getArrayableItems(array<string|int, mixed> $values) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $values + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getArrayableRelations() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an attribute array of all arrayable relations.

                                                                                                                                                                                                                      + + + protected + getArrayableRelations() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getArrayAttributeByKey() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an array attribute or return an empty array if it is not set.

                                                                                                                                                                                                                      + + + protected + getArrayAttributeByKey(string $key) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getArrayAttributeWithValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an array attribute with the given key and value set.

                                                                                                                                                                                                                      + + + protected + getArrayAttributeWithValue(string $path, string $key, mixed $value) : $this + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $path + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + $this +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getAttributeFromArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get an attribute from the $attributes array.

                                                                                                                                                                                                                      + + + protected + getAttributeFromArray(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getAttributeMarkedMutatorMethods() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all of the "Attribute" return typed attribute mutator methods.

                                                                                                                                                                                                                      + + + protected + static getAttributeMarkedMutatorMethods(mixed $class) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getAttributesForInsert() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all of the current attributes on the model for an insert operation.

                                                                                                                                                                                                                      + + + protected + getAttributesForInsert() : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getCastType() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the type of cast for a model attribute.

                                                                                                                                                                                                                      + + + protected + getCastType(string $key) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getClassCastableAttributeValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Cast the given attribute using a custom cast class.

                                                                                                                                                                                                                      + + + protected + getClassCastableAttributeValue(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getEnumCastableAttributeValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Cast the given attribute to an enum.

                                                                                                                                                                                                                      + + + protected + getEnumCastableAttributeValue(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getKeyForSaveQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the primary key value for a save query.

                                                                                                                                                                                                                      + + + protected + getKeyForSaveQuery() : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getKeyForSelectQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the primary key value for a select query.

                                                                                                                                                                                                                      + + + protected + getKeyForSelectQuery() : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getMorphs() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the polymorphic relationship columns.

                                                                                                                                                                                                                      + + + protected + getMorphs(string $name, string $type, string $id) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getMutatorMethods() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get all of the attribute mutator methods.

                                                                                                                                                                                                                      + + + protected + static getMutatorMethods(mixed $class) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getOriginalWithoutRewindingModel() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the model's original attribute values.

                                                                                                                                                                                                                      + + + protected + getOriginalWithoutRewindingModel([string|null $key = null ][, mixed $default = null ]) : mixed|array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $default + : mixed + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + mixed|array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + getRelationshipFromMethod() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a relationship value from a method.

                                                                                                                                                                                                                      + + + protected + getRelationshipFromMethod(string $method) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + LogicException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + guessBelongsToManyRelation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the relationship name of the belongsToMany relationship.

                                                                                                                                                                                                                      + + + protected + guessBelongsToManyRelation() : string|null + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string|null +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + guessBelongsToRelation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Guess the "belongs to" relationship name.

                                                                                                                                                                                                                      + + + protected + guessBelongsToRelation() : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + handleLazyLoadingViolation() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Handle a lazy loading violation.

                                                                                                                                                                                                                      + + + protected + handleLazyLoadingViolation(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + hasChanges() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if any of the given attributes were changed.

                                                                                                                                                                                                                      + + + protected + hasChanges(array<string|int, mixed> $changes[, array<string|int, mixed>|string|null $attributes = null ]) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $changes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + increment() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Increment a column's value by a given amount.

                                                                                                                                                                                                                      + + + protected + increment(string $column[, float|int $amount = 1 ][, array<string|int, mixed> $extra = [] ]) : int + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $amount + : float|int + = 1
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $extra + : array<string|int, mixed> + = []
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + int +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + incrementOrDecrement() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Run the increment or decrement method on the model.

                                                                                                                                                                                                                      + + + protected + incrementOrDecrement(string $column, float|int $amount, array<string|int, mixed> $extra, string $method) : int + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $column + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $amount + : float|int +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $extra + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + int +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + initializeTraits() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Initialize any initializable traits on the model.

                                                                                                                                                                                                                      + + + protected + initializeTraits() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + insertAndSetId() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Insert the given attributes and set the ID on the model.

                                                                                                                                                                                                                      + + + protected + insertAndSetId(Builder $query, array<string|int, mixed> $attributes) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isClassCastable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given key is cast using a custom class.

                                                                                                                                                                                                                      + + + protected + isClassCastable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + InvalidCastException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isClassDeviable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the key is deviable using a custom class.

                                                                                                                                                                                                                      + + + protected + isClassDeviable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + InvalidCastException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isClassSerializable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the key is serializable using a custom class.

                                                                                                                                                                                                                      + + + protected + isClassSerializable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + InvalidCastException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isCustomDateTimeCast() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the cast type is a custom date time cast.

                                                                                                                                                                                                                      + + + protected + isCustomDateTimeCast(string $cast) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $cast + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isDateAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given attribute is a date or date castable.

                                                                                                                                                                                                                      + + + protected + isDateAttribute(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isDateCastable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine whether a value is Date / DateTime castable for inbound manipulation.

                                                                                                                                                                                                                      + + + protected + isDateCastable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isDateCastableWithCustomFormat() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine whether a value is Date / DateTime custom-castable for inbound manipulation.

                                                                                                                                                                                                                      + + + protected + isDateCastableWithCustomFormat(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isDecimalCast() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the cast type is a decimal cast.

                                                                                                                                                                                                                      + + + protected + isDecimalCast(string $cast) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $cast + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isEncryptedCastable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine whether a value is an encrypted castable for inbound manipulation.

                                                                                                                                                                                                                      + + + protected + isEncryptedCastable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isEnumCastable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given key is cast using an enum.

                                                                                                                                                                                                                      + + + protected + isEnumCastable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isGuardableColumn() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given column is a valid, guardable column.

                                                                                                                                                                                                                      + + + protected + isGuardableColumn(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isImmutableCustomDateTimeCast() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the cast type is an immutable custom date time cast.

                                                                                                                                                                                                                      + + + protected + isImmutableCustomDateTimeCast(string $cast) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $cast + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isJsonCastable() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine whether a value is JSON castable for inbound manipulation.

                                                                                                                                                                                                                      + + + protected + isJsonCastable(string $key) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + isStandardDateFormat() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Determine if the given value is a standard date format.

                                                                                                                                                                                                                      + + + protected + isStandardDateFormat(string $value) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mergeAttributesFromAttributeCasts() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Merge the cast class attributes back into the model.

                                                                                                                                                                                                                      + + + protected + mergeAttributesFromAttributeCasts() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mergeAttributesFromCachedCasts() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Merge the cast class and attribute cast attributes back into the model.

                                                                                                                                                                                                                      + + + protected + mergeAttributesFromCachedCasts() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mergeAttributesFromClassCasts() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Merge the cast class attributes back into the model.

                                                                                                                                                                                                                      + + + protected + mergeAttributesFromClassCasts() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphEagerTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic, inverse one-to-one or many relationship.

                                                                                                                                                                                                                      + + + protected + morphEagerTo(string $name, string $type, string $id, string $ownerKey) : MorphTo + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ownerKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphTo +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + morphInstanceTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Define a polymorphic, inverse one-to-one or many relationship.

                                                                                                                                                                                                                      + + + protected + morphInstanceTo(string $target, string $name, string $type, string $id, string $ownerKey) : MorphTo + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $target + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ownerKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphTo +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mutateAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value of an attribute using its mutator.

                                                                                                                                                                                                                      + + + protected + mutateAttribute(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mutateAttributeForArray() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value of an attribute using its mutator for array conversion.

                                                                                                                                                                                                                      + + + protected + mutateAttributeForArray(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + mutateAttributeMarkedAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get the value of an "Attribute" return type marked attribute using its mutator.

                                                                                                                                                                                                                      + + + protected + mutateAttributeMarkedAttribute(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newBaseQueryBuilder() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Get a new query builder instance for the connection.

                                                                                                                                                                                                                      + + + protected + newBaseQueryBuilder() : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newBelongsTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new BelongsTo relationship.

                                                                                                                                                                                                                      + + + protected + newBelongsTo(Builder $query, Model $child, string $foreignKey, string $ownerKey, string $relation) : BelongsTo + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $child + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ownerKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + BelongsTo +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newBelongsToMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new BelongsToMany relationship.

                                                                                                                                                                                                                      + + + protected + newBelongsToMany(Builder $query, Model $parent, string $table, string $foreignPivotKey, string $relatedPivotKey, string $parentKey, string $relatedKey[, string|null $relationName = null ]) : BelongsToMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignPivotKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedPivotKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parentKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relationName + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + BelongsToMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newHasMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new HasMany relationship.

                                                                                                                                                                                                                      + + + protected + newHasMany(Builder $query, Model $parent, string $foreignKey, string $localKey) : HasMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newHasManyThrough() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new HasManyThrough relationship.

                                                                                                                                                                                                                      + + + protected + newHasManyThrough(Builder $query, Model $farParent, Model $throughParent, string $firstKey, string $secondKey, string $localKey, string $secondLocalKey) : HasManyThrough + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $farParent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $throughParent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $firstKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondLocalKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasManyThrough +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newHasOne() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new HasOne relationship.

                                                                                                                                                                                                                      + + + protected + newHasOne(Builder $query, Model $parent, string $foreignKey, string $localKey) : HasOne + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasOne +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newHasOneThrough() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new HasOneThrough relationship.

                                                                                                                                                                                                                      + + + protected + newHasOneThrough(Builder $query, Model $farParent, Model $throughParent, string $firstKey, string $secondKey, string $localKey, string $secondLocalKey) : HasOneThrough + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $farParent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $throughParent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $firstKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $secondLocalKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + HasOneThrough +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newMorphMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new MorphMany relationship.

                                                                                                                                                                                                                      + + + protected + newMorphMany(Builder $query, Model $parent, string $type, string $id, string $localKey) : MorphMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newMorphOne() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new MorphOne relationship.

                                                                                                                                                                                                                      + + + protected + newMorphOne(Builder $query, Model $parent, string $type, string $id, string $localKey) : MorphOne + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $id + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $localKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphOne +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newMorphTo() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new MorphTo relationship.

                                                                                                                                                                                                                      + + + protected + newMorphTo(Builder $query, Model $parent, string $foreignKey, string $ownerKey, string $type, string $relation) : MorphTo + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $ownerKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $type + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relation + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphTo +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newMorphToMany() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Instantiate a new MorphToMany relationship.

                                                                                                                                                                                                                      + + + protected + newMorphToMany(Builder $query, Model $parent, string $name, string $table, string $foreignPivotKey, string $relatedPivotKey, string $parentKey, string $relatedKey[, string|null $relationName = null ][, bool $inverse = false ]) : MorphToMany + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parent + : Model +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $name + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $table + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $foreignPivotKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedPivotKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $parentKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relatedKey + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $relationName + : string|null + = null
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $inverse + : bool + = false
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + MorphToMany +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + newRelatedInstance() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Create a new model instance for a related model.

                                                                                                                                                                                                                      + + + protected + newRelatedInstance(string $class) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + normalizeCastClassResponse() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Normalize the response from a custom class caster.

                                                                                                                                                                                                                      + + + protected + normalizeCastClassResponse(string $key, mixed $value) : array<string|int, mixed> + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + parseCasterClass() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Parse the given caster class, removing any arguments.

                                                                                                                                                                                                                      + + + protected + parseCasterClass(string $class) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + performDeleteOnModel() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Perform the actual delete query on this model instance.

                                                                                                                                                                                                                      + + + protected + performDeleteOnModel() : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + performInsert() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Perform a model insert operation.

                                                                                                                                                                                                                      + + + protected + performInsert(Builder $query) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + performUpdate() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Perform a model update operation.

                                                                                                                                                                                                                      + + + protected + performUpdate(Builder $query) : bool + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + registerModelEvent() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a model event with the dispatcher.

                                                                                                                                                                                                                      + + + protected + static registerModelEvent(string $event, QueuedClosure|Closure|string $callback) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $event + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $callback + : QueuedClosure|Closure|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + registerObserver() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Register a single observer with the model.

                                                                                                                                                                                                                      + + + protected + registerObserver(object|string $class) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : object|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + RuntimeException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveCasterClass() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Resolve the custom caster class for a given key.

                                                                                                                                                                                                                      + + + protected + resolveCasterClass(string $key) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveChildRouteBindingQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Retrieve the child model query for a bound value.

                                                                                                                                                                                                                      + + + protected + resolveChildRouteBindingQuery(string $childType, mixed $value, string|null $field) : Relation + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $childType + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $field + : string|null +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Relation +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + serializeClassCastableAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Serialize the given attribute using the custom cast class.

                                                                                                                                                                                                                      + + + protected + serializeClassCastableAttribute(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + serializeDate() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Prepare a date for array / JSON serialization.

                                                                                                                                                                                                                      + + + protected + serializeDate(DateTimeInterface $date) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $date + : DateTimeInterface +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setAttributeMarkedMutatedAttributeValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value of a "Attribute" return type marked attribute using its mutator.

                                                                                                                                                                                                                      + + + protected + setAttributeMarkedMutatedAttributeValue(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setClassCastableAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value of a class castable attribute.

                                                                                                                                                                                                                      + + + protected + setClassCastableAttribute(string $key, mixed $value) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setEnumCastableAttribute() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value of an enum castable attribute.

                                                                                                                                                                                                                      + + + protected + setEnumCastableAttribute(string $key, BackedEnum $value) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : BackedEnum +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setKeysForSaveQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the keys for a save update query.

                                                                                                                                                                                                                      + + + protected + setKeysForSaveQuery(Builder $query) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setKeysForSelectQuery() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the keys for a select query.

                                                                                                                                                                                                                      + + + protected + setKeysForSelectQuery(Builder $query) : Builder + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $query + : Builder +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + Builder +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + setMutatedAttributeValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Set the value of an attribute using its mutator.

                                                                                                                                                                                                                      + + + protected + setMutatedAttributeValue(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + throwBadMethodCallException() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Throw a bad method call exception for the given method.

                                                                                                                                                                                                                      + + + protected + static throwBadMethodCallException(string $method) : void + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $method + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + BadMethodCallException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + transformModelValue() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Transform a raw model value using mutators, casts, etc.

                                                                                                                                                                                                                      + + + protected + transformModelValue(string $key, mixed $value) : mixed + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $key + : string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + resolveObserverClassName() + + +

                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                      Resolve the observer's class name from an object or string.

                                                                                                                                                                                                                      + + + private + resolveObserverClassName(object|string $class) : string + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + $class + : object|string +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + throws +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + InvalidArgumentException + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      
                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Adapters-Adapter.html b/src/public/api/classes/Leaf-Queue-Adapters-Adapter.html new file mode 100644 index 00000000..26d9f18a --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Adapters-Adapter.html @@ -0,0 +1,810 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + Adapter +
                                                                                                                                                                                                                        + in + +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + + + +

                                                                                                                                                                                                                        Database adapter +----- +Db adapter for the worker

                                                                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + connect() + +  : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Connect to queue storage
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + getJobs() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Get all jobs for processing
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + getNextJob() + +  : object +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Get next job for processing
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + markJobAsFailed() + +  : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Mark job as failed
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + popJobFromQueue() + +  : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Pop job from queue
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + pushJobToQueue() + +  : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Push job to queue
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + retryFailedJob() + +  : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Retry failed job
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + setJobStatus() + +  : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Set job status
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + connect() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Connect to queue storage

                                                                                                                                                                                                                        + + + public + connect(array<string|int, mixed> $connection) : mixed + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $connection + : array<string|int, mixed> +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Credentials for the queue storage

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + getJobs() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Get all jobs for processing

                                                                                                                                                                                                                        + + + public + getJobs() : array<string|int, mixed> + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + getNextJob() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Get next job for processing

                                                                                                                                                                                                                        + + + public + getNextJob() : object + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                        + object +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + markJobAsFailed() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Mark job as failed

                                                                                                                                                                                                                        + + + public + markJobAsFailed(mixed $id) : mixed + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $id + : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + popJobFromQueue() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Pop job from queue

                                                                                                                                                                                                                        + + + public + popJobFromQueue(string|int $id) : mixed + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $id + : string|int +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        The id of the job to pop

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + pushJobToQueue() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Push job to queue

                                                                                                                                                                                                                        + + + public + pushJobToQueue(array<string|int, mixed> $job) : mixed + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $job + : array<string|int, mixed> +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        The job to push to the queue

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + retryFailedJob() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Retry failed job

                                                                                                                                                                                                                        + + + public + retryFailedJob(mixed $id, mixed $retryCount) : mixed + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $id + : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $retryCount + : mixed +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        + setJobStatus() + + +

                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                        Set job status

                                                                                                                                                                                                                        + + + public + setJobStatus(string|int $id, string $status) : mixed + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $id + : string|int +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        The id of the job to set status

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + $status + : string +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        The status to set

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        
                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Adapters-Database.html b/src/public/api/classes/Leaf-Queue-Adapters-Database.html new file mode 100644 index 00000000..912231b8 --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Adapters-Database.html @@ -0,0 +1,1177 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + Database + + +
                                                                                                                                                                                                                          + in package + +
                                                                                                                                                                                                                          + + + implements + Adapter + +

                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                          Database adapter +----- +Db adapter for the worker

                                                                                                                                                                                                                          + + + + + + + + + +

                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                          + Interfaces + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Adapter
                                                                                                                                                                                                                          Database adapter +----- +Db adapter for the worker
                                                                                                                                                                                                                          + + + + + + +

                                                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $config + +  : array<string|int, mixed> +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + $db + +  : Db +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + $errors + +  : mixed +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + __construct() + +  : mixed +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + connect() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Connect to queue storage
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + getJobs() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Get all jobs for processing
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + getNextJob() + +  : object +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Get next job for processing
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + markJobAsFailed() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Mark job as failed
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + popJobFromQueue() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Pop job from queue
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + pushJobToQueue() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Push job to queue
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + retryFailedJob() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Retry failed job
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + setJobStatus() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Set job status
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + setupAdapterStorage() + +  : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Setup storage for the adapter
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + $config + + + + +

                                                                                                                                                                                                                          + + + + + + protected + array<string|int, mixed> + $config + = [] + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + $db + + + + +

                                                                                                                                                                                                                          + + + + + + protected + Db + $db + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + $errors + + + + +

                                                                                                                                                                                                                          + + + + + + protected + mixed + $errors + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + __construct() + + +

                                                                                                                                                                                                                          + + + + + public + __construct() : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + connect() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Connect to queue storage

                                                                                                                                                                                                                          + + + public + connect(mixed $connection) : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $connection + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Credentials for the queue storage

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + getJobs() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Get all jobs for processing

                                                                                                                                                                                                                          + + + public + getJobs() : array<string|int, mixed> + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + getNextJob() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Get next job for processing

                                                                                                                                                                                                                          + + + public + getNextJob() : object + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                          + object +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + markJobAsFailed() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Mark job as failed

                                                                                                                                                                                                                          + + + public + markJobAsFailed(mixed $id) : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $id + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + popJobFromQueue() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Pop job from queue

                                                                                                                                                                                                                          + + + public + popJobFromQueue(mixed $id) : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $id + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          The id of the job to pop

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + pushJobToQueue() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Push job to queue

                                                                                                                                                                                                                          + + + public + pushJobToQueue(mixed $job) : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $job + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          The job to push to the queue

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + retryFailedJob() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Retry failed job

                                                                                                                                                                                                                          + + + public + retryFailedJob(mixed $id, mixed $retryCount) : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $id + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $retryCount + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + setJobStatus() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Set job status

                                                                                                                                                                                                                          + + + public + setJobStatus(mixed $id, mixed $status) : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $id + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          The id of the job to set status

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + $status + : mixed +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          The status to set

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + inheritDoc +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          + setupAdapterStorage() + + +

                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                          Setup storage for the adapter

                                                                                                                                                                                                                          + + + protected + setupAdapterStorage() : mixed + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          
                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Adapters-Redis.html b/src/public/api/classes/Leaf-Queue-Adapters-Redis.html new file mode 100644 index 00000000..38a05832 --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Adapters-Redis.html @@ -0,0 +1,1203 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + Redis + + +
                                                                                                                                                                                                                            + in package + +
                                                                                                                                                                                                                            + + + implements + Adapter + +

                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                            Redis adapter +----- +Redis adapter for the worker

                                                                                                                                                                                                                            + + + + + + + + + +

                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                            + Interfaces + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Adapter
                                                                                                                                                                                                                            Database adapter +----- +Db adapter for the worker
                                                                                                                                                                                                                            + + + + + + +

                                                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $config + +  : array<string|int, mixed> +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + $errors + +  : mixed +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + $redis + +  : Redis +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + __construct() + +  : mixed +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + connect() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Connect to queue storage
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + getJobs() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Get all jobs for processing
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + getNextJob() + +  : object +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Get next job for processing
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + markJobAsFailed() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Mark job as failed
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + popJobFromQueue() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Pop job from queue
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + pushJobToQueue() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Push job to queue
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + retryFailedJob() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Retry failed job
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + setJobStatus() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Set job status
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + v4() + +  : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Generate unique id
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + $config + + + + +

                                                                                                                                                                                                                            + + + + + + protected + array<string|int, mixed> + $config + = [] + + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + $errors + + + + +

                                                                                                                                                                                                                            + + + + + + protected + mixed + $errors + + + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + $redis + + + + +

                                                                                                                                                                                                                            + + + + + + protected + Redis + $redis + + + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + __construct() + + +

                                                                                                                                                                                                                            + + + + + public + __construct([mixed $config = [] ]) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $config + : mixed + = []
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + connect() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Connect to queue storage

                                                                                                                                                                                                                            + + + public + connect(mixed $connection) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $connection + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Credentials for the queue storage

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + getJobs() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Get all jobs for processing

                                                                                                                                                                                                                            + + + public + getJobs() : array<string|int, mixed> + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                            + array<string|int, mixed> +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + getNextJob() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Get next job for processing

                                                                                                                                                                                                                            + + + public + getNextJob() : object + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                            + object +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + markJobAsFailed() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Mark job as failed

                                                                                                                                                                                                                            + + + public + markJobAsFailed(mixed $id) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $id + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + popJobFromQueue() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Pop job from queue

                                                                                                                                                                                                                            + + + public + popJobFromQueue(mixed $id) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $id + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            The id of the job to pop

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + pushJobToQueue() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Push job to queue

                                                                                                                                                                                                                            + + + public + pushJobToQueue(mixed $job) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $job + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            The job to push to the queue

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + retryFailedJob() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Retry failed job

                                                                                                                                                                                                                            + + + public + retryFailedJob(mixed $id, mixed $retryCount) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $id + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $retryCount + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + setJobStatus() + + +

                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                            Set job status

                                                                                                                                                                                                                            + + + public + setJobStatus(mixed $id, mixed $status) : mixed + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $id + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            The id of the job to set status

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + $status + : mixed +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            The status to set

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + inheritDoc +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            
                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            + On this page + + +
                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Commands-DeleteJobCommand.html b/src/public/api/classes/Leaf-Queue-Commands-DeleteJobCommand.html new file mode 100644 index 00000000..93d7310d --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Commands-DeleteJobCommand.html @@ -0,0 +1,5223 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + DeleteJobCommand + + + extends Command + + +
                                                                                                                                                                                                                              + in package + +
                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                              Base class for Aloe Commands.

                                                                                                                                                                                                                              + + + + + + + + + +

                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                              + + + + + + + +

                                                                                                                                                                                                                              + Constants + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + FAILURE + +  = 1 +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + INVALID + +  = 2 +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + SUCCESS + +  = 0 +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              + Properties + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $description + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Description for command
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $help + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Help for command
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $defaultDescription + +  : string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $defaultName + +  : string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $input + +  : InputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              The input object
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $output + +  : OutputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              The output object
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $aliases + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $application + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $code + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $definition + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $fullDefinition + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $helperSet + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $hidden + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $ignoreValidationErrors + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $name + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              The name of command to run in console
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $processTitle + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $synopsis + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + $usages + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + __construct() + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + addArgument() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Adds an argument.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + addOption() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Adds an option.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + addUsage() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Add a command usage example, it'll be prefixed with the command name.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + argument() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the argument value for a given argument name.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + arguments() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns all the given arguments merged with the default values.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + ask() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ask a question
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + askMultiline() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ask a question
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + askRaw() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ask a question
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + autoComplete() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ask a question with auto completion
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + choice() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ask a question with possible answers
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + comment() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data as a comment
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + complete() + +  : void +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + confirm() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Prompt user for confirmation
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + error() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data as a error
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getAliases() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the aliases for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getApplication() + +  : Application|null +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Gets the application instance for this command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getDefaultDescription() + +  : string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getDefaultName() + +  : string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Gets the InputDefinition attached to this Command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getDescription() + +  : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the description for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getHelp() + +  : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the help for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getHelper() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Gets a helper instance by name.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getHelperSet() + +  : HelperSet|null +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Gets the helper set.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getName() + +  : string|null +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the command name.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getNativeDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Gets the InputDefinition to be used to create representations of this Command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getProcessedHelp() + +  : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getSynopsis() + +  : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns the synopsis for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + getUsages() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Returns alternative usages of the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + ignoreValidationErrors() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ignores validation errors.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + info() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data as a info
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + input() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Get an argument or return the input object
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + isEnabled() + +  : bool +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Checks whether the command is enabled or not in the current environment.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + isHidden() + +  : bool +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + link() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data as a link
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + multiChoice() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Ask a question with possible answers + multiple choice
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + option() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Get an input option
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + options() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Get all input options
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + output() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output data or return the output object
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + question() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data as a question
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + run() + +  : int +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Runs the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + runProcess() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Run a new cli process
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + secret() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Prompt user for input but hide keystrokes
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setAliases() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets the aliases for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setApplication() + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setArgument() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Add a new argument
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setCode() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets the code to execute when running this command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setDefinition() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets an array of argument and option instances.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setDescription() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets the description for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setHelp() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets the help for the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setHelperSet() + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setHidden() + +  : $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setName() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets the name of the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setOption() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Add a new option
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + setProcessTitle() + +  : $this +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Sets the process title of the command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + write() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + writeln() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Output some data
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + config() + +  : mixed +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + configure() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Configures the current command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + execute() + +  : int +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Executes the current command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + handle() + +  : int +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Executes the current command.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + initialize() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Initializes the command after the input has been bound and before the input +is validated.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + interact() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Interacts with the user.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + validateName() + +  : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Validates a command name.
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + Constants + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + FAILURE + + +

                                                                                                                                                                                                                              + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + INVALID + + +

                                                                                                                                                                                                                              + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + SUCCESS + + +

                                                                                                                                                                                                                              + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + Properties + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $description + + + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Description for command

                                                                                                                                                                                                                              + + + + public + mixed + $description + = 'Delete a job class' + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $help + + + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Help for command

                                                                                                                                                                                                                              + + + + public + mixed + $help + = 'Delete a job class' + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $defaultDescription + + + + +

                                                                                                                                                                                                                              + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                                                                                                                                                                              The default command description

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $defaultName + + + + +

                                                                                                                                                                                                                              + + + + + + protected + static string|null + $defaultName + = 'd:job' + + +

                                                                                                                                                                                                                              The default command name

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $input + + + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              The input object

                                                                                                                                                                                                                              + + + + protected + InputInterface + $input + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $output + + + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              The output object

                                                                                                                                                                                                                              + + + + protected + OutputInterface + $output + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $aliases + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $application + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $application + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $code + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $code + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $definition + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $definition + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $fullDefinition + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $helperSet + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $hidden + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $ignoreValidationErrors + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $name + + + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              The name of command to run in console

                                                                                                                                                                                                                              + + + + private + mixed + $name + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $processTitle + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $synopsis + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + $usages + + + + +

                                                                                                                                                                                                                              + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + __construct() + + +

                                                                                                                                                                                                                              + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string|null + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The name of the command; passing null means it must be set in configure()

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + LogicException + +

                                                                                                                                                                                                                              When the command name is empty

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + addArgument() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Adds an argument.

                                                                                                                                                                                                                              + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $mode + : int|null + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $description + : string + = ''
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The default value (for InputArgument::OPTIONAL mode only)

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                                                                                              When argument mode is not valid

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + addOption() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Adds an option.

                                                                                                                                                                                                                              + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $mode + : int|null + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The option mode: One of the InputOption::VALUE_* constants

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $description + : string + = ''
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The default value (must be null for InputOption::VALUE_NONE)

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                                                                                              If option mode is invalid or incompatible

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + addUsage() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Add a command usage example, it'll be prefixed with the command name.

                                                                                                                                                                                                                              + + + public + addUsage(string $usage) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $usage + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + argument() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the argument value for a given argument name.

                                                                                                                                                                                                                              + + + public + argument(string $name) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + arguments() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns all the given arguments merged with the default values.

                                                                                                                                                                                                                              + + + public + arguments() : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + ask() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ask a question

                                                                                                                                                                                                                              + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + askMultiline() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ask a question

                                                                                                                                                                                                                              + + + public + askMultiline(string $question) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + askRaw() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ask a question

                                                                                                                                                                                                                              + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + autoComplete() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ask a question with auto completion

                                                                                                                                                                                                                              + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $potentialAnswers + : array<string|int, mixed> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + choice() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ask a question with possible answers

                                                                                                                                                                                                                              + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + comment() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output some data as a comment

                                                                                                                                                                                                                              + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $messages + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + confirm() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Prompt user for confirmation

                                                                                                                                                                                                                              + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $param + : mixed + = false
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $regex + : mixed + = '/^y/i'
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + error() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output some data as a error

                                                                                                                                                                                                                              + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $messages + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getAliases() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the aliases for the command.

                                                                                                                                                                                                                              + + + public + getAliases() : array<string|int, mixed> + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getApplication() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Gets the application instance for this command.

                                                                                                                                                                                                                              + + + public + getApplication() : Application|null + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + Application|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getDefaultDescription() + + +

                                                                                                                                                                                                                              + + + + + public + static getDefaultDescription() : string|null + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getDefaultName() + + +

                                                                                                                                                                                                                              + + + + + public + static getDefaultName() : string|null + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getDefinition() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Gets the InputDefinition attached to this Command.

                                                                                                                                                                                                                              + + + public + getDefinition() : InputDefinition + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + InputDefinition +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getDescription() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the description for the command.

                                                                                                                                                                                                                              + + + public + getDescription() : string + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getHelp() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the help for the command.

                                                                                                                                                                                                                              + + + public + getHelp() : string + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getHelper() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Gets a helper instance by name.

                                                                                                                                                                                                                              + + + public + getHelper(string $name) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + LogicException + +

                                                                                                                                                                                                                              if no HelperSet is defined

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                                                                                              if the helper is not defined

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getHelperSet() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Gets the helper set.

                                                                                                                                                                                                                              + + + public + getHelperSet() : HelperSet|null + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + HelperSet|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getName() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the command name.

                                                                                                                                                                                                                              + + + public + getName() : string|null + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string|null +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getNativeDefinition() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Gets the InputDefinition to be used to create representations of this Command.

                                                                                                                                                                                                                              + + + public + getNativeDefinition() : InputDefinition + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              This method is not part of public API and should not be used directly.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + InputDefinition +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getProcessedHelp() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                                                                                                                                                                              + + + public + getProcessedHelp() : string + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getSynopsis() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns the synopsis for the command.

                                                                                                                                                                                                                              + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $short + : bool + = false
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Whether to show the short version of the synopsis (with options folded) or not

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + string +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + getUsages() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Returns alternative usages of the command.

                                                                                                                                                                                                                              + + + public + getUsages() : array<string|int, mixed> + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + ignoreValidationErrors() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ignores validation errors.

                                                                                                                                                                                                                              + + + public + ignoreValidationErrors() : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This is mainly useful for the help command.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + info() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output some data as a info

                                                                                                                                                                                                                              + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $messages + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + input() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Get an argument or return the input object

                                                                                                                                                                                                                              + + + public + input([string $data = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $data + : string + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The argument to return

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + isEnabled() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Checks whether the command is enabled or not in the current environment.

                                                                                                                                                                                                                              + + + public + isEnabled() : bool + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + bool +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + isHidden() + + +

                                                                                                                                                                                                                              + + + + + public + isHidden() : bool + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + bool + — +

                                                                                                                                                                                                                              whether the command should be publicly shown or not

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                              Output some data as a link

                                                                                                                                                                                                                              + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $link + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $display + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + multiChoice() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Ask a question with possible answers + multiple choice

                                                                                                                                                                                                                              + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + option() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Get an input option

                                                                                                                                                                                                                              + + + public + option(string $name) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + options() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Get all input options

                                                                                                                                                                                                                              + + + public + options(string $name) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + output() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output data or return the output object

                                                                                                                                                                                                                              + + + public + output([string $data = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $data + : string + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              The argument to return

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + question() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output some data as a question

                                                                                                                                                                                                                              + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $messages + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + run() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Runs the command.

                                                                                                                                                                                                                              + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $input + : InputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $output + : OutputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + Exception + +

                                                                                                                                                                                                                              When binding input fails. Bypass this by calling .

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + see +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + setCode() + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + see +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + execute() + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + int + — +

                                                                                                                                                                                                                              The command exit code

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + runProcess() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Run a new cli process

                                                                                                                                                                                                                              + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $process + : array<string|int, mixed> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + secret() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Prompt user for input but hide keystrokes

                                                                                                                                                                                                                              + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $question + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $useFallback + : bool + = false
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setAliases() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets the aliases for the command.

                                                                                                                                                                                                                              + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $aliases + : array<string|int, string> +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              An array of aliases for the command

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                                                                                              When an alias is invalid

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setApplication() + + +

                                                                                                                                                                                                                              + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $application + : Application|null + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setArgument() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Add a new argument

                                                                                                                                                                                                                              + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $mode + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $description + : mixed + = ''
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setCode() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets the code to execute when running this command.

                                                                                                                                                                                                                              + + + public + setCode(callable $code) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              If this method is used, it overrides the code defined +in the execute() method.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $code + : callable +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              A callable(InputInterface $input, OutputInterface $output)

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + see +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + execute() + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setDefinition() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets an array of argument and option instances.

                                                                                                                                                                                                                              + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $definition + : array<string|int, mixed>|InputDefinition +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              An array of argument and option instances or a definition instance

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setDescription() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets the description for the command.

                                                                                                                                                                                                                              + + + public + setDescription(string $description) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $description + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setHelp() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets the help for the command.

                                                                                                                                                                                                                              + + + public + setHelp(string $help) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $help + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setHelperSet() + + +

                                                                                                                                                                                                                              + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $helperSet + : HelperSet +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setHidden() + + +

                                                                                                                                                                                                                              + + + + + public + setHidden(bool $hidden) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $hidden + : bool +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + final +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              since Symfony 5.1

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setName() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets the name of the command.

                                                                                                                                                                                                                              + + + public + setName(string $name) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              $command->setName('foo:bar');
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                                                                                              When the name is invalid

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setOption() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Add a new option

                                                                                                                                                                                                                              + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $shortcut + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $mode + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $description + : mixed + = ''
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $default + : mixed + = null
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + setProcessTitle() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Sets the process title of the command.

                                                                                                                                                                                                                              + + + public + setProcessTitle(string $title) : $this + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This feature should be used only when creating a long process command, +like a daemon.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $title + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + $this +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + write() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output some data

                                                                                                                                                                                                                              + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $messages + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + writeln() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Output some data

                                                                                                                                                                                                                              + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $messages + : mixed +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $options + : mixed + = 0
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + config() + + +

                                                                                                                                                                                                                              + + + + + protected + config() : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + configure() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Configures the current command.

                                                                                                                                                                                                                              + + + protected + configure() : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + execute() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Executes the current command.

                                                                                                                                                                                                                              + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $input + : InputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $output + : OutputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + int + — +

                                                                                                                                                                                                                              0 if everything went fine, or an exit code

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + handle() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Executes the current command.

                                                                                                                                                                                                                              + + + protected + handle() : int + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                              + int + — +

                                                                                                                                                                                                                              0 if everything went fine, or an exit code

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + initialize() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Initializes the command after the input has been bound and before the input +is validated.

                                                                                                                                                                                                                              + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $input + : InputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $output + : OutputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + see +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InputInterface::bind() + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + see +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InputInterface::validate() + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + interact() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Interacts with the user.

                                                                                                                                                                                                                              + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $input + : InputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $output + : OutputInterface +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + validateName() + + +

                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                              Validates a command name.

                                                                                                                                                                                                                              + + + private + validateName(string $name) : mixed + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                              It must be non-empty and parts can optionally be separated by ":".

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + $name + : string +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + throws +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + InvalidArgumentException + +

                                                                                                                                                                                                                              When the name is invalid

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              
                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Commands-GenerateJobCommand.html b/src/public/api/classes/Leaf-Queue-Commands-GenerateJobCommand.html new file mode 100644 index 00000000..05315e72 --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Commands-GenerateJobCommand.html @@ -0,0 +1,5223 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + GenerateJobCommand + + + extends Command + + +
                                                                                                                                                                                                                                + in package + +
                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                Base class for Aloe Commands.

                                                                                                                                                                                                                                + + + + + + + + + +

                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                + + + + + + + +

                                                                                                                                                                                                                                + Constants + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + FAILURE + +  = 1 +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + INVALID + +  = 2 +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + SUCCESS + +  = 0 +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $description + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Description for command
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $help + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Help for command
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $defaultDescription + +  : string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $defaultName + +  : string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $input + +  : InputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                The input object
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $output + +  : OutputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                The output object
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $aliases + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $application + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $code + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $definition + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $fullDefinition + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $helperSet + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $hidden + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $ignoreValidationErrors + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $name + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                The name of command to run in console
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $processTitle + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $synopsis + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + $usages + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + __construct() + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + addArgument() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Adds an argument.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + addOption() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Adds an option.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + addUsage() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Add a command usage example, it'll be prefixed with the command name.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + argument() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the argument value for a given argument name.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + arguments() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns all the given arguments merged with the default values.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + ask() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ask a question
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + askMultiline() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ask a question
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + askRaw() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ask a question
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + autoComplete() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ask a question with auto completion
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + choice() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ask a question with possible answers
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + comment() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data as a comment
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + complete() + +  : void +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + confirm() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Prompt user for confirmation
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + error() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data as a error
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getAliases() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the aliases for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getApplication() + +  : Application|null +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Gets the application instance for this command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getDefaultDescription() + +  : string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getDefaultName() + +  : string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Gets the InputDefinition attached to this Command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getDescription() + +  : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the description for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getHelp() + +  : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the help for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getHelper() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Gets a helper instance by name.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getHelperSet() + +  : HelperSet|null +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Gets the helper set.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getName() + +  : string|null +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the command name.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getNativeDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Gets the InputDefinition to be used to create representations of this Command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getProcessedHelp() + +  : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getSynopsis() + +  : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns the synopsis for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + getUsages() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Returns alternative usages of the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + ignoreValidationErrors() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ignores validation errors.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + info() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data as a info
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + input() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Get an argument or return the input object
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + isEnabled() + +  : bool +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Checks whether the command is enabled or not in the current environment.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + isHidden() + +  : bool +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + link() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data as a link
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + multiChoice() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Ask a question with possible answers + multiple choice
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + option() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Get an input option
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + options() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Get all input options
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + output() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output data or return the output object
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + question() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data as a question
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + run() + +  : int +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Runs the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + runProcess() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Run a new cli process
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + secret() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Prompt user for input but hide keystrokes
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setAliases() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets the aliases for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setApplication() + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setArgument() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Add a new argument
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setCode() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets the code to execute when running this command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setDefinition() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets an array of argument and option instances.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setDescription() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets the description for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setHelp() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets the help for the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setHelperSet() + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setHidden() + +  : $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setName() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets the name of the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setOption() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Add a new option
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + setProcessTitle() + +  : $this +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Sets the process title of the command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + write() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + writeln() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Output some data
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + config() + +  : mixed +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + configure() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Configures the current command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + execute() + +  : int +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Executes the current command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + handle() + +  : int +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Executes the current command.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + initialize() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Initializes the command after the input has been bound and before the input +is validated.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + interact() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Interacts with the user.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + validateName() + +  : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Validates a command name.
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + Constants + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + FAILURE + + +

                                                                                                                                                                                                                                + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + INVALID + + +

                                                                                                                                                                                                                                + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + SUCCESS + + +

                                                                                                                                                                                                                                + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $description + + + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Description for command

                                                                                                                                                                                                                                + + + + public + mixed + $description + = 'Create a job class' + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $help + + + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Help for command

                                                                                                                                                                                                                                + + + + public + mixed + $help + = 'Generate a new job class' + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $defaultDescription + + + + +

                                                                                                                                                                                                                                + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                                                                                                                                                                                The default command description

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $defaultName + + + + +

                                                                                                                                                                                                                                + + + + + + protected + static string|null + $defaultName + = 'g:job' + + +

                                                                                                                                                                                                                                The default command name

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $input + + + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                The input object

                                                                                                                                                                                                                                + + + + protected + InputInterface + $input + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $output + + + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                The output object

                                                                                                                                                                                                                                + + + + protected + OutputInterface + $output + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $aliases + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $application + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $application + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $code + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $code + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $definition + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $definition + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $fullDefinition + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $helperSet + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $hidden + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $ignoreValidationErrors + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $name + + + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                The name of command to run in console

                                                                                                                                                                                                                                + + + + private + mixed + $name + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $processTitle + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $synopsis + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + $usages + + + + +

                                                                                                                                                                                                                                + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + __construct() + + +

                                                                                                                                                                                                                                + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string|null + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The name of the command; passing null means it must be set in configure()

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + LogicException + +

                                                                                                                                                                                                                                When the command name is empty

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + addArgument() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Adds an argument.

                                                                                                                                                                                                                                + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $mode + : int|null + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $description + : string + = ''
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The default value (for InputArgument::OPTIONAL mode only)

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                                                                                                When argument mode is not valid

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + addOption() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Adds an option.

                                                                                                                                                                                                                                + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $mode + : int|null + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The option mode: One of the InputOption::VALUE_* constants

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $description + : string + = ''
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The default value (must be null for InputOption::VALUE_NONE)

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                                                                                                If option mode is invalid or incompatible

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + addUsage() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Add a command usage example, it'll be prefixed with the command name.

                                                                                                                                                                                                                                + + + public + addUsage(string $usage) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $usage + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + argument() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the argument value for a given argument name.

                                                                                                                                                                                                                                + + + public + argument(string $name) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + arguments() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns all the given arguments merged with the default values.

                                                                                                                                                                                                                                + + + public + arguments() : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + ask() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ask a question

                                                                                                                                                                                                                                + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + askMultiline() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ask a question

                                                                                                                                                                                                                                + + + public + askMultiline(string $question) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + askRaw() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ask a question

                                                                                                                                                                                                                                + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + autoComplete() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ask a question with auto completion

                                                                                                                                                                                                                                + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $potentialAnswers + : array<string|int, mixed> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + choice() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ask a question with possible answers

                                                                                                                                                                                                                                + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + comment() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output some data as a comment

                                                                                                                                                                                                                                + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $messages + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + confirm() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Prompt user for confirmation

                                                                                                                                                                                                                                + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $param + : mixed + = false
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $regex + : mixed + = '/^y/i'
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + error() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output some data as a error

                                                                                                                                                                                                                                + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $messages + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getAliases() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the aliases for the command.

                                                                                                                                                                                                                                + + + public + getAliases() : array<string|int, mixed> + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getApplication() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Gets the application instance for this command.

                                                                                                                                                                                                                                + + + public + getApplication() : Application|null + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + Application|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getDefaultDescription() + + +

                                                                                                                                                                                                                                + + + + + public + static getDefaultDescription() : string|null + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getDefaultName() + + +

                                                                                                                                                                                                                                + + + + + public + static getDefaultName() : string|null + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getDefinition() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Gets the InputDefinition attached to this Command.

                                                                                                                                                                                                                                + + + public + getDefinition() : InputDefinition + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + InputDefinition +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getDescription() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the description for the command.

                                                                                                                                                                                                                                + + + public + getDescription() : string + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getHelp() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the help for the command.

                                                                                                                                                                                                                                + + + public + getHelp() : string + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getHelper() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Gets a helper instance by name.

                                                                                                                                                                                                                                + + + public + getHelper(string $name) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + LogicException + +

                                                                                                                                                                                                                                if no HelperSet is defined

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                                                                                                if the helper is not defined

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getHelperSet() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Gets the helper set.

                                                                                                                                                                                                                                + + + public + getHelperSet() : HelperSet|null + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + HelperSet|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getName() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the command name.

                                                                                                                                                                                                                                + + + public + getName() : string|null + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string|null +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getNativeDefinition() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Gets the InputDefinition to be used to create representations of this Command.

                                                                                                                                                                                                                                + + + public + getNativeDefinition() : InputDefinition + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                This method is not part of public API and should not be used directly.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + InputDefinition +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getProcessedHelp() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                                                                                                                                                                                + + + public + getProcessedHelp() : string + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getSynopsis() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns the synopsis for the command.

                                                                                                                                                                                                                                + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $short + : bool + = false
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Whether to show the short version of the synopsis (with options folded) or not

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + string +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + getUsages() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Returns alternative usages of the command.

                                                                                                                                                                                                                                + + + public + getUsages() : array<string|int, mixed> + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + ignoreValidationErrors() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ignores validation errors.

                                                                                                                                                                                                                                + + + public + ignoreValidationErrors() : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This is mainly useful for the help command.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + info() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output some data as a info

                                                                                                                                                                                                                                + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $messages + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + input() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Get an argument or return the input object

                                                                                                                                                                                                                                + + + public + input([string $data = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $data + : string + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The argument to return

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + isEnabled() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Checks whether the command is enabled or not in the current environment.

                                                                                                                                                                                                                                + + + public + isEnabled() : bool + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + bool +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + isHidden() + + +

                                                                                                                                                                                                                                + + + + + public + isHidden() : bool + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + bool + — +

                                                                                                                                                                                                                                whether the command should be publicly shown or not

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                Output some data as a link

                                                                                                                                                                                                                                + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $link + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $display + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + multiChoice() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Ask a question with possible answers + multiple choice

                                                                                                                                                                                                                                + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + option() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Get an input option

                                                                                                                                                                                                                                + + + public + option(string $name) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + options() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Get all input options

                                                                                                                                                                                                                                + + + public + options(string $name) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + output() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output data or return the output object

                                                                                                                                                                                                                                + + + public + output([string $data = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $data + : string + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                The argument to return

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + question() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output some data as a question

                                                                                                                                                                                                                                + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $messages + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + run() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Runs the command.

                                                                                                                                                                                                                                + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $input + : InputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $output + : OutputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + Exception + +

                                                                                                                                                                                                                                When binding input fails. Bypass this by calling .

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + see +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + setCode() + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + see +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + execute() + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + int + — +

                                                                                                                                                                                                                                The command exit code

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + runProcess() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Run a new cli process

                                                                                                                                                                                                                                + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $process + : array<string|int, mixed> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + secret() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Prompt user for input but hide keystrokes

                                                                                                                                                                                                                                + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $question + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $useFallback + : bool + = false
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setAliases() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets the aliases for the command.

                                                                                                                                                                                                                                + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $aliases + : array<string|int, string> +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                An array of aliases for the command

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                                                                                                When an alias is invalid

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setApplication() + + +

                                                                                                                                                                                                                                + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $application + : Application|null + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setArgument() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Add a new argument

                                                                                                                                                                                                                                + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $mode + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $description + : mixed + = ''
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setCode() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets the code to execute when running this command.

                                                                                                                                                                                                                                + + + public + setCode(callable $code) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                If this method is used, it overrides the code defined +in the execute() method.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $code + : callable +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                A callable(InputInterface $input, OutputInterface $output)

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + see +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + execute() + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setDefinition() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets an array of argument and option instances.

                                                                                                                                                                                                                                + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $definition + : array<string|int, mixed>|InputDefinition +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                An array of argument and option instances or a definition instance

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setDescription() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets the description for the command.

                                                                                                                                                                                                                                + + + public + setDescription(string $description) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $description + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setHelp() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets the help for the command.

                                                                                                                                                                                                                                + + + public + setHelp(string $help) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $help + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setHelperSet() + + +

                                                                                                                                                                                                                                + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $helperSet + : HelperSet +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setHidden() + + +

                                                                                                                                                                                                                                + + + + + public + setHidden(bool $hidden) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $hidden + : bool +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + final +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                since Symfony 5.1

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setName() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets the name of the command.

                                                                                                                                                                                                                                + + + public + setName(string $name) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                $command->setName('foo:bar');
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                                                                                                When the name is invalid

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setOption() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Add a new option

                                                                                                                                                                                                                                + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $shortcut + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $mode + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $description + : mixed + = ''
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $default + : mixed + = null
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + setProcessTitle() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Sets the process title of the command.

                                                                                                                                                                                                                                + + + public + setProcessTitle(string $title) : $this + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This feature should be used only when creating a long process command, +like a daemon.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $title + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + $this +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + write() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output some data

                                                                                                                                                                                                                                + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $messages + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + writeln() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Output some data

                                                                                                                                                                                                                                + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $messages + : mixed +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $options + : mixed + = 0
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + config() + + +

                                                                                                                                                                                                                                + + + + + protected + config() : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + configure() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Configures the current command.

                                                                                                                                                                                                                                + + + protected + configure() : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + execute() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Executes the current command.

                                                                                                                                                                                                                                + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $input + : InputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $output + : OutputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + int + — +

                                                                                                                                                                                                                                0 if everything went fine, or an exit code

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + handle() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Executes the current command.

                                                                                                                                                                                                                                + + + protected + handle() : int + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                + int + — +

                                                                                                                                                                                                                                0 if everything went fine, or an exit code

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + initialize() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Initializes the command after the input has been bound and before the input +is validated.

                                                                                                                                                                                                                                + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $input + : InputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $output + : OutputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + see +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InputInterface::bind() + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + see +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InputInterface::validate() + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + interact() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Interacts with the user.

                                                                                                                                                                                                                                + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $input + : InputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $output + : OutputInterface +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + validateName() + + +

                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                Validates a command name.

                                                                                                                                                                                                                                + + + private + validateName(string $name) : mixed + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                It must be non-empty and parts can optionally be separated by ":".

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + $name + : string +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + InvalidArgumentException + +

                                                                                                                                                                                                                                When the name is invalid

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                
                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Commands-QueueWorkCommand.html b/src/public/api/classes/Leaf-Queue-Commands-QueueWorkCommand.html new file mode 100644 index 00000000..6d54c251 --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Commands-QueueWorkCommand.html @@ -0,0 +1,5223 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + QueueWorkCommand + + + extends Command + + +
                                                                                                                                                                                                                                  + in package + +
                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                  Base class for Aloe Commands.

                                                                                                                                                                                                                                  + + + + + + + + + +

                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                  + + + + + + + +

                                                                                                                                                                                                                                  + Constants + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + FAILURE + +  = 1 +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + INVALID + +  = 2 +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + SUCCESS + +  = 0 +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $description + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Description for command
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $help + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Help for command
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $defaultDescription + +  : string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $defaultName + +  : string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $input + +  : InputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  The input object
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $output + +  : OutputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  The output object
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $aliases + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $application + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $code + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $definition + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $fullDefinition + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $helperSet + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $hidden + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $ignoreValidationErrors + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $name + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  The name of command to run in console
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $processTitle + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $synopsis + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + $usages + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + __construct() + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + addArgument() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Adds an argument.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + addOption() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Adds an option.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + addUsage() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Add a command usage example, it'll be prefixed with the command name.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + argument() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the argument value for a given argument name.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + arguments() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns all the given arguments merged with the default values.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + ask() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ask a question
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + askMultiline() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ask a question
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + askRaw() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ask a question
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + autoComplete() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ask a question with auto completion
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + choice() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ask a question with possible answers
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + comment() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data as a comment
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + complete() + +  : void +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + confirm() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Prompt user for confirmation
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + error() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data as a error
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getAliases() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the aliases for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getApplication() + +  : Application|null +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Gets the application instance for this command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getDefaultDescription() + +  : string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getDefaultName() + +  : string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Gets the InputDefinition attached to this Command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getDescription() + +  : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the description for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getHelp() + +  : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the help for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getHelper() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Gets a helper instance by name.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getHelperSet() + +  : HelperSet|null +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Gets the helper set.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getName() + +  : string|null +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the command name.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getNativeDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Gets the InputDefinition to be used to create representations of this Command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getProcessedHelp() + +  : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getSynopsis() + +  : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns the synopsis for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + getUsages() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Returns alternative usages of the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + ignoreValidationErrors() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ignores validation errors.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + info() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data as a info
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + input() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Get an argument or return the input object
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + isEnabled() + +  : bool +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Checks whether the command is enabled or not in the current environment.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + isHidden() + +  : bool +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + link() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data as a link
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + multiChoice() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Ask a question with possible answers + multiple choice
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + option() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Get an input option
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + options() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Get all input options
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + output() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output data or return the output object
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + question() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data as a question
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + run() + +  : int +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Runs the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + runProcess() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Run a new cli process
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + secret() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Prompt user for input but hide keystrokes
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setAliases() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets the aliases for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setApplication() + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setArgument() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Add a new argument
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setCode() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets the code to execute when running this command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setDefinition() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets an array of argument and option instances.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setDescription() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets the description for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setHelp() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets the help for the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setHelperSet() + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setHidden() + +  : $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setName() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets the name of the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setOption() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Add a new option
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + setProcessTitle() + +  : $this +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Sets the process title of the command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + write() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + writeln() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Output some data
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + config() + +  : mixed +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + configure() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Configures the current command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + execute() + +  : int +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Executes the current command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + handle() + +  : int +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Executes the current command.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + initialize() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Initializes the command after the input has been bound and before the input +is validated.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + interact() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Interacts with the user.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + validateName() + +  : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Validates a command name.
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + Constants + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + FAILURE + + +

                                                                                                                                                                                                                                  + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + INVALID + + +

                                                                                                                                                                                                                                  + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + SUCCESS + + +

                                                                                                                                                                                                                                  + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $description + + + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Description for command

                                                                                                                                                                                                                                  + + + + public + mixed + $description + = 'Start your queue worker' + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $help + + + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Help for command

                                                                                                                                                                                                                                  + + + + public + mixed + $help + = 'Start your queue worker' + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $defaultDescription + + + + +

                                                                                                                                                                                                                                  + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                                                                                                                                                                                  The default command description

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $defaultName + + + + +

                                                                                                                                                                                                                                  + + + + + + protected + static string|null + $defaultName + = 'queue:work' + + +

                                                                                                                                                                                                                                  The default command name

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $input + + + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  The input object

                                                                                                                                                                                                                                  + + + + protected + InputInterface + $input + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $output + + + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  The output object

                                                                                                                                                                                                                                  + + + + protected + OutputInterface + $output + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $aliases + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $application + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $application + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $code + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $code + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $definition + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $definition + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $fullDefinition + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $helperSet + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $hidden + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $ignoreValidationErrors + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $name + + + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  The name of command to run in console

                                                                                                                                                                                                                                  + + + + private + mixed + $name + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $processTitle + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $synopsis + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + $usages + + + + +

                                                                                                                                                                                                                                  + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + __construct() + + +

                                                                                                                                                                                                                                  + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string|null + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The name of the command; passing null means it must be set in configure()

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + LogicException + +

                                                                                                                                                                                                                                  When the command name is empty

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + addArgument() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Adds an argument.

                                                                                                                                                                                                                                  + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $mode + : int|null + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $description + : string + = ''
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The default value (for InputArgument::OPTIONAL mode only)

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + +

                                                                                                                                                                                                                                  When argument mode is not valid

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + addOption() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Adds an option.

                                                                                                                                                                                                                                  + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $mode + : int|null + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The option mode: One of the InputOption::VALUE_* constants

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $description + : string + = ''
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The default value (must be null for InputOption::VALUE_NONE)

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + +

                                                                                                                                                                                                                                  If option mode is invalid or incompatible

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + addUsage() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Add a command usage example, it'll be prefixed with the command name.

                                                                                                                                                                                                                                  + + + public + addUsage(string $usage) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $usage + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + argument() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the argument value for a given argument name.

                                                                                                                                                                                                                                  + + + public + argument(string $name) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + arguments() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns all the given arguments merged with the default values.

                                                                                                                                                                                                                                  + + + public + arguments() : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + ask() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ask a question

                                                                                                                                                                                                                                  + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + askMultiline() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ask a question

                                                                                                                                                                                                                                  + + + public + askMultiline(string $question) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + askRaw() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ask a question

                                                                                                                                                                                                                                  + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + autoComplete() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ask a question with auto completion

                                                                                                                                                                                                                                  + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $potentialAnswers + : array<string|int, mixed> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + choice() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ask a question with possible answers

                                                                                                                                                                                                                                  + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + comment() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output some data as a comment

                                                                                                                                                                                                                                  + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $messages + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + confirm() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Prompt user for confirmation

                                                                                                                                                                                                                                  + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $param + : mixed + = false
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $regex + : mixed + = '/^y/i'
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + error() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output some data as a error

                                                                                                                                                                                                                                  + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $messages + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getAliases() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the aliases for the command.

                                                                                                                                                                                                                                  + + + public + getAliases() : array<string|int, mixed> + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getApplication() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Gets the application instance for this command.

                                                                                                                                                                                                                                  + + + public + getApplication() : Application|null + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + Application|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getDefaultDescription() + + +

                                                                                                                                                                                                                                  + + + + + public + static getDefaultDescription() : string|null + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getDefaultName() + + +

                                                                                                                                                                                                                                  + + + + + public + static getDefaultName() : string|null + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getDefinition() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Gets the InputDefinition attached to this Command.

                                                                                                                                                                                                                                  + + + public + getDefinition() : InputDefinition + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + InputDefinition +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getDescription() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the description for the command.

                                                                                                                                                                                                                                  + + + public + getDescription() : string + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getHelp() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the help for the command.

                                                                                                                                                                                                                                  + + + public + getHelp() : string + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getHelper() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Gets a helper instance by name.

                                                                                                                                                                                                                                  + + + public + getHelper(string $name) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + LogicException + +

                                                                                                                                                                                                                                  if no HelperSet is defined

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + +

                                                                                                                                                                                                                                  if the helper is not defined

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getHelperSet() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Gets the helper set.

                                                                                                                                                                                                                                  + + + public + getHelperSet() : HelperSet|null + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + HelperSet|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getName() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the command name.

                                                                                                                                                                                                                                  + + + public + getName() : string|null + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string|null +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getNativeDefinition() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Gets the InputDefinition to be used to create representations of this Command.

                                                                                                                                                                                                                                  + + + public + getNativeDefinition() : InputDefinition + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  This method is not part of public API and should not be used directly.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + InputDefinition +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getProcessedHelp() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                                                                                                                                                                                  + + + public + getProcessedHelp() : string + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getSynopsis() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns the synopsis for the command.

                                                                                                                                                                                                                                  + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $short + : bool + = false
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Whether to show the short version of the synopsis (with options folded) or not

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + string +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + getUsages() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Returns alternative usages of the command.

                                                                                                                                                                                                                                  + + + public + getUsages() : array<string|int, mixed> + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + ignoreValidationErrors() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ignores validation errors.

                                                                                                                                                                                                                                  + + + public + ignoreValidationErrors() : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This is mainly useful for the help command.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + info() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output some data as a info

                                                                                                                                                                                                                                  + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $messages + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + input() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Get an argument or return the input object

                                                                                                                                                                                                                                  + + + public + input([string $data = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $data + : string + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The argument to return

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + isEnabled() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Checks whether the command is enabled or not in the current environment.

                                                                                                                                                                                                                                  + + + public + isEnabled() : bool + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + bool +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + isHidden() + + +

                                                                                                                                                                                                                                  + + + + + public + isHidden() : bool + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + bool + — +

                                                                                                                                                                                                                                  whether the command should be publicly shown or not

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                  Output some data as a link

                                                                                                                                                                                                                                  + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $link + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $display + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + multiChoice() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Ask a question with possible answers + multiple choice

                                                                                                                                                                                                                                  + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + option() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Get an input option

                                                                                                                                                                                                                                  + + + public + option(string $name) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + options() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Get all input options

                                                                                                                                                                                                                                  + + + public + options(string $name) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + output() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output data or return the output object

                                                                                                                                                                                                                                  + + + public + output([string $data = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $data + : string + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  The argument to return

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + question() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output some data as a question

                                                                                                                                                                                                                                  + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $messages + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + run() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Runs the command.

                                                                                                                                                                                                                                  + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $input + : InputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $output + : OutputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + Exception + +

                                                                                                                                                                                                                                  When binding input fails. Bypass this by calling .

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + see +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + setCode() + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + see +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + execute() + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + int + — +

                                                                                                                                                                                                                                  The command exit code

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + runProcess() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Run a new cli process

                                                                                                                                                                                                                                  + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $process + : array<string|int, mixed> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + secret() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Prompt user for input but hide keystrokes

                                                                                                                                                                                                                                  + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $question + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $useFallback + : bool + = false
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setAliases() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets the aliases for the command.

                                                                                                                                                                                                                                  + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $aliases + : array<string|int, string> +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  An array of aliases for the command

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + +

                                                                                                                                                                                                                                  When an alias is invalid

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setApplication() + + +

                                                                                                                                                                                                                                  + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $application + : Application|null + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setArgument() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Add a new argument

                                                                                                                                                                                                                                  + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $mode + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $description + : mixed + = ''
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setCode() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets the code to execute when running this command.

                                                                                                                                                                                                                                  + + + public + setCode(callable $code) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  If this method is used, it overrides the code defined +in the execute() method.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $code + : callable +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  A callable(InputInterface $input, OutputInterface $output)

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + see +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + execute() + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setDefinition() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets an array of argument and option instances.

                                                                                                                                                                                                                                  + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $definition + : array<string|int, mixed>|InputDefinition +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  An array of argument and option instances or a definition instance

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setDescription() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets the description for the command.

                                                                                                                                                                                                                                  + + + public + setDescription(string $description) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $description + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setHelp() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets the help for the command.

                                                                                                                                                                                                                                  + + + public + setHelp(string $help) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $help + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setHelperSet() + + +

                                                                                                                                                                                                                                  + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $helperSet + : HelperSet +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setHidden() + + +

                                                                                                                                                                                                                                  + + + + + public + setHidden(bool $hidden) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $hidden + : bool +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + final +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  since Symfony 5.1

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setName() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets the name of the command.

                                                                                                                                                                                                                                  + + + public + setName(string $name) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  $command->setName('foo:bar');
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + +

                                                                                                                                                                                                                                  When the name is invalid

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setOption() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Add a new option

                                                                                                                                                                                                                                  + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $shortcut + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $mode + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $description + : mixed + = ''
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $default + : mixed + = null
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + setProcessTitle() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Sets the process title of the command.

                                                                                                                                                                                                                                  + + + public + setProcessTitle(string $title) : $this + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This feature should be used only when creating a long process command, +like a daemon.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $title + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + $this +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + write() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output some data

                                                                                                                                                                                                                                  + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $messages + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + writeln() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Output some data

                                                                                                                                                                                                                                  + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $messages + : mixed +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $options + : mixed + = 0
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + config() + + +

                                                                                                                                                                                                                                  + + + + + protected + config() : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + configure() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Configures the current command.

                                                                                                                                                                                                                                  + + + protected + configure() : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + execute() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Executes the current command.

                                                                                                                                                                                                                                  + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $input + : InputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $output + : OutputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + int + — +

                                                                                                                                                                                                                                  0 if everything went fine, or an exit code

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + handle() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Executes the current command.

                                                                                                                                                                                                                                  + + + protected + handle() : int + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                  + int + — +

                                                                                                                                                                                                                                  0 if everything went fine, or an exit code

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + initialize() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Initializes the command after the input has been bound and before the input +is validated.

                                                                                                                                                                                                                                  + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $input + : InputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $output + : OutputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + see +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InputInterface::bind() + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + see +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InputInterface::validate() + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + interact() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Interacts with the user.

                                                                                                                                                                                                                                  + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $input + : InputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $output + : OutputInterface +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  + validateName() + + +

                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                  Validates a command name.

                                                                                                                                                                                                                                  + + + private + validateName(string $name) : mixed + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                  It must be non-empty and parts can optionally be separated by ":".

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + $name + : string +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + InvalidArgumentException + +

                                                                                                                                                                                                                                  When the name is invalid

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Config.html b/src/public/api/classes/Leaf-Queue-Config.html new file mode 100644 index 00000000..0bbb19aa --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Config.html @@ -0,0 +1,561 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + Config + + +
                                                                                                                                                                                                                                    + in package + +
                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                    COnfig for queue and worker

                                                                                                                                                                                                                                    + + + + + + + + + +

                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                    + + + + + + + + + +

                                                                                                                                                                                                                                    + Properties + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + $queues + +  : mixed +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + get() + +  : Queue +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Get queue config
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + set() + +  : mixed +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Set queue config
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + Properties + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + $queues + + + + +

                                                                                                                                                                                                                                    + + + + + + protected + static mixed + $queues + = ['default' => null] + + + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + get() + + +

                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                    Get queue config

                                                                                                                                                                                                                                    + + + public + static get(string $name) : Queue + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + $name + : string +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                    + Queue +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + set() + + +

                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                    Set queue config

                                                                                                                                                                                                                                    + + + public + static set(mixed $name, mixed $config) : mixed + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + $name + : mixed +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + $config + : mixed +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue-Dispatchable.html b/src/public/api/classes/Leaf-Queue-Dispatchable.html new file mode 100644 index 00000000..da1dd385 --- /dev/null +++ b/src/public/api/classes/Leaf-Queue-Dispatchable.html @@ -0,0 +1,557 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + Dispatchable +
                                                                                                                                                                                                                                      + in + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                      Contract for dispatchable classes

                                                                                                                                                                                                                                      + + + + + + + + + +

                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + connection() + +  : mixed +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Return configured connection
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + getConfig() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Return config for the job
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + stack() + +  : mixed +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Return job stack if available
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + with() + +  : mixed +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Add data to the job
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + connection() + + +

                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                      Return configured connection

                                                                                                                                                                                                                                      + + + public + connection() : mixed + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + getConfig() + + +

                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                      Return config for the job

                                                                                                                                                                                                                                      + + + public + getConfig() : array<string|int, mixed> + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                      + array<string|int, mixed> +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + stack() + + +

                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                      Return job stack if available

                                                                                                                                                                                                                                      + + + public + stack() : mixed + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      + with() + + +

                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                      Add data to the job

                                                                                                                                                                                                                                      + + + public + static with(mixed $data) : mixed + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + $data + : mixed +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Queue.html b/src/public/api/classes/Leaf-Queue.html new file mode 100644 index 00000000..4057ff75 --- /dev/null +++ b/src/public/api/classes/Leaf-Queue.html @@ -0,0 +1,1017 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + Queue + + +
                                                                                                                                                                                                                                        + in package + +
                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        + + + + + + + + + + + + +

                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $adapter + +  : Adapter +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        The queue adapter
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + $connection + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        The queue config
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + $jobs + +  : mixed +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + commands() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Return queue commands
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + connect() + +  : Queue +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Connect to queue adapter
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + getAdapter() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Get the queue adapter
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + getNextJob() + +  : object +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Get all jobs for processing
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + markJobAsFailed() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Mark job as failed
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + pop() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Pop job from queue
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + push() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Push job to queue
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + retryFailedJob() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Retry failed job
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + setJobStatus() + +  : mixed +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Set job status
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + $adapter + + + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        The queue adapter

                                                                                                                                                                                                                                        + + + + protected + Adapter + $adapter + + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + $connection + + + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        The queue config

                                                                                                                                                                                                                                        + + + + protected + mixed + $connection + = [] + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + $jobs + + + + +

                                                                                                                                                                                                                                        + + + + + + protected + mixed + $jobs + = [] + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + commands() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Return queue commands

                                                                                                                                                                                                                                        + + + public + static commands() : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + connect() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Connect to queue adapter

                                                                                                                                                                                                                                        + + + public + connect(array<string|int, mixed> $connection) : Queue + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $connection + : array<string|int, mixed> +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The connection to use

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                        + Queue +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + getAdapter() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Get the queue adapter

                                                                                                                                                                                                                                        + + + public + getAdapter() : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + getNextJob() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Get all jobs for processing

                                                                                                                                                                                                                                        + + + public + getNextJob() : object + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                        + object +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + markJobAsFailed() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Mark job as failed

                                                                                                                                                                                                                                        + + + public + markJobAsFailed(string|int $id) : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $id + : string|int +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The id of the job to mark as failed

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + pop() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Pop job from queue

                                                                                                                                                                                                                                        + + + public + pop(string|int $id) : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $id + : string|int +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The id of the job to pop

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + push() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Push job to queue

                                                                                                                                                                                                                                        + + + public + push(array<string|int, mixed> $job) : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $job + : array<string|int, mixed> +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The job to push to the queue

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + retryFailedJob() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Retry failed job

                                                                                                                                                                                                                                        + + + public + retryFailedJob(string|int $id[, string|int $retryCount = 0 ]) : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $id + : string|int +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The id of the job to retry

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $retryCount + : string|int + = 0
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The number of times the job has been retried

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        + setJobStatus() + + +

                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                        Set job status

                                                                                                                                                                                                                                        + + + public + setJobStatus(string|int $id, string $status) : mixed + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $id + : string|int +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The id of the job to set status

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + $status + : string +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        The status to set

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Redis-Adapter.html b/src/public/api/classes/Leaf-Redis-Adapter.html new file mode 100644 index 00000000..2546c19c --- /dev/null +++ b/src/public/api/classes/Leaf-Redis-Adapter.html @@ -0,0 +1,960 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + Adapter +
                                                                                                                                                                                                                                          + in + +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                          Redis Adapter +------------- +Contract for redis adapters

                                                                                                                                                                                                                                          + + + + + + + + + +

                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + close() + +  : void +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Close the redis connection
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + connect() + +  : void +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Initialize redis and connect to redis instance
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + connection() + +  : mixed +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Get the redis connection
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + delete() + +  : bool +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Delete a key from redis
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Get all saved errors
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + exists() + +  : bool +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Check if a key exists in redis
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + flush() + +  : bool +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Flush all keys in redis
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + get() + +  : mixed +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Get a value from redis
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + keys() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Get all keys in redis
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + ping() + +  : string|false +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Ping the redis server
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + set() + +  : mixed +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Set a value in redis
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + close() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Close the redis connection

                                                                                                                                                                                                                                          + + + public + close() : void + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + connect() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Initialize redis and connect to redis instance

                                                                                                                                                                                                                                          + + + public + connect([array<string|int, mixed> $config = [] ]) : void + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $config + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Configuration for the redis instance.

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + connection() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Get the redis connection

                                                                                                                                                                                                                                          + + + public + connection() : mixed + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + delete() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Delete a key from redis

                                                                                                                                                                                                                                          + + + public + delete(string|array<string|int, mixed> $key) : bool + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $key + : string|array<string|int, mixed> +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The key to delete

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                          + bool +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + errors() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Get all saved errors

                                                                                                                                                                                                                                          + + + public + errors() : array<string|int, mixed> + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + exists() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Check if a key exists in redis

                                                                                                                                                                                                                                          + + + public + exists(string $key) : bool + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $key + : string +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The key to check

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                          + bool +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + flush() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Flush all keys in redis

                                                                                                                                                                                                                                          + + + public + flush() : bool + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                          + bool +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + get() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Get a value from redis

                                                                                                                                                                                                                                          + + + public + get(string|array<string|int, mixed> $key) : mixed + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $key + : string|array<string|int, mixed> +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The key to get

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + keys() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Get all keys in redis

                                                                                                                                                                                                                                          + + + public + keys() : array<string|int, mixed> + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                          + array<string|int, mixed> +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + ping() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Ping the redis server

                                                                                                                                                                                                                                          + + + public + ping([string|null $message = null ]) : string|false + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $message + : string|null + = null
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The message to send

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                          + string|false +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          + set() + + +

                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                          Set a value in redis

                                                                                                                                                                                                                                          + + + public + set(string $key, mixed $value[, int $ttl = 0 ]) : mixed + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $key + : string +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The key to set

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $value + : mixed +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The value to set

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + $ttl + : int + = 0
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          The time to live for the key

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/classes/Leaf-Redis-Commands-ServeCommand.html b/src/public/api/classes/Leaf-Redis-Commands-ServeCommand.html new file mode 100644 index 00000000..61d4d3c4 --- /dev/null +++ b/src/public/api/classes/Leaf-Redis-Commands-ServeCommand.html @@ -0,0 +1,5223 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + ServeCommand + + + extends Command + + +
                                                                                                                                                                                                                                            + in package + +
                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                            Base class for Aloe Commands.

                                                                                                                                                                                                                                            + + + + + + + + + +

                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                            + + + + + + + +

                                                                                                                                                                                                                                            + Constants + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + FAILURE + +  = 1 +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + INVALID + +  = 2 +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + SUCCESS + +  = 0 +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $description + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Description for command
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $help + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Help for command
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $defaultDescription + +  : string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $defaultName + +  : string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $input + +  : InputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            The input object
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $output + +  : OutputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            The output object
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $aliases + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $application + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $code + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $definition + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $fullDefinition + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $helperSet + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $hidden + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $ignoreValidationErrors + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $name + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            The name of command to run in console
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $processTitle + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $synopsis + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + $usages + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + __construct() + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + addArgument() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Adds an argument.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + addOption() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Adds an option.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + addUsage() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Add a command usage example, it'll be prefixed with the command name.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + argument() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the argument value for a given argument name.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + arguments() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns all the given arguments merged with the default values.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + ask() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ask a question
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + askMultiline() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ask a question
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + askRaw() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ask a question
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + autoComplete() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ask a question with auto completion
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + choice() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ask a question with possible answers
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + comment() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data as a comment
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + complete() + +  : void +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Adds suggestions to $suggestions for the current completion input (e.g. option or argument).
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + confirm() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Prompt user for confirmation
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + error() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data as a error
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getAliases() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the aliases for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getApplication() + +  : Application|null +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Gets the application instance for this command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getDefaultDescription() + +  : string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getDefaultName() + +  : string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Gets the InputDefinition attached to this Command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getDescription() + +  : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the description for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getHelp() + +  : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the help for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getHelper() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Gets a helper instance by name.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getHelperSet() + +  : HelperSet|null +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Gets the helper set.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getName() + +  : string|null +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the command name.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getNativeDefinition() + +  : InputDefinition +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Gets the InputDefinition to be used to create representations of this Command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getProcessedHelp() + +  : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getSynopsis() + +  : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns the synopsis for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + getUsages() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Returns alternative usages of the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + ignoreValidationErrors() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ignores validation errors.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + info() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data as a info
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + input() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Get an argument or return the input object
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + isEnabled() + +  : bool +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Checks whether the command is enabled or not in the current environment.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + isHidden() + +  : bool +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + link() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data as a link
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + multiChoice() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Ask a question with possible answers + multiple choice
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + option() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Get an input option
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + options() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Get all input options
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + output() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output data or return the output object
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + question() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data as a question
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + run() + +  : int +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Runs the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + runProcess() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Run a new cli process
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + secret() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Prompt user for input but hide keystrokes
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setAliases() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets the aliases for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setApplication() + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setArgument() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Add a new argument
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setCode() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets the code to execute when running this command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setDefinition() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets an array of argument and option instances.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setDescription() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets the description for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setHelp() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets the help for the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setHelperSet() + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setHidden() + +  : $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setName() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets the name of the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setOption() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Add a new option
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + setProcessTitle() + +  : $this +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Sets the process title of the command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + write() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + writeln() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Output some data
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + config() + +  : mixed +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + configure() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Configures the current command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + execute() + +  : int +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Executes the current command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + handle() + +  : int +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Executes the current command.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + initialize() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Initializes the command after the input has been bound and before the input +is validated.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + interact() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Interacts with the user.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + validateName() + +  : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Validates a command name.
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + Constants + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + FAILURE + + +

                                                                                                                                                                                                                                            + + + + + + + public + mixed + FAILURE + = 1 + + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + INVALID + + +

                                                                                                                                                                                                                                            + + + + + + + public + mixed + INVALID + = 2 + + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + SUCCESS + + +

                                                                                                                                                                                                                                            + + + + + + + public + mixed + SUCCESS + = 0 + + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + Properties + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $description + + + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Description for command

                                                                                                                                                                                                                                            + + + + public + mixed + $description + = 'Start redis server' + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $help + + + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Help for command

                                                                                                                                                                                                                                            + + + + public + mixed + $help + = 'Start redis server' + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $defaultDescription + + + + +

                                                                                                                                                                                                                                            + + + + + + protected + static string|null + $defaultDescription + + + +

                                                                                                                                                                                                                                            The default command description

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $defaultName + + + + +

                                                                                                                                                                                                                                            + + + + + + protected + static string|null + $defaultName + = 'redis:serve' + + +

                                                                                                                                                                                                                                            The default command name

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $input + + + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            The input object

                                                                                                                                                                                                                                            + + + + protected + InputInterface + $input + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $output + + + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            The output object

                                                                                                                                                                                                                                            + + + + protected + OutputInterface + $output + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $aliases + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $aliases + = [] + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $application + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $application + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $code + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $code + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $definition + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $definition + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $fullDefinition + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $fullDefinition + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $helperSet + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $helperSet + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $hidden + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $hidden + = false + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $ignoreValidationErrors + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $ignoreValidationErrors + = false + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $name + + + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            The name of command to run in console

                                                                                                                                                                                                                                            + + + + private + mixed + $name + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $processTitle + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $processTitle + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $synopsis + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $synopsis + = [] + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + $usages + + + + +

                                                                                                                                                                                                                                            + + + + + + private + mixed + $usages + = [] + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + Methods + + +

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + __construct() + + +

                                                                                                                                                                                                                                            + + + + + public + __construct([string|null $name = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string|null + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The name of the command; passing null means it must be set in configure()

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + LogicException + +

                                                                                                                                                                                                                                            When the command name is empty

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + addArgument() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Adds an argument.

                                                                                                                                                                                                                                            + + + public + addArgument(string $name[, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $mode + : int|null + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $description + : string + = ''
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The default value (for InputArgument::OPTIONAL mode only)

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                                                            When argument mode is not valid

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + addOption() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Adds an option.

                                                                                                                                                                                                                                            + + + public + addOption(string $name[, string|array<string|int, mixed>|null $shortcut = null ][, int|null $mode = null ][, string $description = '' ][, mixed $default = null ]) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $shortcut + : string|array<string|int, mixed>|null + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The shortcuts, can be null, a string of shortcuts delimited by | or an array of shortcuts

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $mode + : int|null + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The option mode: One of the InputOption::VALUE_* constants

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $description + : string + = ''
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The default value (must be null for InputOption::VALUE_NONE)

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                                                            If option mode is invalid or incompatible

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + addUsage() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Add a command usage example, it'll be prefixed with the command name.

                                                                                                                                                                                                                                            + + + public + addUsage(string $usage) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $usage + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + argument() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the argument value for a given argument name.

                                                                                                                                                                                                                                            + + + public + argument(string $name) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + arguments() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns all the given arguments merged with the default values.

                                                                                                                                                                                                                                            + + + public + arguments() : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + ask() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ask a question

                                                                                                                                                                                                                                            + + + public + ask(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + askMultiline() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ask a question

                                                                                                                                                                                                                                            + + + public + askMultiline(string $question) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + askRaw() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ask a question

                                                                                                                                                                                                                                            + + + public + askRaw(string $question[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + autoComplete() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ask a question with auto completion

                                                                                                                                                                                                                                            + + + public + autoComplete(string $question, array<string|int, mixed> $potentialAnswers[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $potentialAnswers + : array<string|int, mixed> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + choice() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ask a question with possible answers

                                                                                                                                                                                                                                            + + + public + choice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + comment() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output some data as a comment

                                                                                                                                                                                                                                            + + + public + comment(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $messages + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + confirm() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Prompt user for confirmation

                                                                                                                                                                                                                                            + + + public + confirm(mixed $question[, mixed $param = false ][, mixed $regex = '/^y/i' ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $param + : mixed + = false
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $regex + : mixed + = '/^y/i'
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + error() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output some data as a error

                                                                                                                                                                                                                                            + + + public + error(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $messages + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getAliases() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the aliases for the command.

                                                                                                                                                                                                                                            + + + public + getAliases() : array<string|int, mixed> + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + array<string|int, mixed> +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getApplication() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Gets the application instance for this command.

                                                                                                                                                                                                                                            + + + public + getApplication() : Application|null + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + Application|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getDefaultDescription() + + +

                                                                                                                                                                                                                                            + + + + + public + static getDefaultDescription() : string|null + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getDefaultName() + + +

                                                                                                                                                                                                                                            + + + + + public + static getDefaultName() : string|null + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getDefinition() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Gets the InputDefinition attached to this Command.

                                                                                                                                                                                                                                            + + + public + getDefinition() : InputDefinition + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + InputDefinition +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getDescription() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the description for the command.

                                                                                                                                                                                                                                            + + + public + getDescription() : string + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getHelp() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the help for the command.

                                                                                                                                                                                                                                            + + + public + getHelp() : string + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getHelper() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Gets a helper instance by name.

                                                                                                                                                                                                                                            + + + public + getHelper(string $name) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + LogicException + +

                                                                                                                                                                                                                                            if no HelperSet is defined

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                                                            if the helper is not defined

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getHelperSet() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Gets the helper set.

                                                                                                                                                                                                                                            + + + public + getHelperSet() : HelperSet|null + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + HelperSet|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getName() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the command name.

                                                                                                                                                                                                                                            + + + public + getName() : string|null + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string|null +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getNativeDefinition() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Gets the InputDefinition to be used to create representations of this Command.

                                                                                                                                                                                                                                            + + + public + getNativeDefinition() : InputDefinition + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            Can be overridden to provide the original command representation when it would otherwise +be changed by merging with the application InputDefinition.

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            This method is not part of public API and should not be used directly.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + InputDefinition +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getProcessedHelp() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the processed help for the command replacing the %command.name% and +%command.full_name% patterns with the real values dynamically.

                                                                                                                                                                                                                                            + + + public + getProcessedHelp() : string + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getSynopsis() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns the synopsis for the command.

                                                                                                                                                                                                                                            + + + public + getSynopsis([bool $short = false ]) : string + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $short + : bool + = false
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Whether to show the short version of the synopsis (with options folded) or not

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + string +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + getUsages() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Returns alternative usages of the command.

                                                                                                                                                                                                                                            + + + public + getUsages() : array<string|int, mixed> + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + array<string|int, mixed> +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + ignoreValidationErrors() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ignores validation errors.

                                                                                                                                                                                                                                            + + + public + ignoreValidationErrors() : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This is mainly useful for the help command.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + info() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output some data as a info

                                                                                                                                                                                                                                            + + + public + info(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $messages + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + input() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Get an argument or return the input object

                                                                                                                                                                                                                                            + + + public + input([string $data = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $data + : string + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The argument to return

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + isEnabled() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Checks whether the command is enabled or not in the current environment.

                                                                                                                                                                                                                                            + + + public + isEnabled() : bool + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            Override this to check for x or y and return false if the command cannot +run properly under the current conditions.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + bool +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + isHidden() + + +

                                                                                                                                                                                                                                            + + + + + public + isHidden() : bool + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + bool + — +

                                                                                                                                                                                                                                            whether the command should be publicly shown or not

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +

                                                                                                                                                                                                                                            Output some data as a link

                                                                                                                                                                                                                                            + + + public + link(mixed $link, mixed $display[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $link + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $display + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + multiChoice() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Ask a question with possible answers + multiple choice

                                                                                                                                                                                                                                            + + + public + multiChoice(string $question, array<string|int, mixed> $choices[, string $errorMessage = 'Invalid choice' ][, mixed $default = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $choices + : array<string|int, mixed> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $errorMessage + : string + = 'Invalid choice'
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + option() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Get an input option

                                                                                                                                                                                                                                            + + + public + option(string $name) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + options() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Get all input options

                                                                                                                                                                                                                                            + + + public + options(string $name) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + output() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output data or return the output object

                                                                                                                                                                                                                                            + + + public + output([string $data = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $data + : string + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            The argument to return

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + question() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output some data as a question

                                                                                                                                                                                                                                            + + + public + question(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $messages + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + run() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Runs the command.

                                                                                                                                                                                                                                            + + + public + run(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            The code to execute is either defined directly with the +setCode() method or by overriding the execute() method +in a sub-class.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $input + : InputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $output + : OutputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + Exception + +

                                                                                                                                                                                                                                            When binding input fails. Bypass this by calling .

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + see +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + setCode() + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + see +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + execute() + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + int + — +

                                                                                                                                                                                                                                            The command exit code

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + runProcess() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Run a new cli process

                                                                                                                                                                                                                                            + + + public + runProcess(array<string|int, mixed> $process) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $process + : array<string|int, mixed> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + secret() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Prompt user for input but hide keystrokes

                                                                                                                                                                                                                                            + + + public + secret(string $question[, bool $useFallback = false ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $question + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $useFallback + : bool + = false
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setAliases() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets the aliases for the command.

                                                                                                                                                                                                                                            + + + public + setAliases(array<string|int, string> $aliases) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $aliases + : array<string|int, string> +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            An array of aliases for the command

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                                                            When an alias is invalid

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setApplication() + + +

                                                                                                                                                                                                                                            + + + + + public + setApplication([Application|null $application = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $application + : Application|null + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setArgument() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Add a new argument

                                                                                                                                                                                                                                            + + + public + setArgument(mixed $name[, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $mode + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $description + : mixed + = ''
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setCode() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets the code to execute when running this command.

                                                                                                                                                                                                                                            + + + public + setCode(callable $code) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            If this method is used, it overrides the code defined +in the execute() method.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $code + : callable +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            A callable(InputInterface $input, OutputInterface $output)

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + see +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + execute() + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setDefinition() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets an array of argument and option instances.

                                                                                                                                                                                                                                            + + + public + setDefinition(array<string|int, mixed>|InputDefinition $definition) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $definition + : array<string|int, mixed>|InputDefinition +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            An array of argument and option instances or a definition instance

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setDescription() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets the description for the command.

                                                                                                                                                                                                                                            + + + public + setDescription(string $description) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $description + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setHelp() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets the help for the command.

                                                                                                                                                                                                                                            + + + public + setHelp(string $help) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $help + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setHelperSet() + + +

                                                                                                                                                                                                                                            + + + + + public + setHelperSet(HelperSet $helperSet) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $helperSet + : HelperSet +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setHidden() + + +

                                                                                                                                                                                                                                            + + + + + public + setHidden(bool $hidden) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $hidden + : bool +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Whether or not the command should be hidden from the list of commands +The default value will be true in Symfony 6.0

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + final +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            since Symfony 5.1

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setName() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets the name of the command.

                                                                                                                                                                                                                                            + + + public + setName(string $name) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This method can set both the namespace and the name if +you separate them by a colon (:)

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            $command->setName('foo:bar');
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                                                            When the name is invalid

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setOption() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Add a new option

                                                                                                                                                                                                                                            + + + public + setOption(mixed $name[, mixed $shortcut = null ][, mixed $mode = null ][, mixed $description = '' ][, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $shortcut + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $mode + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $description + : mixed + = ''
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + setProcessTitle() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Sets the process title of the command.

                                                                                                                                                                                                                                            + + + public + setProcessTitle(string $title) : $this + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This feature should be used only when creating a long process command, +like a daemon.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $title + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + $this +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + write() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output some data

                                                                                                                                                                                                                                            + + + public + write(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $messages + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + writeln() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Output some data

                                                                                                                                                                                                                                            + + + public + writeln(mixed $messages[, mixed $options = 0 ]) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $messages + : mixed +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $options + : mixed + = 0
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + config() + + +

                                                                                                                                                                                                                                            + + + + + protected + config() : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + configure() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Configures the current command.

                                                                                                                                                                                                                                            + + + protected + configure() : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + execute() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Executes the current command.

                                                                                                                                                                                                                                            + + + protected + execute(InputInterface $input, OutputInterface $output) : int + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $input + : InputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $output + : OutputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + int + — +

                                                                                                                                                                                                                                            0 if everything went fine, or an exit code

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + handle() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Executes the current command.

                                                                                                                                                                                                                                            + + + protected + handle() : int + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This method is not abstract because you can use this class +as a concrete class. In this case, instead of defining the +execute() method, you set the code to execute by passing +a Closure to the setCode() method.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                            + int + — +

                                                                                                                                                                                                                                            0 if everything went fine, or an exit code

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + initialize() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Initializes the command after the input has been bound and before the input +is validated.

                                                                                                                                                                                                                                            + + + protected + initialize(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This is mainly useful when a lot of commands extends one main command +where some things need to be initialized based on the input arguments and options.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $input + : InputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $output + : OutputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + see +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InputInterface::bind() + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + see +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InputInterface::validate() + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + interact() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Interacts with the user.

                                                                                                                                                                                                                                            + + + protected + interact(InputInterface $input, OutputInterface $output) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            This method is executed before the InputDefinition is validated. +This means that this is the only place where the command can +interactively ask for values of missing required arguments.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $input + : InputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $output + : OutputInterface +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + validateName() + + +

                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                            Validates a command name.

                                                                                                                                                                                                                                            + + + private + validateName(string $name) : mixed + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                            It must be non-empty and parts can optionally be separated by ":".

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + $name + : string +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + throws +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + InvalidArgumentException + +

                                                                                                                                                                                                                                            When the name is invalid

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            + On this page + + +
                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/classes/Leaf-Redis-Native.html b/src/public/api/classes/Leaf-Redis-Native.html new file mode 100644 index 00000000..b6f6d90b --- /dev/null +++ b/src/public/api/classes/Leaf-Redis-Native.html @@ -0,0 +1,1189 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + Native + + +
                                                                                                                                                                                                                                              + in package + +
                                                                                                                                                                                                                                              + + + implements + Adapter + +

                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                              Native Redis Adapter +------------- +Redis adapter for the native PHP Redis extension

                                                                                                                                                                                                                                              + + + + + + + + + +

                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                              + Interfaces + + +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Adapter
                                                                                                                                                                                                                                              Redis Adapter +------------- +Contract for redis adapters
                                                                                                                                                                                                                                              + + + + + + +

                                                                                                                                                                                                                                              + Properties + + +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $config + +  : mixed +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + $errors + +  : mixed +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + $redis + +  : Redis +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + __call() + +  : mixed +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + close() + +  : void +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Close the redis connection
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + connect() + +  : void +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Initialize redis and connect to redis instance
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + connection() + +  : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Get the redis connection
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + delete() + +  : bool +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Delete a key from redis
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Get all saved errors
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + exists() + +  : bool +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Check if a key exists in redis
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + flush() + +  : bool +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Flush all keys in redis
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + get() + +  : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Get a value from redis
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + keys() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Get all keys in redis
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + ping() + +  : string|false +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Ping the redis server
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + set() + +  : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Set a value in redis
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + Properties + + +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + $config + + + + +

                                                                                                                                                                                                                                              + + + + + + protected + mixed + $config + = [] + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + $errors + + + + +

                                                                                                                                                                                                                                              + + + + + + protected + mixed + $errors + = [] + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + $redis + + + + +

                                                                                                                                                                                                                                              + + + + + + protected + Redis + $redis + + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + Methods + + +

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + __call() + + +

                                                                                                                                                                                                                                              + + + + + public + __call(mixed $method, mixed $args) : mixed + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $method + : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $args + : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + close() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Close the redis connection

                                                                                                                                                                                                                                              + + + public + close() : void + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + connect() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Initialize redis and connect to redis instance

                                                                                                                                                                                                                                              + + + public + connect([array<string|int, mixed> $config = [] ]) : void + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $config + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Configuration for the redis instance.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + connection() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Get the redis connection

                                                                                                                                                                                                                                              + + + public + connection() : mixed + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + delete() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Delete a key from redis

                                                                                                                                                                                                                                              + + + public + delete(mixed $key) : bool + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The key to delete

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                              + bool +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + errors() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Get all saved errors

                                                                                                                                                                                                                                              + + + public + errors() : array<string|int, mixed> + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + exists() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Check if a key exists in redis

                                                                                                                                                                                                                                              + + + public + exists(string $key) : bool + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $key + : string +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The key to check

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                              + bool +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + flush() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Flush all keys in redis

                                                                                                                                                                                                                                              + + + public + flush() : bool + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                              + bool +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + get() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Get a value from redis

                                                                                                                                                                                                                                              + + + public + get(mixed $key) : mixed + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $key + : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The key to get

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + keys() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Get all keys in redis

                                                                                                                                                                                                                                              + + + public + keys() : array<string|int, mixed> + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + ping() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Ping the redis server

                                                                                                                                                                                                                                              + + + public + ping([string|null $message = null ]) : string|false + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $message + : string|null + = null
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The message to send

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                              + string|false +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              + set() + + +

                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                              Set a value in redis

                                                                                                                                                                                                                                              + + + public + set(string $key, mixed $value[, int $ttl = 0 ]) : mixed + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $key + : string +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The key to set

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $value + : mixed +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The value to set

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + $ttl + : int + = 0
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              The time to live for the key

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/classes/Leaf-Redis-Predis.html b/src/public/api/classes/Leaf-Redis-Predis.html new file mode 100644 index 00000000..511c117c --- /dev/null +++ b/src/public/api/classes/Leaf-Redis-Predis.html @@ -0,0 +1,1189 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + Predis + + +
                                                                                                                                                                                                                                                + in package + +
                                                                                                                                                                                                                                                + + + implements + Adapter + +

                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                Predis Redis Adapter +------------- +Redis adapter for the Predis composer package

                                                                                                                                                                                                                                                + + + + + + + + + +

                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                + + + +

                                                                                                                                                                                                                                                + Interfaces + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Adapter
                                                                                                                                                                                                                                                Redis Adapter +------------- +Contract for redis adapters
                                                                                                                                                                                                                                                + + + + + + +

                                                                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $config + +  : mixed +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + $errors + +  : mixed +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + $redis + +  : Client +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + __call() + +  : mixed +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + close() + +  : void +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Close the redis connection
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + connect() + +  : void +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Initialize redis and connect to redis instance
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + connection() + +  : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Get the redis connection
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + delete() + +  : bool +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Delete a key from redis
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Get all saved errors
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + exists() + +  : bool +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Check if a key exists in redis
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + flush() + +  : bool +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Flush all keys in redis
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + get() + +  : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Get a value from redis
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + keys() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Get all keys in redis
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + ping() + +  : string|false +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Ping the redis server
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + set() + +  : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Set a value in redis
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + Properties + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + $config + + + + +

                                                                                                                                                                                                                                                + + + + + + protected + mixed + $config + = [] + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + $errors + + + + +

                                                                                                                                                                                                                                                + + + + + + protected + mixed + $errors + = [] + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + $redis + + + + +

                                                                                                                                                                                                                                                + + + + + + protected + Client + $redis + + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + Methods + + +

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + __call() + + +

                                                                                                                                                                                                                                                + + + + + public + __call(mixed $method, mixed $args) : mixed + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $method + : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $args + : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + close() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Close the redis connection

                                                                                                                                                                                                                                                + + + public + close() : void + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + connect() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Initialize redis and connect to redis instance

                                                                                                                                                                                                                                                + + + public + connect([array<string|int, mixed> $config = [] ]) : void + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $config + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Configuration for the redis instance.

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + connection() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Get the redis connection

                                                                                                                                                                                                                                                + + + public + connection() : mixed + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + delete() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Delete a key from redis

                                                                                                                                                                                                                                                + + + public + delete(mixed $key) : bool + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $key + : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The key to delete

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                                + bool +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + errors() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Get all saved errors

                                                                                                                                                                                                                                                + + + public + errors() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + exists() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Check if a key exists in redis

                                                                                                                                                                                                                                                + + + public + exists(string $key) : bool + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $key + : string +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The key to check

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                                + bool +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + flush() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Flush all keys in redis

                                                                                                                                                                                                                                                + + + public + flush() : bool + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                                + bool +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + get() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Get a value from redis

                                                                                                                                                                                                                                                + + + public + get(mixed $key) : mixed + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $key + : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The key to get

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + keys() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Get all keys in redis

                                                                                                                                                                                                                                                + + + public + keys() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                                + array<string|int, mixed> +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + ping() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Ping the redis server

                                                                                                                                                                                                                                                + + + public + ping([string|null $message = null ]) : string|false + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $message + : string|null + = null
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The message to send

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Return values
                                                                                                                                                                                                                                                + string|false +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + set() + + +

                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                Set a value in redis

                                                                                                                                                                                                                                                + + + public + set(string $key, mixed $value[, int $ttl = 0 ]) : mixed + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $key + : string +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The key to set

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $value + : mixed +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The value to set

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + $ttl + : int + = 0
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                The time to live for the key

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/classes/Leaf-Redis.html b/src/public/api/classes/Leaf-Redis.html new file mode 100644 index 00000000..bffc7bab --- /dev/null +++ b/src/public/api/classes/Leaf-Redis.html @@ -0,0 +1,1433 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + Redis + + +
                                                                                                                                                                                                                                                  + in package + +
                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + + + +

                                                                                                                                                                                                                                                  Leaf + Redis [BETA] +---------- +Redis made crazy simple

                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + since +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + 2.5.1 + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + author +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  Michael Darko mickdd22@gmail.com

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + version +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + 4.0.0-beta + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                  + + + + + + + + + +

                                                                                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $config + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Leaf Redis config
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + $redis + +  : Adapter +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + __construct() + +  : mixed +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + close() + +  : void +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Close the redis connection
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + commands() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Get all leaf redis console commands
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + connect() + +  : Redis +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Initialize redis and connect to redis instance
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + connection() + +  : Adapter +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Get the redis connection
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + delete() + +  : bool +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Delete a key from redis
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + errors() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return all saved errors
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + exists() + +  : bool +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Check if a key exists in redis
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + flush() + +  : bool +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Flush all keys in redis
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + get() + +  : string|mixed|false +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Get a redis value
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + keys() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Get all keys in redis
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + ping() + +  : bool|string +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Ping redis server.
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + set() + +  : bool +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Set a redis value
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + parseSaveOptions() + +  : mixed +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + setSessionHandler() + +  : mixed +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + + + + + + +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + Properties + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + $config + + + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Leaf Redis config

                                                                                                                                                                                                                                                  + + + + protected + array<string|int, mixed> + $config + = ['port' => 6379, 'scheme' => 'tcp', 'password' => null, 'host' => '127.0.0.1', 'session' => false, 'session.savePath' => null, 'session.saveOptions' => [], 'connection.timeout' => 0.0, 'connection.reserved' => null, 'connection.retryInterval' => 0, 'connection.readTimeout' => 0.0] + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + $redis + + + + +

                                                                                                                                                                                                                                                  + + + + + + protected + Adapter + $redis + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + Methods + + +

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + __construct() + + +

                                                                                                                                                                                                                                                  + + + + + public + __construct() : mixed + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + close() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Close the redis connection

                                                                                                                                                                                                                                                  + + + public + close() : void + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + commands() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Get all leaf redis console commands

                                                                                                                                                                                                                                                  + + + public + commands() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + connect() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Initialize redis and connect to redis instance

                                                                                                                                                                                                                                                  + + + public + connect([array<string|int, mixed> $config = [] ]) : Redis + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $config + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Configuration for the redis instance.

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + Redis +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + connection() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Get the redis connection

                                                                                                                                                                                                                                                  + + + public + connection() : Adapter + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + Adapter +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + delete() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Delete a key from redis

                                                                                                                                                                                                                                                  + + + public + delete(string|array<string|int, mixed> $key) : bool + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $key + : string|array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  The key to delete

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/del + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + bool +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + errors() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Return all saved errors

                                                                                                                                                                                                                                                  + + + public + errors() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + exists() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Check if a key exists in redis

                                                                                                                                                                                                                                                  + + + public + exists(string $key) : bool + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $key + : string +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  The key to check

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/exists + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + bool +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + flush() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Flush all keys in redis

                                                                                                                                                                                                                                                  + + + public + flush() : bool + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/flushall + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + bool +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + get() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Get a redis value

                                                                                                                                                                                                                                                  + + + public + get(string|array<string|int, mixed> $key) : string|mixed|false + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $key + : string|array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  The value(s) to get

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/get + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + string|mixed|false + — +

                                                                                                                                                                                                                                                  If key didn't exist, FALSE is returned. Otherwise, the value related to this key is returned

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + keys() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Get all keys in redis

                                                                                                                                                                                                                                                  + + + public + keys() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/keys + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + array<string|int, mixed> +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + ping() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Ping redis server.

                                                                                                                                                                                                                                                  + + + public + ping([string|null $message = null ]) : bool|string + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $message + : string|null + = null
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  — [optional]

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + throws +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + Exception + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/ping + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + bool|string + — +

                                                                                                                                                                                                                                                  TRUE if the command is successful or returns message Throws a RedisException object on connectivity error, as described above

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + set() + + +

                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                  Set a redis value

                                                                                                                                                                                                                                                  + + + public + set(string|array<string|int, mixed> $key[, string|mixed $value = "" ][, int|array<string|int, mixed> $timeout = 0 ]) : bool + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $key + : string|array<string|int, mixed> +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  The value(s) to set

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $value + : string|mixed + = ""
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  — string if not used serializer

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + $timeout + : int|array<string|int, mixed> + = 0
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  [optional] Calling setex() is preferred if you want a timeout.

                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Since 2.6.12 it also supports different flags inside an array. Example ['NX', 'EX' => 60]

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                  • EX seconds -- Set the specified expire time, in seconds.
                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                  • PX milliseconds -- Set the specified expire time, in milliseconds.
                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                  • NX -- Only set the key if it does not already exist.
                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                  • XX -- Only set the key if it already exist. +// Simple key -> value set $redis->set('key', 'value'); +// Will redirect, and actually make an SETEX call $redis->set('key','value', 10); +// Will set the key, if it doesn't exist, with a ttl of 10 seconds $redis->set('key', 'value', ['nx', 'ex' => 10]); +// Will set a key, if it does exist, with a ttl of 1000 milliseconds $redis->set('key', 'value', ['xx', 'px' => 1000]);
                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + link +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + https://redis.io/commands/set + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + since +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                  If you're using Redis >= 2.6.12, you can pass extended options as explained in example

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                  + bool + — +

                                                                                                                                                                                                                                                  — TRUE if the command is successful

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + parseSaveOptions() + + +

                                                                                                                                                                                                                                                  + + + + + protected + parseSaveOptions() : mixed + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  + setSessionHandler() + + +

                                                                                                                                                                                                                                                  + + + + + protected + setSessionHandler() : mixed + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + + + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/classes/Leaf-Router.html b/src/public/api/classes/Leaf-Router.html new file mode 100644 index 00000000..3abc9eb2 --- /dev/null +++ b/src/public/api/classes/Leaf-Router.html @@ -0,0 +1,3291 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + Router + + +
                                                                                                                                                                                                                                                    + in package + +
                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                    Leaf Router +--------------- +Super simple and powerful routing with Leaf

                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                    + Tags + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + author +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    Michael Darko

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + since +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + 1.2.0 + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + version +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + 3.0 + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                    + + + + + + + + + +

                                                                                                                                                                                                                                                    + Properties + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $appRoutes + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Sorted list of routes and their handlers
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $downHandler + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Callable to be invoked if app is down
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $groupRoute + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Current group base path
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $hooks + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    'Middleware' to run at specific times
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $middleware + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    All middleware that should be run
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $namedMiddleware + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Named middleware
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $namedRoutes + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    All named routes
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $namespace + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Default controller namespace
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $notFoundHandler + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Callable to be invoked if no matching routes are found
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $routeGroupMiddleware + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Route based middleware
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $routes + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    All added routes and their handlers
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + $serverBasePath + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    The Server Base Path for Router Execution
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + all() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with all available HTTP methods
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + apiResource() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Create a resource route for using controllers without the create and edit actions.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + delete() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with DELETE method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + findRoute() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Find the current route
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + get() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with GET method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + getBasePath() + +  : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return server base Path, and define it if isn't defined.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + getCurrentUri() + +  : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Define the current relative URI.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + getNamespace() + +  : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Get the global handler namespace.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + getRoute() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Get route info of the current route
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + group() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Alias for mount
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + handleUrl() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Force call the Leaf URL handler
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + head() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with HEAD method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + hook() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a router hook
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + inertia() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route that renders an inertia view
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + match() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Store a route and it's handler
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + mount() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Mounts a collection of callbacks onto a base route.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + options() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with OPTIONS method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + patch() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with PATCH method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + post() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with POST method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + push() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Redirect to another route
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + put() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route with PUT method
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + redirect() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route that sends an HTTP redirect
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + registerMiddleware() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Register a middleware in your Leaf application by name
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + resource() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Create a resource route for using controllers.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + route() + +  : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Get route url by defined route name
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + routes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Get all routes registered in your leaf app
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + run() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Dispatch your application routes
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + set404() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Set the 404 handling function.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + setBasePath() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Explicilty sets the server base path. To be used when your entry script path differs from your entry URLs.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + setDown() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Set a custom maintenance mode callback.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + setNamespace() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Set a global namespace for your handlers
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + use() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add middleware
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + view() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Add a route that renders a view
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + mapHandler() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Map handler and options
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + callHook() + +  : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Call a router hook
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + handle() + +  : int +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Handle a set of routes: if a match is found, execute the relating handling function.
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + invoke() + +  : mixed +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + Properties + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $appRoutes + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Sorted list of routes and their handlers

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $appRoutes + = [] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $downHandler + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Callable to be invoked if app is down

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $downHandler + + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $groupRoute + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Current group base path

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $groupRoute + = '' + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $hooks + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    'Middleware' to run at specific times

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $hooks + = ['router.before' => false, 'router.before.route' => false, 'router.after.route' => false, 'router.after' => false] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $middleware + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    All middleware that should be run

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $middleware + = [] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $namedMiddleware + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Named middleware

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $namedMiddleware + = [] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $namedRoutes + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    All named routes

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $namedRoutes + = [] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $namespace + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Default controller namespace

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $namespace + = '' + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $notFoundHandler + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Callable to be invoked if no matching routes are found

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $notFoundHandler + + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $routeGroupMiddleware + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Route based middleware

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $routeGroupMiddleware + = [] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $routes + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    All added routes and their handlers

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $routes + = [] + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + $serverBasePath + + + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    The Server Base Path for Router Execution

                                                                                                                                                                                                                                                    + + + + protected + static mixed + $serverBasePath + = '' + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + Methods + + +

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + all() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with all available HTTP methods

                                                                                                                                                                                                                                                    + + + public + static all(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + apiResource() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Create a resource route for using controllers without the create and edit actions.

                                                                                                                                                                                                                                                    + + + public + static apiResource(string $pattern, array<string|int, mixed>|string $controller) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    This creates a routes that implement CRUD functionality in a controller +/posts creates:

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                    • /posts - GET | HEAD - Controller@index
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts - POST - Controller@store
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id} - GET | HEAD - Controller@show
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id}/edit - POST | PUT | PATCH - Controller@update
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id}/delete - POST | DELETE - Controller@destroy
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The base route to use eg: /post

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $controller + : array<string|int, mixed>|string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    to handle route eg: PostController

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + delete() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with DELETE method

                                                                                                                                                                                                                                                    + + + public + static delete(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + findRoute() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Find the current route

                                                                                                                                                                                                                                                    + + + public + static findRoute([array<string|int, mixed>|null $routes = null ][, string|null $uri = null ][, mixed $returnFirst = true ]) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $routes + : array<string|int, mixed>|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $uri + : string|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $returnFirst + : mixed + = true
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + array<string|int, mixed> +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + get() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with GET method

                                                                                                                                                                                                                                                    + + + public + static get(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + getBasePath() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Return server base Path, and define it if isn't defined.

                                                                                                                                                                                                                                                    + + + public + static getBasePath() : string + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + string +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + getCurrentUri() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Define the current relative URI.

                                                                                                                                                                                                                                                    + + + public + static getCurrentUri() : string + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + string +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + getNamespace() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Get the global handler namespace.

                                                                                                                                                                                                                                                    + + + public + static getNamespace() : string + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + string + — +

                                                                                                                                                                                                                                                    The given namespace if exists

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + getRoute() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Get route info of the current route

                                                                                                                                                                                                                                                    + + + public + static getRoute() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + array<string|int, mixed> + — +

                                                                                                                                                                                                                                                    The route info array

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + group() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Alias for mount

                                                                                                                                                                                                                                                    + + + public + static group(string $path, callable|array<string|int, mixed> $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $path + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route sub pattern/path to mount the callbacks on

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : callable|array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The callback method

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + handleUrl() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Force call the Leaf URL handler

                                                                                                                                                                                                                                                    + + + public + static handleUrl(string $method, string $url) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $method + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The method to call

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $url + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The uri to force

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + head() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with HEAD method

                                                                                                                                                                                                                                                    + + + public + static head(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + hook() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a router hook

                                                                                                                                                                                                                                                    + + + public + static hook(string $name, callable|null $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    Available hooks

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                    • router.before
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • router.before.route
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • router.before.dispatch
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • router.after.dispatch
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • router.after.route
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • router.after
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $name + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The hook to set

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : callable|null +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The hook handler

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + inertia() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route that renders an inertia view

                                                                                                                                                                                                                                                    + + + public + static inertia(string $pattern, string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $view + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The view to render

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $data + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The data to pass to the view

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + match() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Store a route and it's handler

                                                                                                                                                                                                                                                    + + + public + static match(string $allowedMethods, string $pattern, string|array<string|int, mixed>|callable $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $allowedMethods + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : string|array<string|int, mixed>|callable +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The handler for route when matched

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + mount() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Mounts a collection of callbacks onto a base route.

                                                                                                                                                                                                                                                    + + + public + static mount(string $path, callable|array<string|int, mixed> $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $path + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route sub pattern/path to mount the callbacks on

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : callable|array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The callback method

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + options() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with OPTIONS method

                                                                                                                                                                                                                                                    + + + public + static options(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + patch() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with PATCH method

                                                                                                                                                                                                                                                    + + + public + static patch(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + post() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with POST method

                                                                                                                                                                                                                                                    + + + public + static post(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + push() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Redirect to another route

                                                                                                                                                                                                                                                    + + + public + static push(string|array<string|int, mixed> $route[, array<string|int, mixed>|null $data = null ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Use Leaf\Http\Response::redirect instead

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $route + : string|array<string|int, mixed> +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route to redirect to

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $data + : array<string|int, mixed>|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Data to pass to the next route

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + put() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route with PUT method

                                                                                                                                                                                                                                                    + + + public + static put(string $pattern, mixed $handler) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + redirect() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route that sends an HTTP redirect

                                                                                                                                                                                                                                                    + + + public + static redirect(string $from, string $to[, int $status = 302 ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $from + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The url to redirect from

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $to + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The url to redirect to

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $status + : int + = 302
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The http status code for redirect

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + registerMiddleware() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Register a middleware in your Leaf application by name

                                                                                                                                                                                                                                                    + + + public + registerMiddleware(string $name, callable $middleware) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $name + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The name of the middleware

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $middleware + : callable +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The middleware to register

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + resource() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Create a resource route for using controllers.

                                                                                                                                                                                                                                                    + + + public + static resource(string $pattern, array<string|int, mixed>|string $controller) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    This creates a routes that implement CRUD functionality in a controller +/posts creates:

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                    • /posts - GET | HEAD - Controller@index
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts - POST - Controller@store
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id} - GET | HEAD - Controller@show
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/create - GET | HEAD - Controller@create
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id}/edit - GET | HEAD - Controller@edit
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id}/edit - POST | PUT | PATCH - Controller@update
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    • /posts/{id}/delete - POST | DELETE - Controller@destroy
                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The base route to use eg: /post

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $controller + : array<string|int, mixed>|string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    to handle route eg: PostController

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + route() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Get route url by defined route name

                                                                                                                                                                                                                                                    + + + public + static route(string $routeName[, array<string|int, mixed>|string|null $params = null ]) : string + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $routeName + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $params + : array<string|int, mixed>|string|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + string +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + routes() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Get all routes registered in your leaf app

                                                                                                                                                                                                                                                    + + + public + static routes() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + array<string|int, mixed> +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + run() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Dispatch your application routes

                                                                                                                                                                                                                                                    + + + public + static run([callable|null $callback = null ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $callback + : callable|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + set404() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Set the 404 handling function.

                                                                                                                                                                                                                                                    + + + public + static set404([object|callable $handler = null ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : object|callable + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The function to be executed

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + setBasePath() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Explicilty sets the server base path. To be used when your entry script path differs from your entry URLs.

                                                                                                                                                                                                                                                    + + + public + static setBasePath(mixed $serverBasePath) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $serverBasePath + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    + Tags + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + see +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + https://github.com/bramus/router/issues/82#issuecomment-466956078 + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + setDown() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Set a custom maintenance mode callback.

                                                                                                                                                                                                                                                    + + + public + static setDown([callable|null $handler = null ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : callable|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The function to be executed

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + setNamespace() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Set a global namespace for your handlers

                                                                                                                                                                                                                                                    + + + public + static setNamespace(string $namespace) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $namespace + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The global namespace to set

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + use() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add middleware

                                                                                                                                                                                                                                                    + + + public + static use(callable|string $middleware) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                    This method prepends new middleware to the application middleware stack. +The argument must be an instance that subclasses Leaf_Middleware.

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $middleware + : callable|string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The middleware to set

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + view() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Add a route that renders a view

                                                                                                                                                                                                                                                    + + + public + static view(string $pattern, string $view[, array<string|int, mixed> $data = [] ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $pattern + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The route pattern/path to match

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $view + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The view to render

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $data + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The data to pass to the view

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + mapHandler() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Map handler and options

                                                                                                                                                                                                                                                    + + + protected + static mapHandler(mixed $handler[, mixed $options = ['name' => null, 'middleware' => null, 'namespace' => null] ]) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $options + : mixed + = ['name' => null, 'middleware' => null, 'namespace' => null]
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + array<string|int, mixed> +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + callHook() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Call a router hook

                                                                                                                                                                                                                                                    + + + private + static callHook(string $name) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $name + : string +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The hook to call

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + handle() + + +

                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                    Handle a set of routes: if a match is found, execute the relating handling function.

                                                                                                                                                                                                                                                    + + + private + static handle([array<string|int, mixed> $routes = null ][, bool $quitAfterRun = false ][, string|null $uri = null ]) : int + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $routes + : array<string|int, mixed> + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Collection of route patterns and their handling functions

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $quitAfterRun + : bool + = false
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Does the handle function need to quit after one route was matched?

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $uri + : string|null + = null
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    The URI to call (automatically set if nothing is passed).

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                    + int + — +

                                                                                                                                                                                                                                                    The number of routes handled

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    + invoke() + + +

                                                                                                                                                                                                                                                    + + + + + private + static invoke(mixed $handler[, mixed $params = [] ]) : mixed + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $handler + : mixed +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + $params + : mixed + = []
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/classes/Leaf-Schema.html b/src/public/api/classes/Leaf-Schema.html new file mode 100644 index 00000000..6eb1c326 --- /dev/null +++ b/src/public/api/classes/Leaf-Schema.html @@ -0,0 +1,805 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + Schema + + +
                                                                                                                                                                                                                                                      + in package + +
                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                      Leaf DB Schema [WIP] +--- +One file to rule them all.

                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + version +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + 1.0 + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                      + + + + + + + + + +

                                                                                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $connection + +  : Manager +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + getColumnAttributes() + +  : mixed +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Get all column attributes
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + migrate() + +  : bool +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Migrate your schema file tables
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + reset() + +  : bool +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Reset a database table
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + rollback() + +  : bool +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Rollback db to a previous state
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + seed() + +  : bool +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Seed a database table from schema file
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + setDbConnection() + +  : void +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Set the internal db connection
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + Properties + + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + $connection + + + + +

                                                                                                                                                                                                                                                      + + + + + + protected + static Manager + $connection + + + + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + Methods + + +

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + getColumnAttributes() + + +

                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      Get all column attributes

                                                                                                                                                                                                                                                      + + + public + static getColumnAttributes(mixed $value) : mixed + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $value + : mixed +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + migrate() + + +

                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      Migrate your schema file tables

                                                                                                                                                                                                                                                      + + + public + static migrate(string $fileToMigrate) : bool + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $fileToMigrate + : string +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      The schema file to migrate

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + reset() + + +

                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      Reset a database table

                                                                                                                                                                                                                                                      + + + public + static reset(string $fileToReset) : bool + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $fileToReset + : string +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + rollback() + + +

                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      Rollback db to a previous state

                                                                                                                                                                                                                                                      + + + public + static rollback(string $fileToRollback[, int $step = 1 ]) : bool + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $fileToRollback + : string +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $step + : int + = 1
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + seed() + + +

                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      Seed a database table from schema file

                                                                                                                                                                                                                                                      + + + public + static seed(string $fileToSeed) : bool + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $fileToSeed + : string +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      The name of the schema file

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                      + bool +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      + setDbConnection() + + +

                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                      Set the internal db connection

                                                                                                                                                                                                                                                      + + + public + static setDbConnection(mixed $connection) : void + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + $connection + : mixed +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/classes/Leaf-Vite.html b/src/public/api/classes/Leaf-Vite.html new file mode 100644 index 00000000..b06c8388 --- /dev/null +++ b/src/public/api/classes/Leaf-Vite.html @@ -0,0 +1,2776 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + Vite + + +
                                                                                                                                                                                                                                                        + in package + +
                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + + + + + + + + + + + + +

                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                        + + + + + + + + + +

                                                                                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $entryPoints + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The configured entry points.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $integrityKey + +  : string|false +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The key to check for integrity hashes within the manifest.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $manifestFilename + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The name of the manifest file.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $manifests + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The cached manifest files.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $nonce + +  : string|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The Content Security Policy nonce to apply to all generated tags.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $paths + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The configured paths
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $preloadedAssets + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The preloaded assets.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $preloadTagAttributesResolvers + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The preload tag attributes resolvers.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $scriptTagAttributesResolvers + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The script tag attributes resolvers.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + $styleTagAttributesResolvers + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        The style tag attributes resolvers.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + asset() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the URL for an asset.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + build() + +  : HtmlString +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate Vite tags for an entrypoint.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + config() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Config for vite paths
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + cspNonce() + +  : string|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the Content Security Policy nonce applied to all generated tags.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + hotFile() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the Vite "hot" file path.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + isRunningHot() + +  : bool +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Determine if the HMR server is running.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + manifestHash() + +  : string|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get a unique hash representing the current manifest, or null if there is no manifest.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + preloadedAssets() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the preloaded assets.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + reactRefresh() + +  : HtmlString|void +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate React refresh runtime script.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + useCspNonce() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate or set a Content Security Policy nonce to apply to all generated tags.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + useIntegrityKey() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Use the given key to detect integrity hashes in the manifest.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + useManifestFilename() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Set the filename for the manifest file.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + usePreloadTagAttributes() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Use the given callback to resolve attributes for preload tags.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + useScriptTagAttributes() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Use the given callback to resolve attributes for script tags.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + useStyleTagAttributes() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Use the given callback to resolve attributes for style tags.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + withEntryPoints() + +  : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Set the Vite entry points.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + assetPath() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate an asset path for the application.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + chunk() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the chunk for the given entry point / asset.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + hotAsset() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the path to a given asset when running in HMR mode.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + isCssPath() + +  : bool +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Determine whether the given path is a CSS file.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + makePreloadTagForChunk() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Make a preload tag for the given chunk.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + makeScriptTagWithAttributes() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate a script tag with attributes for the given URL.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + makeStylesheetTagWithAttributes() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate a link tag with attributes for the given URL.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + makeTag() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Generate an appropriate tag for the given URL in HMR mode.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + makeTagForChunk() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Make tag for the given chunk.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + manifest() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the the manifest file for the given build directory.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + manifestPath() + +  : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Get the path to the manifest file for the given build directory.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + parseAttributes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Parse the attributes into key="value" strings.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + resolvePreloadTagAttributes() + +  : array<string|int, mixed>|false +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Resolve the attributes for the chunks generated preload tag.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + resolveScriptTagAttributes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Resolve the attributes for the chunks generated script tag.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + resolveStylesheetTagAttributes() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Resolve the attributes for the chunks generated stylesheet tag.
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + Properties + + +

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $entryPoints + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The configured entry points.

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $entryPoints + = [] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $integrityKey + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The key to check for integrity hashes within the manifest.

                                                                                                                                                                                                                                                        + + + + protected + static string|false + $integrityKey + = 'integrity' + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $manifestFilename + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The name of the manifest file.

                                                                                                                                                                                                                                                        + + + + protected + static string + $manifestFilename + = 'manifest.json' + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $manifests + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The cached manifest files.

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $manifests + = [] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $nonce + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The Content Security Policy nonce to apply to all generated tags.

                                                                                                                                                                                                                                                        + + + + protected + static string|null + $nonce + + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $paths + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The configured paths

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $paths + = ['hotFile' => '/hot', 'build' => '/build', 'assets' => '/assets'] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $preloadedAssets + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The preloaded assets.

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $preloadedAssets + = [] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $preloadTagAttributesResolvers + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The preload tag attributes resolvers.

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $preloadTagAttributesResolvers + = [] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $scriptTagAttributesResolvers + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The script tag attributes resolvers.

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $scriptTagAttributesResolvers + = [] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + $styleTagAttributesResolvers + + + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        The style tag attributes resolvers.

                                                                                                                                                                                                                                                        + + + + protected + static array<string|int, mixed> + $styleTagAttributesResolvers + = [] + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + Methods + + +

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + asset() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the URL for an asset.

                                                                                                                                                                                                                                                        + + + public + static asset(string $asset[, string|null $buildDirectory = null ]) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $asset + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $buildDirectory + : string|null + = null
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + build() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate Vite tags for an entrypoint.

                                                                                                                                                                                                                                                        + + + public + static build(string|array<string|int, string> $entrypoints[, string|null $buildDirectory = null ]) : HtmlString + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $entrypoints + : string|array<string|int, string> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $buildDirectory + : string|null + = null
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + throws +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + Exception + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + HtmlString +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + config() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Config for vite paths

                                                                                                                                                                                                                                                        + + + public + static config(array<string|int, mixed>|string $config[, mixed $value = null ]) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $config + : array<string|int, mixed>|string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        The config array or the config key

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $value + : mixed + = null
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        The config value if $config is a string

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + cspNonce() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the Content Security Policy nonce applied to all generated tags.

                                                                                                                                                                                                                                                        + + + public + static cspNonce() : string|null + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string|null +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + hotFile() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the Vite "hot" file path.

                                                                                                                                                                                                                                                        + + + public + static hotFile() : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + isRunningHot() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Determine if the HMR server is running.

                                                                                                                                                                                                                                                        + + + public + static isRunningHot() : bool + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + bool +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + manifestHash() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get a unique hash representing the current manifest, or null if there is no manifest.

                                                                                                                                                                                                                                                        + + + public + static manifestHash([string|null $buildDirectory = null ]) : string|null + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $buildDirectory + : string|null + = null
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string|null +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + preloadedAssets() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the preloaded assets.

                                                                                                                                                                                                                                                        + + + public + static preloadedAssets() : array<string|int, mixed> + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + reactRefresh() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate React refresh runtime script.

                                                                                                                                                                                                                                                        + + + public + static reactRefresh() : HtmlString|void + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + HtmlString|void +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + useCspNonce() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate or set a Content Security Policy nonce to apply to all generated tags.

                                                                                                                                                                                                                                                        + + + public + static useCspNonce([string|null $nonce = null ]) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $nonce + : string|null + = null
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + useIntegrityKey() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Use the given key to detect integrity hashes in the manifest.

                                                                                                                                                                                                                                                        + + + public + static useIntegrityKey(string|false $key) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $key + : string|false +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + useManifestFilename() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Set the filename for the manifest file.

                                                                                                                                                                                                                                                        + + + public + static useManifestFilename(string $filename) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $filename + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + usePreloadTagAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Use the given callback to resolve attributes for preload tags.

                                                                                                                                                                                                                                                        + + + public + static usePreloadTagAttributes( +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 78 +callable(string, string, Array, Array): Array|array<string|int, mixed>|false $attributes) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $attributes + : +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 78 +callable(string, string, Array, Array): Array|array<string|int, mixed>|false +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + useScriptTagAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Use the given callback to resolve attributes for script tags.

                                                                                                                                                                                                                                                        + + + public + static useScriptTagAttributes( +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 +callable(string, string, Array, Array): array<string|int, mixed>|array<string|int, mixed> $attributes) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $attributes + : +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 +callable(string, string, Array, Array): array<string|int, mixed>|array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + useStyleTagAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Use the given callback to resolve attributes for style tags.

                                                                                                                                                                                                                                                        + + + public + static useStyleTagAttributes( +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 +callable(string, string, Array, Array): array<string|int, mixed>|array<string|int, mixed> $attributes) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $attributes + : +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 + +Warning: Array to string conversion in phar:///Users/mychidarko/api/vendor/bin/phpdoc/src/phpDocumentor/Transformer/Writer/Twig/LinkRenderer/CallableAdapter.php on line 64 +callable(string, string, Array, Array): array<string|int, mixed>|array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + withEntryPoints() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Set the Vite entry points.

                                                                                                                                                                                                                                                        + + + public + static withEntryPoints(array<string|int, mixed> $entryPoints) : mixed + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $entryPoints + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + assetPath() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate an asset path for the application.

                                                                                                                                                                                                                                                        + + + protected + static assetPath(string $path[, bool|null $secure = null ]) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $path + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $secure + : bool|null + = null
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + chunk() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the chunk for the given entry point / asset.

                                                                                                                                                                                                                                                        + + + protected + static chunk(array<string|int, mixed> $manifest, string $file) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $manifest + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $file + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + throws +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + Exception + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + hotAsset() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the path to a given asset when running in HMR mode.

                                                                                                                                                                                                                                                        + + + protected + static hotAsset(mixed $asset) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $asset + : mixed +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + isCssPath() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Determine whether the given path is a CSS file.

                                                                                                                                                                                                                                                        + + + protected + static isCssPath(string $path) : bool + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $path + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + bool +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + makePreloadTagForChunk() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Make a preload tag for the given chunk.

                                                                                                                                                                                                                                                        + + + protected + static makePreloadTagForChunk(string $src, string $url, array<string|int, mixed> $chunk, array<string|int, mixed> $manifest) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $src + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $chunk + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $manifest + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + makeScriptTagWithAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate a script tag with attributes for the given URL.

                                                                                                                                                                                                                                                        + + + protected + static makeScriptTagWithAttributes(string $url, array<string|int, mixed> $attributes) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + makeStylesheetTagWithAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate a link tag with attributes for the given URL.

                                                                                                                                                                                                                                                        + + + protected + static makeStylesheetTagWithAttributes(string $url, array<string|int, mixed> $attributes) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + makeTag() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Generate an appropriate tag for the given URL in HMR mode.

                                                                                                                                                                                                                                                        + + + protected + static makeTag(string $url) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Will be removed in a future Laravel version.

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + makeTagForChunk() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Make tag for the given chunk.

                                                                                                                                                                                                                                                        + + + protected + static makeTagForChunk(string $src, string $url, array<string|int, mixed>|null $chunk, array<string|int, mixed>|null $manifest) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $src + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $chunk + : array<string|int, mixed>|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $manifest + : array<string|int, mixed>|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + manifest() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the the manifest file for the given build directory.

                                                                                                                                                                                                                                                        + + + protected + static manifest(string $buildDirectory) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $buildDirectory + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + throws +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + Exception + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + manifestPath() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Get the path to the manifest file for the given build directory.

                                                                                                                                                                                                                                                        + + + protected + static manifestPath(string $buildDirectory) : string + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $buildDirectory + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + parseAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Parse the attributes into key="value" strings.

                                                                                                                                                                                                                                                        + + + protected + static parseAttributes(array<string|int, mixed> $attributes) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $attributes + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + resolvePreloadTagAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Resolve the attributes for the chunks generated preload tag.

                                                                                                                                                                                                                                                        + + + protected + static resolvePreloadTagAttributes(string $src, string $url, array<string|int, mixed> $chunk, array<string|int, mixed> $manifest) : array<string|int, mixed>|false + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $src + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $chunk + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $manifest + : array<string|int, mixed> +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed>|false +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + resolveScriptTagAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Resolve the attributes for the chunks generated script tag.

                                                                                                                                                                                                                                                        + + + protected + static resolveScriptTagAttributes(string $src, string $url, array<string|int, mixed>|null $chunk, array<string|int, mixed>|null $manifest) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $src + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $chunk + : array<string|int, mixed>|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $manifest + : array<string|int, mixed>|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        + resolveStylesheetTagAttributes() + + +

                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                        Resolve the attributes for the chunks generated stylesheet tag.

                                                                                                                                                                                                                                                        + + + protected + static resolveStylesheetTagAttributes(string $src, string $url, array<string|int, mixed>|null $chunk, array<string|int, mixed>|null $manifest) : array<string|int, mixed> + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $src + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $url + : string +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $chunk + : array<string|int, mixed>|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + $manifest + : array<string|int, mixed>|null +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                        + array<string|int, mixed> +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/classes/Leaf-Worker.html b/src/public/api/classes/Leaf-Worker.html new file mode 100644 index 00000000..43147e2c --- /dev/null +++ b/src/public/api/classes/Leaf-Worker.html @@ -0,0 +1,628 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + Worker + + +
                                                                                                                                                                                                                                                          + in package + +
                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          + + + + + + + + + + + + +

                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                          + + + + + + + + + +

                                                                                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + $config + +  : mixed +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + $queue + +  : Queue +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + memoryExceeded() + +  : mixed +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + queue() + +  : mixed +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + run() + +  : mixed +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + Properties + + +

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + $config + + + + +

                                                                                                                                                                                                                                                          + + + + + + protected + mixed + $config + = ['expire' => 60, 'delay' => 0, 'memory' => 128, 'timeout' => 60, 'sleep' => 3, 'tries' => 3, 'force' => false, 'quitOnEmpty' => false] + + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + $queue + + + + +

                                                                                                                                                                                                                                                          + + + + + + protected + Queue + $queue + = null + + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + Methods + + +

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + memoryExceeded() + + +

                                                                                                                                                                                                                                                          + + + + + public + memoryExceeded(mixed $memory) : mixed + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + $memory + : mixed +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + queue() + + +

                                                                                                                                                                                                                                                          + + + + + public + queue(mixed $queue) : mixed + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + $queue + : mixed +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + run() + + +

                                                                                                                                                                                                                                                          + + + + + public + run() : mixed + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + + + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/css/base.css b/src/public/api/css/base.css new file mode 100644 index 00000000..030ba075 --- /dev/null +++ b/src/public/api/css/base.css @@ -0,0 +1,1236 @@ + + +:root { + /* Typography */ + --font-primary: 'Open Sans', Helvetica, Arial, sans-serif; + --font-secondary: 'Open Sans', Helvetica, Arial, sans-serif; + --font-monospace: 'Source Code Pro', monospace; + --line-height--primary: 1.6; + --letter-spacing--primary: .05rem; + --text-base-size: 1em; + --text-scale-ratio: 1.2; + + --text-xxs: calc(var(--text-base-size) / var(--text-scale-ratio) / var(--text-scale-ratio) / var(--text-scale-ratio)); + --text-xs: calc(var(--text-base-size) / var(--text-scale-ratio) / var(--text-scale-ratio)); + --text-sm: calc(var(--text-base-size) / var(--text-scale-ratio)); + --text-md: var(--text-base-size); + --text-lg: calc(var(--text-base-size) * var(--text-scale-ratio)); + --text-xl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio)); + --text-xxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); + --text-xxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); + --text-xxxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); + --text-xxxxxl: calc(var(--text-base-size) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio)); + + --color-hue-red: 4; + --color-hue-pink: 340; + --color-hue-purple: 291; + --color-hue-deep-purple: 262; + --color-hue-indigo: 231; + --color-hue-blue: 207; + --color-hue-light-blue: 199; + --color-hue-cyan: 187; + --color-hue-teal: 174; + --color-hue-green: 122; + --color-hue-phpdocumentor-green: 96; + --color-hue-light-green: 88; + --color-hue-lime: 66; + --color-hue-yellow: 54; + --color-hue-amber: 45; + --color-hue-orange: 36; + --color-hue-deep-orange: 14; + --color-hue-brown: 16; + + /* Colors */ + --primary-color-hue: var(--color-hue-phpdocumentor-green, --color-hue-phpdocumentor-green); + --primary-color-saturation: 57%; + --primary-color: hsl(var(--primary-color-hue), var(--primary-color-saturation), 60%); + --primary-color-darken: hsl(var(--primary-color-hue), var(--primary-color-saturation), 40%); + --primary-color-darker: hsl(var(--primary-color-hue), var(--primary-color-saturation), 25%); + --primary-color-darkest: hsl(var(--primary-color-hue), var(--primary-color-saturation), 10%); + --primary-color-lighten: hsl(var(--primary-color-hue), calc(var(--primary-color-saturation) - 20%), 85%); + --primary-color-lighter: hsl(var(--primary-color-hue), calc(var(--primary-color-saturation) - 45%), 97.5%); + --dark-gray: #d1d1d1; + --light-gray: #f0f0f0; + + --text-color: var(--primary-color-darkest); + + --header-height: var(--spacing-xxxxl); + --header-bg-color: var(--primary-color); + --code-background-color: var(--primary-color-lighter); + --code-border-color: --primary-color-lighten; + --button-border-color: var(--primary-color-darken); + --button-color: transparent; + --button-color-primary: var(--primary-color); + --button-text-color: #555; + --button-text-color-primary: white; + --popover-background-color: rgba(255, 255, 255, 0.75); + --link-color-primary: var(--primary-color-darker); + --link-hover-color-primary: var(--primary-color-darkest); + --form-field-border-color: var(--dark-gray); + --form-field-color: #fff; + --admonition-success-color: var(--primary-color); + --admonition-border-color: silver; + --table-separator-color: var(--primary-color-lighten); + --title-text-color: var(--primary-color); + + --sidebar-border-color: var(--primary-color-lighten); + + /* Grid */ + --container-width: 1400px; + + /* Spacing */ + --spacing-base-size: 1rem; + --spacing-scale-ratio: 1.5; + + --spacing-xxxs: calc(var(--spacing-base-size) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio)); + --spacing-xxs: calc(var(--spacing-base-size) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio)); + --spacing-xs: calc(var(--spacing-base-size) / var(--spacing-scale-ratio) / var(--spacing-scale-ratio)); + --spacing-sm: calc(var(--spacing-base-size) / var(--spacing-scale-ratio)); + --spacing-md: var(--spacing-base-size); + --spacing-lg: calc(var(--spacing-base-size) * var(--spacing-scale-ratio)); + --spacing-xl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); + --spacing-xxl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); + --spacing-xxxl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); + --spacing-xxxxl: calc(var(--spacing-base-size) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio) * var(--spacing-scale-ratio)); + + --border-radius-base-size: 3px; +} + +/* Base Styles +-------------------------------------------------- */ +body { + background-color: #fff; + color: var(--text-color); + font-family: var(--font-primary); + font-size: var(--text-md); + letter-spacing: var(--letter-spacing--primary); + line-height: var(--line-height--primary); + width: 100%; +} + +.phpdocumentor h1, +.phpdocumentor h2, +.phpdocumentor h3, +.phpdocumentor h4, +.phpdocumentor h5, +.phpdocumentor h6 { + margin-bottom: var(--spacing-lg); + margin-top: var(--spacing-lg); + font-weight: 600; +} + +.phpdocumentor h1 { + font-size: var(--text-xxxxl); + letter-spacing: var(--letter-spacing--primary); + line-height: 1.2; + margin-top: 0; +} + +.phpdocumentor h2 { + font-size: var(--text-xxxl); + letter-spacing: var(--letter-spacing--primary); + line-height: 1.25; +} + +.phpdocumentor h3 { + font-size: var(--text-xxl); + letter-spacing: var(--letter-spacing--primary); + line-height: 1.3; +} + +.phpdocumentor h4 { + font-size: var(--text-xl); + letter-spacing: calc(var(--letter-spacing--primary) / 2); + line-height: 1.35; + margin-bottom: var(--spacing-md); +} + +.phpdocumentor h5 { + font-size: var(--text-lg); + letter-spacing: calc(var(--letter-spacing--primary) / 4); + line-height: 1.5; + margin-bottom: var(--spacing-md); + margin-top: var(--spacing-md); +} + +.phpdocumentor h6 { + font-size: var(--text-md); + letter-spacing: 0; + line-height: var(--line-height--primary); + margin-bottom: var(--spacing-md); + margin-top: var(--spacing-md); +} +.phpdocumentor h1 .headerlink, +.phpdocumentor h2 .headerlink, +.phpdocumentor h3 .headerlink, +.phpdocumentor h4 .headerlink, +.phpdocumentor h5 .headerlink, +.phpdocumentor h6 .headerlink +{ + display: none; +} + +@media (min-width: 550px) { + .phpdocumentor h1 .headerlink, + .phpdocumentor h2 .headerlink, + .phpdocumentor h3 .headerlink, + .phpdocumentor h4 .headerlink, + .phpdocumentor h5 .headerlink, + .phpdocumentor h6 .headerlink { + display: inline; + transition: all .3s ease-in-out; + opacity: 0; + text-decoration: none; + color: silver; + font-size: 80%; + } + + .phpdocumentor h1:hover .headerlink, + .phpdocumentor h2:hover .headerlink, + .phpdocumentor h3:hover .headerlink, + .phpdocumentor h4:hover .headerlink, + .phpdocumentor h5:hover .headerlink, + .phpdocumentor h6:hover .headerlink { + opacity: 1; + } +} +.phpdocumentor p { + margin-top: 0; + margin-bottom: var(--spacing-md); +} +.phpdocumentor figure { + margin-bottom: var(--spacing-md); +} + +.phpdocumentor figcaption { + text-align: center; + font-style: italic; + font-size: 80%; +} + +.phpdocumentor-uml-diagram svg { + max-width: 100%; + height: auto !important; +} +.phpdocumentor-line { + border-top: 1px solid #E1E1E1; + border-width: 0; + margin-bottom: var(--spacing-xxl); + margin-top: var(--spacing-xxl); +} +.phpdocumentor-section { + box-sizing: border-box; + margin: 0 auto; + max-width: var(--container-width); + padding: 0 var(--spacing-sm); + position: relative; + width: 100%; +} + +@media (min-width: 550px) { + .phpdocumentor-section { + padding: 0 var(--spacing-lg); + } +} + +@media (min-width: 1200px) { + .phpdocumentor-section { + padding: 0; + width: 95%; + } +} +.phpdocumentor-column { + box-sizing: border-box; + float: left; + width: 100%; +} + +@media (min-width: 550px) { + .phpdocumentor-column { + margin-left: 4%; + } + + .phpdocumentor-column:first-child { + margin-left: 0; + } + + .-one.phpdocumentor-column { + width: 4.66666666667%; + } + + .-two.phpdocumentor-column { + width: 13.3333333333%; + } + + .-three.phpdocumentor-column { + width: 22%; + } + + .-four.phpdocumentor-column { + width: 30.6666666667%; + } + + .-five.phpdocumentor-column { + width: 39.3333333333%; + } + + .-six.phpdocumentor-column { + width: 48%; + } + + .-seven.phpdocumentor-column { + width: 56.6666666667%; + } + + .-eight.phpdocumentor-column { + width: 65.3333333333%; + } + + .-nine.phpdocumentor-column { + width: 74.0%; + } + + .-ten.phpdocumentor-column { + width: 82.6666666667%; + } + + .-eleven.phpdocumentor-column { + width: 91.3333333333%; + } + + .-twelve.phpdocumentor-column { + margin-left: 0; + width: 100%; + } + + .-one-third.phpdocumentor-column { + width: 30.6666666667%; + } + + .-two-thirds.phpdocumentor-column { + width: 65.3333333333%; + } + + .-one-half.phpdocumentor-column { + width: 48%; + } + + /* Offsets */ + .-offset-by-one.phpdocumentor-column { + margin-left: 8.66666666667%; + } + + .-offset-by-two.phpdocumentor-column { + margin-left: 17.3333333333%; + } + + .-offset-by-three.phpdocumentor-column { + margin-left: 26%; + } + + .-offset-by-four.phpdocumentor-column { + margin-left: 34.6666666667%; + } + + .-offset-by-five.phpdocumentor-column { + margin-left: 43.3333333333%; + } + + .-offset-by-six.phpdocumentor-column { + margin-left: 52%; + } + + .-offset-by-seven.phpdocumentor-column { + margin-left: 60.6666666667%; + } + + .-offset-by-eight.phpdocumentor-column { + margin-left: 69.3333333333%; + } + + .-offset-by-nine.phpdocumentor-column { + margin-left: 78.0%; + } + + .-offset-by-ten.phpdocumentor-column { + margin-left: 86.6666666667%; + } + + .-offset-by-eleven.phpdocumentor-column { + margin-left: 95.3333333333%; + } + + .-offset-by-one-third.phpdocumentor-column { + margin-left: 34.6666666667%; + } + + .-offset-by-two-thirds.phpdocumentor-column { + margin-left: 69.3333333333%; + } + + .-offset-by-one-half.phpdocumentor-column { + margin-left: 52%; + } +} +.phpdocumentor a { + color: var(--link-color-primary); +} + +.phpdocumentor a:hover { + color: var(--link-hover-color-primary); +} +.phpdocumentor-button { + background-color: var(--button-color); + border: 1px solid var(--button-border-color); + border-radius: var(--border-radius-base-size); + box-sizing: border-box; + color: var(--button-text-color); + cursor: pointer; + display: inline-block; + font-size: var(--text-sm); + font-weight: 600; + height: 38px; + letter-spacing: .1rem; + line-height: 38px; + padding: 0 var(--spacing-xxl); + text-align: center; + text-decoration: none; + text-transform: uppercase; + white-space: nowrap; + margin-bottom: var(--spacing-md); +} + +.phpdocumentor-button .-wide { + width: 100%; +} + +.phpdocumentor-button:hover, +.phpdocumentor-button:focus { + border-color: #888; + color: #333; + outline: 0; +} + +.phpdocumentor-button.-primary { + background-color: var(--button-color-primary); + border-color: var(--button-color-primary); + color: var(--button-text-color-primary); +} + +.phpdocumentor-button.-primary:hover, +.phpdocumentor-button.-primary:focus { + background-color: var(--link-color-primary); + border-color: var(--link-color-primary); + color: var(--button-text-color-primary); +} +.phpdocumentor form { + margin-bottom: var(--spacing-md); +} + +.phpdocumentor-field { + background-color: var(--form-field-color); + border: 1px solid var(--form-field-border-color); + border-radius: var(--border-radius-base-size); + box-shadow: none; + box-sizing: border-box; + height: 38px; + padding: var(--spacing-xxxs) var(--spacing-xxs); /* The 6px vertically centers text on FF, ignored by Webkit */ + margin-bottom: var(--spacing-md); +} + +/* Removes awkward default styles on some inputs for iOS */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -moz-appearance: none; + -webkit-appearance: none; + appearance: none; +} + +.phpdocumentor-textarea { + min-height: 65px; + padding-bottom: var(--spacing-xxxs); + padding-top: var(--spacing-xxxs); +} + +.phpdocumentor-field:focus { + border: 1px solid var(--button-color-primary); + outline: 0; +} + +label.phpdocumentor-label { + display: block; + margin-bottom: var(--spacing-xs); +} + +.phpdocumentor-fieldset { + border-width: 0; + padding: 0; +} + +input[type="checkbox"].phpdocumentor-field, +input[type="radio"].phpdocumentor-field { + display: inline; +} +.phpdocumentor-column ul, +div.phpdocumentor-list > ul, +ul.phpdocumentor-list { + list-style: circle; +} + +.phpdocumentor-column ol, +div.phpdocumentor-list > ol, +ol.phpdocumentor-list { + list-style: decimal; +} + + +.phpdocumentor-column ul, +div.phpdocumentor-list > ul, +ol.phpdocumentor-list, +ul.phpdocumentor-list { + margin-top: 0; + padding-left: var(--spacing-lg); + margin-bottom: var(--spacing-sm); +} + +.phpdocumentor-column ul.-clean, +div.phpdocumentor-list > ul.-clean, +ul.phpdocumentor-list.-clean { + list-style: none; + padding-left: 0; +} + +dl { + margin-bottom: var(--spacing-md); +} + +.phpdocumentor-column ul ul, +div.phpdocumentor-list > ul ul, +ul.phpdocumentor-list ul.phpdocumentor-list, +ul.phpdocumentor-list ol.phpdocumentor-list, +ol.phpdocumentor-list ol.phpdocumentor-list, +ol.phpdocumentor-list ul.phpdocumentor-list { + font-size: var(--text-sm); + margin: 0 0 0 calc(var(--spacing-xs) * 2); +} + +.phpdocumentor-column ul li, +.phpdocumentor-list li { + padding-bottom: var(--spacing-xs); +} + +.phpdocumentor dl dt { + margin-bottom: var(--spacing-xs); +} + +.phpdocumentor dl dd { + margin-bottom: var(--spacing-md); +} +.phpdocumentor pre { + margin-bottom: var(--spacing-md); +} + +.phpdocumentor-code { + font-family: var(--font-monospace); + background: var(--code-background-color); + border: 1px solid var(--code-border-color); + border-radius: var(--border-radius-base-size); + font-size: var(--text-sm); + padding: var(--spacing-sm) var(--spacing-md); + width: 100%; + box-sizing: border-box; +} + +.phpdocumentor-code.-dark { + background: var(--primary-color-darkest); + color: var(--light-gray); + box-shadow: 0 2px 3px var(--dark-gray); +} + +pre > .phpdocumentor-code { + display: block; + white-space: pre; +} +.phpdocumentor blockquote { + border-left: 4px solid var(--primary-color-darken); + margin: var(--spacing-md) 0; + padding: var(--spacing-xs) var(--spacing-sm); + color: var(--primary-color-darker); + font-style: italic; +} + +.phpdocumentor blockquote p:last-of-type { + margin-bottom: 0; +} +.phpdocumentor table { + margin-bottom: var(--spacing-md); +} + +th.phpdocumentor-heading, +td.phpdocumentor-cell { + border-bottom: 1px solid var(--table-separator-color); + padding: var(--spacing-sm) var(--spacing-md); + text-align: left; +} + +th.phpdocumentor-heading:first-child, +td.phpdocumentor-cell:first-child { + padding-left: 0; +} + +th.phpdocumentor-heading:last-child, +td.phpdocumentor-cell:last-child { + padding-right: 0; +} +.phpdocumentor-label-line { + display: flex; + flex-direction: row; + gap: 1rem +} + +.phpdocumentor-label { + background: #f6f6f6; + border-radius: .25rem; + font-size: 80%; + display: inline-block; + overflow: hidden +} + +/* +It would be better if the phpdocumentor-element class were to become a flex element with a gap, but for #3337 that +is too big a fix and needs to be done in a new design iteration. +*/ +.phpdocumentor-signature + .phpdocumentor-label-line .phpdocumentor-label { + margin-top: var(--spacing-sm); +} + +.phpdocumentor-label span { + display: inline-block; + padding: .125rem .5rem; +} + +.phpdocumentor-label--success span:last-of-type { + background: #abe1ab; +} + +.phpdocumentor-header { + display: flex; + flex-direction: row; + align-items: stretch; + flex-wrap: wrap; + justify-content: space-between; + height: auto; + padding: var(--spacing-md) var(--spacing-md); +} + +.phpdocumentor-header__menu-button { + position: absolute; + top: -100%; + left: -100%; +} + +.phpdocumentor-header__menu-icon { + font-size: 2rem; + color: var(--primary-color); +} + +.phpdocumentor-header__menu-button:checked ~ .phpdocumentor-topnav { + max-height: 250px; + padding-top: var(--spacing-md); +} + +@media (min-width: 1000px) { + .phpdocumentor-header { + flex-direction: row; + padding: var(--spacing-lg) var(--spacing-lg); + min-height: var(--header-height); + } + + .phpdocumentor-header__menu-icon { + display: none; + } +} + +@media (min-width: 1000px) { + .phpdocumentor-header { + padding-top: 0; + padding-bottom: 0; + } +} +@media (min-width: 1200px) { + .phpdocumentor-header { + padding: 0; + } +} +.phpdocumentor-title { + box-sizing: border-box; + color: var(--title-text-color); + font-size: var(--text-xxl); + letter-spacing: .05rem; + font-weight: normal; + width: auto; + margin: 0; + display: flex; + align-items: center; +} + +.phpdocumentor-title.-without-divider { + border: none; +} + +.phpdocumentor-title__link { + transition: all .3s ease-out; + display: flex; + color: var(--title-text-color); + text-decoration: none; + font-weight: normal; + white-space: nowrap; + transform: scale(.75); + transform-origin: left; +} + +.phpdocumentor-title__link:hover { + transform: perspective(15rem) translateX(.5rem); + font-weight: 600; +} + +@media (min-width: 1000px) { + .phpdocumentor-title { + width: 22%; + border-right: var(--sidebar-border-color) solid 1px; + } + + .phpdocumentor-title__link { + transform-origin: left; + } +} + +@media (min-width: 1000px) { + .phpdocumentor-title__link { + transform: scale(.85); + } +} + +@media (min-width: 1200px) { + .phpdocumentor-title__link { + transform: scale(1); + } +} +.phpdocumentor-topnav { + display: flex; + align-items: center; + margin: 0; + max-height: 0; + overflow: hidden; + transition: max-height 0.2s ease-out; + flex-basis: 100%; +} + +.phpdocumentor-topnav__menu { + text-align: right; + list-style: none; + margin: 0; + padding: 0; + flex: 1; + display: flex; + flex-flow: row wrap; + justify-content: center; +} + +.phpdocumentor-topnav__menu-item { + margin: 0; + width: 100%; + display: inline-block; + text-align: center; + padding: var(--spacing-sm) 0 +} + +.phpdocumentor-topnav__menu-item.-social { + width: auto; + padding: var(--spacing-sm) +} + +.phpdocumentor-topnav__menu-item a { + display: inline-block; + color: var(--text-color); + text-decoration: none; + font-size: var(--text-lg); + transition: all .3s ease-out; + border-bottom: 1px dotted transparent; + line-height: 1; +} + +.phpdocumentor-topnav__menu-item a:hover { + transform: perspective(15rem) translateY(.1rem); + border-bottom: 1px dotted var(--text-color); +} + +@media (min-width: 1000px) { + .phpdocumentor-topnav { + max-height: none; + overflow: visible; + flex-basis: auto; + } + + .phpdocumentor-topnav__menu { + display: flex; + flex-flow: row wrap; + justify-content: flex-end; + } + + .phpdocumentor-topnav__menu-item, + .phpdocumentor-topnav__menu-item.-social { + width: auto; + display: inline; + text-align: right; + padding: 0 0 0 var(--spacing-md) + } +} +.phpdocumentor-sidebar { + margin: 0; + overflow: hidden; + max-height: 0; +} + +.phpdocumentor .phpdocumentor-sidebar .phpdocumentor-list { + padding: var(--spacing-xs) var(--spacing-md); + list-style: none; + margin: 0; +} + +.phpdocumentor .phpdocumentor-sidebar li { + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + padding: 0 0 var(--spacing-xxxs) var(--spacing-md); +} + +.phpdocumentor .phpdocumentor-sidebar abbr, +.phpdocumentor .phpdocumentor-sidebar a { + text-decoration: none; + border-bottom: none; + color: var(--text-color); + font-size: var(--text-md); + padding-left: 0; + transition: padding-left .4s ease-out; +} + +.phpdocumentor .phpdocumentor-sidebar a:hover, +.phpdocumentor .phpdocumentor-sidebar a.-active { + padding-left: 5px; + font-weight: 600; +} + +.phpdocumentor .phpdocumentor-sidebar__category > * { + border-left: 1px solid var(--primary-color-lighten); +} + +.phpdocumentor .phpdocumentor-sidebar__category { + margin-bottom: var(--spacing-lg); +} + +.phpdocumentor .phpdocumentor-sidebar__category-header { + font-size: var(--text-md); + margin-top: 0; + margin-bottom: var(--spacing-xs); + color: var(--link-color-primary); + font-weight: 600; + border-left: 0; +} + +.phpdocumentor .phpdocumentor-sidebar__root-package, +.phpdocumentor .phpdocumentor-sidebar__root-namespace { + font-size: var(--text-md); + margin: 0; + padding-top: var(--spacing-xs); + padding-left: var(--spacing-md); + color: var(--text-color); + font-weight: normal; +} + +@media (min-width: 550px) { + .phpdocumentor-sidebar { + border-right: var(--sidebar-border-color) solid 1px; + } +} + +.phpdocumentor-sidebar__menu-button { + position: absolute; + top: -100%; + left: -100%; +} + +.phpdocumentor-sidebar__menu-icon { + font-size: var(--text-md); + font-weight: 600; + background: var(--primary-color); + color: white; + margin: 0 0 var(--spacing-lg); + display: block; + padding: var(--spacing-sm); + text-align: center; + border-radius: 3px; + text-transform: uppercase; + letter-spacing: .15rem; +} + +.phpdocumentor-sidebar__menu-button:checked ~ .phpdocumentor-sidebar { + max-height: 100%; + padding-top: var(--spacing-md); +} + +@media (min-width: 550px) { + .phpdocumentor-sidebar { + overflow: visible; + max-height: 100%; + } + + .phpdocumentor-sidebar__menu-icon { + display: none; + } +} +.phpdocumentor-admonition { + border: 1px solid var(--admonition-border-color); + border-radius: var(--border-radius-base-size); + border-color: var(--primary-color-lighten); + background-color: var(--primary-color-lighter); + padding: var(--spacing-lg); + margin: var(--spacing-lg) 0; + display: flex; + flex-direction: row; + align-items: flex-start; +} + +.phpdocumentor-admonition p:last-of-type { + margin-bottom: 0; +} + +.phpdocumentor-admonition--success, +.phpdocumentor-admonition.-success { + border-color: var(--admonition-success-color); +} + +.phpdocumentor-admonition__icon { + margin-right: var(--spacing-md); + color: var(--primary-color); + max-width: 3rem; +} +.phpdocumentor ul.phpdocumentor-breadcrumbs { + font-size: var(--text-md); + list-style: none; + margin: 0; + padding: 0; +} + +.phpdocumentor ul.phpdocumentor-breadcrumbs a { + color: var(--text-color); + text-decoration: none; +} + +.phpdocumentor ul.phpdocumentor-breadcrumbs > li { + display: inline-block; + margin: 0; +} + +.phpdocumentor ul.phpdocumentor-breadcrumbs > li + li:before { + color: var(--dark-gray); + content: "\\\A0"; + padding: 0; +} +.phpdocumentor .phpdocumentor-back-to-top { + position: fixed; + bottom: 2rem; + font-size: 2.5rem; + opacity: .25; + transition: all .3s ease-in-out; + right: 2rem; +} + +.phpdocumentor .phpdocumentor-back-to-top:hover { + color: var(--link-color-primary); + opacity: 1; +} +.phpdocumentor-search { + position: relative; + display: none; /** disable by default for non-js flow */ + opacity: .3; /** white-out default for loading indication */ + transition: opacity .3s, background .3s; + margin: var(--spacing-sm) 0; + flex: 1; + min-width: 100%; +} + +.phpdocumentor-search label { + display: flex; + align-items: center; + flex: 1; +} + +.phpdocumentor-search__icon { + color: var(--primary-color); + margin-right: var(--spacing-sm); + width: 1rem; + height: 1rem; +} + +.phpdocumentor-search--enabled { + display: flex; +} + +.phpdocumentor-search--active { + opacity: 1; +} + +.phpdocumentor-search input:disabled { + background-color: lightgray; +} + +.phpdocumentor-search__field:focus, +.phpdocumentor-search__field { + margin-bottom: 0; + border: 0; + border-bottom: 2px solid var(--primary-color); + padding: 0; + border-radius: 0; + flex: 1; +} + +@media (min-width: 1000px) { + .phpdocumentor-search { + min-width: auto; + max-width: 20rem; + margin: 0 0 0 auto; + } +} +.phpdocumentor-search-results { + backdrop-filter: blur(5px); + background: var(--popover-background-color); + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 0; + opacity: 1; + pointer-events: all; + + transition: opacity .3s, background .3s; +} + +.phpdocumentor-search-results--hidden { + background: transparent; + backdrop-filter: blur(0); + opacity: 0; + pointer-events: none; +} + +.phpdocumentor-search-results__dialog { + width: 100%; + background: white; + max-height: 100%; + display: flex; + flex-direction: column; +} + +.phpdocumentor-search-results__body { + overflow: auto; +} + +.phpdocumentor-search-results__header { + padding: var(--spacing-lg); + display: flex; + justify-content: space-between; + background: var(--primary-color-darken); + color: white; + align-items: center; +} + +.phpdocumentor-search-results__close { + font-size: var(--text-xl); + background: none; + border: none; + padding: 0; + margin: 0; +} + +.phpdocumentor .phpdocumentor-search-results__title { + font-size: var(--text-xl); + margin-bottom: 0; +} + +.phpdocumentor-search-results__entries { + list-style: none; + padding: 0 var(--spacing-lg); + margin: 0; +} + +.phpdocumentor-search-results__entry { + border-bottom: 1px solid var(--table-separator-color); + padding: var(--spacing-sm) 0; + text-align: left; +} + +.phpdocumentor-search-results__entry a { + display: block; +} + +.phpdocumentor-search-results__entry small { + margin-top: var(--spacing-xs); + margin-bottom: var(--spacing-md); + color: var(--primary-color-darker); + display: block; + word-break: break-word; +} + +.phpdocumentor-search-results__entry h3 { + font-size: var(--text-lg); + margin: 0; +} + +@media (min-width: 550px) { + .phpdocumentor-search-results { + padding: 0 var(--spacing-lg); + } + + .phpdocumentor-search-results__entry h3 { + font-size: var(--text-xxl); + } + + .phpdocumentor-search-results__dialog { + margin: var(--spacing-xl) auto; + max-width: 40rem; + background: white; + border: 1px solid silver; + box-shadow: 0 2px 5px silver; + max-height: 40rem; + border-radius: 3px; + } +} +.phpdocumentor-modal { + position: fixed; + width: 100vw; + height: 100vh; + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + top: 0; + left: 0; + display: flex; + align-items: center; + justify-content: center; + z-index: 1; +} + +.phpdocumentor-modal__open { + visibility: visible; + opacity: 1; + transition-delay: 0s; +} + +.phpdocumentor-modal-bg { + position: absolute; + background: gray; + opacity: 50%; + width: 100%; + height: 100%; +} + +.phpdocumentor-modal-container { + border-radius: 1em; + background: #fff; + position: relative; + padding: 2em; + box-sizing: border-box; + max-width:100vw; +} + +.phpdocumentor-modal__close { + position: absolute; + right: 0.75em; + top: 0.75em; + outline: none; + appearance: none; + color: var(--primary-color); + background: none; + border: 0px; + font-weight: bold; + cursor: pointer; +} +.phpdocumentor-on-this-page__sidebar { + display: none; +} + +.phpdocumentor-on-this-page__title { + display: block; + font-weight: bold; + margin-bottom: var(--spacing-sm); + color: var(--link-color-primary); +} + +@media (min-width: 1000px) { + .phpdocumentor-on-this-page__sidebar { + display: block; + position: relative; + } + + .phpdocumentor-on-this-page__content::-webkit-scrollbar, + [scrollbars]::-webkit-scrollbar { + height: 8px; + width: 8px; + } + + .phpdocumentor-on-this-page__content::-webkit-scrollbar-corner, + [scrollbars]::-webkit-scrollbar-corner { + background: 0; + } + + .phpdocumentor-on-this-page__content::-webkit-scrollbar-thumb, + [scrollbars]::-webkit-scrollbar-thumb { + background: rgba(128,134,139,0.26); + border-radius: 8px; + } + + .phpdocumentor-on-this-page__content { + position: sticky; + height: calc(100vh - var(--header-height)); + overflow-y: auto; + border-left: 1px solid var(--sidebar-border-color); + padding-left: var(--spacing-lg); + font-size: 90%; + top: -1px; /* Needed for the javascript to make the .-stuck trick work */ + flex: 0 1 auto; + width: 15vw; + } + + .phpdocumentor-on-this-page__content.-stuck { + height: 100vh; + } + + .phpdocumentor-on-this-page__content li { + word-break: break-all; + line-height: normal; + } + + .phpdocumentor-on-this-page__content li.-deprecated { + text-decoration: line-through; + } +} + +/* Used for screen readers and such */ +.visually-hidden { + display: none; +} + +.float-right { + float: right; +} + +.float-left { + float: left; +} diff --git a/src/public/api/css/normalize.css b/src/public/api/css/normalize.css new file mode 100644 index 00000000..653dc00a --- /dev/null +++ b/src/public/api/css/normalize.css @@ -0,0 +1,427 @@ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none !important; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: var(--font-monospace); + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} diff --git a/src/public/api/css/template.css b/src/public/api/css/template.css new file mode 100644 index 00000000..d3d6f225 --- /dev/null +++ b/src/public/api/css/template.css @@ -0,0 +1,278 @@ + +.phpdocumentor-content { + position: relative; + display: flex; + gap: var(--spacing-md); +} + +.phpdocumentor-content > section:first-of-type { + width: 75%; + flex: 1 1 auto; +} + +@media (min-width: 1900px) { + .phpdocumentor-content > section:first-of-type { + width: 100%; + flex: 1 1 auto; + } +} + +.phpdocumentor .phpdocumentor-content__title { + margin-top: 0; +} +.phpdocumentor-summary { + font-style: italic; +} +.phpdocumentor-description { + margin-bottom: var(--spacing-md); +} +.phpdocumentor-element { + position: relative; +} + +.phpdocumentor-element .phpdocumentor-element { + border: 1px solid var(--primary-color-lighten); + margin-bottom: var(--spacing-md); + padding: var(--spacing-xs); + border-radius: 5px; +} + +.phpdocumentor-element.-deprecated .phpdocumentor-element__name { + text-decoration: line-through; +} + +@media (min-width: 550px) { + .phpdocumentor-element .phpdocumentor-element { + margin-bottom: var(--spacing-lg); + padding: var(--spacing-md); + } +} + +.phpdocumentor-element__modifier { + font-size: var(--text-xxs); + padding: calc(var(--spacing-base-size) / 4) calc(var(--spacing-base-size) / 2); + color: var(--text-color); + background-color: var(--light-gray); + border-radius: 3px; + text-transform: uppercase; +} + +.phpdocumentor .phpdocumentor-elements__header { + margin-top: var(--spacing-xxl); + margin-bottom: var(--spacing-lg); +} + +.phpdocumentor .phpdocumentor-element__name { + line-height: 1; + margin-top: 0; + font-weight: 300; + font-size: var(--text-lg); + word-break: break-all; + margin-bottom: var(--spacing-sm); +} + +@media (min-width: 550px) { + .phpdocumentor .phpdocumentor-element__name { + font-size: var(--text-xl); + margin-bottom: var(--spacing-xs); + } +} + +@media (min-width: 1200px) { + .phpdocumentor .phpdocumentor-element__name { + margin-bottom: var(--spacing-md); + } +} + +.phpdocumentor-element__package, +.phpdocumentor-element__extends, +.phpdocumentor-element__implements { + display: block; + font-size: var(--text-xxs); + font-weight: normal; + opacity: .7; +} + +.phpdocumentor-element__package .phpdocumentor-breadcrumbs { + display: inline; +} +.phpdocumentor .phpdocumentor-signature { + display: block; + font-size: var(--text-sm); + border: 1px solid #f0f0f0; +} + +.phpdocumentor .phpdocumentor-signature.-deprecated .phpdocumentor-signature__name { + text-decoration: line-through; +} + +@media (min-width: 550px) { + .phpdocumentor .phpdocumentor-signature { + margin-left: calc(var(--spacing-xl) * -1); + width: calc(100% + var(--spacing-xl)); + } +} + +.phpdocumentor-table-of-contents { +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry { + margin-bottom: var(--spacing-xxs); + margin-left: 2rem; + display: flex; +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry > a { + flex: 0 1 auto; +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry > a.-deprecated { + text-decoration: line-through; +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry > span { + flex: 1; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry:after { + content: ''; + height: 12px; + width: 12px; + left: 16px; + position: absolute; +} +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-private:after { + background: url('data:image/svg+xml;utf8,') no-repeat; +} +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-protected:after { + left: 13px; + background: url('data:image/svg+xml;utf8,') no-repeat; +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry:before { + width: 1.25rem; + height: 1.25rem; + line-height: 1.25rem; + background: transparent url('data:image/svg+xml;utf8,') no-repeat center center; + content: ''; + position: absolute; + left: 0; + border-radius: 50%; + font-weight: 600; + color: white; + text-align: center; + font-size: .75rem; + margin-top: .2rem; +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-method:before { + content: 'M'; + color: ''; + background-image: url('data:image/svg+xml;utf8,'); +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-function:before { + content: 'M'; + color: ' 96'; + background-image: url('data:image/svg+xml;utf8,'); +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-property:before { + content: 'P' +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-constant:before { + content: 'C'; + background-color: transparent; + background-image: url('data:image/svg+xml;utf8,'); +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-class:before { + content: 'C' +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-interface:before { + content: 'I' +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-trait:before { + content: 'T' +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-namespace:before { + content: 'N' +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-package:before { + content: 'P' +} + +.phpdocumentor-table-of-contents .phpdocumentor-table-of-contents__entry.-enum:before { + content: 'E' +} + +.phpdocumentor-table-of-contents dd { + font-style: italic; + margin-left: 2rem; +} +.phpdocumentor-element-found-in { + display: none; +} + +@media (min-width: 550px) { + .phpdocumentor-element-found-in { + display: block; + font-size: var(--text-sm); + color: gray; + margin-bottom: 1rem; + } +} + +@media (min-width: 1200px) { + .phpdocumentor-element-found-in { + position: absolute; + top: var(--spacing-sm); + right: var(--spacing-sm); + font-size: var(--text-sm); + margin-bottom: 0; + } +} + +.phpdocumentor-element-found-in .phpdocumentor-element-found-in__source { + flex: 0 1 auto; + display: inline-flex; +} + +.phpdocumentor-element-found-in .phpdocumentor-element-found-in__source:after { + width: 1.25rem; + height: 1.25rem; + line-height: 1.25rem; + background: transparent url('data:image/svg+xml;utf8,') no-repeat center center; + content: ''; + left: 0; + border-radius: 50%; + font-weight: 600; + text-align: center; + font-size: .75rem; + margin-top: .2rem; +} +.phpdocumentor-class-graph { + width: 100%; height: 600px; border:1px solid black; overflow: hidden +} + +.phpdocumentor-class-graph__graph { + width: 100%; +} +.phpdocumentor-tag-list__definition { + display: flex; +} + +.phpdocumentor-tag-link { + margin-right: var(--spacing-sm); +} +.phpdocumentor-uml-diagram svg { + cursor: zoom-in; +} \ No newline at end of file diff --git a/src/public/api/files/vendor-leafs-alchemy-src-commands-ejectcommand.html b/src/public/api/files/vendor-leafs-alchemy-src-commands-ejectcommand.html new file mode 100644 index 00000000..765766ab --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-commands-ejectcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            EjectCommand.php

                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            EjectCommand
                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-commands-installcommand.html b/src/public/api/files/vendor-leafs-alchemy-src-commands-installcommand.html new file mode 100644 index 00000000..7396eb02 --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-commands-installcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              InstallCommand.php

                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              InstallCommand
                                                                                                                                                                                                                                                              Base class for all commands.
                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-commands-setupcommand.html b/src/public/api/files/vendor-leafs-alchemy-src-commands-setupcommand.html new file mode 100644 index 00000000..0b456c25 --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-commands-setupcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                SetupCommand.php

                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                SetupCommand
                                                                                                                                                                                                                                                                Base class for all commands.
                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-core.html b/src/public/api/files/vendor-leafs-alchemy-src-core.html new file mode 100644 index 00000000..a1148d4c --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-core.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Core.php

                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  Core
                                                                                                                                                                                                                                                                  Container for Alchemy config
                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-functions.html b/src/public/api/files/vendor-leafs-alchemy-src-functions.html new file mode 100644 index 00000000..06ec87da --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-functions.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    functions.php

                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-setup-pest-tests-app-test.html b/src/public/api/files/vendor-leafs-alchemy-src-setup-pest-tests-app-test.html new file mode 100644 index 00000000..b766811d --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-setup-pest-tests-app-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      app.test.php

                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-setup-phpunit-tests-app-test.html b/src/public/api/files/vendor-leafs-alchemy-src-setup-phpunit-tests-app-test.html new file mode 100644 index 00000000..3aa230c6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-setup-phpunit-tests-app-test.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        app.test.php

                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        StackTest
                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-src-utils-package.html b/src/public/api/files/vendor-leafs-alchemy-src-utils-package.html new file mode 100644 index 00000000..64df2eb6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-src-utils-package.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Package.php

                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Package
                                                                                                                                                                                                                                                                          Package +---- +Meta info on leaf cli
                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-tests-example-test.html b/src/public/api/files/vendor-leafs-alchemy-tests-example-test.html new file mode 100644 index 00000000..1a6a8aec --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-tests-example-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            example.test.php

                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-tests-exampletest.html b/src/public/api/files/vendor-leafs-alchemy-tests-exampletest.html new file mode 100644 index 00000000..9dd3cce4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-tests-exampletest.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              ExampleTest.php

                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-alchemy-tests-pest.html b/src/public/api/files/vendor-leafs-alchemy-tests-pest.html new file mode 100644 index 00000000..7a67d30a --- /dev/null +++ b/src/public/api/files/vendor-leafs-alchemy-tests-pest.html @@ -0,0 +1,385 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Pest.php

                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                + Functions + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + something() + +  : mixed +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + Functions + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + something() + + +

                                                                                                                                                                                                                                                                                + + + + + + + something() : mixed + + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-appdowncommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-appdowncommand.html new file mode 100644 index 00000000..b584d9af --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-appdowncommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  AppDownCommand.php

                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  AppDownCommand
                                                                                                                                                                                                                                                                                  Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-appupcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-appupcommand.html new file mode 100644 index 00000000..381834fe --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-appupcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    AppUpCommand.php

                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    AppUpCommand
                                                                                                                                                                                                                                                                                    Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-config.html b/src/public/api/files/vendor-leafs-aloe-src-command-config.html new file mode 100644 index 00000000..082a94b1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-config.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Config.php

                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      Config
                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-configlibcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-configlibcommand.html new file mode 100644 index 00000000..5b83d423 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-configlibcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        ConfigLibCommand.php

                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        ConfigLibCommand
                                                                                                                                                                                                                                                                                        Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-configpublishcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-configpublishcommand.html new file mode 100644 index 00000000..8dd015f6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-configpublishcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          ConfigPublishCommand.php

                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          ConfigPublishCommand
                                                                                                                                                                                                                                                                                          Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-databasemigrationcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-databasemigrationcommand.html new file mode 100644 index 00000000..767264f9 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-databasemigrationcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            DatabaseMigrationCommand.php

                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            DatabaseMigrationCommand
                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-databaseresetcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-databaseresetcommand.html new file mode 100644 index 00000000..d10a05ef --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-databaseresetcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              DatabaseResetCommand.php

                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              DatabaseResetCommand
                                                                                                                                                                                                                                                                                              Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-databaserollbackcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-databaserollbackcommand.html new file mode 100644 index 00000000..e9122629 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-databaserollbackcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                DatabaseRollbackCommand.php

                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                DatabaseRollbackCommand
                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-databaseseedcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-databaseseedcommand.html new file mode 100644 index 00000000..496e1422 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-databaseseedcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  DatabaseSeedCommand.php

                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  DatabaseSeedCommand
                                                                                                                                                                                                                                                                                                  Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-deleteconsolecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-deleteconsolecommand.html new file mode 100644 index 00000000..eb71250e --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-deleteconsolecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    DeleteConsoleCommand.php

                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    DeleteConsoleCommand
                                                                                                                                                                                                                                                                                                    Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-deletecontrollercommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-deletecontrollercommand.html new file mode 100644 index 00000000..8dd899ee --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-deletecontrollercommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      DeleteControllerCommand.php

                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      DeleteControllerCommand
                                                                                                                                                                                                                                                                                                      Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-deletemodelcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-deletemodelcommand.html new file mode 100644 index 00000000..6d79fb19 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-deletemodelcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        DeleteModelCommand.php

                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        DeleteModelCommand
                                                                                                                                                                                                                                                                                                        Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-devtoolscommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-devtoolscommand.html new file mode 100644 index 00000000..366d09e5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-devtoolscommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          DevToolsCommand.php

                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          DevToolsCommand
                                                                                                                                                                                                                                                                                                          Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-envgeneratecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-envgeneratecommand.html new file mode 100644 index 00000000..01547097 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-envgeneratecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            EnvGenerateCommand.php

                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            EnvGenerateCommand
                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generateconsolecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generateconsolecommand.html new file mode 100644 index 00000000..4380e22a --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generateconsolecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              GenerateConsoleCommand.php

                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              GenerateConsoleCommand
                                                                                                                                                                                                                                                                                                              Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generatecontrollercommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generatecontrollercommand.html new file mode 100644 index 00000000..a3e0a362 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generatecontrollercommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                GenerateControllerCommand.php

                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                GenerateControllerCommand
                                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generatehelpercommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generatehelpercommand.html new file mode 100644 index 00000000..ee29e83f --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generatehelpercommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  GenerateHelperCommand.php

                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  GenerateHelperCommand
                                                                                                                                                                                                                                                                                                                  Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generatemailercommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generatemailercommand.html new file mode 100644 index 00000000..18d8a109 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generatemailercommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    GenerateMailerCommand.php

                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    GenerateMailerCommand
                                                                                                                                                                                                                                                                                                                    Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generatemiddlewarecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generatemiddlewarecommand.html new file mode 100644 index 00000000..317015ec --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generatemiddlewarecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      GenerateMiddlewareCommand.php

                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      GenerateMiddlewareCommand
                                                                                                                                                                                                                                                                                                                      Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generatemodelcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generatemodelcommand.html new file mode 100644 index 00000000..1be2a533 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generatemodelcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        GenerateModelCommand.php

                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        GenerateModelCommand
                                                                                                                                                                                                                                                                                                                        Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generateschemacommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generateschemacommand.html new file mode 100644 index 00000000..19ba2e11 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generateschemacommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          GenerateSchemaCommand.php

                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          GenerateSchemaCommand
                                                                                                                                                                                                                                                                                                                          Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-generatetemplatecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-generatetemplatecommand.html new file mode 100644 index 00000000..496cc9bc --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-generatetemplatecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            GenerateTemplateCommand.php

                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            GenerateTemplateCommand
                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-installcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-installcommand.html new file mode 100644 index 00000000..2f16754e --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-installcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              InstallCommand.php

                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              InstallCommand
                                                                                                                                                                                                                                                                                                                              Base class for all commands.
                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-interactcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-interactcommand.html new file mode 100644 index 00000000..7cdab6a9 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-interactcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                InteractCommand.php

                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                InteractCommand
                                                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-keygeneratecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-keygeneratecommand.html new file mode 100644 index 00000000..248e91be --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-keygeneratecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  KeyGenerateCommand.php

                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  KeyGenerateCommand
                                                                                                                                                                                                                                                                                                                                  Base class for all commands.
                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-linkcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-linkcommand.html new file mode 100644 index 00000000..d77ee3d7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-linkcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    LinkCommand.php

                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    LinkCommand
                                                                                                                                                                                                                                                                                                                                    Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-scaffoldauthcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-scaffoldauthcommand.html new file mode 100644 index 00000000..f175eec2 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-scaffoldauthcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      ScaffoldAuthCommand.php

                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      ScaffoldAuthCommand
                                                                                                                                                                                                                                                                                                                                      Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-scaffoldmailcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-scaffoldmailcommand.html new file mode 100644 index 00000000..b4abc0d7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-scaffoldmailcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        ScaffoldMailCommand.php

                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        ScaffoldMailCommand
                                                                                                                                                                                                                                                                                                                                        Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-servecommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-servecommand.html new file mode 100644 index 00000000..4d940824 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-servecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          ServeCommand.php

                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          ServeCommand
                                                                                                                                                                                                                                                                                                                                          Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-app.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-app.html new file mode 100644 index 00000000..93ca4aff --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-app.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            app.php

                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-auth.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-auth.html new file mode 100644 index 00000000..40a1a04a --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              auth.php

                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-cors.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-cors.html new file mode 100644 index 00000000..1aa18ed3 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-cors.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                cors.php

                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-csrf.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-csrf.html new file mode 100644 index 00000000..1b8ffe3f --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-csrf.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  csrf.php

                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-database.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-database.html new file mode 100644 index 00000000..9aa2210e --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-database.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    database.php

                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-queue.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-queue.html new file mode 100644 index 00000000..ca3db91d --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-queue.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      queue.php

                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-redis.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-redis.html new file mode 100644 index 00000000..6a10d7cb --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-redis.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        redis.php

                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-view.html b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-view.html new file mode 100644 index 00000000..4ee0f210 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-stubs-config-view.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          view.php

                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-accountcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-accountcontroller.html new file mode 100644 index 00000000..6a219a9b --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-accountcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            AccountController.php

                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            AccountController
                                                                                                                                                                                                                                                                                                                                                            This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-controller.html new file mode 100644 index 00000000..45a845e3 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              Controller.php

                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              Controller
                                                                                                                                                                                                                                                                                                                                                              This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-logincontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-logincontroller.html new file mode 100644 index 00000000..10a996bf --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-logincontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                LoginController.php

                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-registercontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-registercontroller.html new file mode 100644 index 00000000..1946b4e8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-controllers-auth-registercontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  RegisterController.php

                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  RegisterController
                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-routes-auth.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-routes-auth.html new file mode 100644 index 00000000..af165301 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-api-app-routes-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    _auth.php

                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-controller.html new file mode 100644 index 00000000..6c55dbb9 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Controller.php

                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      Controller
                                                                                                                                                                                                                                                                                                                                                                      This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-dashboardcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-dashboardcontroller.html new file mode 100644 index 00000000..d3c49fc8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-dashboardcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        DashboardController.php

                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        DashboardController
                                                                                                                                                                                                                                                                                                                                                                        This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-logincontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-logincontroller.html new file mode 100644 index 00000000..31ea0b63 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-logincontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          LoginController.php

                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          LoginController
                                                                                                                                                                                                                                                                                                                                                                          This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-registercontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-registercontroller.html new file mode 100644 index 00000000..de3f3ce8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-auth-registercontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            RegisterController.php

                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            RegisterController
                                                                                                                                                                                                                                                                                                                                                                            This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-profile-accountcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-profile-accountcontroller.html new file mode 100644 index 00000000..cbe7968f --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-profile-accountcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              AccountController.php

                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              AccountController
                                                                                                                                                                                                                                                                                                                                                                              This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-profile-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-profile-controller.html new file mode 100644 index 00000000..566585ee --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-controllers-profile-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                Controller.php

                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-routes-auth.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-routes-auth.html new file mode 100644 index 00000000..761fce12 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-routes-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  _auth.php

                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-layout-header-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-layout-header-blade.html new file mode 100644 index 00000000..63c92e20 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-layout-header-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    header.blade.php

                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-layout-user-menu-context-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-layout-user-menu-context-blade.html new file mode 100644 index 00000000..d27c78aa --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-layout-user-menu-context-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      user-menu-context.blade.php

                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-shared-heading-small-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-shared-heading-small-blade.html new file mode 100644 index 00000000..e48a380e --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-shared-heading-small-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        heading-small.blade.php

                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-welcome-topnav-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-welcome-topnav-blade.html new file mode 100644 index 00000000..d9b9d84a --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-components-welcome-topnav-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          topnav.blade.php

                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-layouts-app-layout-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-layouts-app-layout-blade.html new file mode 100644 index 00000000..6f81806e --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-layouts-app-layout-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            app-layout.blade.php

                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-layouts-auth-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-layouts-auth-blade.html new file mode 100644 index 00000000..26f8b1ab --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-layouts-auth-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              auth.blade.php

                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-auth-login-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-auth-login-blade.html new file mode 100644 index 00000000..8d48f0e9 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-auth-login-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                login.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-auth-register-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-auth-register-blade.html new file mode 100644 index 00000000..a2c4d36f --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-auth-register-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  register.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-dashboard-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-dashboard-blade.html new file mode 100644 index 00000000..5a186e8a --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-dashboard-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    dashboard.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-profile-update-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-profile-update-blade.html new file mode 100644 index 00000000..a68a13cf --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-default-app-views-pages-profile-update-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      update.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-controller.html new file mode 100644 index 00000000..501ef1df --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        Controller
                                                                                                                                                                                                                                                                                                                                                                                                        This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-dashboardcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-dashboardcontroller.html new file mode 100644 index 00000000..0df3a757 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-dashboardcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          DashboardController.php

                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                          This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-logincontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-logincontroller.html new file mode 100644 index 00000000..217dffed --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-logincontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            LoginController.php

                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            LoginController
                                                                                                                                                                                                                                                                                                                                                                                                            This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-registercontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-registercontroller.html new file mode 100644 index 00000000..64ae4b38 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-auth-registercontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              RegisterController.php

                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                              This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-profile-accountcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-profile-accountcontroller.html new file mode 100644 index 00000000..2f2940cb --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-profile-accountcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                AccountController.php

                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-profile-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-profile-controller.html new file mode 100644 index 00000000..cc9bb6d1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-controllers-profile-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  Controller
                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-routes-auth.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-routes-auth.html new file mode 100644 index 00000000..b948cd92 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-react-app-routes-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    _auth.php

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-controller.html new file mode 100644 index 00000000..b25d646f --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      Controller
                                                                                                                                                                                                                                                                                                                                                                                                                      This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-dashboardcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-dashboardcontroller.html new file mode 100644 index 00000000..7de86306 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-dashboardcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        DashboardController.php

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                        This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-logincontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-logincontroller.html new file mode 100644 index 00000000..86f23626 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-logincontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          LoginController.php

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                          This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-registercontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-registercontroller.html new file mode 100644 index 00000000..ec0f36f9 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-auth-registercontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            RegisterController.php

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                            This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-profile-accountcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-profile-accountcontroller.html new file mode 100644 index 00000000..7e0ab9a8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-profile-accountcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              AccountController.php

                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                              This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-profile-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-profile-controller.html new file mode 100644 index 00000000..a34c819a --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-controllers-profile-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-routes-auth.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-routes-auth.html new file mode 100644 index 00000000..acb495fe --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-svelte-app-routes-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  _auth.php

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-controller.html new file mode 100644 index 00000000..52e99173 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                    This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-dashboardcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-dashboardcontroller.html new file mode 100644 index 00000000..13679ac5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-dashboardcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      DashboardController.php

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                                      This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-logincontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-logincontroller.html new file mode 100644 index 00000000..e807129a --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-logincontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        LoginController.php

                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                        This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-registercontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-registercontroller.html new file mode 100644 index 00000000..b8af3486 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-auth-registercontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          RegisterController.php

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                          This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-profile-accountcontroller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-profile-accountcontroller.html new file mode 100644 index 00000000..f8fe59a4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-profile-accountcontroller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            AccountController.php

                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                            This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-profile-controller.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-profile-controller.html new file mode 100644 index 00000000..b1dacaf3 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-controllers-profile-controller.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                              This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-routes-auth.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-routes-auth.html new file mode 100644 index 00000000..de44cb83 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-auth-vue-app-routes-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                _auth.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-bareui-app-views-index-view.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-bareui-app-views-index-view.html new file mode 100644 index 00000000..95506c2c --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-bareui-app-views-index-view.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  index.view.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-bareui-config-view.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-bareui-config-view.html new file mode 100644 index 00000000..458bb9a7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-bareui-config-view.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    view.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-blade-apps-views-index-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-blade-apps-views-index-blade.html new file mode 100644 index 00000000..c0c84a5f --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-blade-apps-views-index-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      index.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-inertia-bare-ui-app-views-inertia-view.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-inertia-bare-ui-app-views-inertia-view.html new file mode 100644 index 00000000..1c01d72b --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-inertia-bare-ui-app-views-inertia-view.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        _inertia.view.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-inertia-blade-app-views-inertia-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-inertia-blade-app-views-inertia-blade.html new file mode 100644 index 00000000..6d901749 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-inertia-blade-app-views-inertia-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          _inertia.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-leaf-index.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-leaf-index.html new file mode 100644 index 00000000..df05e840 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-leaf-index.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            index.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-mail-app-mailers-examplemailer.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-mail-app-mailers-examplemailer.html new file mode 100644 index 00000000..cb2383d0 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-mail-app-mailers-examplemailer.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              ExampleMailer.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ExampleMailer
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-mail-config-mail.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-mail-config-mail.html new file mode 100644 index 00000000..2bfc9dd1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-mail-config-mail.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                mail.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-react-app-views-inertia-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-react-app-views-inertia-blade.html new file mode 100644 index 00000000..9acdc145 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-react-app-views-inertia-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  _inertia.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-svelte-app-views-inertia-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-svelte-app-views-inertia-blade.html new file mode 100644 index 00000000..5a00f8eb --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-svelte-app-views-inertia-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _inertia.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-themes-vue-app-views-inertia-blade.html b/src/public/api/files/vendor-leafs-aloe-src-command-themes-vue-app-views-inertia-blade.html new file mode 100644 index 00000000..a11fc123 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-themes-vue-app-views-inertia-blade.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _inertia.blade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-viewbuildcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-viewbuildcommand.html new file mode 100644 index 00000000..1491df73 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-viewbuildcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ViewBuildCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ViewBuildCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-viewdevcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-viewdevcommand.html new file mode 100644 index 00000000..f02e5145 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-viewdevcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ViewDevCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ViewDevCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command-viewinstallcommand.html b/src/public/api/files/vendor-leafs-aloe-src-command-viewinstallcommand.html new file mode 100644 index 00000000..ae063c17 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command-viewinstallcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ViewInstallCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ViewInstallCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-command.html b/src/public/api/files/vendor-leafs-aloe-src-command.html new file mode 100644 index 00000000..f537f78b --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-command.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Command.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Command
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-console.html b/src/public/api/files/vendor-leafs-aloe-src-console.html new file mode 100644 index 00000000..ad68d289 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-console.html @@ -0,0 +1,344 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Console.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Console
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Aloe CLI +----- +Smart and interactive console/generator +for your leaf MVC applications
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-core.html b/src/public/api/files/vendor-leafs-aloe-src-core.html new file mode 100644 index 00000000..d34ee736 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-core.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Core.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-helpers.html b/src/public/api/files/vendor-leafs-aloe-src-helpers.html new file mode 100644 index 00000000..2c975074 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-helpers.html @@ -0,0 +1,580 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    helpers.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asQuestion() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI question styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asComment() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI comment styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asInfo() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI info styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asError() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI error styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asLink() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Output text as a link
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asQuestion() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI question styles to text

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + asQuestion(mixed $data) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $data + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asComment() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI comment styles to text

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + asComment(mixed $data) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $data + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asInfo() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI info styles to text

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + asInfo(mixed $data) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $data + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + asError() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Apply CLI error styles to text

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + asError(mixed $data) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $data + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Output text as a link

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + asLink(mixed $link, mixed $display) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $link + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $display + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-installer.html b/src/public/api/files/vendor-leafs-aloe-src-installer.html new file mode 100644 index 00000000..2c9bde87 --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-installer.html @@ -0,0 +1,344 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Installer.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Installer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Aloe Installer +----------------- +Quickly install directories and files in +a leaf workspace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-aloe-src-package.html b/src/public/api/files/vendor-leafs-aloe-src-package.html new file mode 100644 index 00000000..52fab6fa --- /dev/null +++ b/src/public/api/files/vendor-leafs-aloe-src-package.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Package.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Package
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Package +---- +Meta info on aloe cli
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-anchor-src-anchor.html b/src/public/api/files/vendor-leafs-anchor-src-anchor.html new file mode 100644 index 00000000..5033406b --- /dev/null +++ b/src/public/api/files/vendor-leafs-anchor-src-anchor.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Anchor.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Anchor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf Security Module +--------------------------------- +Simple to use security based utility methods
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-anchor-tests-anchor-test.html b/src/public/api/files/vendor-leafs-anchor-tests-anchor-test.html new file mode 100644 index 00000000..a709d0e7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-anchor-tests-anchor-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            anchor.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-src-auth-config.html b/src/public/api/files/vendor-leafs-auth-src-auth-config.html new file mode 100644 index 00000000..22c72326 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-src-auth-config.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Config.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Config for Leaf Auth +-------- +Set/Get config to match your app
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-src-auth-model.html b/src/public/api/files/vendor-leafs-auth-src-auth-model.html new file mode 100644 index 00000000..44fa0dd4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-src-auth-model.html @@ -0,0 +1,344 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Model.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Model
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Auth User Model +---- +Tiny model class for the user. Provides bare minimum +functionality for user and user data manipulation.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-src-auth-user.html b/src/public/api/files/vendor-leafs-auth-src-auth-user.html new file mode 100644 index 00000000..b2ac9018 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-src-auth-user.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  User.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  User
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Auth User +---- +Class representing a user
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-src-auth-usesroles.html b/src/public/api/files/vendor-leafs-auth-src-auth-usesroles.html new file mode 100644 index 00000000..11d54549 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-src-auth-usesroles.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UsesRoles.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Traits + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UsesRoles
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Functionality for user permissions +---- +Addition to user class
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-src-auth.html b/src/public/api/files/vendor-leafs-auth-src-auth.html new file mode 100644 index 00000000..6ba536ca --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-src-auth.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Auth.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Auth
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf Simple Auth +------------------------- +Simple, lightweight authentication.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-src-functions.html b/src/public/api/files/vendor-leafs-auth-src-functions.html new file mode 100644 index 00000000..2d0a77cf --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-src-functions.html @@ -0,0 +1,391 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + auth() + +  : Auth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return the leaf auth object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + auth() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return the leaf auth object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + auth() : Auth + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Auth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-db-test.html b/src/public/api/files/vendor-leafs-auth-tests-db-test.html new file mode 100644 index 00000000..0fae07c3 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-db-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          db.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-login-test.html b/src/public/api/files/vendor-leafs-auth-tests-login-test.html new file mode 100644 index 00000000..e02e3b61 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-login-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            login.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-pest.html b/src/public/api/files/vendor-leafs-auth-tests-pest.html new file mode 100644 index 00000000..1d3ffa0d --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-pest.html @@ -0,0 +1,552 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pest.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + getDatabaseConnection() + +  : array<string|int, mixed> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + dbInstance() + +  : Db +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + authInstance() + +  : Auth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + deleteUser() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + createTableForUsers() + +  : void +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + getDatabaseConnection() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + getDatabaseConnection() : array<string|int, mixed> + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + array<string|int, mixed> +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + dbInstance() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + dbInstance() : Db + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Db +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + authInstance() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + authInstance() : Auth + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Auth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + deleteUser() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + deleteUser(string $username[, mixed $table = 'users' ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + $username + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + $table + : mixed + = 'users'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + createTableForUsers() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + createTableForUsers([mixed $table = 'users' ]) : void + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + $table + : mixed + = 'users'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-register-test.html b/src/public/api/files/vendor-leafs-auth-tests-register-test.html new file mode 100644 index 00000000..fa10bb6f --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-register-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                register.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-session-test.html b/src/public/api/files/vendor-leafs-auth-tests-session-test.html new file mode 100644 index 00000000..c4a1f749 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-session-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  session.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-table-test.html b/src/public/api/files/vendor-leafs-auth-tests-table-test.html new file mode 100644 index 00000000..0098aca7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-table-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    table.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-update-test.html b/src/public/api/files/vendor-leafs-auth-tests-update-test.html new file mode 100644 index 00000000..16cfcd6f --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-update-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      update.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-auth-tests-user-test.html b/src/public/api/files/vendor-leafs-auth-tests-user-test.html new file mode 100644 index 00000000..4b2e37d9 --- /dev/null +++ b/src/public/api/files/vendor-leafs-auth-tests-user-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        user.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-bareui-src-bareui.html b/src/public/api/files/vendor-leafs-bareui-src-bareui.html new file mode 100644 index 00000000..36cbe28d --- /dev/null +++ b/src/public/api/files/vendor-leafs-bareui-src-bareui.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BareUI.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          BareUI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Bare UI +------------ +Leaf templating language focused on speed, speed and more speed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-bareui-src-scripts.html b/src/public/api/files/vendor-leafs-bareui-src-scripts.html new file mode 100644 index 00000000..eec73b38 --- /dev/null +++ b/src/public/api/files/vendor-leafs-bareui-src-scripts.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            scripts.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-blade-src-blade.html b/src/public/api/files/vendor-leafs-blade-src-blade.html new file mode 100644 index 00000000..7b160cc7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-blade-src-blade.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blade
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-cors-src-cors.html b/src/public/api/files/vendor-leafs-cors-src-cors.html new file mode 100644 index 00000000..296182c1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-cors-src-cors.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cors.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Cors
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf CORS Module +------- +CORS simplified. Enable CORS with various options.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-csrf-src-csrf.html b/src/public/api/files/vendor-leafs-csrf-src-csrf.html new file mode 100644 index 00000000..894d2d52 --- /dev/null +++ b/src/public/api/files/vendor-leafs-csrf-src-csrf.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CSRF.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CSRF
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf CSRF Module +---------------- +Add CSRF protection to your app
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-csrf-src-functions.html b/src/public/api/files/vendor-leafs-csrf-src-functions.html new file mode 100644 index 00000000..b67c4185 --- /dev/null +++ b/src/public/api/files/vendor-leafs-csrf-src-functions.html @@ -0,0 +1,391 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + csrf() + +  : CSRF +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return the leaf csrf object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + csrf() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return the leaf csrf object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + csrf() : CSRF + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + CSRF +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-date-alchemy-config.html b/src/public/api/files/vendor-leafs-date-alchemy-config.html new file mode 100644 index 00000000..99669929 --- /dev/null +++ b/src/public/api/files/vendor-leafs-date-alchemy-config.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      alchemy.config.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-date-src-date.html b/src/public/api/files/vendor-leafs-date-src-date.html new file mode 100644 index 00000000..20d4ef3e --- /dev/null +++ b/src/public/api/files/vendor-leafs-date-src-date.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Date.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Date
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Date +---------------------- +Quick date/time manipulation with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-date-src-functions.html b/src/public/api/files/vendor-leafs-date-src-functions.html new file mode 100644 index 00000000..7ea6004a --- /dev/null +++ b/src/public/api/files/vendor-leafs-date-src-functions.html @@ -0,0 +1,408 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + tick() + +  : Date +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the leaf date instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + tick() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the leaf date instance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + tick([string|null $userDate = null ][, string|null $userTimeZone = null ]) : Date + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $userDate + : string|null + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $userTimeZone + : string|null + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Date +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-date-tests-app-test.html b/src/public/api/files/vendor-leafs-date-tests-app-test.html new file mode 100644 index 00000000..d52b5f22 --- /dev/null +++ b/src/public/api/files/vendor-leafs-date-tests-app-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            app.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-src-db-builder.html b/src/public/api/files/vendor-leafs-db-src-db-builder.html new file mode 100644 index 00000000..7d746119 --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-src-db-builder.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Builder.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Builder
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf Db Query Builder +------------------------- +Functionality of leaf query builder.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-src-db-core.html b/src/public/api/files/vendor-leafs-db-src-db-core.html new file mode 100644 index 00000000..f0218263 --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-src-db-core.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Core.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf Db [Core] +------------------------- +Core functionality of leaf db.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-src-db-utils.html b/src/public/api/files/vendor-leafs-db-src-db-utils.html new file mode 100644 index 00000000..d682601c --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-src-db-utils.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Utils.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Utils
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf Db Utils +------------------------- +Core utilities for leaf db.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-src-db.html b/src/public/api/files/vendor-leafs-db-src-db.html new file mode 100644 index 00000000..1a176cdc --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-src-db.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Db.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Db
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf Db +----- +Simple database interactions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-src-functions.html b/src/public/api/files/vendor-leafs-db-src-functions.html new file mode 100644 index 00000000..01974120 --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-src-functions.html @@ -0,0 +1,403 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + db() + +  : Db +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return the database object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + db() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return the database object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + db([string|null $connection = null ]) : Db + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $connection + : string|null + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The connection to return db with

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Db +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-tests-mysql-connect-test.html b/src/public/api/files/vendor-leafs-db-tests-mysql-connect-test.html new file mode 100644 index 00000000..3af72f70 --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-tests-mysql-connect-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        connect.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-tests-mysql-leaf-builder-test.html b/src/public/api/files/vendor-leafs-db-tests-mysql-leaf-builder-test.html new file mode 100644 index 00000000..c0e7f4a6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-tests-mysql-leaf-builder-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          leaf-builder.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-db-tests-mysql-sample-db.html b/src/public/api/files/vendor-leafs-db-tests-mysql-sample-db.html new file mode 100644 index 00000000..1a26add3 --- /dev/null +++ b/src/public/api/files/vendor-leafs-db-tests-mysql-sample-db.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sample-db.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-general.html b/src/public/api/files/vendor-leafs-exception-src-exception-general.html new file mode 100644 index 00000000..d2a11d9b --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-general.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stop Exception
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-callbackhandler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-callbackhandler.html new file mode 100644 index 00000000..4c1c521f --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-callbackhandler.html @@ -0,0 +1,360 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CallbackHandler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CallbackHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wrapper for Closures passed as handlers. Can be used +directly, or will be instantiated automagically by Whoops\Run +if passed to Run::pushHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-customhandler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-customhandler.html new file mode 100644 index 00000000..165b137c --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-customhandler.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CustomHandler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CustomHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Abstract implementation of a Handler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-handler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-handler.html new file mode 100644 index 00000000..c1ac0f75 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-handler.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Handler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Abstract implementation of a Handler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-handlerinterface.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-handlerinterface.html new file mode 100644 index 00000000..3ae24469 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-handlerinterface.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HandlerInterface.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HandlerInterface
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-jsonresponsehandler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-jsonresponsehandler.html new file mode 100644 index 00000000..749a50b5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-jsonresponsehandler.html @@ -0,0 +1,360 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JsonResponseHandler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        JsonResponseHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Catches an exception and converts it to a JSON +response. Additionally can also return exception +frames for consumption by an API.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-plaintexthandler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-plaintexthandler.html new file mode 100644 index 00000000..917560c1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-plaintexthandler.html @@ -0,0 +1,370 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PlainTextHandler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Filipe Dobreira http://github.com/filp +Plaintext handler for command line and logs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pierre-Yves Landuré https://howto.biapy.com/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PlainTextHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Handler outputing plaintext error messages. Can be used +directly, or will be instantiated automagically by Whoops\Run +if passed to Run::pushHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-prettypagehandler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-prettypagehandler.html new file mode 100644 index 00000000..a045ba0c --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-prettypagehandler.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PrettyPageHandler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PrettyPageHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Abstract implementation of a Handler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-handler-xmlresponsehandler.html b/src/public/api/files/vendor-leafs-exception-src-exception-handler-xmlresponsehandler.html new file mode 100644 index 00000000..11beba08 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-handler-xmlresponsehandler.html @@ -0,0 +1,360 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              XmlResponseHandler.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              XmlResponseHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Catches an exception and converts it to an XML +response. Additionally can also return exception +frames for consumption by an API.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-env-details-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-env-details-html.html new file mode 100644 index 00000000..8e4e8d16 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-env-details-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                env_details.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frame-code-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frame-code-html.html new file mode 100644 index 00000000..48d9dbed --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frame-code-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  frame_code.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frame-list-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frame-list-html.html new file mode 100644 index 00000000..305475e4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frame-list-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    frame_list.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frames-container-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frames-container-html.html new file mode 100644 index 00000000..7c9dd504 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frames-container-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      frames_container.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frames-description-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frames-description-html.html new file mode 100644 index 00000000..8c4a36d5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-frames-description-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        frames_description.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-header-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-header-html.html new file mode 100644 index 00000000..87fcb1e5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-header-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          header.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-header-outer-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-header-outer-html.html new file mode 100644 index 00000000..fdadeabc --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-header-outer-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            header_outer.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-layout-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-layout-html.html new file mode 100644 index 00000000..cf044d2e --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-layout-html.html @@ -0,0 +1,334 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              layout.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Layout template file for Whoops's pretty error output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-details-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-details-html.html new file mode 100644 index 00000000..c230e3a6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-details-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                panel_details.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-details-outer-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-details-outer-html.html new file mode 100644 index 00000000..3845a07d --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-details-outer-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  panel_details_outer.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-left-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-left-html.html new file mode 100644 index 00000000..fa524896 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-left-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    panel_left.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-left-outer-html.html b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-left-outer-html.html new file mode 100644 index 00000000..c082b718 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-resources-views-panel-left-outer-html.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      panel_left_outer.html.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-run.html b/src/public/api/files/vendor-leafs-exception-src-exception-run.html new file mode 100644 index 00000000..531f125e --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-run.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Run.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-runinterface.html b/src/public/api/files/vendor-leafs-exception-src-exception-runinterface.html new file mode 100644 index 00000000..76f0fe08 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-runinterface.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RunInterface.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RunInterface
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-util-htmldumperoutput.html b/src/public/api/files/vendor-leafs-exception-src-exception-util-htmldumperoutput.html new file mode 100644 index 00000000..f09c7253 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-util-htmldumperoutput.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HtmlDumperOutput.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HtmlDumperOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Used as output callable for Symfony\Component\VarDumper\Dumper\HtmlDumper::dump()
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-util-misc.html b/src/public/api/files/vendor-leafs-exception-src-exception-util-misc.html new file mode 100644 index 00000000..e68004b6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-util-misc.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Misc.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Misc
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-util-systemfacade.html b/src/public/api/files/vendor-leafs-exception-src-exception-util-systemfacade.html new file mode 100644 index 00000000..22176862 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-util-systemfacade.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SystemFacade.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SystemFacade
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exception-util-templatehelper.html b/src/public/api/files/vendor-leafs-exception-src-exception-util-templatehelper.html new file mode 100644 index 00000000..38a37518 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exception-util-templatehelper.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TemplateHelper.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  TemplateHelper
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exposes useful tools for working with/in templates
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exceptions-errorexception.html b/src/public/api/files/vendor-leafs-exception-src-exceptions-errorexception.html new file mode 100644 index 00000000..3e975ea2 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exceptions-errorexception.html @@ -0,0 +1,359 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ErrorException.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ErrorException
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Wraps ErrorException; mostly used for typing (at least now) +to easily cleanup the stack trace of redundant info.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exceptions-formatter.html b/src/public/api/files/vendor-leafs-exception-src-exceptions-formatter.html new file mode 100644 index 00000000..1f116f82 --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exceptions-formatter.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Formatter.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Formatter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exceptions-frame.html b/src/public/api/files/vendor-leafs-exception-src-exceptions-frame.html new file mode 100644 index 00000000..4e11712c --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exceptions-frame.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Frame.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Frame
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exceptions-framecollection.html b/src/public/api/files/vendor-leafs-exception-src-exceptions-framecollection.html new file mode 100644 index 00000000..d46e430a --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exceptions-framecollection.html @@ -0,0 +1,359 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FrameCollection.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FrameCollection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Exposes a fluent interface for dealing with an ordered list +of stack-trace frames.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-exception-src-exceptions-inspector.html b/src/public/api/files/vendor-leafs-exception-src-exceptions-inspector.html new file mode 100644 index 00000000..9fb8622e --- /dev/null +++ b/src/public/api/files/vendor-leafs-exception-src-exceptions-inspector.html @@ -0,0 +1,358 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Inspector.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whoops - php errors for cool kids

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + author +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Filipe Dobreira http://github.com/filp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Inspector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fetch-src-fetch.html b/src/public/api/files/vendor-leafs-fetch-src-fetch.html new file mode 100644 index 00000000..223f5765 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fetch-src-fetch.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fetch.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fetch
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf Fetch +--------- +Plain simple PHP http client.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fetch-src-functions.html b/src/public/api/files/vendor-leafs-fetch-src-functions.html new file mode 100644 index 00000000..ca048657 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fetch-src-functions.html @@ -0,0 +1,414 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + fetch() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortcut method for making network requests.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + fetch() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Shortcut method for making network requests.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + fetch([array<string|int, mixed>|string $data = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + $data + : array<string|int, mixed>|string + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The url or request to hit.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Tags + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + throws +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Exception + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-src-form.html b/src/public/api/files/vendor-leafs-form-src-form.html new file mode 100644 index 00000000..7b81c201 --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-src-form.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Form.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Form
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf Form +---- +Leaf's form validation library
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-src-functions.html b/src/public/api/files/vendor-leafs-form-src-functions.html new file mode 100644 index 00000000..f71c89cc --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-src-functions.html @@ -0,0 +1,391 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + form() + +  : Form +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return leaf form object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + form() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return leaf form object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + form() : Form + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Form +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-tests-array-test.html b/src/public/api/files/vendor-leafs-form-tests-array-test.html new file mode 100644 index 00000000..e2a19c4a --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-tests-array-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      array.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-tests-message-test.html b/src/public/api/files/vendor-leafs-form-tests-message-test.html new file mode 100644 index 00000000..2f77733c --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-tests-message-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        message.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-tests-pest.html b/src/public/api/files/vendor-leafs-form-tests-pest.html new file mode 100644 index 00000000..a167afd1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-tests-pest.html @@ -0,0 +1,393 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Pest.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cache
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + validator() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + validator() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + validator() : mixed + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-tests-rules-test.html b/src/public/api/files/vendor-leafs-form-tests-rules-test.html new file mode 100644 index 00000000..dcc2cee8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-tests-rules-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rules.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-form-tests-validation-test.html b/src/public/api/files/vendor-leafs-form-tests-validation-test.html new file mode 100644 index 00000000..ff04f18d --- /dev/null +++ b/src/public/api/files/vendor-leafs-form-tests-validation-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              validation.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-src-fs-directory.html b/src/public/api/files/vendor-leafs-fs-src-fs-directory.html new file mode 100644 index 00000000..1e72540d --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-src-fs-directory.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Directory.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Directory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Directory operations +---- +This class provides a set of methods for local directory operations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-src-fs-file.html b/src/public/api/files/vendor-leafs-fs-src-fs-file.html new file mode 100644 index 00000000..e3bd47b4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-src-fs-file.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  File.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  File
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  File operations +---- +This class provides a set of methods for local file operations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-src-fs-path.html b/src/public/api/files/vendor-leafs-fs-src-fs-path.html new file mode 100644 index 00000000..e83f1e7b --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-src-fs-path.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Path.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-src-fs-storage.html b/src/public/api/files/vendor-leafs-fs-src-fs-storage.html new file mode 100644 index 00000000..26b17a52 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-src-fs-storage.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Storage.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Storage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-src-functions.html b/src/public/api/files/vendor-leafs-fs-src-functions.html new file mode 100644 index 00000000..d9644092 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-src-functions.html @@ -0,0 +1,439 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + path() + +  : Path +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return the Leaf instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + storage() + +  : Storage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return the Leaf instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + path() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return the Leaf instance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + path(string $path) : Path + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Path +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + storage() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return the Leaf instance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + storage() : Storage + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Storage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-tests-file-test.html b/src/public/api/files/vendor-leafs-fs-tests-file-test.html new file mode 100644 index 00000000..d5ea8c4b --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-tests-file-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          file.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-tests-folder-test.html b/src/public/api/files/vendor-leafs-fs-tests-folder-test.html new file mode 100644 index 00000000..96501497 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-tests-folder-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            folder.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-tests-path-test.html b/src/public/api/files/vendor-leafs-fs-tests-path-test.html new file mode 100644 index 00000000..4a4609c1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-tests-path-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              path.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-fs-tests-pest.html b/src/public/api/files/vendor-leafs-fs-tests-pest.html new file mode 100644 index 00000000..f7fa49d2 --- /dev/null +++ b/src/public/api/files/vendor-leafs-fs-tests-pest.html @@ -0,0 +1,391 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pest.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Constants + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + TEST_PATH + +  = __DIR__ . \DIRECTORY_SEPARATOR . "test" +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Constants + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + TEST_PATH + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + public + mixed + TEST_PATH + = __DIR__ . \DIRECTORY_SEPARATOR . "test" + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-http-src-cache.html b/src/public/api/files/vendor-leafs-http-src-cache.html new file mode 100644 index 00000000..ce64dc8e --- /dev/null +++ b/src/public/api/files/vendor-leafs-http-src-cache.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cache.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cache
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf Http Caching +------------------------------------ +HTTP Caching made simple with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-http-src-functions.html b/src/public/api/files/vendor-leafs-http-src-functions.html new file mode 100644 index 00000000..e8ff6a26 --- /dev/null +++ b/src/public/api/files/vendor-leafs-http-src-functions.html @@ -0,0 +1,429 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + request() + +  : Request +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return request or request data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + response() + +  : Response +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return response or set response data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + request() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return request or request data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + request() : Request + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Request +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + response() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return response or set response data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + response() : Response + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Response +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-http-src-headers.html b/src/public/api/files/vendor-leafs-http-src-headers.html new file mode 100644 index 00000000..c1a46dbd --- /dev/null +++ b/src/public/api/files/vendor-leafs-http-src-headers.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Headers.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Headers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HTTP Headers +--------------------- +Response header management made simple with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-http-src-request.html b/src/public/api/files/vendor-leafs-http-src-request.html new file mode 100644 index 00000000..91fc7ccf --- /dev/null +++ b/src/public/api/files/vendor-leafs-http-src-request.html @@ -0,0 +1,342 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Request.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Request
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf HTTP Request +--------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-http-src-response.html b/src/public/api/files/vendor-leafs-http-src-response.html new file mode 100644 index 00000000..679d3a3a --- /dev/null +++ b/src/public/api/files/vendor-leafs-http-src-response.html @@ -0,0 +1,345 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Response.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Response
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf HTTP Response +----------- +This is a simple abstraction over top an HTTP response. This +provides methods to set the HTTP status, the HTTP headers, +and the HTTP body.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-http-src-status.html b/src/public/api/files/vendor-leafs-http-src-status.html new file mode 100644 index 00000000..a8fc158a --- /dev/null +++ b/src/public/api/files/vendor-leafs-http-src-status.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Status.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Status
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf Status Code Helper
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-inertia-src-functions.html b/src/public/api/files/vendor-leafs-inertia-src-functions.html new file mode 100644 index 00000000..dd8b343d --- /dev/null +++ b/src/public/api/files/vendor-leafs-inertia-src-functions.html @@ -0,0 +1,408 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + inertia() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Render Inertia page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + inertia() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Render Inertia page

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + inertia(string $component[, array<string|int, mixed> $props = [] ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + $component + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The component to render.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + $props + : array<string|int, mixed> + = []
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The props to pass to the component.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-bundledetector.html b/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-bundledetector.html new file mode 100644 index 00000000..f3ff12e6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-bundledetector.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BundleDetector.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BundleDetector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-gateway.html b/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-gateway.html new file mode 100644 index 00000000..80acc03d --- /dev/null +++ b/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-gateway.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Gateway.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Gateway
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-response.html b/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-response.html new file mode 100644 index 00000000..4f7b4088 --- /dev/null +++ b/src/public/api/files/vendor-leafs-inertia-src-inertia-ssr-response.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Response.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Response
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-inertia-src-inertia.html b/src/public/api/files/vendor-leafs-inertia-src-inertia.html new file mode 100644 index 00000000..f6a06209 --- /dev/null +++ b/src/public/api/files/vendor-leafs-inertia-src-inertia.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inertia.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inertia
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inertia Adapter for Leaf +---- +This adapter allows you to use InertiaJS with Leaf.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-leaf-src-app.html b/src/public/api/files/vendor-leafs-leaf-src-app.html new file mode 100644 index 00000000..4ec9d238 --- /dev/null +++ b/src/public/api/files/vendor-leafs-leaf-src-app.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        App.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        App
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP Framework +-------- +The easiest way to build simple but powerful apps and APIs quickly.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-leaf-src-config.html b/src/public/api/files/vendor-leafs-leaf-src-config.html new file mode 100644 index 00000000..0b02c0ac --- /dev/null +++ b/src/public/api/files/vendor-leafs-leaf-src-config.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Config.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf Config +------------- +Configure your leaf app
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-leaf-src-functions.html b/src/public/api/files/vendor-leafs-leaf-src-functions.html new file mode 100644 index 00000000..63a052f5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-leaf-src-functions.html @@ -0,0 +1,442 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + app() + +  : App +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return the Leaf instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + _env() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Gets the value of an environment variable.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + app() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return the Leaf instance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + app() : App + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + App +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + _env() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Gets the value of an environment variable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + _env(string $key[, mixed $default = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + $key + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + $default + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-leaf-src-router.html b/src/public/api/files/vendor-leafs-leaf-src-router.html new file mode 100644 index 00000000..eab4e253 --- /dev/null +++ b/src/public/api/files/vendor-leafs-leaf-src-router.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Router.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Router
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf Router +--------------- +Super simple and powerful routing with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-logger-src-log.html b/src/public/api/files/vendor-leafs-logger-src-log.html new file mode 100644 index 00000000..24bee505 --- /dev/null +++ b/src/public/api/files/vendor-leafs-logger-src-log.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Log.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Log
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Log
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-logger-src-logwriter.html b/src/public/api/files/vendor-leafs-logger-src-logwriter.html new file mode 100644 index 00000000..be88bdd4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-logger-src-logwriter.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LogWriter.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LogWriter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log Writer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-logger-src-scripts.html b/src/public/api/files/vendor-leafs-logger-src-scripts.html new file mode 100644 index 00000000..f2cc943d --- /dev/null +++ b/src/public/api/files/vendor-leafs-logger-src-scripts.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    scripts.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mail-src-functions.html b/src/public/api/files/vendor-leafs-mail-src-functions.html new file mode 100644 index 00000000..67c4f4d4 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mail-src-functions.html @@ -0,0 +1,403 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + mailer() + +  : Mail +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Create and send an email
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + mailer() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Create and send an email

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + mailer([array<string|int, mixed> $mail = null ]) : Mail + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note that \Leaf\Mail\Mailer should be configured

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $mail + : array<string|int, mixed> + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Mail +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mail-src-mail-mailer.html b/src/public/api/files/vendor-leafs-mail-src-mail-mailer.html new file mode 100644 index 00000000..3204a393 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mail-src-mail-mailer.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mailer.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mailer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mail-src-mail.html b/src/public/api/files/vendor-leafs-mail-src-mail.html new file mode 100644 index 00000000..d2d4e446 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mail-src-mail.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mail.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mail
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-controller.html b/src/public/api/files/vendor-leafs-mvc-core-src-controller.html new file mode 100644 index 00000000..1b024ce7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-controller.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Controller.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf base controller +----------------- +Base controller for Leaf PHP Framework
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-core.html b/src/public/api/files/vendor-leafs-mvc-core-src-core.html new file mode 100644 index 00000000..5f418154 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-core.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Core.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf MVC Core +---------- +Base class for configuring core methods
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-database.html b/src/public/api/files/vendor-leafs-mvc-core-src-database.html new file mode 100644 index 00000000..1a15e337 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-database.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Database.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Database
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf Database Config +--- +This class is used to configure the database connection for models.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-globals-bootstrap.html b/src/public/api/files/vendor-leafs-mvc-core-src-globals-bootstrap.html new file mode 100644 index 00000000..a0364c74 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-globals-bootstrap.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bootstrap.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-globals-config.html b/src/public/api/files/vendor-leafs-mvc-core-src-globals-config.html new file mode 100644 index 00000000..c41f06bf --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-globals-config.html @@ -0,0 +1,712 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    config.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + AppConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get app configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + PathsConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get paths configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + AuthConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get an auth configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + ViewConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get view configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + DatabaseConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get database configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + CorsConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get an auth configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + MailConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get mail configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + MvcConfig() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get an application configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + AppConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get app configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + AppConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + PathsConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get paths configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + PathsConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + AuthConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get an auth configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + AuthConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + ViewConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get view configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + ViewConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + DatabaseConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get database configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + DatabaseConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + CorsConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get an auth configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + CorsConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + MailConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get mail configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + MailConfig([mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + MvcConfig() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Get an application configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + MvcConfig(mixed $appConfig[, mixed $setting = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $appConfig + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + $setting + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-globals-functions.html b/src/public/api/files/vendor-leafs-mvc-core-src-globals-functions.html new file mode 100644 index 00000000..624a5f4d --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-globals-functions.html @@ -0,0 +1,646 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + assets() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Import an asset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + view() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return a view
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + render() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Render a view
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + redirect() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Redirect to a given url
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + route() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Get a route by name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + vite() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Get a route by name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + assets() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Import an asset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + assets([string $assets = '' ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $assets + : string + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The asset to import

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + view() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return a view

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + view(string $view[, array<string|int, mixed>|object $data = [] ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $view + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The view to render

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $data + : array<string|int, mixed>|object + = []
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The data to pass to the view

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + render() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Render a view

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + render(string $view[, array<string|int, mixed>|object $data = [] ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $view + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The view to render

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $data + : array<string|int, mixed>|object + = []
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The data to pass to the view

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + redirect() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Redirect to a given url

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + redirect(string $url) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $url + : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The url to redirect to

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + route() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Get a route by name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + route() : mixed + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + vite() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Get a route by name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + vite(mixed $files[, string $baseDir = 'app/views' ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $files + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $baseDir + : string + = 'app/views'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The base directory to look for the file(s)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-globals-paths.html b/src/public/api/files/vendor-leafs-mvc-core-src-globals-paths.html new file mode 100644 index 00000000..18e92091 --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-globals-paths.html @@ -0,0 +1,1104 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        paths.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + AppPaths() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Get all app paths
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ConfigPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Config directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + CommandsPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Commands directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ControllersPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Controllers directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + DatabasePath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Database path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + FactoriesPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Factories directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + HelpersPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Helpers directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + LibPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Helpers directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + MigrationsPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Migrations directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ModelsPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Models directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + PublicPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Public directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + RoutesPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Routes directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + SeedsPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Seeds directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + StoragePath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Storage directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ViewsPath() + +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Views directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + AppPaths() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Get all app paths

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + AppPaths([mixed $path = null ][, bool $slash = false ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $slash + : bool + = false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ConfigPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Config directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + ConfigPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + CommandsPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Commands directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + CommandsPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ControllersPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Controllers directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + ControllersPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + DatabasePath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Database path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + DatabasePath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + FactoriesPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Factories directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + FactoriesPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + HelpersPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Helpers directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + HelpersPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + LibPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Helpers directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + LibPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + MigrationsPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Migrations directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + MigrationsPath([mixed $path = '' ][, bool $slash = true ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $slash + : bool + = true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ModelsPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Models directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + ModelsPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + PublicPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Public directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + PublicPath([mixed $path = '' ][, mixed $slash = true ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $slash + : mixed + = true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + RoutesPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Routes directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + RoutesPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + SeedsPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Seeds directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + SeedsPath([mixed $path = '' ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + StoragePath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Storage directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + StoragePath([mixed $path = '' ][, bool $slash = false ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $slash + : bool + = false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + ViewsPath() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Views directory path

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + ViewsPath([mixed $path = '' ][, bool $slash = true ]) : string + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $path + : mixed + = ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + $slash + : bool + = true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-middleware.html b/src/public/api/files/vendor-leafs-mvc-core-src-middleware.html new file mode 100644 index 00000000..7e59b13c --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-middleware.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Middleware.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Middleware
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Middleware
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-model.html b/src/public/api/files/vendor-leafs-mvc-core-src-model.html new file mode 100644 index 00000000..3d5c354c --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-model.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Model.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Model
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-mvc-core-src-schema.html b/src/public/api/files/vendor-leafs-mvc-core-src-schema.html new file mode 100644 index 00000000..1333ac1f --- /dev/null +++ b/src/public/api/files/vendor-leafs-mvc-core-src-schema.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schema.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schema
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf DB Schema [WIP] +--- +One file to rule them all.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-password-src-password.html b/src/public/api/files/vendor-leafs-password-src-password.html new file mode 100644 index 00000000..45dadf8b --- /dev/null +++ b/src/public/api/files/vendor-leafs-password-src-password.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Password.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Password
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf Password Helper +--------------------------------------------- +Work easier and faster with passwords
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-functions.html b/src/public/api/files/vendor-leafs-queue-src-functions.html new file mode 100644 index 00000000..f7001039 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-functions.html @@ -0,0 +1,437 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + queue() + +  : Queue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return queue object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + dispatch() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dispatch a job, batch or a group of jobs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + queue() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return queue object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + queue() : Queue + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Queue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + dispatch() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dispatch a job, batch or a group of jobs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + dispatch(array<string|int, mixed>|Dispatchable|string $dispatchable) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + $dispatchable + : array<string|int, mixed>|Dispatchable|string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The job, batch or group of jobs to dispatch

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-job.html b/src/public/api/files/vendor-leafs-queue-src-job.html new file mode 100644 index 00000000..b71d9370 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-job.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Job.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Job
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-adapters-adapter.html b/src/public/api/files/vendor-leafs-queue-src-queue-adapters-adapter.html new file mode 100644 index 00000000..cf286276 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-adapters-adapter.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Adapter.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Adapter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Database adapter +----- +Db adapter for the worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-adapters-database.html b/src/public/api/files/vendor-leafs-queue-src-queue-adapters-database.html new file mode 100644 index 00000000..c8359c4e --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-adapters-database.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Database.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Database
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Database adapter +----- +Db adapter for the worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-adapters-redis.html b/src/public/api/files/vendor-leafs-queue-src-queue-adapters-redis.html new file mode 100644 index 00000000..ea921497 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-adapters-redis.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Redis.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Redis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Redis adapter +----- +Redis adapter for the worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-commands-deletejobcommand.html b/src/public/api/files/vendor-leafs-queue-src-queue-commands-deletejobcommand.html new file mode 100644 index 00000000..55f7d9e8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-commands-deletejobcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DeleteJobCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DeleteJobCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-commands-generatejobcommand.html b/src/public/api/files/vendor-leafs-queue-src-queue-commands-generatejobcommand.html new file mode 100644 index 00000000..aeb296d6 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-commands-generatejobcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateJobCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GenerateJobCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-commands-queueworkcommand.html b/src/public/api/files/vendor-leafs-queue-src-queue-commands-queueworkcommand.html new file mode 100644 index 00000000..30a2c4a5 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-commands-queueworkcommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                QueueWorkCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                QueueWorkCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-config.html b/src/public/api/files/vendor-leafs-queue-src-queue-config.html new file mode 100644 index 00000000..4c55b17f --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-config.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  COnfig for queue and worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue-dispatchable.html b/src/public/api/files/vendor-leafs-queue-src-queue-dispatchable.html new file mode 100644 index 00000000..13aa9438 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue-dispatchable.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dispatchable.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Dispatchable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Contract for dispatchable classes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-queue.html b/src/public/api/files/vendor-leafs-queue-src-queue.html new file mode 100644 index 00000000..b877bbb1 --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-queue.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Queue.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Queue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-queue-src-worker.html b/src/public/api/files/vendor-leafs-queue-src-worker.html new file mode 100644 index 00000000..a0a612bc --- /dev/null +++ b/src/public/api/files/vendor-leafs-queue-src-worker.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Worker.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-redis-src-commands-servecommand.html b/src/public/api/files/vendor-leafs-redis-src-commands-servecommand.html new file mode 100644 index 00000000..9ccc3a95 --- /dev/null +++ b/src/public/api/files/vendor-leafs-redis-src-commands-servecommand.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ServeCommand.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ServeCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-redis-src-functions.html b/src/public/api/files/vendor-leafs-redis-src-functions.html new file mode 100644 index 00000000..55fcb852 --- /dev/null +++ b/src/public/api/files/vendor-leafs-redis-src-functions.html @@ -0,0 +1,391 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + redis() + +  : Redis +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return redis object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + redis() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return redis object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + redis() : Redis + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Redis +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-redis-src-redis-adapter.html b/src/public/api/files/vendor-leafs-redis-src-redis-adapter.html new file mode 100644 index 00000000..1c1bd89d --- /dev/null +++ b/src/public/api/files/vendor-leafs-redis-src-redis-adapter.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adapter.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adapter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Redis Adapter +------------- +Contract for redis adapters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-redis-src-redis-native.html b/src/public/api/files/vendor-leafs-redis-src-redis-native.html new file mode 100644 index 00000000..500ac8dd --- /dev/null +++ b/src/public/api/files/vendor-leafs-redis-src-redis-native.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Native.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Native
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Native Redis Adapter +------------- +Redis adapter for the native PHP Redis extension
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-redis-src-redis-predis.html b/src/public/api/files/vendor-leafs-redis-src-redis-predis.html new file mode 100644 index 00000000..e15f1dd0 --- /dev/null +++ b/src/public/api/files/vendor-leafs-redis-src-redis-predis.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Predis.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Predis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Predis Redis Adapter +------------- +Redis adapter for the Predis composer package
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-redis-src-redis.html b/src/public/api/files/vendor-leafs-redis-src-redis.html new file mode 100644 index 00000000..d2997c8a --- /dev/null +++ b/src/public/api/files/vendor-leafs-redis-src-redis.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Redis.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Redis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf + Redis [BETA] +---------- +Redis made crazy simple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-src-flash.html b/src/public/api/files/vendor-leafs-session-src-flash.html new file mode 100644 index 00000000..782c215c --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-src-flash.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flash.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Flash
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf Flash +----- +Simple flash messages for your leaf apps
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-src-functions.html b/src/public/api/files/vendor-leafs-session-src-functions.html new file mode 100644 index 00000000..6cc1c579 --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-src-functions.html @@ -0,0 +1,429 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + session() + +  : Session +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return session object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + flash() + +  : Flash +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return flash data/object or set flash data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + session() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return session object

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + session() : Session + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Session +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + flash() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return flash data/object or set flash data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + flash() : Flash + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return values
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Flash +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-src-http-session.html b/src/public/api/files/vendor-leafs-session-src-http-session.html new file mode 100644 index 00000000..f3a5c1e2 --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-src-http-session.html @@ -0,0 +1,343 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Session.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Session
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf Session +---------------- +App session management made simple with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-tests-delete-test.html b/src/public/api/files/vendor-leafs-session-tests-delete-test.html new file mode 100644 index 00000000..61b519f8 --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-tests-delete-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            delete.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-tests-flash-test.html b/src/public/api/files/vendor-leafs-session-tests-flash-test.html new file mode 100644 index 00000000..f32bf636 --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-tests-flash-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              flash.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-tests-pest.html b/src/public/api/files/vendor-leafs-session-tests-pest.html new file mode 100644 index 00000000..c64922cc --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-tests-pest.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pest.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-tests-read-test.html b/src/public/api/files/vendor-leafs-session-tests-read-test.html new file mode 100644 index 00000000..faf9e997 --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-tests-read-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  read.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-session-tests-write-test.html b/src/public/api/files/vendor-leafs-session-tests-write-test.html new file mode 100644 index 00000000..bdb62aa7 --- /dev/null +++ b/src/public/api/files/vendor-leafs-session-tests-write-test.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    write.test.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-vite-src-functions.html b/src/public/api/files/vendor-leafs-vite-src-functions.html new file mode 100644 index 00000000..7da25206 --- /dev/null +++ b/src/public/api/files/vendor-leafs-vite-src-functions.html @@ -0,0 +1,406 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      functions.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + vite() + +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Get a route by name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Functions + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + vite() + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Get a route by name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + vite(mixed $files[, string|null $baseDir = null ]) : mixed + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $files + : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + $baseDir + : string|null + = null
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The base directory to look for the file(s)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Functions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/files/vendor-leafs-vite-src-vite.html b/src/public/api/files/vendor-leafs-vite-src-vite.html new file mode 100644 index 00000000..0dab6e5e --- /dev/null +++ b/src/public/api/files/vendor-leafs-vite-src-vite.html @@ -0,0 +1,341 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Vite.php

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Vite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/index.html b/src/public/api/index.html new file mode 100644 index 00000000..9a3540dd --- /dev/null +++ b/src/public/api/index.html @@ -0,0 +1,6689 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Leaf PHP +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Documentation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Namespaces + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Leaf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asQuestion() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apply CLI question styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asComment() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apply CLI comment styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asInfo() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apply CLI info styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asError() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Apply CLI error styles to text
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asLink() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Output text as a link
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + auth() + +  : + Auth + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the leaf auth object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + getDatabaseConnection() + +  : array<string|int, mixed> + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + dbInstance() + +  : + Db + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + authInstance() + +  : + Auth + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + deleteUser() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + createTableForUsers() +  : void +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + csrf() + +  : + CSRF + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the leaf csrf object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + tick() + +  : + Date + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the leaf date instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + db() + +  : + Db + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the database object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + fetch() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Shortcut method for making network requests. +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + form() + +  : + Form + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return leaf form object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + validator() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + path() + +  : + Path + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the Leaf instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + storage() + +  : + Storage + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the Leaf instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + request() + +  : + Request + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return request or request data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + response() + +  : + Response + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return response or set response data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + inertia() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Render Inertia page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + app() + +  : + App + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return the Leaf instance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + _env() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Gets the value of an environment variable.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + mailer() + +  : + Mail + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Create and send an email
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + AppConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get app configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + PathsConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get paths configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + AuthConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get an auth configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ViewConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get view configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + DatabaseConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get database configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + CorsConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get an auth configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + MailConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get mail configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + MvcConfig() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get an application configuration
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + assets() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Import an asset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + view() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return a view
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + render() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Render a view
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + redirect() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Redirect to a given url
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + route() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get a route by name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + vite() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get a route by name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + AppPaths() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get all app paths
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ConfigPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Config directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + CommandsPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Commands directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ControllersPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Controllers directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + DatabasePath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Database path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + FactoriesPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Factories directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + HelpersPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Helpers directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + LibPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Helpers directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + MigrationsPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Migrations directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ModelsPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Models directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + PublicPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Public directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + RoutesPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Routes directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + SeedsPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Seeds directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + StoragePath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Storage directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ViewsPath() +  : string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Views directory path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + queue() + +  : + Queue + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return queue object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + dispatch() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Dispatch a job, batch or a group of jobs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + redis() + +  : + Redis + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return redis object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + session() + +  : + Session + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return session object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + flash() + +  : + Flash + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return flash data/object or set flash data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + vite() +  : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get a route by name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Functions + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asQuestion() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Apply CLI question styles to text +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + asQuestion(mixed $data) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asComment() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Apply CLI comment styles to text +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + asComment(mixed $data) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asInfo() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Apply CLI info styles to text +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + asInfo(mixed $data) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + asError() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Apply CLI error styles to text +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + asError(mixed $data) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Output text as a link +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + asLink(mixed $link, mixed $display) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $link + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $display + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + auth() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the leaf auth object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + auth() : Auth + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Auth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + csrf() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the leaf csrf object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + csrf() : CSRF + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + CSRF +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + tick() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the leaf date instance +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + tick([string|null $userDate = null ][, string|null $userTimeZone = null ]) : Date + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $userDate + : + string|null + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $userTimeZone + : + string|null + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Date +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + db() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the database object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + db([string|null $connection = null ]) : Db + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $connection + : + string|null + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + The connection to return db with +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Db +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + fetch() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Shortcut method for making network requests. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + fetch([array<string|int, + mixed>|string $data = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + array<string|int, + mixed>|string + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The url or request to hit.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Tags + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + throws +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Exception +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + form() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return leaf form object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + form() : Form + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Form +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + validator() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + validator() : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + path() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the Leaf instance +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + path(string $path) : Path + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Path +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + storage() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the Leaf instance +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + storage() : Storage + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Storage +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + request() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return request or request data +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + request() : Request + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Request +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + response() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return response or set response data +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + response() : Response + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Response +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + inertia() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Render Inertia page +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + inertia(string $component[, array<string|int, + mixed> $props = [] ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $component + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The component to render.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $props + : + array<string|int, + mixed> + = + [] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + The props to pass to the + component. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + app() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return the Leaf instance +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + app() : App + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + App +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + _env() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Gets the value of an environment variable. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + _env(string $key[, mixed $default = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $key + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $default + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + mailer() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Create and send an email +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + mailer([array<string|int, + mixed> $mail = null ]) : Mail + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Note that + \Leaf\Mail\Mailer + should be configured +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $mail + : + array<string|int, + mixed> + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Mail +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + AppConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get app configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + AppConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + PathsConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get paths configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + PathsConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + AuthConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get an auth configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + AuthConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ViewConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get view configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + ViewConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + DatabaseConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get database configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + DatabaseConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + CorsConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get an auth configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + CorsConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + MailConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get mail configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + MailConfig([mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + MvcConfig() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get an application configuration +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + MvcConfig(mixed $appConfig[, mixed $setting = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $appConfig + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $setting + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + assets() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Import an asset +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + assets([string $assets = '' ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $assets + : + string + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The asset to import

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + view() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return a view +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + view(string $view[, array<string|int, + mixed>|object $data = [] ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $view + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The view to render

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + array<string|int, + mixed>|object + = + [] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The data to pass to the view

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + render() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Render a view +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + render(string $view[, array<string|int, + mixed>|object $data = [] ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $view + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The view to render

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $data + : + array<string|int, + mixed>|object + = + [] +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The data to pass to the view

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + redirect() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Redirect to a given url +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + redirect(string $url) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $url + : + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The url to redirect to

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + route() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get a route by name +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + route() : mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + vite() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get a route by name +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + vite(mixed $files[, string $baseDir = 'app/views' ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $files + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $baseDir + : + string + = + 'app/views' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + The base directory to look for + the file(s) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + AppPaths() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get all app paths +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + AppPaths([mixed $path = null ][, bool $slash = false ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $slash + : + bool + = + false +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ConfigPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Config directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + ConfigPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + CommandsPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Commands directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + CommandsPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ControllersPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Controllers directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + ControllersPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + DatabasePath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Database path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + DatabasePath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + FactoriesPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Factories directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + FactoriesPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + HelpersPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Helpers directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + HelpersPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + LibPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Helpers directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + LibPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + MigrationsPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Migrations directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + MigrationsPath([mixed $path = '' ][, bool $slash = true ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $slash + : + bool + = + true +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ModelsPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Models directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + ModelsPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + PublicPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Public directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + PublicPath([mixed $path = '' ][, mixed $slash = true ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $slash + : + mixed + = + true +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + RoutesPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Routes directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + RoutesPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + SeedsPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Seeds directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + SeedsPath([mixed $path = '' ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + StoragePath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Storage directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + StoragePath([mixed $path = '' ][, bool $slash = false ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $slash + : + bool + = + false +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + ViewsPath() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Views directory path +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + ViewsPath([mixed $path = '' ][, bool $slash = true ]) : string + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $path + : + mixed + = + '' +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $slash + : + bool + = + true +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + queue() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return queue object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + queue() : Queue + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Queue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + dispatch() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Dispatch a job, batch or a group of jobs +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + dispatch(array<string|int, mixed>|Dispatchable|string $dispatchable) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $dispatchable + : + array<string|int, mixed>|Dispatchable|string +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + The job, batch or group of jobs + to dispatch +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + redis() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return redis object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + redis() : Redis + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Redis +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + session() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return session object +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + session() : Session + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Session +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + flash() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return flash data/object or set flash data +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + flash() : Flash + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Return values +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Flash +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + vite() + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Get a route by name +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + vite(mixed $files[, string|null $baseDir = null ]) : mixed + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Parameters +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $files + : + mixed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + $baseDir + : + string|null + = + null +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + The base directory to look for + the file(s) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Search results +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/js/search.js b/src/public/api/js/search.js new file mode 100644 index 00000000..093d6d03 --- /dev/null +++ b/src/public/api/js/search.js @@ -0,0 +1,173 @@ +// Search module for phpDocumentor +// +// This module is a wrapper around fuse.js that will use a given index and attach itself to a +// search form and to a search results pane identified by the following data attributes: +// +// 1. data-search-form +// 2. data-search-results +// +// The data-search-form is expected to have a single input element of type 'search' that will trigger searching for +// a series of results, were the data-search-results pane is expected to have a direct UL child that will be populated +// with rendered results. +// +// The search has various stages, upon loading this stage the data-search-form receives the CSS class +// 'phpdocumentor-search--enabled'; this indicates that JS is allowed and indices are being loaded. It is recommended +// to hide the form by default and show it when it receives this class to achieve progressive enhancement for this +// feature. +// +// After loading this module, it is expected to load a search index asynchronously, for example: +// +// +// +// In this script the generated index should attach itself to the search module using the `appendIndex` function. By +// doing it like this the page will continue loading, unhindered by the loading of the search. +// +// After the page has fully loaded, and all these deferred indexes loaded, the initialization of the search module will +// be called and the form will receive the class 'phpdocumentor-search--active', indicating search is ready. At this +// point, the input field will also have it's 'disabled' attribute removed. +var Search = (function () { + var fuse; + var index = []; + var options = { + shouldSort: true, + threshold: 0.6, + location: 0, + distance: 100, + maxPatternLength: 32, + minMatchCharLength: 1, + keys: [ + "fqsen", + "name", + "summary", + "url" + ] + }; + + // Credit David Walsh (https://davidwalsh.name/javascript-debounce-function) + // Returns a function, that, as long as it continues to be invoked, will not + // be triggered. The function will be called after it stops being called for + // N milliseconds. If `immediate` is passed, trigger the function on the + // leading edge, instead of the trailing. + function debounce(func, wait, immediate) { + var timeout; + + return function executedFunction() { + var context = this; + var args = arguments; + + var later = function () { + timeout = null; + if (!immediate) func.apply(context, args); + }; + + var callNow = immediate && !timeout; + clearTimeout(timeout); + timeout = setTimeout(later, wait); + if (callNow) func.apply(context, args); + }; + } + + function close() { + // Start scroll prevention: https://css-tricks.com/prevent-page-scrolling-when-a-modal-is-open/ + const scrollY = document.body.style.top; + document.body.style.position = ''; + document.body.style.top = ''; + window.scrollTo(0, parseInt(scrollY || '0') * -1); + // End scroll prevention + + var form = document.querySelector('[data-search-form]'); + var searchResults = document.querySelector('[data-search-results]'); + + form.classList.toggle('phpdocumentor-search--has-results', false); + searchResults.classList.add('phpdocumentor-search-results--hidden'); + var searchField = document.querySelector('[data-search-form] input[type="search"]'); + searchField.blur(); + } + + function search(event) { + // Start scroll prevention: https://css-tricks.com/prevent-page-scrolling-when-a-modal-is-open/ + document.body.style.position = 'fixed'; + document.body.style.top = `-${window.scrollY}px`; + // End scroll prevention + + // prevent enter's from autosubmitting + event.stopPropagation(); + + var form = document.querySelector('[data-search-form]'); + var searchResults = document.querySelector('[data-search-results]'); + var searchResultEntries = document.querySelector('[data-search-results] .phpdocumentor-search-results__entries'); + + searchResultEntries.innerHTML = ''; + + if (!event.target.value) { + close(); + return; + } + + form.classList.toggle('phpdocumentor-search--has-results', true); + searchResults.classList.remove('phpdocumentor-search-results--hidden'); + var results = fuse.search(event.target.value, {limit: 25}); + + results.forEach(function (result) { + var entry = document.createElement("li"); + entry.classList.add("phpdocumentor-search-results__entry"); + entry.innerHTML += '

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ' + result.name + "

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n"; + entry.innerHTML += '' + result.fqsen + "\n"; + entry.innerHTML += '
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ' + result.summary + '
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            '; + searchResultEntries.appendChild(entry) + }); + } + + function appendIndex(added) { + index = index.concat(added); + + // re-initialize search engine when appending an index after initialisation + if (typeof fuse !== 'undefined') { + fuse = new Fuse(index, options); + } + } + + function init() { + fuse = new Fuse(index, options); + + var form = document.querySelector('[data-search-form]'); + var searchField = document.querySelector('[data-search-form] input[type="search"]'); + + var closeButton = document.querySelector('.phpdocumentor-search-results__close'); + closeButton.addEventListener('click', function() { close() }.bind(this)); + + var searchResults = document.querySelector('[data-search-results]'); + searchResults.addEventListener('click', function() { close() }.bind(this)); + + form.classList.add('phpdocumentor-search--active'); + + searchField.setAttribute('placeholder', 'Search (Press "/" to focus)'); + searchField.removeAttribute('disabled'); + searchField.addEventListener('keyup', debounce(search, 300)); + + window.addEventListener('keyup', function (event) { + if (event.key === '/') { + searchField.focus(); + } + if (event.code === 'Escape') { + close(); + } + }.bind(this)); + } + + return { + appendIndex, + init + } +})(); + +window.addEventListener('DOMContentLoaded', function () { + var form = document.querySelector('[data-search-form]'); + + // When JS is supported; show search box. Must be before including the search for it to take effect immediately + form.classList.add('phpdocumentor-search--enabled'); +}); + +window.addEventListener('load', function () { + Search.init(); +}); diff --git a/src/public/api/js/searchIndex.js b/src/public/api/js/searchIndex.js new file mode 100644 index 00000000..1aa93d4d --- /dev/null +++ b/src/public/api/js/searchIndex.js @@ -0,0 +1,124499 @@ +Search.appendIndex( + [ + { + "fqsen": "\\App\\Controllers\\Auth\\Controller", + "name": "Controller", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Auth-Controller.html" + }, { + "fqsen": "\\App\\Controllers\\Auth\\DashboardController", + "name": "DashboardController", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Auth-DashboardController.html" + }, { + "fqsen": "\\App\\Controllers\\Auth\\DashboardController\u003A\u003Aindex\u0028\u0029", + "name": "index", + "summary": "", + "url": "classes/App-Controllers-Auth-DashboardController.html#method_index" + }, { + "fqsen": "\\App\\Controllers\\Auth\\LoginController", + "name": "LoginController", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Auth-LoginController.html" + }, { + "fqsen": "\\App\\Controllers\\Auth\\LoginController\u003A\u003Ashow\u0028\u0029", + "name": "show", + "summary": "", + "url": "classes/App-Controllers-Auth-LoginController.html#method_show" + }, { + "fqsen": "\\App\\Controllers\\Auth\\LoginController\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "", + "url": "classes/App-Controllers-Auth-LoginController.html#method_store" + }, { + "fqsen": "\\App\\Controllers\\Auth\\LoginController\u003A\u003Alogout\u0028\u0029", + "name": "logout", + "summary": "", + "url": "classes/App-Controllers-Auth-LoginController.html#method_logout" + }, { + "fqsen": "\\App\\Controllers\\Auth\\RegisterController", + "name": "RegisterController", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Auth-RegisterController.html" + }, { + "fqsen": "\\App\\Controllers\\Auth\\RegisterController\u003A\u003Ashow\u0028\u0029", + "name": "show", + "summary": "", + "url": "classes/App-Controllers-Auth-RegisterController.html#method_show" + }, { + "fqsen": "\\App\\Controllers\\Auth\\RegisterController\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "", + "url": "classes/App-Controllers-Auth-RegisterController.html#method_store" + }, { + "fqsen": "\\App\\Controllers\\Controller", + "name": "Controller", + "summary": "This\u0020is\u0020the\u0020base\u0020controller\u0020for\u0020your\u0020Leaf\u0020MVC\u0020Project.", + "url": "classes/App-Controllers-Controller.html" + }, { + "fqsen": "\\App\\Controllers\\Profile\\AccountController", + "name": "AccountController", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Profile-AccountController.html" + }, { + "fqsen": "\\App\\Controllers\\Profile\\AccountController\u003A\u003Ashow_update\u0028\u0029", + "name": "show_update", + "summary": "", + "url": "classes/App-Controllers-Profile-AccountController.html#method_show_update" + }, { + "fqsen": "\\App\\Controllers\\Profile\\AccountController\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "", + "url": "classes/App-Controllers-Profile-AccountController.html#method_update" + }, { + "fqsen": "\\App\\Controllers\\Profile\\Controller", + "name": "Controller", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Profile-Controller.html" + }, { + "fqsen": "\\App\\Models\\Model", + "name": "Model", + "summary": "Base\u0020Model\n\u002D\u002D\u002D\nThe\u0020base\u0020model\u0020provides\u0020a\u0020space\u0020to\u0020set\u0020attributes\nthat\u0020are\u0020common\u0020to\u0020all\u0020models", + "url": "classes/App-Models-Model.html" + }, { + "fqsen": "\\App\\Models\\User", + "name": "User", + "summary": "Base\u0020Model\n\u002D\u002D\u002D\nThe\u0020base\u0020model\u0020provides\u0020a\u0020space\u0020to\u0020set\u0020attributes\nthat\u0020are\u0020common\u0020to\u0020all\u0020models", + "url": "classes/App-Models-User.html" + }, { + "fqsen": "\\App\\Models\\User\u003A\u003A\u0024fillable", + "name": "fillable", + "summary": "The\u0020attributes\u0020that\u0020are\u0020mass\u0020assignable.", + "url": "classes/App-Models-User.html#property_fillable" + }, { + "fqsen": "\\App\\Models\\User\u003A\u003A\u0024hidden", + "name": "hidden", + "summary": "The\u0020attributes\u0020that\u0020should\u0020be\u0020hidden\u0020for\u0020serialization.", + "url": "classes/App-Models-User.html#property_hidden" + }, { + "fqsen": "\\App\\Models\\User\u003A\u003A\u0024timestamps", + "name": "timestamps", + "summary": "Indicates\u0020if\u0020the\u0020model\u0020should\u0020be\u0020timestamped.", + "url": "classes/App-Models-User.html#property_timestamps" + }, { + "fqsen": "\\App\\Models\\User\u003A\u003A\u0024casts", + "name": "casts", + "summary": "The\u0020attributes\u0020that\u0020should\u0020be\u0020cast\u0020to\u0020native\u0020types.", + "url": "classes/App-Models-User.html#property_casts" + }, { + "fqsen": "\\FlattedString", + "name": "FlattedString", + "summary": "", + "url": "classes/FlattedString.html" + }, { + "fqsen": "\\FlattedString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/FlattedString.html#method___construct" + }, { + "fqsen": "\\FlattedString\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/FlattedString.html#property_value" + }, { + "fqsen": "\\Flatted", + "name": "Flatted", + "summary": "", + "url": "classes/Flatted.html" + }, { + "fqsen": "\\Flatted\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "", + "url": "classes/Flatted.html#method_parse" + }, { + "fqsen": "\\Flatted\u003A\u003Astringify\u0028\u0029", + "name": "stringify", + "summary": "", + "url": "classes/Flatted.html#method_stringify" + }, { + "fqsen": "\\Flatted\u003A\u003AasString\u0028\u0029", + "name": "asString", + "summary": "", + "url": "classes/Flatted.html#method_asString" + }, { + "fqsen": "\\Flatted\u003A\u003Aindex\u0028\u0029", + "name": "index", + "summary": "", + "url": "classes/Flatted.html#method_index" + }, { + "fqsen": "\\Flatted\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "", + "url": "classes/Flatted.html#method_keys" + }, { + "fqsen": "\\Flatted\u003A\u003Aloop\u0028\u0029", + "name": "loop", + "summary": "", + "url": "classes/Flatted.html#method_loop" + }, { + "fqsen": "\\Flatted\u003A\u003Arelate\u0028\u0029", + "name": "relate", + "summary": "", + "url": "classes/Flatted.html#method_relate" + }, { + "fqsen": "\\Flatted\u003A\u003Aref\u0028\u0029", + "name": "ref", + "summary": "", + "url": "classes/Flatted.html#method_ref" + }, { + "fqsen": "\\Flatted\u003A\u003Atransform\u0028\u0029", + "name": "transform", + "summary": "", + "url": "classes/Flatted.html#method_transform" + }, { + "fqsen": "\\Flatted\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Flatted.html#method_wrap" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonDoctrineType", + "name": "CarbonDoctrineType", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonDoctrineType.html" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonDoctrineType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonDoctrineType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonDoctrineType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonDoctrineType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonDoctrineType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonDoctrineType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonImmutableType", + "name": "CarbonImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020VarDateTimeType\u007D.", + "url": "classes/Carbon-Doctrine-CarbonImmutableType.html" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonType", + "name": "CarbonType", + "summary": "Variable\u0020DateTime\u0020Type\u0020using\u0020DateTime\u003A\u003A__construct\u0028\u0029\u0020instead\u0020of\u0020DateTime\u003A\u003AcreateFromFormat\u0028\u0029.", + "url": "classes/Carbon-Doctrine-CarbonType.html" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter", + "name": "CarbonTypeConverter", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003AgetCarbonClassName\u0028\u0029", + "name": "getCarbonClassName", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#method_getCarbonClassName" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#method_convertToPHPValue" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003AgetTypeName\u0028\u0029", + "name": "getTypeName", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#method_getTypeName" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003AgetMaximumPrecision\u0028\u0029", + "name": "getMaximumPrecision", + "summary": "", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#method_getMaximumPrecision" + }, { + "fqsen": "\\Carbon\\Doctrine\\CarbonTypeConverter\u003A\u003A\u0024external", + "name": "external", + "summary": "This\u0020property\u0020differentiates\u0020types\u0020installed\u0020by\u0020carbonphp\/carbon\u002Ddoctrine\u002Dtypes\nfrom\u0020the\u0020ones\u0020embedded\u0020previously\u0020in\u0020nesbot\/carbon\u0020source\u0020directly.", + "url": "classes/Carbon-Doctrine-CarbonTypeConverter.html#property_external" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeDefaultPrecision", + "name": "DateTimeDefaultPrecision", + "summary": "", + "url": "classes/Carbon-Doctrine-DateTimeDefaultPrecision.html" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeDefaultPrecision\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Change\u0020the\u0020default\u0020Doctrine\u0020datetime\u0020and\u0020datetime_immutable\u0020precision.", + "url": "classes/Carbon-Doctrine-DateTimeDefaultPrecision.html#method_set" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeDefaultPrecision\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020default\u0020Doctrine\u0020datetime\u0020and\u0020datetime_immutable\u0020precision.", + "url": "classes/Carbon-Doctrine-DateTimeDefaultPrecision.html#method_get" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeDefaultPrecision\u003A\u003A\u0024precision", + "name": "precision", + "summary": "", + "url": "classes/Carbon-Doctrine-DateTimeDefaultPrecision.html#property_precision" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeImmutableType", + "name": "DateTimeImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020VarDateTimeType\u007D.", + "url": "classes/Carbon-Doctrine-DateTimeImmutableType.html" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeImmutableType\u003A\u003AgetCarbonClassName\u0028\u0029", + "name": "getCarbonClassName", + "summary": "", + "url": "classes/Carbon-Doctrine-DateTimeImmutableType.html#method_getCarbonClassName" + }, { + "fqsen": "\\Carbon\\Doctrine\\DateTimeType", + "name": "DateTimeType", + "summary": "Variable\u0020DateTime\u0020Type\u0020using\u0020DateTime\u003A\u003A__construct\u0028\u0029\u0020instead\u0020of\u0020DateTime\u003A\u003AcreateFromFormat\u0028\u0029.", + "url": "classes/Carbon-Doctrine-DateTimeType.html" + }, { + "fqsen": "\\ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634", + "name": "ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634", + "summary": "", + "url": "classes/ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634.html" + }, { + "fqsen": "\\ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634\u003A\u003AloadClassLoader\u0028\u0029", + "name": "loadClassLoader", + "summary": "", + "url": "classes/ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634.html#method_loadClassLoader" + }, { + "fqsen": "\\ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634\u003A\u003AgetLoader\u0028\u0029", + "name": "getLoader", + "summary": "", + "url": "classes/ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634.html#method_getLoader" + }, { + "fqsen": "\\ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634\u003A\u003A\u0024loader", + "name": "loader", + "summary": "", + "url": "classes/ComposerAutoloaderInit727096c721d2b72ba3b9b45ef640b634.html#property_loader" + }, { + "fqsen": "\\Composer\\Autoload\\ComposerStaticInit727096c721d2b72ba3b9b45ef640b634", + "name": "ComposerStaticInit727096c721d2b72ba3b9b45ef640b634", + "summary": "", + "url": "classes/Composer-Autoload-ComposerStaticInit727096c721d2b72ba3b9b45ef640b634.html" + }, { + "fqsen": "\\Composer\\Autoload\\ComposerStaticInit727096c721d2b72ba3b9b45ef640b634\u003A\u003AgetInitializer\u0028\u0029", + "name": "getInitializer", + "summary": "", + "url": "classes/Composer-Autoload-ComposerStaticInit727096c721d2b72ba3b9b45ef640b634.html#method_getInitializer" + }, { + "fqsen": "\\Composer\\Autoload\\ComposerStaticInit727096c721d2b72ba3b9b45ef640b634\u003A\u003A\u0024files", + "name": "files", + "summary": "", + "url": "classes/Composer-Autoload-ComposerStaticInit727096c721d2b72ba3b9b45ef640b634.html#property_files" + }, { + "fqsen": "\\Composer\\Autoload\\ComposerStaticInit727096c721d2b72ba3b9b45ef640b634\u003A\u003A\u0024prefixLengthsPsr4", + "name": "prefixLengthsPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ComposerStaticInit727096c721d2b72ba3b9b45ef640b634.html#property_prefixLengthsPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ComposerStaticInit727096c721d2b72ba3b9b45ef640b634\u003A\u003A\u0024prefixDirsPsr4", + "name": "prefixDirsPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ComposerStaticInit727096c721d2b72ba3b9b45ef640b634.html#property_prefixDirsPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ComposerStaticInit727096c721d2b72ba3b9b45ef640b634\u003A\u003A\u0024classMap", + "name": "classMap", + "summary": "", + "url": "classes/Composer-Autoload-ComposerStaticInit727096c721d2b72ba3b9b45ef640b634.html#property_classMap" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader", + "name": "ClassLoader", + "summary": "ClassLoader\u0020implements\u0020a\u0020PSR\u002D0,\u0020PSR\u002D4\u0020and\u0020classmap\u0020class\u0020loader.", + "url": "classes/Composer-Autoload-ClassLoader.html" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method___construct" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetPrefixes\u0028\u0029", + "name": "getPrefixes", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getPrefixes" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetPrefixesPsr4\u0028\u0029", + "name": "getPrefixesPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getPrefixesPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetFallbackDirs\u0028\u0029", + "name": "getFallbackDirs", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getFallbackDirs" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetFallbackDirsPsr4\u0028\u0029", + "name": "getFallbackDirsPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getFallbackDirsPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetClassMap\u0028\u0029", + "name": "getClassMap", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getClassMap" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AaddClassMap\u0028\u0029", + "name": "addClassMap", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_addClassMap" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Registers\u0020a\u0020set\u0020of\u0020PSR\u002D0\u0020directories\u0020for\u0020a\u0020given\u0020prefix,\u0020either\nappending\u0020or\u0020prepending\u0020to\u0020the\u0020ones\u0020previously\u0020set\u0020for\u0020this\u0020prefix.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_add" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AaddPsr4\u0028\u0029", + "name": "addPsr4", + "summary": "Registers\u0020a\u0020set\u0020of\u0020PSR\u002D4\u0020directories\u0020for\u0020a\u0020given\u0020namespace,\u0020either\nappending\u0020or\u0020prepending\u0020to\u0020the\u0020ones\u0020previously\u0020set\u0020for\u0020this\u0020namespace.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_addPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Registers\u0020a\u0020set\u0020of\u0020PSR\u002D0\u0020directories\u0020for\u0020a\u0020given\u0020prefix,\nreplacing\u0020any\u0020others\u0020previously\u0020set\u0020for\u0020this\u0020prefix.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_set" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AsetPsr4\u0028\u0029", + "name": "setPsr4", + "summary": "Registers\u0020a\u0020set\u0020of\u0020PSR\u002D4\u0020directories\u0020for\u0020a\u0020given\u0020namespace,\nreplacing\u0020any\u0020others\u0020previously\u0020set\u0020for\u0020this\u0020namespace.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_setPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AsetUseIncludePath\u0028\u0029", + "name": "setUseIncludePath", + "summary": "Turns\u0020on\u0020searching\u0020the\u0020include\u0020path\u0020for\u0020class\u0020files.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_setUseIncludePath" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetUseIncludePath\u0028\u0029", + "name": "getUseIncludePath", + "summary": "Can\u0020be\u0020used\u0020to\u0020check\u0020if\u0020the\u0020autoloader\u0020uses\u0020the\u0020include\u0020path\u0020to\u0020check\nfor\u0020classes.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getUseIncludePath" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AsetClassMapAuthoritative\u0028\u0029", + "name": "setClassMapAuthoritative", + "summary": "Turns\u0020off\u0020searching\u0020the\u0020prefix\u0020and\u0020fallback\u0020directories\u0020for\u0020classes\nthat\u0020have\u0020not\u0020been\u0020registered\u0020with\u0020the\u0020class\u0020map.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_setClassMapAuthoritative" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AisClassMapAuthoritative\u0028\u0029", + "name": "isClassMapAuthoritative", + "summary": "Should\u0020class\u0020lookup\u0020fail\u0020if\u0020not\u0020found\u0020in\u0020the\u0020current\u0020class\u0020map\u003F", + "url": "classes/Composer-Autoload-ClassLoader.html#method_isClassMapAuthoritative" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AsetApcuPrefix\u0028\u0029", + "name": "setApcuPrefix", + "summary": "APCu\u0020prefix\u0020to\u0020use\u0020to\u0020cache\u0020found\/not\u002Dfound\u0020classes,\u0020if\u0020the\u0020extension\u0020is\u0020enabled.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_setApcuPrefix" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetApcuPrefix\u0028\u0029", + "name": "getApcuPrefix", + "summary": "The\u0020APCu\u0020prefix\u0020in\u0020use,\u0020or\u0020null\u0020if\u0020APCu\u0020caching\u0020is\u0020not\u0020enabled.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getApcuPrefix" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Registers\u0020this\u0020instance\u0020as\u0020an\u0020autoloader.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_register" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003Aunregister\u0028\u0029", + "name": "unregister", + "summary": "Unregisters\u0020this\u0020instance\u0020as\u0020an\u0020autoloader.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_unregister" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AloadClass\u0028\u0029", + "name": "loadClass", + "summary": "Loads\u0020the\u0020given\u0020class\u0020or\u0020interface.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_loadClass" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AfindFile\u0028\u0029", + "name": "findFile", + "summary": "Finds\u0020the\u0020path\u0020to\u0020the\u0020file\u0020where\u0020the\u0020class\u0020is\u0020defined.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_findFile" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AgetRegisteredLoaders\u0028\u0029", + "name": "getRegisteredLoaders", + "summary": "Returns\u0020the\u0020currently\u0020registered\u0020loaders\u0020keyed\u0020by\u0020their\u0020corresponding\u0020vendor\u0020directories.", + "url": "classes/Composer-Autoload-ClassLoader.html#method_getRegisteredLoaders" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AfindFileWithExtension\u0028\u0029", + "name": "findFileWithExtension", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_findFileWithExtension" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003AinitializeIncludeClosure\u0028\u0029", + "name": "initializeIncludeClosure", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#method_initializeIncludeClosure" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024includeFile", + "name": "includeFile", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_includeFile" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024vendorDir", + "name": "vendorDir", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_vendorDir" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024prefixLengthsPsr4", + "name": "prefixLengthsPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_prefixLengthsPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024prefixDirsPsr4", + "name": "prefixDirsPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_prefixDirsPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024fallbackDirsPsr4", + "name": "fallbackDirsPsr4", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_fallbackDirsPsr4" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024prefixesPsr0", + "name": "prefixesPsr0", + "summary": "List\u0020of\u0020PSR\u002D0\u0020prefixes", + "url": "classes/Composer-Autoload-ClassLoader.html#property_prefixesPsr0" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024fallbackDirsPsr0", + "name": "fallbackDirsPsr0", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_fallbackDirsPsr0" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024useIncludePath", + "name": "useIncludePath", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_useIncludePath" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024classMap", + "name": "classMap", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_classMap" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024classMapAuthoritative", + "name": "classMapAuthoritative", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_classMapAuthoritative" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024missingClasses", + "name": "missingClasses", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_missingClasses" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024apcuPrefix", + "name": "apcuPrefix", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_apcuPrefix" + }, { + "fqsen": "\\Composer\\Autoload\\ClassLoader\u003A\u003A\u0024registeredLoaders", + "name": "registeredLoaders", + "summary": "", + "url": "classes/Composer-Autoload-ClassLoader.html#property_registeredLoaders" + }, { + "fqsen": "\\Composer\\InstalledVersions", + "name": "InstalledVersions", + "summary": "This\u0020class\u0020is\u0020copied\u0020in\u0020every\u0020Composer\u0020installed\u0020project\u0020and\u0020available\u0020to\u0020all", + "url": "classes/Composer-InstalledVersions.html" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetInstalledPackages\u0028\u0029", + "name": "getInstalledPackages", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020package\u0020names\u0020which\u0020are\u0020present,\u0020either\u0020by\u0020being\u0020installed,\u0020replaced\u0020or\u0020provided", + "url": "classes/Composer-InstalledVersions.html#method_getInstalledPackages" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetInstalledPackagesByType\u0028\u0029", + "name": "getInstalledPackagesByType", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020package\u0020names\u0020with\u0020a\u0020specific\u0020type\u0020e.g.\u0020\u0027library\u0027", + "url": "classes/Composer-InstalledVersions.html#method_getInstalledPackagesByType" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AisInstalled\u0028\u0029", + "name": "isInstalled", + "summary": "Checks\u0020whether\u0020the\u0020given\u0020package\u0020is\u0020installed", + "url": "classes/Composer-InstalledVersions.html#method_isInstalled" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003Asatisfies\u0028\u0029", + "name": "satisfies", + "summary": "Checks\u0020whether\u0020the\u0020given\u0020package\u0020satisfies\u0020a\u0020version\u0020constraint", + "url": "classes/Composer-InstalledVersions.html#method_satisfies" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetVersionRanges\u0028\u0029", + "name": "getVersionRanges", + "summary": "Returns\u0020a\u0020version\u0020constraint\u0020representing\u0020all\u0020the\u0020range\u0028s\u0029\u0020which\u0020are\u0020installed\u0020for\u0020a\u0020given\u0020package", + "url": "classes/Composer-InstalledVersions.html#method_getVersionRanges" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetVersion\u0028\u0029", + "name": "getVersion", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#method_getVersion" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetPrettyVersion\u0028\u0029", + "name": "getPrettyVersion", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#method_getPrettyVersion" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetReference\u0028\u0029", + "name": "getReference", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#method_getReference" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetInstallPath\u0028\u0029", + "name": "getInstallPath", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#method_getInstallPath" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetRootPackage\u0028\u0029", + "name": "getRootPackage", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#method_getRootPackage" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetRawData\u0028\u0029", + "name": "getRawData", + "summary": "Returns\u0020the\u0020raw\u0020installed.php\u0020data\u0020for\u0020custom\u0020implementations", + "url": "classes/Composer-InstalledVersions.html#method_getRawData" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetAllRawData\u0028\u0029", + "name": "getAllRawData", + "summary": "Returns\u0020the\u0020raw\u0020data\u0020of\u0020all\u0020installed.php\u0020which\u0020are\u0020currently\u0020loaded\u0020for\u0020custom\u0020implementations", + "url": "classes/Composer-InstalledVersions.html#method_getAllRawData" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003Areload\u0028\u0029", + "name": "reload", + "summary": "Lets\u0020you\u0020reload\u0020the\u0020static\u0020array\u0020from\u0020another\u0020file", + "url": "classes/Composer-InstalledVersions.html#method_reload" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003AgetInstalled\u0028\u0029", + "name": "getInstalled", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#method_getInstalled" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003A\u0024installed", + "name": "installed", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#property_installed" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003A\u0024installedIsLocalDir", + "name": "installedIsLocalDir", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#property_installedIsLocalDir" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003A\u0024canGetVendors", + "name": "canGetVendors", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#property_canGetVendors" + }, { + "fqsen": "\\Composer\\InstalledVersions\u003A\u003A\u0024installedByVendor", + "name": "installedByVendor", + "summary": "", + "url": "classes/Composer-InstalledVersions.html#property_installedByVendor" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache", + "name": "Cache", + "summary": "Interface\u0020for\u0020cache\u0020drivers.", + "url": "classes/Doctrine-Common-Cache-Cache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "Fetches\u0020an\u0020entry\u0020from\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-Cache.html#method_fetch" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Tests\u0020if\u0020an\u0020entry\u0020exists\u0020in\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-Cache.html#method_contains" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Puts\u0020data\u0020into\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-Cache.html#method_save" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Deletes\u0020a\u0020cache\u0020entry.", + "url": "classes/Doctrine-Common-Cache-Cache.html#method_delete" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003AgetStats\u0028\u0029", + "name": "getStats", + "summary": "Retrieves\u0020cached\u0020information\u0020from\u0020the\u0020data\u0020store.", + "url": "classes/Doctrine-Common-Cache-Cache.html#method_getStats" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003ASTATS_HITS", + "name": "STATS_HITS", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Cache.html#constant_STATS_HITS" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003ASTATS_MISSES", + "name": "STATS_MISSES", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Cache.html#constant_STATS_MISSES" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003ASTATS_UPTIME", + "name": "STATS_UPTIME", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Cache.html#constant_STATS_UPTIME" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003ASTATS_MEMORY_USAGE", + "name": "STATS_MEMORY_USAGE", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Cache.html#constant_STATS_MEMORY_USAGE" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003ASTATS_MEMORY_AVAILABLE", + "name": "STATS_MEMORY_AVAILABLE", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Cache.html#constant_STATS_MEMORY_AVAILABLE" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Cache\u003A\u003ASTATS_MEMORY_AVAILIABLE", + "name": "STATS_MEMORY_AVAILIABLE", + "summary": "Only\u0020for\u0020backward\u0020compatibility\u0020\u0028may\u0020be\u0020removed\u0020in\u0020next\u0020major\u0020release\u0029", + "url": "classes/Doctrine-Common-Cache-Cache.html#constant_STATS_MEMORY_AVAILIABLE" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider", + "name": "CacheProvider", + "summary": "Base\u0020class\u0020for\u0020cache\u0020provider\u0020implementations.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AsetNamespace\u0028\u0029", + "name": "setNamespace", + "summary": "Sets\u0020the\u0020namespace\u0020to\u0020prefix\u0020all\u0020cache\u0020ids\u0020with.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_setNamespace" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "Retrieves\u0020the\u0020namespace\u0020that\u0020prefixes\u0020all\u0020cache\u0020ids.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_getNamespace" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "Fetches\u0020an\u0020entry\u0020from\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_fetch" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AfetchMultiple\u0028\u0029", + "name": "fetchMultiple", + "summary": "Returns\u0020an\u0020associative\u0020array\u0020of\u0020values\u0020for\u0020keys\u0020is\u0020found\u0020in\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_fetchMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AsaveMultiple\u0028\u0029", + "name": "saveMultiple", + "summary": "Returns\u0020a\u0020boolean\u0020value\u0020indicating\u0020if\u0020the\u0020operation\u0020succeeded.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_saveMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Tests\u0020if\u0020an\u0020entry\u0020exists\u0020in\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_contains" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Puts\u0020data\u0020into\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_save" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdeleteMultiple\u0028\u0029", + "name": "deleteMultiple", + "summary": "Deletes\u0020several\u0020cache\u0020entries.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_deleteMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Deletes\u0020a\u0020cache\u0020entry.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_delete" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AgetStats\u0028\u0029", + "name": "getStats", + "summary": "Retrieves\u0020cached\u0020information\u0020from\u0020the\u0020data\u0020store.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_getStats" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AflushAll\u0028\u0029", + "name": "flushAll", + "summary": "Flushes\u0020all\u0020cache\u0020entries,\u0020globally.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_flushAll" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdeleteAll\u0028\u0029", + "name": "deleteAll", + "summary": "Deletes\u0020all\u0020cache\u0020entries\u0020in\u0020the\u0020current\u0020cache\u0020namespace.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_deleteAll" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AgetNamespacedId\u0028\u0029", + "name": "getNamespacedId", + "summary": "Prefixes\u0020the\u0020passed\u0020id\u0020with\u0020the\u0020configured\u0020namespace\u0020value.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_getNamespacedId" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AgetNamespaceCacheKey\u0028\u0029", + "name": "getNamespaceCacheKey", + "summary": "Returns\u0020the\u0020namespace\u0020cache\u0020key.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_getNamespaceCacheKey" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AgetNamespaceVersion\u0028\u0029", + "name": "getNamespaceVersion", + "summary": "Returns\u0020the\u0020namespace\u0020version.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_getNamespaceVersion" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoFetchMultiple\u0028\u0029", + "name": "doFetchMultiple", + "summary": "Default\u0020implementation\u0020of\u0020doFetchMultiple.\u0020Each\u0020driver\u0020that\u0020supports\u0020multi\u002Dget\u0020should\u0020owerwrite\u0020it.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doFetchMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoFetch\u0028\u0029", + "name": "doFetch", + "summary": "Fetches\u0020an\u0020entry\u0020from\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doFetch" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoContains\u0028\u0029", + "name": "doContains", + "summary": "Tests\u0020if\u0020an\u0020entry\u0020exists\u0020in\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doContains" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoSaveMultiple\u0028\u0029", + "name": "doSaveMultiple", + "summary": "Default\u0020implementation\u0020of\u0020doSaveMultiple.\u0020Each\u0020driver\u0020that\u0020supports\u0020multi\u002Dput\u0020should\u0020override\u0020it.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doSaveMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoSave\u0028\u0029", + "name": "doSave", + "summary": "Puts\u0020data\u0020into\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doSave" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoDeleteMultiple\u0028\u0029", + "name": "doDeleteMultiple", + "summary": "Default\u0020implementation\u0020of\u0020doDeleteMultiple.\u0020Each\u0020driver\u0020that\u0020supports\u0020multi\u002Ddelete\u0020should\u0020override\u0020it.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doDeleteMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoDelete\u0028\u0029", + "name": "doDelete", + "summary": "Deletes\u0020a\u0020cache\u0020entry.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doDelete" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoFlush\u0028\u0029", + "name": "doFlush", + "summary": "Flushes\u0020all\u0020cache\u0020entries.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doFlush" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003AdoGetStats\u0028\u0029", + "name": "doGetStats", + "summary": "Retrieves\u0020cached\u0020information\u0020from\u0020the\u0020data\u0020store.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#method_doGetStats" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003ADOCTRINE_NAMESPACE_CACHEKEY", + "name": "DOCTRINE_NAMESPACE_CACHEKEY", + "summary": "", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#constant_DOCTRINE_NAMESPACE_CACHEKEY" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "The\u0020namespace\u0020to\u0020prefix\u0020all\u0020cache\u0020ids\u0020with.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#property_namespace" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\CacheProvider\u003A\u003A\u0024namespaceVersion", + "name": "namespaceVersion", + "summary": "The\u0020namespace\u0020version.", + "url": "classes/Doctrine-Common-Cache-CacheProvider.html#property_namespaceVersion" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\ClearableCache", + "name": "ClearableCache", + "summary": "Interface\u0020for\u0020cache\u0020that\u0020can\u0020be\u0020flushed.", + "url": "classes/Doctrine-Common-Cache-ClearableCache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\ClearableCache\u003A\u003AdeleteAll\u0028\u0029", + "name": "deleteAll", + "summary": "Deletes\u0020all\u0020cache\u0020entries\u0020in\u0020the\u0020current\u0020cache\u0020namespace.", + "url": "classes/Doctrine-Common-Cache-ClearableCache.html#method_deleteAll" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\FlushableCache", + "name": "FlushableCache", + "summary": "Interface\u0020for\u0020cache\u0020that\u0020can\u0020be\u0020flushed.", + "url": "classes/Doctrine-Common-Cache-FlushableCache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\FlushableCache\u003A\u003AflushAll\u0028\u0029", + "name": "flushAll", + "summary": "Flushes\u0020all\u0020cache\u0020entries,\u0020globally.", + "url": "classes/Doctrine-Common-Cache-FlushableCache.html#method_flushAll" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiDeleteCache", + "name": "MultiDeleteCache", + "summary": "Interface\u0020for\u0020cache\u0020drivers\u0020that\u0020allows\u0020to\u0020put\u0020many\u0020items\u0020at\u0020once.", + "url": "classes/Doctrine-Common-Cache-MultiDeleteCache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiDeleteCache\u003A\u003AdeleteMultiple\u0028\u0029", + "name": "deleteMultiple", + "summary": "Deletes\u0020several\u0020cache\u0020entries.", + "url": "classes/Doctrine-Common-Cache-MultiDeleteCache.html#method_deleteMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiGetCache", + "name": "MultiGetCache", + "summary": "Interface\u0020for\u0020cache\u0020drivers\u0020that\u0020allows\u0020to\u0020get\u0020many\u0020items\u0020at\u0020once.", + "url": "classes/Doctrine-Common-Cache-MultiGetCache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiGetCache\u003A\u003AfetchMultiple\u0028\u0029", + "name": "fetchMultiple", + "summary": "Returns\u0020an\u0020associative\u0020array\u0020of\u0020values\u0020for\u0020keys\u0020is\u0020found\u0020in\u0020cache.", + "url": "classes/Doctrine-Common-Cache-MultiGetCache.html#method_fetchMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiOperationCache", + "name": "MultiOperationCache", + "summary": "Interface\u0020for\u0020cache\u0020drivers\u0020that\u0020supports\u0020multiple\u0020items\u0020manipulation.", + "url": "classes/Doctrine-Common-Cache-MultiOperationCache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiPutCache", + "name": "MultiPutCache", + "summary": "Interface\u0020for\u0020cache\u0020drivers\u0020that\u0020allows\u0020to\u0020put\u0020many\u0020items\u0020at\u0020once.", + "url": "classes/Doctrine-Common-Cache-MultiPutCache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\MultiPutCache\u003A\u003AsaveMultiple\u0028\u0029", + "name": "saveMultiple", + "summary": "Returns\u0020a\u0020boolean\u0020value\u0020indicating\u0020if\u0020the\u0020operation\u0020succeeded.", + "url": "classes/Doctrine-Common-Cache-MultiPutCache.html#method_saveMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter", + "name": "CacheAdapter", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AgetItem\u0028\u0029", + "name": "getItem", + "summary": "Returns\u0020a\u0020Cache\u0020Item\u0020representing\u0020the\u0020specified\u0020key.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_getItem" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AgetItems\u0028\u0029", + "name": "getItems", + "summary": "Returns\u0020a\u0020traversable\u0020set\u0020of\u0020cache\u0020items.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_getItems" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AhasItem\u0028\u0029", + "name": "hasItem", + "summary": "Confirms\u0020if\u0020the\u0020cache\u0020contains\u0020specified\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_hasItem" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Deletes\u0020all\u0020items\u0020in\u0020the\u0020pool.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_clear" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AdeleteItem\u0028\u0029", + "name": "deleteItem", + "summary": "Removes\u0020the\u0020item\u0020from\u0020the\u0020pool.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_deleteItem" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AdeleteItems\u0028\u0029", + "name": "deleteItems", + "summary": "Removes\u0020multiple\u0020items\u0020from\u0020the\u0020pool.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_deleteItems" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Persists\u0020a\u0020cache\u0020item\u0020immediately.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_save" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AsaveDeferred\u0028\u0029", + "name": "saveDeferred", + "summary": "Sets\u0020a\u0020cache\u0020item\u0020to\u0020be\u0020persisted\u0020later.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_saveDeferred" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Persists\u0020any\u0020deferred\u0020cache\u0020items.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_commit" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method___destruct" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AvalidKey\u0028\u0029", + "name": "validKey", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_validKey" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AvalidKeys\u0028\u0029", + "name": "validKeys", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_validKeys" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AdoDeleteMultiple\u0028\u0029", + "name": "doDeleteMultiple", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_doDeleteMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AdoFetchMultiple\u0028\u0029", + "name": "doFetchMultiple", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_doFetchMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003AdoSaveMultiple\u0028\u0029", + "name": "doSaveMultiple", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#method_doSaveMultiple" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003ARESERVED_CHARACTERS", + "name": "RESERVED_CHARACTERS", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#constant_RESERVED_CHARACTERS" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#property_cache" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheAdapter\u003A\u003A\u0024deferredItems", + "name": "deferredItems", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheAdapter.html#property_deferredItems" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem", + "name": "CacheItem", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003AgetKey\u0028\u0029", + "name": "getKey", + "summary": "Returns\u0020the\u0020key\u0020for\u0020the\u0020current\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#method_getKey" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieves\u0020the\u0020value\u0020of\u0020the\u0020item\u0020from\u0020the\u0020cache\u0020associated\u0020with\u0020this\u0020object\u0027s\u0020key.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#method_get" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003A\u0024isHit", + "name": "isHit", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#property_isHit" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Sets\u0020the\u0020value\u0020represented\u0020by\u0020this\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#method_set" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003AexpiresAt\u0028\u0029", + "name": "expiresAt", + "summary": "Sets\u0020the\u0020expiration\u0020time\u0020for\u0020this\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#method_expiresAt" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003AexpiresAfter\u0028\u0029", + "name": "expiresAfter", + "summary": "Sets\u0020the\u0020expiration\u0020time\u0020for\u0020this\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#method_expiresAfter" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#property_key" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#property_value" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\CacheItem\u003A\u003A\u0024expiry", + "name": "expiry", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-CacheItem.html#property_expiry" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider", + "name": "DoctrineProvider", + "summary": "This\u0020class\u0020was\u0020copied\u0020from\u0020the\u0020Symfony\u0020Framework,\u0020see\u0020the\u0020original\u0020copyright\nnotice\u0020above.\u0020The\u0020code\u0020is\u0020distributed\u0020subject\u0020to\u0020the\u0020license\u0020terms\u0020in\nhttps\u003A\/\/github.com\/symfony\/symfony\/blob\/ff0cf61278982539c49e467db9ab13cbd342f76d\/LICENSE", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_reset" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003AdoFetch\u0028\u0029", + "name": "doFetch", + "summary": "Fetches\u0020an\u0020entry\u0020from\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_doFetch" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003AdoContains\u0028\u0029", + "name": "doContains", + "summary": "Tests\u0020if\u0020an\u0020entry\u0020exists\u0020in\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_doContains" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003AdoSave\u0028\u0029", + "name": "doSave", + "summary": "Puts\u0020data\u0020into\u0020the\u0020cache.", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_doSave" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003AdoDelete\u0028\u0029", + "name": "doDelete", + "summary": "Deletes\u0020a\u0020cache\u0020entry.", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_doDelete" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003AdoFlush\u0028\u0029", + "name": "doFlush", + "summary": "Flushes\u0020all\u0020cache\u0020entries.", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_doFlush" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003AdoGetStats\u0028\u0029", + "name": "doGetStats", + "summary": "Retrieves\u0020cached\u0020information\u0020from\u0020the\u0020data\u0020store.", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#method_doGetStats" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\DoctrineProvider\u003A\u003A\u0024pool", + "name": "pool", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-DoctrineProvider.html#property_pool" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem", + "name": "TypedCacheItem", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003AgetKey\u0028\u0029", + "name": "getKey", + "summary": "Returns\u0020the\u0020key\u0020for\u0020the\u0020current\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#method_getKey" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieves\u0020the\u0020value\u0020of\u0020the\u0020item\u0020from\u0020the\u0020cache\u0020associated\u0020with\u0020this\u0020object\u0027s\u0020key.", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#method_get" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003A\u0024isHit", + "name": "isHit", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#property_isHit" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Sets\u0020the\u0020value\u0020represented\u0020by\u0020this\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#method_set" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003AexpiresAt\u0028\u0029", + "name": "expiresAt", + "summary": "Sets\u0020the\u0020expiration\u0020time\u0020for\u0020this\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#method_expiresAt" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003AexpiresAfter\u0028\u0029", + "name": "expiresAfter", + "summary": "Sets\u0020the\u0020expiration\u0020time\u0020for\u0020this\u0020cache\u0020item.", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#method_expiresAfter" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003A\u0024expiry", + "name": "expiry", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#property_expiry" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#property_key" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6\\TypedCacheItem\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Doctrine-Common-Cache-Psr6-TypedCacheItem.html#property_value" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameters\\Exception\\MissingNamedParameter", + "name": "MissingNamedParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-ArrayParameters-Exception-MissingNamedParameter.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameters\\Exception\\MissingNamedParameter\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-ArrayParameters-Exception-MissingNamedParameter.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameterType", + "name": "ArrayParameterType", + "summary": "", + "url": "classes/Doctrine-DBAL-ArrayParameterType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameterType\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-ArrayParameterType.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameterType\u003A\u003AINTEGER", + "name": "INTEGER", + "summary": "Represents\u0020an\u0020array\u0020of\u0020ints\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-ArrayParameterType.html#constant_INTEGER" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameterType\u003A\u003ASTRING", + "name": "STRING", + "summary": "Represents\u0020an\u0020array\u0020of\u0020strings\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-ArrayParameterType.html#constant_STRING" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameterType\u003A\u003AASCII", + "name": "ASCII", + "summary": "Represents\u0020an\u0020array\u0020of\u0020ascii\u0020strings\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-ArrayParameterType.html#constant_ASCII" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameterType\u003A\u003ABINARY", + "name": "BINARY", + "summary": "Represents\u0020an\u0020array\u0020of\u0020ascii\u0020strings\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-ArrayParameterType.html#constant_BINARY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\CacheException", + "name": "CacheException", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-CacheException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\CacheException\u003A\u003AnoCacheKey\u0028\u0029", + "name": "noCacheKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-CacheException.html#method_noCacheKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\CacheException\u003A\u003AnoResultDriverConfigured\u0028\u0029", + "name": "noResultDriverConfigured", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-CacheException.html#method_noResultDriverConfigured" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile", + "name": "QueryCacheProfile", + "summary": "Query\u0020Cache\u0020Profile\u0020handles\u0020the\u0020data\u0020relevant\u0020for\u0020query\u0020caching.", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AgetResultCache\u0028\u0029", + "name": "getResultCache", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_getResultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AgetResultCacheDriver\u0028\u0029", + "name": "getResultCacheDriver", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_getResultCacheDriver" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AgetLifetime\u0028\u0029", + "name": "getLifetime", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_getLifetime" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AgetCacheKey\u0028\u0029", + "name": "getCacheKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_getCacheKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AgenerateCacheKeys\u0028\u0029", + "name": "generateCacheKeys", + "summary": "Generates\u0020the\u0020real\u0020cache\u0020key\u0020from\u0020query,\u0020params,\u0020types\u0020and\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_generateCacheKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AsetResultCache\u0028\u0029", + "name": "setResultCache", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_setResultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AsetResultCacheDriver\u0028\u0029", + "name": "setResultCacheDriver", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_setResultCacheDriver" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AsetCacheKey\u0028\u0029", + "name": "setCacheKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_setCacheKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003AsetLifetime\u0028\u0029", + "name": "setLifetime", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#method_setLifetime" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003A\u0024resultCache", + "name": "resultCache", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#property_resultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003A\u0024lifetime", + "name": "lifetime", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#property_lifetime" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache\\QueryCacheProfile\u003A\u003A\u0024cacheKey", + "name": "cacheKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Cache-QueryCacheProfile.html#property_cacheKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\ColumnCase", + "name": "ColumnCase", + "summary": "Contains\u0020portable\u0020column\u0020case\u0020conversions.", + "url": "classes/Doctrine-DBAL-ColumnCase.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ColumnCase\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020cannot\u0020be\u0020instantiated.", + "url": "classes/Doctrine-DBAL-ColumnCase.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\ColumnCase\u003A\u003AUPPER", + "name": "UPPER", + "summary": "Convert\u0020column\u0020names\u0020to\u0020upper\u0020case.", + "url": "classes/Doctrine-DBAL-ColumnCase.html#constant_UPPER" + }, { + "fqsen": "\\Doctrine\\DBAL\\ColumnCase\u003A\u003ALOWER", + "name": "LOWER", + "summary": "Convert\u0020column\u0020names\u0020to\u0020lower\u0020case.", + "url": "classes/Doctrine-DBAL-ColumnCase.html#constant_LOWER" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration", + "name": "Configuration", + "summary": "Configuration\u0020container\u0020for\u0020the\u0020Doctrine\u0020DBAL.", + "url": "classes/Doctrine-DBAL-Configuration.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetSQLLogger\u0028\u0029", + "name": "setSQLLogger", + "summary": "Sets\u0020the\u0020SQL\u0020logger\u0020to\u0020use.\u0020Defaults\u0020to\u0020NULL\u0020which\u0020means\u0020SQL\u0020logging\u0020is\u0020disabled.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setSQLLogger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetSQLLogger\u0028\u0029", + "name": "getSQLLogger", + "summary": "Gets\u0020the\u0020SQL\u0020logger\u0020that\u0020is\u0020used.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getSQLLogger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetResultCache\u0028\u0029", + "name": "getResultCache", + "summary": "Gets\u0020the\u0020cache\u0020driver\u0020implementation\u0020that\u0020is\u0020used\u0020for\u0020query\u0020result\u0020caching.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getResultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetResultCacheImpl\u0028\u0029", + "name": "getResultCacheImpl", + "summary": "Gets\u0020the\u0020cache\u0020driver\u0020implementation\u0020that\u0020is\u0020used\u0020for\u0020query\u0020result\u0020caching.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getResultCacheImpl" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetResultCache\u0028\u0029", + "name": "setResultCache", + "summary": "Sets\u0020the\u0020cache\u0020driver\u0020implementation\u0020that\u0020is\u0020used\u0020for\u0020query\u0020result\u0020caching.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setResultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetResultCacheImpl\u0028\u0029", + "name": "setResultCacheImpl", + "summary": "Sets\u0020the\u0020cache\u0020driver\u0020implementation\u0020that\u0020is\u0020used\u0020for\u0020query\u0020result\u0020caching.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setResultCacheImpl" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetSchemaAssetsFilter\u0028\u0029", + "name": "setSchemaAssetsFilter", + "summary": "Sets\u0020the\u0020callable\u0020to\u0020use\u0020to\u0020filter\u0020schema\u0020assets.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setSchemaAssetsFilter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetSchemaAssetsFilter\u0028\u0029", + "name": "getSchemaAssetsFilter", + "summary": "Returns\u0020the\u0020callable\u0020to\u0020use\u0020to\u0020filter\u0020schema\u0020assets.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getSchemaAssetsFilter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetAutoCommit\u0028\u0029", + "name": "setAutoCommit", + "summary": "Sets\u0020the\u0020default\u0020auto\u002Dcommit\u0020mode\u0020for\u0020connections.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setAutoCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetAutoCommit\u0028\u0029", + "name": "getAutoCommit", + "summary": "Returns\u0020the\u0020default\u0020auto\u002Dcommit\u0020mode\u0020for\u0020connections.", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getAutoCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetMiddlewares\u0028\u0029", + "name": "setMiddlewares", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setMiddlewares" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetMiddlewares\u0028\u0029", + "name": "getMiddlewares", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getMiddlewares" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetSchemaManagerFactory\u0028\u0029", + "name": "getSchemaManagerFactory", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getSchemaManagerFactory" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetSchemaManagerFactory\u0028\u0029", + "name": "setSchemaManagerFactory", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setSchemaManagerFactory" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AgetDisableTypeComments\u0028\u0029", + "name": "getDisableTypeComments", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method_getDisableTypeComments" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003AsetDisableTypeComments\u0028\u0029", + "name": "setDisableTypeComments", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#method_setDisableTypeComments" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024middlewares", + "name": "middlewares", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#property_middlewares" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024sqlLogger", + "name": "sqlLogger", + "summary": "The\u0020SQL\u0020logger\u0020in\u0020use.\u0020If\u0020null,\u0020SQL\u0020logging\u0020is\u0020disabled.", + "url": "classes/Doctrine-DBAL-Configuration.html#property_sqlLogger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024resultCache", + "name": "resultCache", + "summary": "The\u0020cache\u0020driver\u0020implementation\u0020that\u0020is\u0020used\u0020for\u0020query\u0020result\u0020caching.", + "url": "classes/Doctrine-DBAL-Configuration.html#property_resultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024resultCacheImpl", + "name": "resultCacheImpl", + "summary": "The\u0020cache\u0020driver\u0020implementation\u0020that\u0020is\u0020used\u0020for\u0020query\u0020result\u0020caching.", + "url": "classes/Doctrine-DBAL-Configuration.html#property_resultCacheImpl" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024schemaAssetsFilter", + "name": "schemaAssetsFilter", + "summary": "The\u0020callable\u0020to\u0020use\u0020to\u0020filter\u0020schema\u0020assets.", + "url": "classes/Doctrine-DBAL-Configuration.html#property_schemaAssetsFilter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024autoCommit", + "name": "autoCommit", + "summary": "The\u0020default\u0020auto\u002Dcommit\u0020mode\u0020for\u0020connections.", + "url": "classes/Doctrine-DBAL-Configuration.html#property_autoCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024disableTypeComments", + "name": "disableTypeComments", + "summary": "Whether\u0020type\u0020comments\u0020should\u0020be\u0020disabled\u0020to\u0020provide\u0020the\u0020same\u0020DB\u0020schema\u0020than\nwill\u0020be\u0020obtained\u0020with\u0020DBAL\u00204.x.\u0020This\u0020is\u0020useful\u0020when\u0020relying\u0020only\u0020on\u0020the\nplatform\u002Daware\u0020schema\u0020comparison\u0020\u0028which\u0020does\u0020not\u0020need\u0020those\u0020type\u0020comments\u0029\nrather\u0020than\u0020the\u0020deprecated\u0020legacy\u0020tooling.", + "url": "classes/Doctrine-DBAL-Configuration.html#property_disableTypeComments" + }, { + "fqsen": "\\Doctrine\\DBAL\\Configuration\u003A\u003A\u0024schemaManagerFactory", + "name": "schemaManagerFactory", + "summary": "", + "url": "classes/Doctrine-DBAL-Configuration.html#property_schemaManagerFactory" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection", + "name": "Connection", + "summary": "A\u0020database\u0020abstraction\u002Dlevel\u0020connection\u0020that\u0020implements\u0020features\u0020like\u0020events,\u0020transaction\u0020isolation\u0020levels,\nconfiguration,\u0020emulated\u0020transaction\u0020nesting,\u0020lazy\u0020connecting\u0020and\u0020more.", + "url": "classes/Doctrine-DBAL-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetDatabase\u0028\u0029", + "name": "getDatabase", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetDriver\u0028\u0029", + "name": "getDriver", + "summary": "Gets\u0020the\u0020DBAL\u0020driver\u0020instance.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getDriver" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetConfiguration\u0028\u0029", + "name": "getConfiguration", + "summary": "Gets\u0020the\u0020Configuration\u0020used\u0020by\u0020the\u0020Connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getConfiguration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetEventManager\u0028\u0029", + "name": "getEventManager", + "summary": "Gets\u0020the\u0020EventManager\u0020used\u0020by\u0020the\u0020Connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getEventManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020for\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AcreateExpressionBuilder\u0028\u0029", + "name": "createExpressionBuilder", + "summary": "Creates\u0020an\u0020expression\u0020builder\u0020for\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_createExpressionBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetExpressionBuilder\u0028\u0029", + "name": "getExpressionBuilder", + "summary": "Gets\u0020the\u0020ExpressionBuilder\u0020for\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getExpressionBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AdetectDatabasePlatform\u0028\u0029", + "name": "detectDatabasePlatform", + "summary": "Detects\u0020and\u0020sets\u0020the\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Connection.html#method_detectDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetDatabasePlatformVersion\u0028\u0029", + "name": "getDatabasePlatformVersion", + "summary": "Returns\u0020the\u0020version\u0020of\u0020the\u0020related\u0020platform\u0020if\u0020applicable.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getDatabasePlatformVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020the\u0020database\u0020server\u0020version\u0020if\u0020the\u0020underlying\u0020driver\u0020supports\u0020it.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AisAutoCommit\u0028\u0029", + "name": "isAutoCommit", + "summary": "Returns\u0020the\u0020current\u0020auto\u002Dcommit\u0020mode\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_isAutoCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AsetAutoCommit\u0028\u0029", + "name": "setAutoCommit", + "summary": "Sets\u0020auto\u002Dcommit\u0020mode\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_setAutoCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020first\u0020row\u0020of\u0020the\u0020result\nas\u0020an\u0020associative\u0020array.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020first\u0020row\u0020of\u0020the\u0020result\nas\u0020a\u0020numerically\u0020indexed\u0020array.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020value\u0020of\u0020a\u0020single\u0020column\nof\u0020the\u0020first\u0020row\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AisConnected\u0028\u0029", + "name": "isConnected", + "summary": "Whether\u0020an\u0020actual\u0020connection\u0020to\u0020the\u0020database\u0020is\u0020established.", + "url": "classes/Doctrine-DBAL-Connection.html#method_isConnected" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AisTransactionActive\u0028\u0029", + "name": "isTransactionActive", + "summary": "Checks\u0020whether\u0020a\u0020transaction\u0020is\u0020currently\u0020active.", + "url": "classes/Doctrine-DBAL-Connection.html#method_isTransactionActive" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AaddCriteriaCondition\u0028\u0029", + "name": "addCriteriaCondition", + "summary": "Adds\u0020condition\u0020based\u0020on\u0020the\u0020criteria\u0020to\u0020the\u0020query\u0020components", + "url": "classes/Doctrine-DBAL-Connection.html#method_addCriteriaCondition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Executes\u0020an\u0020SQL\u0020DELETE\u0020statement\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Connection.html#method_delete" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Closes\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_close" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AsetTransactionIsolation\u0028\u0029", + "name": "setTransactionIsolation", + "summary": "Sets\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Connection.html#method_setTransactionIsolation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetTransactionIsolation\u0028\u0029", + "name": "getTransactionIsolation", + "summary": "Gets\u0020the\u0020currently\u0020active\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getTransactionIsolation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Executes\u0020an\u0020SQL\u0020UPDATE\u0020statement\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Connection.html#method_update" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "Inserts\u0020a\u0020table\u0020row\u0020with\u0020specified\u0020data.", + "url": "classes/Doctrine-DBAL-Connection.html#method_insert" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AextractTypeValues\u0028\u0029", + "name": "extractTypeValues", + "summary": "Extract\u0020ordered\u0020type\u0020list\u0020from\u0020an\u0020ordered\u0020column\u0020list\u0020and\u0020type\u0020map.", + "url": "classes/Doctrine-DBAL-Connection.html#method_extractTypeValues" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AquoteIdentifier\u0028\u0029", + "name": "quoteIdentifier", + "summary": "Quotes\u0020a\u0020string\u0020so\u0020it\u0020can\u0020be\u0020safely\u0020used\u0020as\u0020a\u0020table\u0020or\u0020column\u0020name,\u0020even\u0020if\nit\u0020is\u0020a\u0020reserved\u0020name.", + "url": "classes/Doctrine-DBAL-Connection.html#method_quoteIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "The\u0020usage\u0020of\u0020this\u0020method\u0020is\u0020discouraged.\u0020Use\u0020prepared\u0020statements\nor\u0020\u007B\u0040see\u0020AbstractPlatform\u003A\u003AquoteStringLiteral\u0028\u0029\u007D\u0020instead.", + "url": "classes/Doctrine-DBAL-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020array\u0020of\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020array\u0020of\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchAllKeyValue\u0028\u0029", + "name": "fetchAllKeyValue", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020with\u0020the\u0020keys\nmapped\u0020to\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020mapped\u0020to\u0020the\u0020second\u0020column.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchAllKeyValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchAllAssociativeIndexed\u0028\u0029", + "name": "fetchAllAssociativeIndexed", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020with\u0020the\u0020keys\u0020mapped\nto\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020being\u0020an\u0020associative\u0020array\u0020representing\u0020the\u0020rest\u0020of\u0020the\u0020columns\nand\u0020their\u0020values.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchAllAssociativeIndexed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020array\u0020of\u0020the\u0020first\u0020column\u0020values.", + "url": "classes/Doctrine-DBAL-Connection.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AiterateNumeric\u0028\u0029", + "name": "iterateNumeric", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020iterator\u0020over\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Connection.html#method_iterateNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AiterateAssociative\u0028\u0029", + "name": "iterateAssociative", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020iterator\u0020over\u0020rows\u0020represented\nas\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Connection.html#method_iterateAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AiterateKeyValue\u0028\u0029", + "name": "iterateKeyValue", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020iterator\u0020with\u0020the\u0020keys\nmapped\u0020to\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020mapped\u0020to\u0020the\u0020second\u0020column.", + "url": "classes/Doctrine-DBAL-Connection.html#method_iterateKeyValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AiterateAssociativeIndexed\u0028\u0029", + "name": "iterateAssociativeIndexed", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020iterator\u0020with\u0020the\u0020keys\u0020mapped\nto\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020being\u0020an\u0020associative\u0020array\u0020representing\u0020the\u0020rest\u0020of\u0020the\u0020columns\nand\u0020their\u0020values.", + "url": "classes/Doctrine-DBAL-Connection.html#method_iterateAssociativeIndexed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AiterateColumn\u0028\u0029", + "name": "iterateColumn", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020iterator\u0020over\u0020the\u0020first\u0020column\u0020values.", + "url": "classes/Doctrine-DBAL-Connection.html#method_iterateColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AexecuteQuery\u0028\u0029", + "name": "executeQuery", + "summary": "Executes\u0020an,\u0020optionally\u0020parameterized,\u0020SQL\u0020query.", + "url": "classes/Doctrine-DBAL-Connection.html#method_executeQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AexecuteCacheQuery\u0028\u0029", + "name": "executeCacheQuery", + "summary": "Executes\u0020a\u0020caching\u0020query.", + "url": "classes/Doctrine-DBAL-Connection.html#method_executeCacheQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AexecuteStatement\u0028\u0029", + "name": "executeStatement", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020with\u0020the\u0020given\u0020parameters\u0020and\u0020returns\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Connection.html#method_executeStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetTransactionNestingLevel\u0028\u0029", + "name": "getTransactionNestingLevel", + "summary": "Returns\u0020the\u0020current\u0020transaction\u0020nesting\u0020level.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getTransactionNestingLevel" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row,\u0020or\u0020the\u0020last\u0020value\u0020from\u0020a\u0020sequence\u0020object,\ndepending\u0020on\u0020the\u0020underlying\u0020driver.", + "url": "classes/Doctrine-DBAL-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Atransactional\u0028\u0029", + "name": "transactional", + "summary": "Executes\u0020a\u0020function\u0020in\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Connection.html#method_transactional" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AsetNestTransactionsWithSavepoints\u0028\u0029", + "name": "setNestTransactionsWithSavepoints", + "summary": "Sets\u0020if\u0020nested\u0020transactions\u0020should\u0020use\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Connection.html#method_setNestTransactionsWithSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetNestTransactionsWithSavepoints\u0028\u0029", + "name": "getNestTransactionsWithSavepoints", + "summary": "Gets\u0020if\u0020nested\u0020transactions\u0020should\u0020use\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getNestTransactionsWithSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A_getNestedTransactionSavePointName\u0028\u0029", + "name": "_getNestedTransactionSavePointName", + "summary": "Returns\u0020the\u0020savepoint\u0020name\u0020to\u0020use\u0020for\u0020nested\u0020transactions.", + "url": "classes/Doctrine-DBAL-Connection.html#method__getNestedTransactionSavePointName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AupdateTransactionStateAfterCommit\u0028\u0029", + "name": "updateTransactionStateAfterCommit", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_updateTransactionStateAfterCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AdoCommit\u0028\u0029", + "name": "doCommit", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_doCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AcommitAll\u0028\u0029", + "name": "commitAll", + "summary": "Commits\u0020all\u0020current\u0020nesting\u0020transactions.", + "url": "classes/Doctrine-DBAL-Connection.html#method_commitAll" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Cancels\u0020any\u0020database\u0020changes\u0020done\u0020during\u0020the\u0020current\u0020transaction.", + "url": "classes/Doctrine-DBAL-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AcreateSavepoint\u0028\u0029", + "name": "createSavepoint", + "summary": "Creates\u0020a\u0020new\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Connection.html#method_createSavepoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AreleaseSavepoint\u0028\u0029", + "name": "releaseSavepoint", + "summary": "Releases\u0020the\u0020given\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Connection.html#method_releaseSavepoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003ArollbackSavepoint\u0028\u0029", + "name": "rollbackSavepoint", + "summary": "Rolls\u0020back\u0020to\u0020the\u0020given\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Connection.html#method_rollbackSavepoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetWrappedConnection\u0028\u0029", + "name": "getWrappedConnection", + "summary": "Gets\u0020the\u0020wrapped\u0020driver\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getWrappedConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020a\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020or\u0020change\u0020the\ndatabase\u0020schema\u0020through\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020or\u0020change\u0020the\ndatabase\u0020schema\u0020through\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AsetRollbackOnly\u0028\u0029", + "name": "setRollbackOnly", + "summary": "Marks\u0020the\u0020current\u0020transaction\u0020so\u0020that\u0020the\u0020only\u0020possible\noutcome\u0020for\u0020the\u0020transaction\u0020to\u0020be\u0020rolled\u0020back.", + "url": "classes/Doctrine-DBAL-Connection.html#method_setRollbackOnly" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024isRollbackOnly", + "name": "isRollbackOnly", + "summary": "Flag\u0020that\u0020indicates\u0020whether\u0020the\u0020current\u0020transaction\u0020is\u0020marked\u0020for\u0020rollback\u0020only.", + "url": "classes/Doctrine-DBAL-Connection.html#property_isRollbackOnly" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020given\u0020value\u0020to\u0020its\u0020database\u0020representation\u0020according\u0020to\u0020the\u0020conversion\nrules\u0020of\u0020a\u0020specific\u0020DBAL\u0020mapping\u0020type.", + "url": "classes/Doctrine-DBAL-Connection.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020given\u0020value\u0020to\u0020its\u0020PHP\u0020representation\u0020according\u0020to\u0020the\u0020conversion\nrules\u0020of\u0020a\u0020specific\u0020DBAL\u0020mapping\u0020type.", + "url": "classes/Doctrine-DBAL-Connection.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AbindParameters\u0028\u0029", + "name": "bindParameters", + "summary": "Binds\u0020a\u0020set\u0020of\u0020parameters,\u0020some\u0020or\u0020all\u0020of\u0020which\u0020are\u0020typed\u0020with\u0020a\u0020PDO\u0020binding\u0020type\nor\u0020DBAL\u0020mapping\u0020type,\u0020to\u0020a\u0020given\u0020statement.", + "url": "classes/Doctrine-DBAL-Connection.html#method_bindParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AgetBindingInfo\u0028\u0029", + "name": "getBindingInfo", + "summary": "Gets\u0020the\u0020binding\u0020type\u0020of\u0020a\u0020given\u0020type.", + "url": "classes/Doctrine-DBAL-Connection.html#method_getBindingInfo" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AcreateQueryBuilder\u0028\u0029", + "name": "createQueryBuilder", + "summary": "Creates\u0020a\u0020new\u0020instance\u0020of\u0020a\u0020SQL\u0020query\u0020builder.", + "url": "classes/Doctrine-DBAL-Connection.html#method_createQueryBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AexpandArrayParameters\u0028\u0029", + "name": "expandArrayParameters", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_expandArrayParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AneedsArrayParameterConversion\u0028\u0029", + "name": "needsArrayParameterConversion", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_needsArrayParameterConversion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AhandleDriverException\u0028\u0029", + "name": "handleDriverException", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#method_handleDriverException" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003AexecuteUpdate\u0028\u0029", + "name": "executeUpdate", + "summary": "BC\u0020layer\u0020for\u0020a\u0020wide\u002Dspread\u0020use\u002Dcase\u0020of\u0020old\u0020DBAL\u0020APIs", + "url": "classes/Doctrine-DBAL-Connection.html#method_executeUpdate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "BC\u0020layer\u0020for\u0020a\u0020wide\u002Dspread\u0020use\u002Dcase\u0020of\u0020old\u0020DBAL\u0020APIs", + "url": "classes/Doctrine-DBAL-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "BC\u0020layer\u0020for\u0020a\u0020wide\u002Dspread\u0020use\u002Dcase\u0020of\u0020old\u0020DBAL\u0020APIs", + "url": "classes/Doctrine-DBAL-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003APARAM_INT_ARRAY", + "name": "PARAM_INT_ARRAY", + "summary": "Represents\u0020an\u0020array\u0020of\u0020ints\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-Connection.html#constant_PARAM_INT_ARRAY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003APARAM_STR_ARRAY", + "name": "PARAM_STR_ARRAY", + "summary": "Represents\u0020an\u0020array\u0020of\u0020strings\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-Connection.html#constant_PARAM_STR_ARRAY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003APARAM_ASCII_STR_ARRAY", + "name": "PARAM_ASCII_STR_ARRAY", + "summary": "Represents\u0020an\u0020array\u0020of\u0020ascii\u0020strings\u0020to\u0020be\u0020expanded\u0020by\u0020Doctrine\u0020SQL\u0020parsing.", + "url": "classes/Doctrine-DBAL-Connection.html#constant_PARAM_ASCII_STR_ARRAY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024_conn", + "name": "_conn", + "summary": "The\u0020wrapped\u0020driver\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#property__conn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024_config", + "name": "_config", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#property__config" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024_eventManager", + "name": "_eventManager", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#property__eventManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024_expr", + "name": "_expr", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#property__expr" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024autoCommit", + "name": "autoCommit", + "summary": "The\u0020current\u0020auto\u002Dcommit\u0020mode\u0020of\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Connection.html#property_autoCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024transactionNestingLevel", + "name": "transactionNestingLevel", + "summary": "The\u0020transaction\u0020nesting\u0020level.", + "url": "classes/Doctrine-DBAL-Connection.html#property_transactionNestingLevel" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024transactionIsolationLevel", + "name": "transactionIsolationLevel", + "summary": "The\u0020currently\u0020active\u0020transaction\u0020isolation\u0020level\u0020or\u0020NULL\u0020before\u0020it\u0020has\u0020been\u0020determined.", + "url": "classes/Doctrine-DBAL-Connection.html#property_transactionIsolationLevel" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024nestTransactionsWithSavepoints", + "name": "nestTransactionsWithSavepoints", + "summary": "If\u0020nested\u0020transactions\u0020should\u0020use\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Connection.html#property_nestTransactionsWithSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024params", + "name": "params", + "summary": "The\u0020parameters\u0020used\u0020during\u0020creation\u0020of\u0020the\u0020Connection\u0020instance.", + "url": "classes/Doctrine-DBAL-Connection.html#property_params" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024platform", + "name": "platform", + "summary": "The\u0020database\u0020platform\u0020object\u0020used\u0020by\u0020the\u0020connection\u0020or\u0020NULL\u0020before\u0020it\u0027s\u0020initialized.", + "url": "classes/Doctrine-DBAL-Connection.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024exceptionConverter", + "name": "exceptionConverter", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#property_exceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#property_parser" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024_schemaManager", + "name": "_schemaManager", + "summary": "The\u0020schema\u0020manager.", + "url": "classes/Doctrine-DBAL-Connection.html#property__schemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024_driver", + "name": "_driver", + "summary": "The\u0020used\u0020DBAL\u0020driver.", + "url": "classes/Doctrine-DBAL-Connection.html#property__driver" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connection\u003A\u003A\u0024schemaManagerFactory", + "name": "schemaManagerFactory", + "summary": "", + "url": "classes/Doctrine-DBAL-Connection.html#property_schemaManagerFactory" + }, { + "fqsen": "\\Doctrine\\DBAL\\ConnectionException", + "name": "ConnectionException", + "summary": "", + "url": "classes/Doctrine-DBAL-ConnectionException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ConnectionException\u003A\u003AcommitFailedRollbackOnly\u0028\u0029", + "name": "commitFailedRollbackOnly", + "summary": "", + "url": "classes/Doctrine-DBAL-ConnectionException.html#method_commitFailedRollbackOnly" + }, { + "fqsen": "\\Doctrine\\DBAL\\ConnectionException\u003A\u003AnoActiveTransaction\u0028\u0029", + "name": "noActiveTransaction", + "summary": "", + "url": "classes/Doctrine-DBAL-ConnectionException.html#method_noActiveTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\ConnectionException\u003A\u003AsavepointsNotSupported\u0028\u0029", + "name": "savepointsNotSupported", + "summary": "", + "url": "classes/Doctrine-DBAL-ConnectionException.html#method_savepointsNotSupported" + }, { + "fqsen": "\\Doctrine\\DBAL\\ConnectionException\u003A\u003AmayNotAlterNestedTransactionWithSavepointsInTransaction\u0028\u0029", + "name": "mayNotAlterNestedTransactionWithSavepointsInTransaction", + "summary": "", + "url": "classes/Doctrine-DBAL-ConnectionException.html#method_mayNotAlterNestedTransactionWithSavepointsInTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection", + "name": "PrimaryReadReplicaConnection", + "summary": "Primary\u002DReplica\u0020Connection", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AisConnectedToPrimary\u0028\u0029", + "name": "isConnectedToPrimary", + "summary": "Checks\u0020if\u0020the\u0020connection\u0020is\u0020currently\u0020towards\u0020the\u0020primary\u0020or\u0020not.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_isConnectedToPrimary" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AperformConnect\u0028\u0029", + "name": "performConnect", + "summary": "", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_performConnect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AensureConnectedToPrimary\u0028\u0029", + "name": "ensureConnectedToPrimary", + "summary": "Connects\u0020to\u0020the\u0020primary\u0020node\u0020of\u0020the\u0020database\u0020cluster.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_ensureConnectedToPrimary" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AensureConnectedToReplica\u0028\u0029", + "name": "ensureConnectedToReplica", + "summary": "Connects\u0020to\u0020a\u0020replica\u0020node\u0020of\u0020the\u0020database\u0020cluster.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_ensureConnectedToReplica" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AconnectTo\u0028\u0029", + "name": "connectTo", + "summary": "Connects\u0020to\u0020a\u0020specific\u0020connection.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_connectTo" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AchooseConnectionConfiguration\u0028\u0029", + "name": "chooseConnectionConfiguration", + "summary": "", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_chooseConnectionConfiguration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AexecuteStatement\u0028\u0029", + "name": "executeStatement", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020with\u0020the\u0020given\u0020parameters\u0020and\u0020returns\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_executeStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Cancels\u0020any\u0020database\u0020changes\u0020done\u0020during\u0020the\u0020current\u0020transaction.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Closes\u0020the\u0020connection.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_close" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AcreateSavepoint\u0028\u0029", + "name": "createSavepoint", + "summary": "Creates\u0020a\u0020new\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_createSavepoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003AreleaseSavepoint\u0028\u0029", + "name": "releaseSavepoint", + "summary": "Releases\u0020the\u0020given\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_releaseSavepoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003ArollbackSavepoint\u0028\u0029", + "name": "rollbackSavepoint", + "summary": "Rolls\u0020back\u0020to\u0020the\u0020given\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_rollbackSavepoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003A\u0024connections", + "name": "connections", + "summary": "Primary\u0020and\u0020Replica\u0020connection\u0020\u0028one\u0020of\u0020the\u0020randomly\u0020picked\u0020replicas\u0029.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#property_connections" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections\\PrimaryReadReplicaConnection\u003A\u003A\u0024keepReplica", + "name": "keepReplica", + "summary": "You\u0020can\u0020keep\u0020the\u0020replica\u0020connection\u0020and\u0020then\u0020switch\u0020back\u0020to\u0020it\nduring\u0020the\u0020request\u0020if\u0020you\u0020know\u0020what\u0020you\u0020are\u0020doing.", + "url": "classes/Doctrine-DBAL-Connections-PrimaryReadReplicaConnection.html#property_keepReplica" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractDB2Driver", + "name": "AbstractDB2Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020IBM\u0020DB2\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractDB2Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractDB2Driver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractDB2Driver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractDB2Driver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractDB2Driver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractDB2Driver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-AbstractDB2Driver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractDB2Driver\u003A\u003AcreateDatabasePlatformForVersion\u0028\u0029", + "name": "createDatabasePlatformForVersion", + "summary": "Factory\u0020method\u0020for\u0020creating\u0020the\u0020appropriate\u0020platform\u0020instance\u0020for\u0020the\u0020given\u0020version.", + "url": "classes/Doctrine-DBAL-Driver-AbstractDB2Driver.html#method_createDatabasePlatformForVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractDB2Driver\u003A\u003AgetVersionNumber\u0028\u0029", + "name": "getVersionNumber", + "summary": "Detects\u0020IBM\u0020DB2\u0020server\u0020version", + "url": "classes/Doctrine-DBAL-Driver-AbstractDB2Driver.html#method_getVersionNumber" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver", + "name": "AbstractMySQLDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020MySQL\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver\u003A\u003AcreateDatabasePlatformForVersion\u0028\u0029", + "name": "createDatabasePlatformForVersion", + "summary": "Factory\u0020method\u0020for\u0020creating\u0020the\u0020appropriate\u0020platform\u0020instance\u0020for\u0020the\u0020given\u0020version.", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html#method_createDatabasePlatformForVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver\u003A\u003AgetOracleMysqlVersionNumber\u0028\u0029", + "name": "getOracleMysqlVersionNumber", + "summary": "Get\u0020a\u0020normalized\u0020\u0027version\u0020number\u0027\u0020from\u0020the\u0020server\u0020string\nreturned\u0020by\u0020Oracle\u0020MySQL\u0020servers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html#method_getOracleMysqlVersionNumber" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver\u003A\u003AgetMariaDbMysqlVersionNumber\u0028\u0029", + "name": "getMariaDbMysqlVersionNumber", + "summary": "Detect\u0020MariaDB\u0020server\u0020version,\u0020including\u0020hack\u0020for\u0020some\u0020mariadb\u0020distributions\nthat\u0020starts\u0020with\u0020the\u0020prefix\u0020\u00275.5.5\u002D\u0027", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html#method_getMariaDbMysqlVersionNumber" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-AbstractMySQLDriver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString", + "name": "EasyConnectString", + "summary": "Represents\u0020an\u0020Oracle\u0020Easy\u0020Connect\u0020string", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#method___toString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003AfromArray\u0028\u0029", + "name": "fromArray", + "summary": "Creates\u0020the\u0020object\u0020from\u0020an\u0020array\u0020representation", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#method_fromArray" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003AfromConnectionParameters\u0028\u0029", + "name": "fromConnectionParameters", + "summary": "Creates\u0020the\u0020object\u0020from\u0020the\u0020given\u0020DBAL\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#method_fromConnectionParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003ArenderParams\u0028\u0029", + "name": "renderParams", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#method_renderParams" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003ArenderValue\u0028\u0029", + "name": "renderValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#method_renderValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\\EasyConnectString\u003A\u003A\u0024string", + "name": "string", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver-EasyConnectString.html#property_string" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver", + "name": "AbstractOracleDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020Oracle\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver\u003A\u003AgetEasyConnectString\u0028\u0029", + "name": "getEasyConnectString", + "summary": "Returns\u0020an\u0020appropriate\u0020Easy\u0020Connect\u0020String\u0020for\u0020the\u0020given\u0020parameters.", + "url": "classes/Doctrine-DBAL-Driver-AbstractOracleDriver.html#method_getEasyConnectString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractPostgreSQLDriver", + "name": "AbstractPostgreSQLDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020PostgreSQL\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractPostgreSQLDriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractPostgreSQLDriver\u003A\u003AcreateDatabasePlatformForVersion\u0028\u0029", + "name": "createDatabasePlatformForVersion", + "summary": "Factory\u0020method\u0020for\u0020creating\u0020the\u0020appropriate\u0020platform\u0020instance\u0020for\u0020the\u0020given\u0020version.", + "url": "classes/Doctrine-DBAL-Driver-AbstractPostgreSQLDriver.html#method_createDatabasePlatformForVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractPostgreSQLDriver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractPostgreSQLDriver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractPostgreSQLDriver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractPostgreSQLDriver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractPostgreSQLDriver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-AbstractPostgreSQLDriver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver\\Middleware\\EnableForeignKeys", + "name": "EnableForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLiteDriver-Middleware-EnableForeignKeys.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver\\Middleware\\EnableForeignKeys\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLiteDriver-Middleware-EnableForeignKeys.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver", + "name": "AbstractSQLiteDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Doctrine\\DBAL\\Driver\u007D\u0020interface\u0020for\u0020SQLite\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLiteDriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLiteDriver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLiteDriver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLiteDriver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLServerDriver", + "name": "AbstractSQLServerDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020Microsoft\u0020SQL\u0020Server\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLServerDriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLServerDriver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLServerDriver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLServerDriver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLServerDriver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLServerDriver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-AbstractSQLServerDriver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\API\\ExceptionConverter", + "name": "ExceptionConverter", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-API-ExceptionConverter.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\API\\ExceptionConverter\u003A\u003Aconvert\u0028\u0029", + "name": "convert", + "summary": "Converts\u0020a\u0020given\u0020driver\u002Dlevel\u0020exception\u0020into\u0020a\u0020DBAL\u002Dlevel\u0020driver\u0020exception.", + "url": "classes/Doctrine-DBAL-Driver-API-ExceptionConverter.html#method_convert" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection", + "name": "Connection", + "summary": "Connection\u0020interface.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Exception\u003A\u003AgetSQLState\u0028\u0029", + "name": "getSQLState", + "summary": "Returns\u0020the\u0020SQLSTATE\u0020the\u0020driver\u0020was\u0020in\u0020at\u0020the\u0020time\u0020the\u0020error\u0020occurred.", + "url": "classes/Doctrine-DBAL-Driver-Exception.html#method_getSQLState" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\DataSourceName", + "name": "DataSourceName", + "summary": "IBM\u0020DB2\u0020DSN", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-DataSourceName.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\DataSourceName\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-DataSourceName.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\DataSourceName\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-DataSourceName.html#method_toString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\DataSourceName\u003A\u003AfromArray\u0028\u0029", + "name": "fromArray", + "summary": "Creates\u0020the\u0020object\u0020from\u0020an\u0020array\u0020representation", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-DataSourceName.html#method_fromArray" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\DataSourceName\u003A\u003AfromConnectionParameters\u0028\u0029", + "name": "fromConnectionParameters", + "summary": "Creates\u0020the\u0020object\u0020from\u0020the\u0020given\u0020DBAL\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-DataSourceName.html#method_fromConnectionParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\DataSourceName\u003A\u003A\u0024string", + "name": "string", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-DataSourceName.html#property_string" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020IBM\u0020DB2\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Result\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Result.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_bind" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003AbindLobs\u0028\u0029", + "name": "bindLobs", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_bindLobs" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003AcreateTemporaryFile\u0028\u0029", + "name": "createTemporaryFile", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_createTemporaryFile" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003AcopyStreamToStream\u0028\u0029", + "name": "copyStreamToStream", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#method_copyStreamToStream" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003A\u0024stmt", + "name": "stmt", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#property_stmt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003A\u0024parameters", + "name": "parameters", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#property_parameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2\\Statement\u003A\u003A\u0024lobs", + "name": "lobs", + "summary": "Map\u0020of\u0020LOB\u0020parameter\u0020positions\u0020to\u0020the\u0020tuples\u0020containing\u0020reference\u0020to\u0020the\u0020variable\u0020bound\u0020to\u0020the\u0020driver\u0020statement\nand\u0020the\u0020temporary\u0020file\u0020handle\u0020bound\u0020to\u0020the\u0020underlying\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-IBMDB2-Statement.html#property_lobs" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware", + "name": "AbstractConnectionMiddleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractConnectionMiddleware\u003A\u003A\u0024wrappedConnection", + "name": "wrappedConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractConnectionMiddleware.html#property_wrappedConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware", + "name": "AbstractDriverMiddleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003AcreateDatabasePlatformForVersion\u0028\u0029", + "name": "createDatabasePlatformForVersion", + "summary": "Factory\u0020method\u0020for\u0020creating\u0020the\u0020appropriate\u0020platform\u0020instance\u0020for\u0020the\u0020given\u0020version.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#method_createDatabasePlatformForVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractDriverMiddleware\u003A\u003A\u0024wrappedDriver", + "name": "wrappedDriver", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractDriverMiddleware.html#property_wrappedDriver" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware", + "name": "AbstractResultMiddleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractResultMiddleware\u003A\u003A\u0024wrappedResult", + "name": "wrappedResult", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractResultMiddleware.html#property_wrappedResult" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware", + "name": "AbstractStatementMiddleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractStatementMiddleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractStatementMiddleware.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractStatementMiddleware.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractStatementMiddleware.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractStatementMiddleware.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\\AbstractStatementMiddleware\u003A\u003A\u0024wrappedStatement", + "name": "wrappedStatement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware-AbstractStatementMiddleware.html#property_wrappedStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware", + "name": "Middleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Middleware.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003AgetWrappedResourceHandle\u0028\u0029", + "name": "getWrappedResourceHandle", + "summary": "Retrieves\u0020mysqli\u0020native\u0020resource\u0020handle.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_getWrappedResourceHandle" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003AOPTION_FLAGS", + "name": "OPTION_FLAGS", + "summary": "Name\u0020of\u0020the\u0020option\u0020to\u0020set\u0020connection\u0020flags", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#constant_OPTION_FLAGS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020MySQL\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Driver\u003A\u003AcompilePreInitializers\u0028\u0029", + "name": "compilePreInitializers", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Driver.html#method_compilePreInitializers" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Driver\u003A\u003AcompilePostInitializers\u0028\u0029", + "name": "compilePostInitializers", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Driver.html#method_compilePostInitializers" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Charset", + "name": "Charset", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Charset.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Charset\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Charset.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Charset\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Charset.html#method_initialize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Charset\u003A\u003A\u0024charset", + "name": "charset", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Charset.html#property_charset" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Options", + "name": "Options", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Options.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Options\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Options.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Options\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Options.html#method_initialize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Options\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Options.html#property_options" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure", + "name": "Secure", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#method_initialize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#property_key" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003A\u0024cert", + "name": "cert", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#property_cert" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003A\u0024ca", + "name": "ca", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#property_ca" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003A\u0024capath", + "name": "capath", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#property_capath" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\\Secure\u003A\u003A\u0024cipher", + "name": "cipher", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer-Secure.html#property_cipher" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer", + "name": "Initializer", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Initializer.html#method_initialize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003A\u0024statementReference", + "name": "statementReference", + "summary": "Maintains\u0020a\u0020reference\u0020to\u0020the\u0020Statement\u0020that\u0020generated\u0020this\u0020result.\u0020This\u0020ensures\u0020that\u0020the\u0020lifetime\u0020of\u0020the\nStatement\u0020is\u0020managed\u0020in\u0020conjunction\u0020with\u0020its\u0020associated\u0020results,\u0020so\u0020they\u0020are\u0020destroyed\u0020together\nat\u0020the\u0020appropriate\u0020time\u0020\u007B\u0040see\u0020Statement\u003A\u003A__destruct\u0028\u0029\u007D.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#property_statementReference" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003A\u0024hasColumns", + "name": "hasColumns", + "summary": "Whether\u0020the\u0020statement\u0020result\u0020has\u0020columns.\u0020The\u0020property\u0020should\u0020be\u0020used\u0020only\u0020after\u0020the\u0020result\u0020metadata\nhas\u0020been\u0020fetched\u0020\u0028\u007B\u0040see\u0020\u0024metadataFetched\u007D\u0029.\u0020Otherwise,\u0020the\u0020property\u0020value\u0020is\u0020undetermined.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#property_hasColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003A\u0024columnNames", + "name": "columnNames", + "summary": "Mapping\u0020of\u0020statement\u0020result\u0020column\u0020indexes\u0020to\u0020their\u0020names.\u0020The\u0020property\u0020should\u0020be\u0020used\u0020only\nif\u0020the\u0020statement\u0020result\u0020has\u0020columns\u0020\u0028\u007B\u0040see\u0020\u0024hasColumns\u007D\u0029.\u0020Otherwise,\u0020the\u0020property\u0020value\u0020is\u0020undetermined.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#property_columnNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Result\u003A\u003A\u0024boundValues", + "name": "boundValues", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Result.html#property_boundValues" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method___destruct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003AbindTypedParameters\u0028\u0029", + "name": "bindTypedParameters", + "summary": "Binds\u0020parameters\u0020with\u0020known\u0020types\u0020previously\u0020bound\u0020to\u0020the\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method_bindTypedParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003AsendLongData\u0028\u0029", + "name": "sendLongData", + "summary": "Handle\u0020\u0024this\u002D\u003E_longData\u0020after\u0020regular\u0020query\u0020parameters\u0020have\u0020been\u0020bound", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method_sendLongData" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003AbindUntypedValues\u0028\u0029", + "name": "bindUntypedValues", + "summary": "Binds\u0020a\u0020array\u0020of\u0020values\u0020to\u0020bound\u0020parameters.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#method_bindUntypedValues" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003APARAM_TYPE_MAP", + "name": "PARAM_TYPE_MAP", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#constant_PARAM_TYPE_MAP" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003A\u0024stmt", + "name": "stmt", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#property_stmt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003A\u0024boundValues", + "name": "boundValues", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#property_boundValues" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#property_types" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Statement\u003A\u003A\u0024values", + "name": "values", + "summary": "Contains\u0020ref\u0020values\u0020for\u0020bindValue\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-Mysqli-Statement.html#property_values" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#property_parser" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Connection\u003A\u003A\u0024executionMode", + "name": "executionMode", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Connection.html#property_executionMode" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Driver", + "name": "Driver", + "summary": "A\u0020Doctrine\u0020DBAL\u0020driver\u0020for\u0020the\u0020Oracle\u0020OCI8\u0020PHP\u0020extensions.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Middleware\\InitializeSession", + "name": "InitializeSession", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Middleware-InitializeSession.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Middleware\\InitializeSession\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Middleware-InitializeSession.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetch" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003AfetchAll\u0028\u0029", + "name": "fetchAll", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#method_fetchAll" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Result\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Result.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003AconvertParameterType\u0028\u0029", + "name": "convertParameterType", + "summary": "Converts\u0020DBAL\u0020parameter\u0020type\u0020to\u0020oci8\u0020parameter\u0020type", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#method_convertParameterType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003A\u0024parameterMap", + "name": "parameterMap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#property_parameterMap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Statement\u003A\u003A\u0024executionMode", + "name": "executionMode", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-OCI8-Statement.html#property_executionMode" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003AgetWrappedConnection\u0028\u0029", + "name": "getWrappedConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#method_getWrappedConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\MySQL\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020MySQL\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-PDO-MySQL-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\MySQL\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-PDO-MySQL-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\MySQL\\Driver\u003A\u003AconstructPdoDsn\u0028\u0029", + "name": "constructPdoDsn", + "summary": "Constructs\u0020the\u0020MySQL\u0020PDO\u0020DSN.", + "url": "classes/Doctrine-DBAL-Driver-PDO-MySQL-Driver.html#method_constructPdoDsn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\OCI\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020Oracle\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-PDO-OCI-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\OCI\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-PDO-OCI-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\OCI\\Driver\u003A\u003AconstructPdoDsn\u0028\u0029", + "name": "constructPdoDsn", + "summary": "Constructs\u0020the\u0020Oracle\u0020PDO\u0020DSN.", + "url": "classes/Doctrine-DBAL-Driver-PDO-OCI-Driver.html#method_constructPdoDsn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\PgSQL\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020PostgreSQL\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-PDO-PgSQL-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\PgSQL\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-PDO-PgSQL-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\PgSQL\\Driver\u003A\u003AconstructPdoDsn\u0028\u0029", + "name": "constructPdoDsn", + "summary": "Constructs\u0020the\u0020Postgres\u0020PDO\u0020DSN.", + "url": "classes/Doctrine-DBAL-Driver-PDO-PgSQL-Driver.html#method_constructPdoDsn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetch" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003AfetchAll\u0028\u0029", + "name": "fetchAll", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#method_fetchAll" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Result\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Result.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLite\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Doctrine\\DBAL\\Driver\u007D\u0020interface\u0020for\u0020SQLite\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLite-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLite\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLite-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLite\\Driver\u003A\u003AconstructPdoDsn\u0028\u0029", + "name": "constructPdoDsn", + "summary": "Constructs\u0020the\u0020Sqlite\u0020PDO\u0020DSN.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLite-Driver.html#method_constructPdoDsn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection\u003A\u003AgetWrappedConnection\u0028\u0029", + "name": "getWrappedConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html#method_getWrappedConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020Microsoft\u0020SQL\u0020Server\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Driver\u003A\u003AconstructDsn\u0028\u0029", + "name": "constructDsn", + "summary": "Constructs\u0020the\u0020Sqlsrv\u0020PDO\u0020DSN.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Driver.html#method_constructDsn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Driver\u003A\u003AgetConnectionOptionsDsn\u0028\u0029", + "name": "getConnectionOptionsDsn", + "summary": "Converts\u0020a\u0020connection\u0020options\u0020array\u0020to\u0020the\u0020DSN", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Driver.html#method_getConnectionOptionsDsn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv\\Statement\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-SQLSrv-Statement.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-PDO-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-PDO-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\Statement\u003A\u003A\u0024stmt", + "name": "stmt", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PDO-Statement.html#property_stmt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method___destruct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Connection\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Connection.html#property_parser" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters", + "name": "ConvertParameters", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003AacceptPositionalParameter\u0028\u0029", + "name": "acceptPositionalParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#method_acceptPositionalParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003AacceptNamedParameter\u0028\u0029", + "name": "acceptNamedParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#method_acceptNamedParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003AacceptOther\u0028\u0029", + "name": "acceptOther", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#method_acceptOther" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003AgetSQL\u0028\u0029", + "name": "getSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#method_getSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003AgetParameterMap\u0028\u0029", + "name": "getParameterMap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#method_getParameterMap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003A\u0024buffer", + "name": "buffer", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#property_buffer" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\ConvertParameters\u003A\u003A\u0024parameterMap", + "name": "parameterMap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-ConvertParameters.html#property_parameterMap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020PostgreSQL\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Driver\u003A\u003AconstructConnectionString\u0028\u0029", + "name": "constructConnectionString", + "summary": "Constructs\u0020the\u0020Postgres\u0020connection\u0020string", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Driver.html#method_constructConnectionString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Exception\\UnexpectedValue", + "name": "UnexpectedValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Exception-UnexpectedValue.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Exception\\UnexpectedValue\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Exception-UnexpectedValue.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Exception\\UnexpectedValue\u003A\u003AgetSQLState\u0028\u0029", + "name": "getSQLState", + "summary": "Returns\u0020the\u0020SQLSTATE\u0020the\u0020driver\u0020was\u0020in\u0020at\u0020the\u0020time\u0020the\u0020error\u0020occurred.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Exception-UnexpectedValue.html#method_getSQLState" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Exception\\UnknownParameter", + "name": "UnknownParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Exception-UnknownParameter.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Exception\\UnknownParameter\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Exception-UnknownParameter.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method___destruct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchNumericColumnTypes\u0028\u0029", + "name": "fetchNumericColumnTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchNumericColumnTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AfetchAssociativeColumnTypes\u0028\u0029", + "name": "fetchAssociativeColumnTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_fetchAssociativeColumnTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AmapNumericRow\u0028\u0029", + "name": "mapNumericRow", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_mapNumericRow" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AmapAssociativeRow\u0028\u0029", + "name": "mapAssociativeRow", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_mapAssociativeRow" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003AmapType\u0028\u0029", + "name": "mapType", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#method_mapType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Result\u003A\u003A\u0024result", + "name": "result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Result.html#property_result" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#method___destruct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#property_name" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A\u0024parameterMap", + "name": "parameterMap", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#property_parameterMap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A\u0024parameters", + "name": "parameters", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#property_parameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Statement\u003A\u003A\u0024parameterTypes", + "name": "parameterTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-PgSQL-Statement.html#property_parameterTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result", + "name": "Result", + "summary": "Driver\u002Dlevel\u0020statement\u0020execution\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\ServerInfoAwareConnection", + "name": "ServerInfoAwareConnection", + "summary": "Contract\u0020for\u0020a\u0020connection\u0020that\u0020is\u0020able\u0020to\u0020provide\u0020information\u0020about\u0020the\u0020server\u0020it\u0020is\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-ServerInfoAwareConnection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\ServerInfoAwareConnection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-ServerInfoAwareConnection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Driver", + "name": "Driver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Doctrine\\DBAL\\Driver\u007D\u0020interface\u0020for\u0020SQLite\u0020based\u0020drivers.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003A\u0024result", + "name": "result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#property_result" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Result\u003A\u003A\u0024changes", + "name": "changes", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Result.html#property_changes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003AconvertParamType\u0028\u0029", + "name": "convertParamType", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#method_convertParamType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003APARAM_TYPE_MAP", + "name": "PARAM_TYPE_MAP", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#constant_PARAM_TYPE_MAP" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3\\Statement\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLite3-Statement.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Returns\u0020information\u0020about\u0020the\u0020version\u0020of\u0020the\u0020database\u0020server\u0020connected\u0020to.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Quotes\u0020a\u0020string\u0020for\u0020use\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_quote" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003AgetNativeConnection\u0028\u0029", + "name": "getNativeConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#method_getNativeConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Connection.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Driver", + "name": "Driver", + "summary": "Driver\u0020for\u0020ext\/sqlsrv.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020rows\u0020affected\u0020by\u0020the\u0020DELETE,\u0020INSERT,\u0020or\u0020UPDATE\u0020statement\u0020that\u0020produced\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020columns\u0020in\u0020the\u0020result", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "Discards\u0020the\u0020non\u002Dfetched\u0020portion\u0020of\u0020the\u0020result,\u0020enabling\u0020the\u0020originating\u0020statement\u0020to\u0020be\u0020executed\u0020again.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#method_fetch" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Result\u003A\u003A\u0024statement", + "name": "statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Result.html#property_statement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020SQL\u0020Server\u0020statement\u0020resource", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003ALAST_INSERT_ID_SQL", + "name": "LAST_INSERT_ID_SQL", + "summary": "Append\u0020to\u0020any\u0020INSERT\u0020query\u0020to\u0020retrieve\u0020the\u0020last\u0020insert\u0020id.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#constant_LAST_INSERT_ID_SQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003A\u0024conn", + "name": "conn", + "summary": "The\u0020SQLSRV\u0020Resource.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#property_conn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003A\u0024sql", + "name": "sql", + "summary": "The\u0020SQL\u0020statement\u0020to\u0020execute.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003A\u0024stmt", + "name": "stmt", + "summary": "The\u0020SQLSRV\u0020statement\u0020resource.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#property_stmt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003A\u0024variables", + "name": "variables", + "summary": "References\u0020to\u0020the\u0020variables\u0020bound\u0020as\u0020statement\u0020parameters.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#property_variables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv\\Statement\u003A\u003A\u0024types", + "name": "types", + "summary": "Bound\u0020parameter\u0020types.", + "url": "classes/Doctrine-DBAL-Driver-SQLSrv-Statement.html#property_types" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Statement", + "name": "Statement", + "summary": "Driver\u002Dlevel\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Driver-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Driver-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Driver-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver", + "name": "Driver", + "summary": "Driver\u0020interface.", + "url": "classes/Doctrine-DBAL-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Gets\u0020the\u0020DatabasePlatform\u0020instance\u0020that\u0020provides\u0020all\u0020the\u0020metadata\u0020about\nthe\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\u003A\u003AgetSchemaManager\u0028\u0029", + "name": "getSchemaManager", + "summary": "Gets\u0020the\u0020SchemaManager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020of\u0020the\u0020platform\u0020this\u0020driver\u0020connects\u0020to.", + "url": "classes/Doctrine-DBAL-Driver.html#method_getSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\u003A\u003AgetExceptionConverter\u0028\u0029", + "name": "getExceptionConverter", + "summary": "Gets\u0020the\u0020ExceptionConverter\u0020that\u0020can\u0020be\u0020used\u0020to\u0020convert\u0020driver\u002Dlevel\u0020exceptions\u0020into\u0020DBAL\u0020exceptions.", + "url": "classes/Doctrine-DBAL-Driver.html#method_getExceptionConverter" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager", + "name": "DriverManager", + "summary": "Factory\u0020for\u0020creating\u0020\u007B\u0040see\u0020Connection\u007D\u0020instances.", + "url": "classes/Doctrine-DBAL-DriverManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Private\u0020constructor.\u0020This\u0020class\u0020cannot\u0020be\u0020instantiated.", + "url": "classes/Doctrine-DBAL-DriverManager.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Creates\u0020a\u0020connection\u0020object\u0020based\u0020on\u0020the\u0020specified\u0020parameters.", + "url": "classes/Doctrine-DBAL-DriverManager.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003AgetAvailableDrivers\u0028\u0029", + "name": "getAvailableDrivers", + "summary": "Returns\u0020the\u0020list\u0020of\u0020supported\u0020drivers.", + "url": "classes/Doctrine-DBAL-DriverManager.html#method_getAvailableDrivers" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003AcreateDriver\u0028\u0029", + "name": "createDriver", + "summary": "", + "url": "classes/Doctrine-DBAL-DriverManager.html#method_createDriver" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003AparseDatabaseUrl\u0028\u0029", + "name": "parseDatabaseUrl", + "summary": "Extracts\u0020parts\u0020from\u0020a\u0020database\u0020URL,\u0020if\u0020present,\u0020and\u0020returns\u0020an\nupdated\u0020list\u0020of\u0020parameters.", + "url": "classes/Doctrine-DBAL-DriverManager.html#method_parseDatabaseUrl" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003ADRIVER_MAP", + "name": "DRIVER_MAP", + "summary": "List\u0020of\u0020supported\u0020drivers\u0020and\u0020their\u0020mappings\u0020to\u0020the\u0020driver\u0020classes.", + "url": "classes/Doctrine-DBAL-DriverManager.html#constant_DRIVER_MAP" + }, { + "fqsen": "\\Doctrine\\DBAL\\DriverManager\u003A\u003A\u0024driverSchemeAliases", + "name": "driverSchemeAliases", + "summary": "List\u0020of\u0020URL\u0020schemes\u0020from\u0020a\u0020database\u0020URL\u0020and\u0020their\u0020mappings\u0020to\u0020driver.", + "url": "classes/Doctrine-DBAL-DriverManager.html#property_driverSchemeAliases" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\ConnectionEventArgs", + "name": "ConnectionEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020a\u0020Driver\u0020connection\u0020is\u0020established\u0020inside\u0020Doctrine\\DBAL\\Connection.", + "url": "classes/Doctrine-DBAL-Event-ConnectionEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\ConnectionEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-ConnectionEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\ConnectionEventArgs\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-ConnectionEventArgs.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\ConnectionEventArgs\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-ConnectionEventArgs.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\OracleSessionInit", + "name": "OracleSessionInit", + "summary": "Should\u0020be\u0020used\u0020when\u0020Oracle\u0020Server\u0020default\u0020environment\u0020does\u0020not\u0020match\u0020the\u0020Doctrine\u0020requirements.", + "url": "classes/Doctrine-DBAL-Event-Listeners-OracleSessionInit.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\OracleSessionInit\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-OracleSessionInit.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\OracleSessionInit\u003A\u003ApostConnect\u0028\u0029", + "name": "postConnect", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-OracleSessionInit.html#method_postConnect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\OracleSessionInit\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "Returns\u0020an\u0020array\u0020of\u0020events\u0020this\u0020subscriber\u0020wants\u0020to\u0020listen\u0020to.", + "url": "classes/Doctrine-DBAL-Event-Listeners-OracleSessionInit.html#method_getSubscribedEvents" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\OracleSessionInit\u003A\u003A\u0024_defaultSessionVars", + "name": "_defaultSessionVars", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-OracleSessionInit.html#property__defaultSessionVars" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLiteSessionInit", + "name": "SQLiteSessionInit", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLiteSessionInit.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLiteSessionInit\u003A\u003ApostConnect\u0028\u0029", + "name": "postConnect", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLiteSessionInit.html#method_postConnect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLiteSessionInit\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "Returns\u0020an\u0020array\u0020of\u0020events\u0020this\u0020subscriber\u0020wants\u0020to\u0020listen\u0020to.", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLiteSessionInit.html#method_getSubscribedEvents" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLSessionInit", + "name": "SQLSessionInit", + "summary": "Session\u0020init\u0020listener\u0020for\u0020executing\u0020a\u0020single\u0020SQL\u0020statement\u0020right\u0020after\u0020a\u0020connection\u0020is\u0020opened.", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLSessionInit.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLSessionInit\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLSessionInit.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLSessionInit\u003A\u003ApostConnect\u0028\u0029", + "name": "postConnect", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLSessionInit.html#method_postConnect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLSessionInit\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "Returns\u0020an\u0020array\u0020of\u0020events\u0020this\u0020subscriber\u0020wants\u0020to\u0020listen\u0020to.", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLSessionInit.html#method_getSubscribedEvents" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners\\SQLSessionInit\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-Listeners-SQLSessionInit.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs", + "name": "SchemaAlterTableAddColumnEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020adding\u0020table\u0020columns\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003AgetColumn\u0028\u0029", + "name": "getColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#method_getColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003AgetTableDiff\u0028\u0029", + "name": "getTableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#method_getTableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003A\u0024column", + "name": "column", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#property_column" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003A\u0024tableDiff", + "name": "tableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#property_tableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableAddColumnEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs", + "name": "SchemaAlterTableChangeColumnEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020changing\u0020table\u0020columns\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003AgetColumnDiff\u0028\u0029", + "name": "getColumnDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#method_getColumnDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003AgetTableDiff\u0028\u0029", + "name": "getTableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#method_getTableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003A\u0024columnDiff", + "name": "columnDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#property_columnDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003A\u0024tableDiff", + "name": "tableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#property_tableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableChangeColumnEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs", + "name": "SchemaAlterTableEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020creating\u0020tables\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003AgetTableDiff\u0028\u0029", + "name": "getTableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#method_getTableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003A\u0024tableDiff", + "name": "tableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#property_tableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs", + "name": "SchemaAlterTableRemoveColumnEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020removing\u0020table\u0020columns\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003AgetColumn\u0028\u0029", + "name": "getColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#method_getColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003AgetTableDiff\u0028\u0029", + "name": "getTableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#method_getTableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003A\u0024column", + "name": "column", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#property_column" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003A\u0024tableDiff", + "name": "tableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#property_tableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRemoveColumnEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs", + "name": "SchemaAlterTableRenameColumnEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020renaming\u0020table\u0020columns\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003AgetOldColumnName\u0028\u0029", + "name": "getOldColumnName", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method_getOldColumnName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003AgetColumn\u0028\u0029", + "name": "getColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method_getColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003AgetTableDiff\u0028\u0029", + "name": "getTableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method_getTableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003A\u0024oldColumnName", + "name": "oldColumnName", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#property_oldColumnName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003A\u0024column", + "name": "column", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#property_column" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003A\u0024tableDiff", + "name": "tableDiff", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#property_tableDiff" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaAlterTableRenameColumnEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs", + "name": "SchemaColumnDefinitionEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020the\u0020portable\u0020column\u0020definition\u0020is\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003AsetColumn\u0028\u0029", + "name": "setColumn", + "summary": "Allows\u0020to\u0020clear\u0020the\u0020column\u0020which\u0020means\u0020the\u0020column\u0020will\u0020be\u0020excluded\u0020from\ntables\u0020column\u0020list.", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method_setColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003AgetColumn\u0028\u0029", + "name": "getColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method_getColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003AgetTableColumn\u0028\u0029", + "name": "getTableColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method_getTableColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method_getTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003AgetDatabase\u0028\u0029", + "name": "getDatabase", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method_getDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003A\u0024column", + "name": "column", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#property_column" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003A\u0024tableColumn", + "name": "tableColumn", + "summary": "Raw\u0020column\u0020data\u0020as\u0020fetched\u0020from\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#property_tableColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#property_table" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003A\u0024database", + "name": "database", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#property_database" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaColumnDefinitionEventArgs.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs", + "name": "SchemaCreateTableColumnEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020creating\u0020table\u0020columns\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003AgetColumn\u0028\u0029", + "name": "getColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#method_getColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#method_getTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003A\u0024column", + "name": "column", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#property_column" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#property_table" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableColumnEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs", + "name": "SchemaCreateTableEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020SQL\u0020queries\u0020for\u0020creating\u0020tables\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method_getTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method_getOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003AaddSql\u0028\u0029", + "name": "addSql", + "summary": "Passing\u0020multiple\u0020SQL\u0020statements\u0020as\u0020an\u0020array\u0020is\u0020deprecated.\u0020Pass\u0020each\u0020statement\u0020as\u0020an\u0020individual\u0020argument\u0020instead.", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method_addSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#property_table" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003A\u0024columns", + "name": "columns", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#property_columns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#property_options" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaCreateTableEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs", + "name": "SchemaDropTableEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020the\u0020SQL\u0020query\u0020for\u0020dropping\u0020tables\u0020are\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractPlatform\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#method_getTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003AgetPlatform\u0028\u0029", + "name": "getPlatform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#method_getPlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003AsetSql\u0028\u0029", + "name": "setSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#method_setSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#property_table" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaDropTableEventArgs.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaEventArgs", + "name": "SchemaEventArgs", + "summary": "Base\u0020class\u0020for\u0020schema\u0020related\u0020events.", + "url": "classes/Doctrine-DBAL-Event-SchemaEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaEventArgs\u003A\u003A\u0024preventDefault", + "name": "preventDefault", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaEventArgs.html#property_preventDefault" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaEventArgs\u003A\u003AisDefaultPrevented\u0028\u0029", + "name": "isDefaultPrevented", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaEventArgs.html#method_isDefaultPrevented" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs", + "name": "SchemaIndexDefinitionEventArgs", + "summary": "Event\u0020Arguments\u0020used\u0020when\u0020the\u0020portable\u0020index\u0020definition\u0020is\u0020generated\u0020inside\u0020\u007B\u0040see\u0020AbstractSchemaManager\u007D.", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003AsetIndex\u0028\u0029", + "name": "setIndex", + "summary": "Allows\u0020to\u0020clear\u0020the\u0020index\u0020which\u0020means\u0020the\u0020index\u0020will\u0020be\u0020excluded\u0020from\u0020tables\u0020index\u0020list.", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#method_setIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003AgetIndex\u0028\u0029", + "name": "getIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#method_getIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003AgetTableIndex\u0028\u0029", + "name": "getTableIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#method_getTableIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#method_getTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003A\u0024index", + "name": "index", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#property_index" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003A\u0024tableIndex", + "name": "tableIndex", + "summary": "Raw\u0020index\u0020data\u0020as\u0020fetched\u0020from\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#property_tableIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003A\u0024table", + "name": "table", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#property_table" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-SchemaIndexDefinitionEventArgs.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionBeginEventArgs", + "name": "TransactionBeginEventArgs", + "summary": "EventArgs\u0020is\u0020the\u0020base\u0020class\u0020for\u0020classes\u0020containing\u0020event\u0020data.", + "url": "classes/Doctrine-DBAL-Event-TransactionBeginEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionCommitEventArgs", + "name": "TransactionCommitEventArgs", + "summary": "EventArgs\u0020is\u0020the\u0020base\u0020class\u0020for\u0020classes\u0020containing\u0020event\u0020data.", + "url": "classes/Doctrine-DBAL-Event-TransactionCommitEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionEventArgs", + "name": "TransactionEventArgs", + "summary": "EventArgs\u0020is\u0020the\u0020base\u0020class\u0020for\u0020classes\u0020containing\u0020event\u0020data.", + "url": "classes/Doctrine-DBAL-Event-TransactionEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionEventArgs\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-TransactionEventArgs.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionEventArgs\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-TransactionEventArgs.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionEventArgs\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Event-TransactionEventArgs.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\TransactionRollBackEventArgs", + "name": "TransactionRollBackEventArgs", + "summary": "EventArgs\u0020is\u0020the\u0020base\u0020class\u0020for\u0020classes\u0020containing\u0020event\u0020data.", + "url": "classes/Doctrine-DBAL-Event-TransactionRollBackEventArgs.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events", + "name": "Events", + "summary": "Container\u0020for\u0020all\u0020DBAL\u0020events.", + "url": "classes/Doctrine-DBAL-Events.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Private\u0020constructor.\u0020This\u0020class\u0020cannot\u0020be\u0020instantiated.", + "url": "classes/Doctrine-DBAL-Events.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003ApostConnect", + "name": "postConnect", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_postConnect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaCreateTable", + "name": "onSchemaCreateTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaCreateTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaCreateTableColumn", + "name": "onSchemaCreateTableColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaCreateTableColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaDropTable", + "name": "onSchemaDropTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaDropTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaAlterTable", + "name": "onSchemaAlterTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaAlterTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaAlterTableAddColumn", + "name": "onSchemaAlterTableAddColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaAlterTableAddColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaAlterTableRemoveColumn", + "name": "onSchemaAlterTableRemoveColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaAlterTableRemoveColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaAlterTableChangeColumn", + "name": "onSchemaAlterTableChangeColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaAlterTableChangeColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaAlterTableRenameColumn", + "name": "onSchemaAlterTableRenameColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaAlterTableRenameColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaColumnDefinition", + "name": "onSchemaColumnDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonSchemaIndexDefinition", + "name": "onSchemaIndexDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onSchemaIndexDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonTransactionBegin", + "name": "onTransactionBegin", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onTransactionBegin" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonTransactionCommit", + "name": "onTransactionCommit", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onTransactionCommit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Events\u003A\u003AonTransactionRollBack", + "name": "onTransactionRollBack", + "summary": "", + "url": "classes/Doctrine-DBAL-Events.html#constant_onTransactionRollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\ConnectionException", + "name": "ConnectionException", + "summary": "Base\u0020class\u0020for\u0020all\u0020connection\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-ConnectionException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\ConnectionLost", + "name": "ConnectionLost", + "summary": "Base\u0020class\u0020for\u0020all\u0020connection\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-ConnectionLost.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\ConstraintViolationException", + "name": "ConstraintViolationException", + "summary": "Base\u0020class\u0020for\u0020all\u0020constraint\u0020violation\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-ConstraintViolationException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DatabaseDoesNotExist", + "name": "DatabaseDoesNotExist", + "summary": "Base\u0020class\u0020for\u0020all\u0020unknown\u0020database\u0020object\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-DatabaseDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DatabaseObjectExistsException", + "name": "DatabaseObjectExistsException", + "summary": "Base\u0020class\u0020for\u0020all\u0020already\u0020existing\u0020database\u0020object\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-DatabaseObjectExistsException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DatabaseObjectNotFoundException", + "name": "DatabaseObjectNotFoundException", + "summary": "Base\u0020class\u0020for\u0020all\u0020unknown\u0020database\u0020object\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-DatabaseObjectNotFoundException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DatabaseRequired", + "name": "DatabaseRequired", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-DatabaseRequired.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DatabaseRequired\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-DatabaseRequired.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DeadlockException", + "name": "DeadlockException", + "summary": "Exception\u0020for\u0020a\u0020deadlock\u0020error\u0020of\u0020a\u0020transaction\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-DeadlockException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DriverException", + "name": "DriverException", + "summary": "Base\u0020class\u0020for\u0020all\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-DriverException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DriverException\u003A\u003AgetSQLState\u0028\u0029", + "name": "getSQLState", + "summary": "Returns\u0020the\u0020SQLSTATE\u0020the\u0020driver\u0020was\u0020in\u0020at\u0020the\u0020time\u0020the\u0020error\u0020occurred.", + "url": "classes/Doctrine-DBAL-Exception-DriverException.html#method_getSQLState" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DriverException\u003A\u003AgetQuery\u0028\u0029", + "name": "getQuery", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-DriverException.html#method_getQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\DriverException\u003A\u003A\u0024query", + "name": "query", + "summary": "The\u0020query\u0020that\u0020triggered\u0020the\u0020exception,\u0020if\u0020any.", + "url": "classes/Doctrine-DBAL-Exception-DriverException.html#property_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\ForeignKeyConstraintViolationException", + "name": "ForeignKeyConstraintViolationException", + "summary": "Exception\u0020for\u0020a\u0020foreign\u0020key\u0020constraint\u0020violation\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-ForeignKeyConstraintViolationException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "Exception\u0020to\u0020be\u0020thrown\u0020when\u0020invalid\u0020arguments\u0020are\u0020passed\u0020to\u0020any\u0020DBAL\u0020API", + "url": "classes/Doctrine-DBAL-Exception-InvalidArgumentException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\InvalidArgumentException\u003A\u003AfromEmptyCriteria\u0028\u0029", + "name": "fromEmptyCriteria", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-InvalidArgumentException.html#method_fromEmptyCriteria" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\InvalidFieldNameException", + "name": "InvalidFieldNameException", + "summary": "Exception\u0020for\u0020an\u0020invalid\u0020specified\u0020field\u0020name\u0020in\u0020a\u0020statement\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-InvalidFieldNameException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\InvalidLockMode", + "name": "InvalidLockMode", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-InvalidLockMode.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\InvalidLockMode\u003A\u003AfromLockMode\u0028\u0029", + "name": "fromLockMode", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-InvalidLockMode.html#method_fromLockMode" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\LockWaitTimeoutException", + "name": "LockWaitTimeoutException", + "summary": "Exception\u0020for\u0020a\u0020lock\u0020wait\u0020timeout\u0020error\u0020of\u0020a\u0020transaction\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-LockWaitTimeoutException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\MalformedDsnException", + "name": "MalformedDsnException", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-MalformedDsnException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\MalformedDsnException\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception-MalformedDsnException.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\NonUniqueFieldNameException", + "name": "NonUniqueFieldNameException", + "summary": "Exception\u0020for\u0020a\u0020non\u002Dunique\/ambiguous\u0020specified\u0020field\u0020name\u0020in\u0020a\u0020statement\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-NonUniqueFieldNameException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException", + "name": "NotNullConstraintViolationException", + "summary": "Exception\u0020for\u0020a\u0020NOT\u0020NULL\u0020constraint\u0020violation\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-NotNullConstraintViolationException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\ReadOnlyException", + "name": "ReadOnlyException", + "summary": "Exception\u0020for\u0020a\u0020write\u0020operation\u0020attempt\u0020on\u0020a\u0020read\u002Donly\u0020database\u0020element\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-ReadOnlyException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\RetryableException", + "name": "RetryableException", + "summary": "Marker\u0020interface\u0020for\u0020all\u0020exceptions\u0020where\u0020retrying\u0020the\u0020transaction\u0020makes\u0020sense.", + "url": "classes/Doctrine-DBAL-Exception-RetryableException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\SchemaDoesNotExist", + "name": "SchemaDoesNotExist", + "summary": "Base\u0020class\u0020for\u0020all\u0020unknown\u0020database\u0020object\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-SchemaDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\ServerException", + "name": "ServerException", + "summary": "Base\u0020class\u0020for\u0020all\u0020server\u0020related\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-ServerException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\SyntaxErrorException", + "name": "SyntaxErrorException", + "summary": "Exception\u0020for\u0020a\u0020syntax\u0020error\u0020in\u0020a\u0020statement\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-SyntaxErrorException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\TableExistsException", + "name": "TableExistsException", + "summary": "Exception\u0020for\u0020an\u0020already\u0020existing\u0020table\u0020referenced\u0020in\u0020a\u0020statement\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-TableExistsException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\TableNotFoundException", + "name": "TableNotFoundException", + "summary": "Exception\u0020for\u0020an\u0020unknown\u0020table\u0020referenced\u0020in\u0020a\u0020statement\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-TableNotFoundException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\TransactionRolledBack", + "name": "TransactionRolledBack", + "summary": "Base\u0020class\u0020for\u0020all\u0020errors\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-TransactionRolledBack.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\\UniqueConstraintViolationException", + "name": "UniqueConstraintViolationException", + "summary": "Exception\u0020for\u0020a\u0020unique\u0020constraint\u0020violation\u0020detected\u0020in\u0020the\u0020driver.", + "url": "classes/Doctrine-DBAL-Exception-UniqueConstraintViolationException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AnotSupported\u0028\u0029", + "name": "notSupported", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_notSupported" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AinvalidPlatformType\u0028\u0029", + "name": "invalidPlatformType", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_invalidPlatformType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AinvalidPlatformVersionSpecified\u0028\u0029", + "name": "invalidPlatformVersionSpecified", + "summary": "Returns\u0020a\u0020new\u0020instance\u0020for\u0020an\u0020invalid\u0020specified\u0020platform\u0020version.", + "url": "classes/Doctrine-DBAL-Exception.html#method_invalidPlatformVersionSpecified" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AdriverRequired\u0028\u0029", + "name": "driverRequired", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_driverRequired" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AunknownDriver\u0028\u0029", + "name": "unknownDriver", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_unknownDriver" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AinvalidWrapperClass\u0028\u0029", + "name": "invalidWrapperClass", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_invalidWrapperClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AinvalidDriverClass\u0028\u0029", + "name": "invalidDriverClass", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_invalidDriverClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AnoColumnsSpecifiedForTable\u0028\u0029", + "name": "noColumnsSpecifiedForTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_noColumnsSpecifiedForTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AtypeExists\u0028\u0029", + "name": "typeExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_typeExists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AunknownColumnType\u0028\u0029", + "name": "unknownColumnType", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_unknownColumnType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AtypeNotFound\u0028\u0029", + "name": "typeNotFound", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_typeNotFound" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AtypeNotRegistered\u0028\u0029", + "name": "typeNotRegistered", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_typeNotRegistered" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception\u003A\u003AtypeAlreadyRegistered\u0028\u0029", + "name": "typeAlreadyRegistered", + "summary": "", + "url": "classes/Doctrine-DBAL-Exception.html#method_typeAlreadyRegistered" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters", + "name": "ExpandArrayParameters", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AacceptPositionalParameter\u0028\u0029", + "name": "acceptPositionalParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_acceptPositionalParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AacceptNamedParameter\u0028\u0029", + "name": "acceptNamedParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_acceptNamedParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AacceptOther\u0028\u0029", + "name": "acceptOther", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_acceptOther" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AgetSQL\u0028\u0029", + "name": "getSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_getSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_getParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AacceptParameter\u0028\u0029", + "name": "acceptParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_acceptParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AgetTypes\u0028\u0029", + "name": "getTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_getTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003AappendTypedParameter\u0028\u0029", + "name": "appendTypedParameter", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#method_appendTypedParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A\u0024originalParameters", + "name": "originalParameters", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#property_originalParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A\u0024originalTypes", + "name": "originalTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#property_originalTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A\u0024originalParameterIndex", + "name": "originalParameterIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#property_originalParameterIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A\u0024convertedSQL", + "name": "convertedSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#property_convertedSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A\u0024convertedParameters", + "name": "convertedParameters", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#property_convertedParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\ExpandArrayParameters\u003A\u003A\u0024convertedTypes", + "name": "convertedTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-ExpandArrayParameters.html#property_convertedTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\FetchMode", + "name": "FetchMode", + "summary": "Legacy\u0020Class\u0020that\u0020keeps\u0020BC\u0020for\u0020using\u0020the\u0020legacy\u0020APIs\u0020fetch\u0028\u0029\/fetchAll\u0028\u0029.", + "url": "classes/Doctrine-DBAL-FetchMode.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\FetchMode\u003A\u003AASSOCIATIVE", + "name": "ASSOCIATIVE", + "summary": "", + "url": "classes/Doctrine-DBAL-FetchMode.html#constant_ASSOCIATIVE" + }, { + "fqsen": "\\Doctrine\\DBAL\\FetchMode\u003A\u003ANUMERIC", + "name": "NUMERIC", + "summary": "", + "url": "classes/Doctrine-DBAL-FetchMode.html#constant_NUMERIC" + }, { + "fqsen": "\\Doctrine\\DBAL\\FetchMode\u003A\u003ACOLUMN", + "name": "COLUMN", + "summary": "", + "url": "classes/Doctrine-DBAL-FetchMode.html#constant_COLUMN" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGenerator", + "name": "TableGenerator", + "summary": "Table\u0020ID\u0020Generator\u0020for\u0020those\u0020poor\u0020languages\u0020that\u0020are\u0020missing\u0020sequences.", + "url": "classes/Doctrine-DBAL-Id-TableGenerator.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGenerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGenerator.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGenerator\u003A\u003AnextValue\u0028\u0029", + "name": "nextValue", + "summary": "Generates\u0020the\u0020next\u0020unused\u0020value\u0020for\u0020the\u0020given\u0020sequence\u0020name.", + "url": "classes/Doctrine-DBAL-Id-TableGenerator.html#method_nextValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGenerator\u003A\u003A\u0024conn", + "name": "conn", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGenerator.html#property_conn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGenerator\u003A\u003A\u0024generatorTableName", + "name": "generatorTableName", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGenerator.html#property_generatorTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGenerator\u003A\u003A\u0024sequences", + "name": "sequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGenerator.html#property_sequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor", + "name": "TableGeneratorSchemaVisitor", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003AacceptSchema\u0028\u0029", + "name": "acceptSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method_acceptSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003AacceptColumn\u0028\u0029", + "name": "acceptColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method_acceptColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003AacceptIndex\u0028\u0029", + "name": "acceptIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method_acceptIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor\u003A\u003A\u0024generatorTableName", + "name": "generatorTableName", + "summary": "", + "url": "classes/Doctrine-DBAL-Id-TableGeneratorSchemaVisitor.html#property_generatorTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\LockMode", + "name": "LockMode", + "summary": "Contains\u0020all\u0020DBAL\u0020LockModes.", + "url": "classes/Doctrine-DBAL-LockMode.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\LockMode\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Private\u0020constructor.\u0020This\u0020class\u0020cannot\u0020be\u0020instantiated.", + "url": "classes/Doctrine-DBAL-LockMode.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\LockMode\u003A\u003ANONE", + "name": "NONE", + "summary": "", + "url": "classes/Doctrine-DBAL-LockMode.html#constant_NONE" + }, { + "fqsen": "\\Doctrine\\DBAL\\LockMode\u003A\u003AOPTIMISTIC", + "name": "OPTIMISTIC", + "summary": "", + "url": "classes/Doctrine-DBAL-LockMode.html#constant_OPTIMISTIC" + }, { + "fqsen": "\\Doctrine\\DBAL\\LockMode\u003A\u003APESSIMISTIC_READ", + "name": "PESSIMISTIC_READ", + "summary": "", + "url": "classes/Doctrine-DBAL-LockMode.html#constant_PESSIMISTIC_READ" + }, { + "fqsen": "\\Doctrine\\DBAL\\LockMode\u003A\u003APESSIMISTIC_WRITE", + "name": "PESSIMISTIC_WRITE", + "summary": "", + "url": "classes/Doctrine-DBAL-LockMode.html#constant_PESSIMISTIC_WRITE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method___destruct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method_exec" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Initiates\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commits\u0020a\u0020transaction.", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method_commit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rolls\u0020back\u0020the\u0020current\u0020transaction,\u0020as\u0020initiated\u0020by\u0020beginTransaction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#method_rollBack" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Connection\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Connection.html#property_logger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack", + "name": "DebugStack", + "summary": "Includes\u0020executed\u0020SQLs\u0020in\u0020a\u0020Debug\u0020Stack.", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003AstartQuery\u0028\u0029", + "name": "startQuery", + "summary": "Logs\u0020a\u0020SQL\u0020statement\u0020somewhere.", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#method_startQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003AstopQuery\u0028\u0029", + "name": "stopQuery", + "summary": "Marks\u0020the\u0020last\u0020started\u0020query\u0020as\u0020stopped.\u0020This\u0020can\u0020be\u0020used\u0020for\u0020timing\u0020of\u0020queries.", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#method_stopQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003A\u0024queries", + "name": "queries", + "summary": "Executed\u0020SQL\u0020queries.", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#property_queries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003A\u0024enabled", + "name": "enabled", + "summary": "If\u0020Debug\u0020Stack\u0020is\u0020enabled\u0020\u0028log\u0020queries\u0029\u0020or\u0020not.", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#property_enabled" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003A\u0024start", + "name": "start", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#property_start" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\DebugStack\u003A\u003A\u0024currentQuery", + "name": "currentQuery", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-DebugStack.html#property_currentQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Driver", + "name": "Driver", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Logging-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Driver\u003A\u003AmaskPassword\u0028\u0029", + "name": "maskPassword", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Driver.html#method_maskPassword" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Driver\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Driver.html#property_logger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\LoggerChain", + "name": "LoggerChain", + "summary": "Chains\u0020multiple\u0020SQLLogger.", + "url": "classes/Doctrine-DBAL-Logging-LoggerChain.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\LoggerChain\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-LoggerChain.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\LoggerChain\u003A\u003AstartQuery\u0028\u0029", + "name": "startQuery", + "summary": "Logs\u0020a\u0020SQL\u0020statement\u0020somewhere.", + "url": "classes/Doctrine-DBAL-Logging-LoggerChain.html#method_startQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\LoggerChain\u003A\u003AstopQuery\u0028\u0029", + "name": "stopQuery", + "summary": "Marks\u0020the\u0020last\u0020started\u0020query\u0020as\u0020stopped.\u0020This\u0020can\u0020be\u0020used\u0020for\u0020timing\u0020of\u0020queries.", + "url": "classes/Doctrine-DBAL-Logging-LoggerChain.html#method_stopQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\LoggerChain\u003A\u003A\u0024loggers", + "name": "loggers", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-LoggerChain.html#property_loggers" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Middleware", + "name": "Middleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Middleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Middleware\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Middleware.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Middleware\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Middleware.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Middleware\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Middleware.html#property_logger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\SQLLogger", + "name": "SQLLogger", + "summary": "Interface\u0020for\u0020SQL\u0020loggers.", + "url": "classes/Doctrine-DBAL-Logging-SQLLogger.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\SQLLogger\u003A\u003AstartQuery\u0028\u0029", + "name": "startQuery", + "summary": "Logs\u0020a\u0020SQL\u0020statement\u0020somewhere.", + "url": "classes/Doctrine-DBAL-Logging-SQLLogger.html#method_startQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\SQLLogger\u003A\u003AstopQuery\u0028\u0029", + "name": "stopQuery", + "summary": "Marks\u0020the\u0020last\u0020started\u0020query\u0020as\u0020stopped.\u0020This\u0020can\u0020be\u0020used\u0020for\u0020timing\u0020of\u0020queries.", + "url": "classes/Doctrine-DBAL-Logging-SQLLogger.html#method_stopQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement", + "name": "Statement", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020PHP\u0020variable\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020question\nmark\u0020placeholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020use\u0020to\u0020prepare\u0020the\u0020statement.\u0020Unlike\u0020\u007B\u0040see\u0020bindValue\u0028\u0029\u007D,\nthe\u0020variable\u0020is\u0020bound\u0020as\u0020a\u0020reference\u0020and\u0020will\u0020only\u0020be\u0020evaluated\u0020at\u0020the\u0020time\nthat\u0020PDOStatement\u002D\u003Eexecute\u0028\u0029\u0020is\u0020called.", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020value\u0020to\u0020a\u0020corresponding\u0020named\u0020\u0028not\u0020supported\u0020by\u0020mysqli\u0020driver,\u0020see\u0020comment\u0020below\u0029\u0020or\u0020positional\nplaceholder\u0020in\u0020the\u0020SQL\u0020statement\u0020that\u0020was\u0020used\u0020to\u0020prepare\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#property_logger" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003A\u0024params", + "name": "params", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#property_params" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging\\Statement\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/Doctrine-DBAL-Logging-Statement.html#property_types" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType", + "name": "ParameterType", + "summary": "Contains\u0020statement\u0020parameter\u0020types.", + "url": "classes/Doctrine-DBAL-ParameterType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020cannot\u0020be\u0020instantiated.", + "url": "classes/Doctrine-DBAL-ParameterType.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003ANULL", + "name": "NULL", + "summary": "Represents\u0020the\u0020SQL\u0020NULL\u0020data\u0020type.", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_NULL" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003AINTEGER", + "name": "INTEGER", + "summary": "Represents\u0020the\u0020SQL\u0020INTEGER\u0020data\u0020type.", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_INTEGER" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003ASTRING", + "name": "STRING", + "summary": "Represents\u0020the\u0020SQL\u0020CHAR,\u0020VARCHAR,\u0020or\u0020other\u0020string\u0020data\u0020type.", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_STRING" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003ALARGE_OBJECT", + "name": "LARGE_OBJECT", + "summary": "Represents\u0020the\u0020SQL\u0020large\u0020object\u0020data\u0020type.", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_LARGE_OBJECT" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003ABOOLEAN", + "name": "BOOLEAN", + "summary": "Represents\u0020a\u0020boolean\u0020data\u0020type.", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_BOOLEAN" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003ABINARY", + "name": "BINARY", + "summary": "Represents\u0020a\u0020binary\u0020string\u0020data\u0020type.", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_BINARY" + }, { + "fqsen": "\\Doctrine\\DBAL\\ParameterType\u003A\u003AASCII", + "name": "ASCII", + "summary": "Represents\u0020an\u0020ASCII\u0020string\u0020data\u0020type", + "url": "classes/Doctrine-DBAL-ParameterType.html#constant_ASCII" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform", + "name": "AbstractMySQLPlatform", + "summary": "Provides\u0020the\u0020base\u0020implementation\u0020for\u0020the\u0020lowest\u0020versions\u0020of\u0020supported\u0020MySQL\u002Dlike\u0020database\u0020platforms.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetIdentifierQuoteCharacter\u0028\u0029", + "name": "getIdentifierQuoteCharacter", + "summary": "Gets\u0020the\u0020character\u0020used\u0020for\u0020identifier\u0020quoting.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getIdentifierQuoteCharacter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetRegexpExpression\u0028\u0029", + "name": "getRegexpExpression", + "summary": "Returns\u0020the\u0020regular\u0020expression\u0020operator.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getRegexpExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetConcatExpression\u0028\u0029", + "name": "getConcatExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020concatenate\u0020the\u0020given\u0020expressions.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getConcatExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetLengthExpression\u0028\u0029", + "name": "getLengthExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020length\u0020of\u0020a\u0020text\u0020column\u0020in\u0020characters.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getLengthExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetListTableConstraintsSQL\u0028\u0029", + "name": "getListTableConstraintsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getListTableConstraintsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Gets\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AprefersIdentityColumns\u0028\u0029", + "name": "prefersIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020prefers\u0020identity\u0020columns\u0020\u0028eg.\u0020autoincrement\u0029\u0020for\u0020ID\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_prefersIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AsupportsIdentityColumns\u0028\u0029", + "name": "supportsIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020identity\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_supportsIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetColumnTypeSQLSnippets\u0028\u0029", + "name": "getColumnTypeSQLSnippets", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getColumnTypeSQLSnippets" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetColumnTypeSQLSnippet\u0028\u0029", + "name": "getColumnTypeSQLSnippet", + "summary": "The\u0020SQL\u0020snippet\u0020required\u0020to\u0020elucidate\u0020a\u0020column\u0020type", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getColumnTypeSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetListTableMetadataSQL\u0028\u0029", + "name": "getListTableMetadataSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getListTableMetadataSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetCreateTablesSQL\u0028\u0029", + "name": "getCreateTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getCreateTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AbuildTableOptions\u0028\u0029", + "name": "buildTableOptions", + "summary": "Build\u0020SQL\u0020for\u0020table\u0020options", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_buildTableOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AbuildPartitionOptions\u0028\u0029", + "name": "buildPartitionOptions", + "summary": "Build\u0020SQL\u0020for\u0020partition\u0020options.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_buildPartitionOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AengineSupportsForeignKeys\u0028\u0029", + "name": "engineSupportsForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_engineSupportsForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetPreAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getPreAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetPreAlterTableAlterPrimaryKeySQL\u0028\u0029", + "name": "getPreAlterTableAlterPrimaryKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getPreAlterTableAlterPrimaryKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetPreAlterTableAlterIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableAlterIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getPreAlterTableAlterIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetPreAlterTableRenameIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableRenameIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getPreAlterTableRenameIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetRemainingForeignKeyConstraintsRequiringRenamedIndexes\u0028\u0029", + "name": "getRemainingForeignKeyConstraintsRequiringRenamedIndexes", + "summary": "Returns\u0020the\u0020remaining\u0020foreign\u0020key\u0020constraints\u0020that\u0020require\u0020one\u0020of\u0020the\u0020renamed\u0020indexes.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getRemainingForeignKeyConstraintsRequiringRenamedIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetPostAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPostAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getPostAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetPostAlterTableRenameIndexForeignKeySQL\u0028\u0029", + "name": "getPostAlterTableRenameIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getPostAlterTableRenameIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetCreateIndexSQLFlags\u0028\u0029", + "name": "getCreateIndexSQLFlags", + "summary": "Adds\u0020additional\u0020flags\u0020for\u0020index\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getCreateIndexSQLFlags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetFloatDeclarationSQL\u0028\u0029", + "name": "getFloatDeclarationSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getFloatDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDecimalTypeDeclarationSQL\u0028\u0029", + "name": "getDecimalTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020floating\u0020point\u0020column\u0020of\u0020arbitrary\u0020precision.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDecimalTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetUnsignedDeclaration\u0028\u0029", + "name": "getUnsignedDeclaration", + "summary": "Get\u0020unsigned\u0020declaration\u0020for\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getUnsignedDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDropIndexSQL\u0028\u0029", + "name": "getDropIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020an\u0020index\u0020from\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDropIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDropPrimaryKeySQL\u0028\u0029", + "name": "getDropPrimaryKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDropPrimaryKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDropUniqueConstraintSQL\u0028\u0029", + "name": "getDropUniqueConstraintSQL", + "summary": "The\u0020\u0060ALTER\u0020TABLE\u0020...\u0020DROP\u0020CONSTRAINT\u0060\u0020syntax\u0020is\u0020only\u0020available\u0020as\u0020of\u0020MySQL\u00208.0.19.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDropUniqueConstraintSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetSetTransactionIsolationSQL\u0028\u0029", + "name": "getSetTransactionIsolationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020set\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getSetTransactionIsolationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetReadLockSQL\u0028\u0029", + "name": "getReadLockSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020append\u0020to\u0020any\u0020SELECT\u0020statement\u0020which\u0020locks\u0020rows\u0020in\u0020shared\u0020read\u0020lock.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getReadLockSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetVarcharMaxLength\u0028\u0029", + "name": "getVarcharMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020varchar\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getVarcharMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDropTemporaryTableSQL\u0028\u0029", + "name": "getDropTemporaryTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020safely\u0020drop\u0020a\u0020temporary\u0020table\u0020WITHOUT\u0020implicitly\u0020committing\u0020an\u0020open\u0020transaction.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDropTemporaryTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Gets\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AquoteStringLiteral\u0028\u0029", + "name": "quoteStringLiteral", + "summary": "Quotes\u0020a\u0020literal\u0020string.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_quoteStringLiteral" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDefaultTransactionIsolationLevel\u0028\u0029", + "name": "getDefaultTransactionIsolationLevel", + "summary": "Gets\u0020the\u0020default\u0020transaction\u0020isolation\u0020level\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDefaultTransactionIsolationLevel" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AsupportsColumnLengthIndexes\u0028\u0029", + "name": "supportsColumnLengthIndexes", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020indexes\u0020with\u0020column\u0020length\u0020definitions.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_supportsColumnLengthIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AgetDatabaseNameSQL\u0028\u0029", + "name": "getDatabaseNameSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_getDatabaseNameSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AindexAssetsByLowerCaseName\u0028\u0029", + "name": "indexAssetsByLowerCaseName", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_indexAssetsByLowerCaseName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003ALENGTH_LIMIT_TINYTEXT", + "name": "LENGTH_LIMIT_TINYTEXT", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#constant_LENGTH_LIMIT_TINYTEXT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003ALENGTH_LIMIT_TEXT", + "name": "LENGTH_LIMIT_TEXT", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#constant_LENGTH_LIMIT_TEXT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003ALENGTH_LIMIT_MEDIUMTEXT", + "name": "LENGTH_LIMIT_MEDIUMTEXT", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#constant_LENGTH_LIMIT_MEDIUMTEXT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003ALENGTH_LIMIT_TINYBLOB", + "name": "LENGTH_LIMIT_TINYBLOB", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#constant_LENGTH_LIMIT_TINYBLOB" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003ALENGTH_LIMIT_BLOB", + "name": "LENGTH_LIMIT_BLOB", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#constant_LENGTH_LIMIT_BLOB" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractMySQLPlatform\u003A\u003ALENGTH_LIMIT_MEDIUMBLOB", + "name": "LENGTH_LIMIT_MEDIUMBLOB", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractMySQLPlatform.html#constant_LENGTH_LIMIT_MEDIUMBLOB" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform", + "name": "AbstractPlatform", + "summary": "Base\u0020class\u0020for\u0020all\u0020DatabasePlatforms.\u0020The\u0020DatabasePlatforms\u0020are\u0020the\u0020central\npoint\u0020of\u0020abstraction\u0020of\u0020platform\u002Dspecific\u0020behaviors,\u0020features\u0020and\u0020SQL\u0020dialects.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsetEventManager\u0028\u0029", + "name": "setEventManager", + "summary": "Sets\u0020the\u0020EventManager\u0020used\u0020by\u0020the\u0020Platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_setEventManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetEventManager\u0028\u0029", + "name": "getEventManager", + "summary": "Gets\u0020the\u0020EventManager\u0020used\u0020by\u0020the\u0020Platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getEventManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AinitializeAllDoctrineTypeMappings\u0028\u0029", + "name": "initializeAllDoctrineTypeMappings", + "summary": "Initializes\u0020Doctrine\u0020Type\u0020Mappings\u0020with\u0020the\u0020platform\u0020defaults\nand\u0020with\u0020all\u0020additional\u0020type\u0020mappings.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_initializeAllDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAsciiStringTypeDeclarationSQL\u0028\u0029", + "name": "getAsciiStringTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020column\u0020that\u0020can\nstore\u0020characters\u0020in\u0020the\u0020ASCII\u0020character\u0020set", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAsciiStringTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetVarcharTypeDeclarationSQL\u0028\u0029", + "name": "getVarcharTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020VARCHAR\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getVarcharTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetStringTypeDeclarationSQL\u0028\u0029", + "name": "getStringTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020string\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getStringTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBinaryTypeDeclarationSQL\u0028\u0029", + "name": "getBinaryTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBinaryTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetGuidTypeDeclarationSQL\u0028\u0029", + "name": "getGuidTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020GUID\/UUID\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getGuidTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetJsonTypeDeclarationSQL\u0028\u0029", + "name": "getJsonTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020JSON\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getJsonTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AregisterDoctrineTypeMapping\u0028\u0029", + "name": "registerDoctrineTypeMapping", + "summary": "Registers\u0020a\u0020doctrine\u0020type\u0020to\u0020be\u0020used\u0020in\u0020conjunction\u0020with\u0020a\u0020column\u0020type\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_registerDoctrineTypeMapping" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDoctrineTypeMapping\u0028\u0029", + "name": "getDoctrineTypeMapping", + "summary": "Gets\u0020the\u0020Doctrine\u0020type\u0020that\u0020is\u0020mapped\u0020for\u0020the\u0020given\u0020database\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDoctrineTypeMapping" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AhasDoctrineTypeMappingFor\u0028\u0029", + "name": "hasDoctrineTypeMappingFor", + "summary": "Checks\u0020if\u0020a\u0020database\u0020type\u0020is\u0020currently\u0020supported\u0020by\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_hasDoctrineTypeMappingFor" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AinitializeCommentedDoctrineTypes\u0028\u0029", + "name": "initializeCommentedDoctrineTypes", + "summary": "Initializes\u0020the\u0020Doctrine\u0020Type\u0020comments\u0020instance\u0020variable\u0020for\u0020in_array\u0028\u0029\u0020checks.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_initializeCommentedDoctrineTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AisCommentedDoctrineType\u0028\u0029", + "name": "isCommentedDoctrineType", + "summary": "Is\u0020it\u0020necessary\u0020for\u0020the\u0020platform\u0020to\u0020add\u0020a\u0020parsable\u0020type\u0020comment\u0020to\u0020allow\u0020reverse\u0020engineering\u0020the\u0020given\u0020type\u003F", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_isCommentedDoctrineType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AmarkDoctrineTypeCommented\u0028\u0029", + "name": "markDoctrineTypeCommented", + "summary": "Marks\u0020this\u0020type\u0020as\u0020to\u0020be\u0020commented\u0020in\u0020ALTER\u0020TABLE\u0020and\u0020CREATE\u0020TABLE\u0020statements.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_markDoctrineTypeCommented" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDoctrineTypeComment\u0028\u0029", + "name": "getDoctrineTypeComment", + "summary": "Gets\u0020the\u0020comment\u0020to\u0020append\u0020to\u0020a\u0020column\u0020comment\u0020that\u0020helps\u0020parsing\u0020this\u0020type\u0020in\u0020reverse\u0020engineering.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDoctrineTypeComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetColumnComment\u0028\u0029", + "name": "getColumnComment", + "summary": "Gets\u0020the\u0020comment\u0020of\u0020a\u0020passed\u0020column\u0020modified\u0020by\u0020potential\u0020doctrine\u0020type\u0020comment\u0020hints.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getColumnComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIdentifierQuoteCharacter\u0028\u0029", + "name": "getIdentifierQuoteCharacter", + "summary": "Gets\u0020the\u0020character\u0020used\u0020for\u0020identifier\u0020quoting.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIdentifierQuoteCharacter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSqlCommentStartString\u0028\u0029", + "name": "getSqlCommentStartString", + "summary": "Gets\u0020the\u0020string\u0020portion\u0020that\u0020starts\u0020an\u0020SQL\u0020comment.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSqlCommentStartString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSqlCommentEndString\u0028\u0029", + "name": "getSqlCommentEndString", + "summary": "Gets\u0020the\u0020string\u0020portion\u0020that\u0020ends\u0020an\u0020SQL\u0020comment.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSqlCommentEndString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCharMaxLength\u0028\u0029", + "name": "getCharMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020char\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCharMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetVarcharMaxLength\u0028\u0029", + "name": "getVarcharMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020varchar\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getVarcharMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetVarcharDefaultLength\u0028\u0029", + "name": "getVarcharDefaultLength", + "summary": "Gets\u0020the\u0020default\u0020length\u0020of\u0020a\u0020varchar\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getVarcharDefaultLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBinaryDefaultLength\u0028\u0029", + "name": "getBinaryDefaultLength", + "summary": "Gets\u0020the\u0020default\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBinaryDefaultLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetWildcards\u0028\u0029", + "name": "getWildcards", + "summary": "Gets\u0020all\u0020SQL\u0020wildcard\u0020characters\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getWildcards" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetRegexpExpression\u0028\u0029", + "name": "getRegexpExpression", + "summary": "Returns\u0020the\u0020regular\u0020expression\u0020operator.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getRegexpExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAvgExpression\u0028\u0029", + "name": "getAvgExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020average\u0020value\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAvgExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCountExpression\u0028\u0029", + "name": "getCountExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020number\u0020of\u0020rows\u0020\u0028without\u0020a\u0020NULL\u0020value\u0029\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCountExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetMaxExpression\u0028\u0029", + "name": "getMaxExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020highest\u0020value\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getMaxExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetMinExpression\u0028\u0029", + "name": "getMinExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020lowest\u0020value\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getMinExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSumExpression\u0028\u0029", + "name": "getSumExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020total\u0020sum\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSumExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetMd5Expression\u0028\u0029", + "name": "getMd5Expression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020md5\u0020sum\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getMd5Expression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetLengthExpression\u0028\u0029", + "name": "getLengthExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020length\u0020of\u0020a\u0020text\u0020column\u0020in\u0020characters.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getLengthExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSqrtExpression\u0028\u0029", + "name": "getSqrtExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020squared\u0020value\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSqrtExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetRoundExpression\u0028\u0029", + "name": "getRoundExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020round\u0020a\u0020numeric\u0020column\u0020to\u0020the\u0020number\u0020of\u0020decimals\u0020specified.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getRoundExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetModExpression\u0028\u0029", + "name": "getModExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020remainder\u0020of\u0020the\u0020division\u0020operation\u0020\u0024expression1\u0020\/\u0020\u0024expression2.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getModExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetTrimExpression\u0028\u0029", + "name": "getTrimExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020trim\u0020a\u0020string.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getTrimExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetRtrimExpression\u0028\u0029", + "name": "getRtrimExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020trim\u0020trailing\u0020space\u0020characters\u0020from\u0020the\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getRtrimExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetLtrimExpression\u0028\u0029", + "name": "getLtrimExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020trim\u0020leading\u0020space\u0020characters\u0020from\u0020the\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getLtrimExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetUpperExpression\u0028\u0029", + "name": "getUpperExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020change\u0020all\u0020characters\u0020from\u0020the\u0020expression\u0020to\u0020uppercase,\naccording\u0020to\u0020the\u0020current\u0020character\u0020set\u0020mapping.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getUpperExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetLowerExpression\u0028\u0029", + "name": "getLowerExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020change\u0020all\u0020characters\u0020from\u0020the\u0020expression\u0020to\u0020lowercase,\naccording\u0020to\u0020the\u0020current\u0020character\u0020set\u0020mapping.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getLowerExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetNowExpression\u0028\u0029", + "name": "getNowExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020current\u0020system\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getNowExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSubstringExpression\u0028\u0029", + "name": "getSubstringExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020get\u0020a\u0020substring\u0020inside\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSubstringExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetConcatExpression\u0028\u0029", + "name": "getConcatExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020concatenate\u0020the\u0020given\u0020expressions.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getConcatExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetNotExpression\u0028\u0029", + "name": "getNotExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020logical\u0020not.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getNotExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIsNullExpression\u0028\u0029", + "name": "getIsNullExpression", + "summary": "Returns\u0020the\u0020SQL\u0020that\u0020checks\u0020if\u0020an\u0020expression\u0020is\u0020null.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIsNullExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIsNotNullExpression\u0028\u0029", + "name": "getIsNotNullExpression", + "summary": "Returns\u0020the\u0020SQL\u0020that\u0020checks\u0020if\u0020an\u0020expression\u0020is\u0020not\u0020null.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIsNotNullExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBetweenExpression\u0028\u0029", + "name": "getBetweenExpression", + "summary": "Returns\u0020the\u0020SQL\u0020that\u0020checks\u0020if\u0020an\u0020expression\u0020evaluates\u0020to\u0020a\u0020value\u0020between\u0020two\u0020values.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBetweenExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAcosExpression\u0028\u0029", + "name": "getAcosExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020get\u0020the\u0020arccosine\u0020of\u0020a\u0020value.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAcosExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSinExpression\u0028\u0029", + "name": "getSinExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020get\u0020the\u0020sine\u0020of\u0020a\u0020value.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSinExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetPiExpression\u0028\u0029", + "name": "getPiExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020get\u0020the\u0020PI\u0020value.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getPiExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCosExpression\u0028\u0029", + "name": "getCosExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020get\u0020the\u0020cosine\u0020of\u0020a\u0020value.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCosExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddSecondsExpression\u0028\u0029", + "name": "getDateAddSecondsExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020seconds\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddSecondsExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubSecondsExpression\u0028\u0029", + "name": "getDateSubSecondsExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020seconds\u0020from\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubSecondsExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddMinutesExpression\u0028\u0029", + "name": "getDateAddMinutesExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020minutes\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddMinutesExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubMinutesExpression\u0028\u0029", + "name": "getDateSubMinutesExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020minutes\u0020from\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubMinutesExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddHourExpression\u0028\u0029", + "name": "getDateAddHourExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020hours\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddHourExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubHourExpression\u0028\u0029", + "name": "getDateSubHourExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020hours\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubHourExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddDaysExpression\u0028\u0029", + "name": "getDateAddDaysExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020days\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddDaysExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubDaysExpression\u0028\u0029", + "name": "getDateSubDaysExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020days\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubDaysExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddWeeksExpression\u0028\u0029", + "name": "getDateAddWeeksExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020weeks\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddWeeksExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubWeeksExpression\u0028\u0029", + "name": "getDateSubWeeksExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020weeks\u0020from\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubWeeksExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddMonthExpression\u0028\u0029", + "name": "getDateAddMonthExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020months\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddMonthExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubMonthExpression\u0028\u0029", + "name": "getDateSubMonthExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020months\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubMonthExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddQuartersExpression\u0028\u0029", + "name": "getDateAddQuartersExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020quarters\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddQuartersExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubQuartersExpression\u0028\u0029", + "name": "getDateSubQuartersExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020quarters\u0020from\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubQuartersExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateAddYearsExpression\u0028\u0029", + "name": "getDateAddYearsExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020add\u0020the\u0020number\u0020of\u0020given\u0020years\u0020to\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateAddYearsExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateSubYearsExpression\u0028\u0029", + "name": "getDateSubYearsExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020subtract\u0020the\u0020number\u0020of\u0020given\u0020years\u0020from\u0020a\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateSubYearsExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AmultiplyInterval\u0028\u0029", + "name": "multiplyInterval", + "summary": "Generates\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020given\u0020date\u0020interval\u0020multiplied\u0020by\u0020a\u0020number", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_multiplyInterval" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBitAndComparisonExpression\u0028\u0029", + "name": "getBitAndComparisonExpression", + "summary": "Returns\u0020the\u0020SQL\u0020bit\u0020AND\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBitAndComparisonExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetBitOrComparisonExpression\u0028\u0029", + "name": "getBitOrComparisonExpression", + "summary": "Returns\u0020the\u0020SQL\u0020bit\u0020OR\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getBitOrComparisonExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetForUpdateSQL\u0028\u0029", + "name": "getForUpdateSQL", + "summary": "Returns\u0020the\u0020FOR\u0020UPDATE\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getForUpdateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AappendLockHint\u0028\u0029", + "name": "appendLockHint", + "summary": "Honors\u0020that\u0020some\u0020SQL\u0020vendors\u0020such\u0020as\u0020MsSql\u0020use\u0020table\u0020hints\u0020for\u0020locking\u0020instead\u0020of\u0020the\nANSI\u0020SQL\u0020FOR\u0020UPDATE\u0020specification.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_appendLockHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetReadLockSQL\u0028\u0029", + "name": "getReadLockSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020append\u0020to\u0020any\u0020SELECT\u0020statement\u0020which\u0020locks\u0020rows\u0020in\u0020shared\u0020read\u0020lock.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getReadLockSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetWriteLockSQL\u0028\u0029", + "name": "getWriteLockSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020append\u0020to\u0020any\u0020SELECT\u0020statement\u0020which\u0020obtains\u0020an\u0020exclusive\u0020lock\u0020on\u0020the\u0020rows.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getWriteLockSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropTableSQL\u0028\u0029", + "name": "getDropTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020drop\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropTemporaryTableSQL\u0028\u0029", + "name": "getDropTemporaryTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020safely\u0020drop\u0020a\u0020temporary\u0020table\u0020WITHOUT\u0020implicitly\u0020committing\u0020an\u0020open\u0020transaction.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropTemporaryTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropIndexSQL\u0028\u0029", + "name": "getDropIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020an\u0020index\u0020from\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropForeignKeySQL\u0028\u0029", + "name": "getDropForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020a\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropUniqueConstraintSQL\u0028\u0029", + "name": "getDropUniqueConstraintSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020a\u0020unique\u0020constraint.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropUniqueConstraintSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateTableSQL\u0028\u0029", + "name": "getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0028s\u0029\u0020to\u0020create\u0020a\u0020table\u0020with\u0020the\u0020specified\u0020name,\u0020columns\u0020and\u0020constraints\non\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AbuildCreateTableSQL\u0028\u0029", + "name": "buildCreateTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_buildCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateTablesSQL\u0028\u0029", + "name": "getCreateTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropTablesSQL\u0028\u0029", + "name": "getDropTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCommentOnTableSQL\u0028\u0029", + "name": "getCommentOnTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCommentOnTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCommentOnColumnSQL\u0028\u0029", + "name": "getCommentOnColumnSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCommentOnColumnSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetInlineColumnCommentSQL\u0028\u0029", + "name": "getInlineColumnCommentSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020inline\u0020comment\u0020on\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getInlineColumnCommentSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateTemporaryTableSnippetSQL\u0028\u0029", + "name": "getCreateTemporaryTableSnippetSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateTemporaryTableSnippetSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAlterSchemaSQL\u0028\u0029", + "name": "getAlterSchemaSQL", + "summary": "Generates\u0020SQL\u0020statements\u0020that\u0020can\u0020be\u0020used\u0020to\u0020apply\u0020the\u0020diff.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAlterSchemaSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateSequenceSQL\u0028\u0029", + "name": "getCreateSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAlterSequenceSQL\u0028\u0029", + "name": "getAlterSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020change\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAlterSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropSequenceSQL\u0028\u0029", + "name": "getDropSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020drop\u0020an\u0020existing\u0020sequence.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateConstraintSQL\u0028\u0029", + "name": "getCreateConstraintSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020constraint\u0020on\u0020a\u0020table\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateConstraintSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateIndexSQL\u0028\u0029", + "name": "getCreateIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020index\u0020on\u0020a\u0020table\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetPartialIndexSQL\u0028\u0029", + "name": "getPartialIndexSQL", + "summary": "Adds\u0020condition\u0020for\u0020partial\u0020index.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getPartialIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateIndexSQLFlags\u0028\u0029", + "name": "getCreateIndexSQLFlags", + "summary": "Adds\u0020additional\u0020flags\u0020for\u0020index\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateIndexSQLFlags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreatePrimaryKeySQL\u0028\u0029", + "name": "getCreatePrimaryKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020unnamed\u0020primary\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreatePrimaryKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateSchemaSQL\u0028\u0029", + "name": "getCreateSchemaSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020named\u0020schema.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateSchemaSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateUniqueConstraintSQL\u0028\u0029", + "name": "getCreateUniqueConstraintSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020unique\u0020constraint\u0020on\u0020a\u0020table\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateUniqueConstraintSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropSchemaSQL\u0028\u0029", + "name": "getDropSchemaSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020drop\u0020a\u0020schema.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropSchemaSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AquoteIdentifier\u0028\u0029", + "name": "quoteIdentifier", + "summary": "Quotes\u0020a\u0020string\u0020so\u0020that\u0020it\u0020can\u0020be\u0020safely\u0020used\u0020as\u0020a\u0020table\u0020or\u0020column\u0020name,\neven\u0020if\u0020it\u0020is\u0020a\u0020reserved\u0020word\u0020of\u0020the\u0020platform.\u0020This\u0020also\u0020detects\u0020identifier\nchains\u0020separated\u0020by\u0020dot\u0020and\u0020quotes\u0020them\u0020independently.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_quoteIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AquoteSingleIdentifier\u0028\u0029", + "name": "quoteSingleIdentifier", + "summary": "Quotes\u0020a\u0020single\u0020identifier\u0020\u0028no\u0020dot\u0020chain\u0020separation\u0029.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_quoteSingleIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateForeignKeySQL\u0028\u0029", + "name": "getCreateForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020new\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetRenameTableSQL\u0028\u0029", + "name": "getRenameTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getRenameTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AonSchemaAlterTableAddColumn\u0028\u0029", + "name": "onSchemaAlterTableAddColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_onSchemaAlterTableAddColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AonSchemaAlterTableRemoveColumn\u0028\u0029", + "name": "onSchemaAlterTableRemoveColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_onSchemaAlterTableRemoveColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AonSchemaAlterTableChangeColumn\u0028\u0029", + "name": "onSchemaAlterTableChangeColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_onSchemaAlterTableChangeColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AonSchemaAlterTableRenameColumn\u0028\u0029", + "name": "onSchemaAlterTableRenameColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_onSchemaAlterTableRenameColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AonSchemaAlterTable\u0028\u0029", + "name": "onSchemaAlterTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_onSchemaAlterTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetPreAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getPreAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetPostAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPostAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getPostAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetColumnDeclarationListSQL\u0028\u0029", + "name": "getColumnDeclarationListSQL", + "summary": "Gets\u0020declaration\u0020of\u0020a\u0020number\u0020of\u0020columns\u0020in\u0020bulk.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getColumnDeclarationListSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetColumnDeclarationSQL\u0028\u0029", + "name": "getColumnDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020declare\u0020a\u0020generic\u0020type\ncolumn\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getColumnDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDecimalTypeDeclarationSQL\u0028\u0029", + "name": "getDecimalTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020floating\u0020point\u0020column\u0020of\u0020arbitrary\u0020precision.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDecimalTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDefaultValueDeclarationSQL\u0028\u0029", + "name": "getDefaultValueDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020a\u0020default\u0020value\ndeclaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDefaultValueDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCheckDeclarationSQL\u0028\u0029", + "name": "getCheckDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020a\u0020CHECK\u0020constraint\ndeclaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCheckDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetUniqueConstraintDeclarationSQL\u0028\u0029", + "name": "getUniqueConstraintDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020a\u0020unique\nconstraint\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getUniqueConstraintDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIndexDeclarationSQL\u0028\u0029", + "name": "getIndexDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020an\u0020index\ndeclaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIndexDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCustomTypeDeclarationSQL\u0028\u0029", + "name": "getCustomTypeDeclarationSQL", + "summary": "Obtains\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020create\u0020a\u0020custom\u0020column,\ne.g.\u0020when\u0020a\u0020column\u0020has\u0020the\u0020\u0022columnDefinition\u0022\u0020keyword.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCustomTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIndexFieldDeclarationListSQL\u0028\u0029", + "name": "getIndexFieldDeclarationListSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020an\u0020index\ndeclaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIndexFieldDeclarationListSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetColumnsFieldDeclarationListSQL\u0028\u0029", + "name": "getColumnsFieldDeclarationListSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020an\u0020index\ndeclaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getColumnsFieldDeclarationListSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetTemporaryTableSQL\u0028\u0029", + "name": "getTemporaryTableSQL", + "summary": "Returns\u0020the\u0020required\u0020SQL\u0020string\u0020that\u0020fits\u0020between\u0020CREATE\u0020...\u0020TABLE\nto\u0020create\u0020the\u0020table\u0020as\u0020a\u0020temporary\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getTemporaryTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetTemporaryTableName\u0028\u0029", + "name": "getTemporaryTableName", + "summary": "Some\u0020vendors\u0020require\u0020temporary\u0020table\u0020names\u0020to\u0020be\u0020qualified\u0020specially.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getTemporaryTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetForeignKeyDeclarationSQL\u0028\u0029", + "name": "getForeignKeyDeclarationSQL", + "summary": "Obtain\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020the\u0020FOREIGN\u0020KEY\u0020constraint\nof\u0020a\u0020column\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getForeignKeyDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetAdvancedForeignKeyOptionsSQL\u0028\u0029", + "name": "getAdvancedForeignKeyOptionsSQL", + "summary": "Returns\u0020the\u0020FOREIGN\u0020KEY\u0020query\u0020section\u0020dealing\u0020with\u0020non\u002Dstandard\u0020options\nas\u0020MATCH,\u0020INITIALLY\u0020DEFERRED,\u0020ON\u0020UPDATE,\u0020.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getAdvancedForeignKeyOptionsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetForeignKeyReferentialActionSQL\u0028\u0029", + "name": "getForeignKeyReferentialActionSQL", + "summary": "Returns\u0020the\u0020given\u0020referential\u0020action\u0020in\u0020uppercase\u0020if\u0020valid,\u0020otherwise\u0020throws\u0020an\u0020exception.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getForeignKeyReferentialActionSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetForeignKeyBaseDeclarationSQL\u0028\u0029", + "name": "getForeignKeyBaseDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020the\u0020FOREIGN\u0020KEY\u0020constraint\nof\u0020a\u0020column\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getForeignKeyBaseDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetUniqueFieldDeclarationSQL\u0028\u0029", + "name": "getUniqueFieldDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020the\u0020UNIQUE\u0020constraint\nof\u0020a\u0020column\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getUniqueFieldDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetColumnCharsetDeclarationSQL\u0028\u0029", + "name": "getColumnCharsetDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020the\u0020CHARACTER\u0020SET\nof\u0020a\u0020column\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getColumnCharsetDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetColumnCollationDeclarationSQL\u0028\u0029", + "name": "getColumnCollationDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020the\u0020COLLATION\nof\u0020a\u0020column\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getColumnCollationDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AprefersIdentityColumns\u0028\u0029", + "name": "prefersIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020prefers\u0020identity\u0020columns\u0020\u0028eg.\u0020autoincrement\u0029\u0020for\u0020ID\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_prefersIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AconvertBooleans\u0028\u0029", + "name": "convertBooleans", + "summary": "Some\u0020platforms\u0020need\u0020the\u0020boolean\u0020values\u0020to\u0020be\u0020converted.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_convertBooleans" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AconvertFromBoolean\u0028\u0029", + "name": "convertFromBoolean", + "summary": "Some\u0020platforms\u0020have\u0020boolean\u0020literals\u0020that\u0020needs\u0020to\u0020be\u0020correctly\u0020converted", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_convertFromBoolean" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AconvertBooleansToDatabaseValue\u0028\u0029", + "name": "convertBooleansToDatabaseValue", + "summary": "This\u0020method\u0020should\u0020handle\u0020the\u0020prepared\u0020statements\u0020case.\u0020When\u0020there\u0020is\u0020no\ndistinction,\u0020it\u0027s\u0020OK\u0020to\u0020use\u0020the\u0020same\u0020method.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_convertBooleansToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCurrentDateSQL\u0028\u0029", + "name": "getCurrentDateSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCurrentDateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCurrentTimeSQL\u0028\u0029", + "name": "getCurrentTimeSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020time.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCurrentTimeSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCurrentTimestampSQL\u0028\u0029", + "name": "getCurrentTimestampSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020timestamp", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCurrentTimestampSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A_getTransactionIsolationLevelSQL\u0028\u0029", + "name": "_getTransactionIsolationLevelSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020given\u0020transaction\u0020isolation\u0020level\u0020Connection\u0020constant.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method__getTransactionIsolationLevelSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListNamespacesSQL\u0028\u0029", + "name": "getListNamespacesSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0020for\u0020retrieving\u0020the\u0020namespaces\u0020defined\u0020in\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListNamespacesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListTableConstraintsSQL\u0028\u0029", + "name": "getListTableConstraintsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListTableConstraintsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListUsersSQL\u0028\u0029", + "name": "getListUsersSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListUsersSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateViewSQL\u0028\u0029", + "name": "getCreateViewSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateViewSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropViewSQL\u0028\u0029", + "name": "getDropViewSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropViewSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSequenceNextValSQL\u0028\u0029", + "name": "getSequenceNextValSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSequenceNextValSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetCreateDatabaseSQL\u0028\u0029", + "name": "getCreateDatabaseSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020new\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getCreateDatabaseSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDropDatabaseSQL\u0028\u0029", + "name": "getDropDatabaseSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020drop\u0020an\u0020existing\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDropDatabaseSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetSetTransactionIsolationSQL\u0028\u0029", + "name": "getSetTransactionIsolationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020set\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getSetTransactionIsolationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateTimeTzTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTzTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020with\u0020timezone\u0020offset\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateTimeTzTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetFloatDeclarationSQL\u0028\u0029", + "name": "getFloatDeclarationSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getFloatDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDefaultTransactionIsolationLevel\u0028\u0029", + "name": "getDefaultTransactionIsolationLevel", + "summary": "Gets\u0020the\u0020default\u0020transaction\u0020isolation\u0020level\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDefaultTransactionIsolationLevel" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsSequences\u0028\u0029", + "name": "supportsSequences", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsIdentityColumns\u0028\u0029", + "name": "supportsIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020identity\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AusesSequenceEmulatedIdentityColumns\u0028\u0029", + "name": "usesSequenceEmulatedIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020emulates\u0020identity\u0020columns\u0020through\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_usesSequenceEmulatedIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetIdentitySequenceName\u0028\u0029", + "name": "getIdentitySequenceName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020the\u0020sequence\u0020for\u0020a\u0020particular\u0020identity\u0020column\u0020in\u0020a\u0020particular\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getIdentitySequenceName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsIndexes\u0028\u0029", + "name": "supportsIndexes", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020indexes.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsPartialIndexes\u0028\u0029", + "name": "supportsPartialIndexes", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020partial\u0020indexes.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsPartialIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsColumnLengthIndexes\u0028\u0029", + "name": "supportsColumnLengthIndexes", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020indexes\u0020with\u0020column\u0020length\u0020definitions.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsColumnLengthIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsAlterTable\u0028\u0029", + "name": "supportsAlterTable", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020altering\u0020tables.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsAlterTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsTransactions\u0028\u0029", + "name": "supportsTransactions", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020transactions.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsTransactions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsSavepoints\u0028\u0029", + "name": "supportsSavepoints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsReleaseSavepoints\u0028\u0029", + "name": "supportsReleaseSavepoints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020releasing\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsReleaseSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsPrimaryConstraints\u0028\u0029", + "name": "supportsPrimaryConstraints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020primary\u0020key\u0020constraints.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsPrimaryConstraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsForeignKeyConstraints\u0028\u0029", + "name": "supportsForeignKeyConstraints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsForeignKeyConstraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsSchemas\u0028\u0029", + "name": "supportsSchemas", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020database\u0020schemas.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcanEmulateSchemas\u0028\u0029", + "name": "canEmulateSchemas", + "summary": "Whether\u0020this\u0020platform\u0020can\u0020emulate\u0020schemas.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_canEmulateSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDefaultSchemaName\u0028\u0029", + "name": "getDefaultSchemaName", + "summary": "Returns\u0020the\u0020default\u0020schema\u0020name.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDefaultSchemaName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsCreateDropDatabase\u0028\u0029", + "name": "supportsCreateDropDatabase", + "summary": "Whether\u0020this\u0020platform\u0020supports\u0020create\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsCreateDropDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsGettingAffectedRows\u0028\u0029", + "name": "supportsGettingAffectedRows", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020getting\u0020the\u0020affected\u0020rows\u0020of\u0020a\u0020recent\u0020update\/delete\u0020type\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsGettingAffectedRows" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsInlineColumnComments\u0028\u0029", + "name": "supportsInlineColumnComments", + "summary": "Whether\u0020this\u0020platform\u0020support\u0020to\u0020add\u0020inline\u0020column\u0020comments\u0020as\u0020postfix.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsInlineColumnComments" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsCommentOnStatement\u0028\u0029", + "name": "supportsCommentOnStatement", + "summary": "Whether\u0020this\u0020platform\u0020support\u0020the\u0020proprietary\u0020syntax\u0020\u0022COMMENT\u0020ON\u0020asset\u0022.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsCommentOnStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AhasNativeGuidType\u0028\u0029", + "name": "hasNativeGuidType", + "summary": "Does\u0020this\u0020platform\u0020have\u0020native\u0020guid\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_hasNativeGuidType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AhasNativeJsonType\u0028\u0029", + "name": "hasNativeJsonType", + "summary": "Does\u0020this\u0020platform\u0020have\u0020native\u0020JSON\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_hasNativeJsonType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsViews\u0028\u0029", + "name": "supportsViews", + "summary": "Whether\u0020this\u0020platform\u0020supports\u0020views.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsViews" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsColumnCollation\u0028\u0029", + "name": "supportsColumnCollation", + "summary": "Does\u0020this\u0020platform\u0020support\u0020column\u0020collation\u003F", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsColumnCollation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateTimeFormatString\u0028\u0029", + "name": "getDateTimeFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020datetime\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateTimeFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateTimeTzFormatString\u0028\u0029", + "name": "getDateTimeTzFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020datetime\u0020with\u0020timezone\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateTimeTzFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDateFormatString\u0028\u0029", + "name": "getDateFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020date\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDateFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetTimeFormatString\u0028\u0029", + "name": "getTimeFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020time\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getTimeFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AmodifyLimitQuery\u0028\u0029", + "name": "modifyLimitQuery", + "summary": "Adds\u0020an\u0020driver\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_modifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AsupportsLimitOffset\u0028\u0029", + "name": "supportsLimitOffset", + "summary": "Whether\u0020the\u0020database\u0020platform\u0020support\u0020offsets\u0020in\u0020modify\u0020limit\u0020clauses.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_supportsLimitOffset" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetMaxIdentifierLength\u0028\u0029", + "name": "getMaxIdentifierLength", + "summary": "Maximum\u0020length\u0020of\u0020any\u0020given\u0020database\u0020identifier,\u0020like\u0020tables\u0020or\u0020column\u0020names.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getMaxIdentifierLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetEmptyIdentityInsertSQL\u0028\u0029", + "name": "getEmptyIdentityInsertSQL", + "summary": "Returns\u0020the\u0020insert\u0020SQL\u0020for\u0020an\u0020empty\u0020insert\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getEmptyIdentityInsertSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetTruncateTableSQL\u0028\u0029", + "name": "getTruncateTableSQL", + "summary": "Generates\u0020a\u0020Truncate\u0020Table\u0020SQL\u0020statement\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getTruncateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetDummySelectSQL\u0028\u0029", + "name": "getDummySelectSQL", + "summary": "This\u0020is\u0020for\u0020test\u0020reasons,\u0020many\u0020vendors\u0020have\u0020special\u0020requirements\u0020for\u0020dummy\u0020statements.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getDummySelectSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcreateSavePoint\u0028\u0029", + "name": "createSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020new\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_createSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AreleaseSavePoint\u0028\u0029", + "name": "releaseSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020release\u0020a\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_releaseSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003ArollbackSavePoint\u0028\u0029", + "name": "rollbackSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020rollback\u0020a\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_rollbackSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetReservedKeywordsList\u0028\u0029", + "name": "getReservedKeywordsList", + "summary": "Returns\u0020the\u0020keyword\u0020list\u0020instance\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getReservedKeywordsList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcreateReservedKeywordsList\u0028\u0029", + "name": "createReservedKeywordsList", + "summary": "Creates\u0020an\u0020instance\u0020of\u0020the\u0020reserved\u0020keyword\u0020list\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_createReservedKeywordsList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AquoteStringLiteral\u0028\u0029", + "name": "quoteStringLiteral", + "summary": "Quotes\u0020a\u0020literal\u0020string.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_quoteStringLiteral" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetStringLiteralQuoteCharacter\u0028\u0029", + "name": "getStringLiteralQuoteCharacter", + "summary": "Gets\u0020the\u0020character\u0020used\u0020for\u0020string\u0020literal\u0020quoting.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getStringLiteralQuoteCharacter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AescapeStringForLike\u0028\u0029", + "name": "escapeStringForLike", + "summary": "Escapes\u0020metacharacters\u0020in\u0020a\u0020string\u0020intended\u0020to\u0020be\u0020used\u0020with\u0020a\u0020LIKE\noperator.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_escapeStringForLike" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcolumnToArray\u0028\u0029", + "name": "columnToArray", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_columnToArray" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AgetLikeWildcardCharacters\u0028\u0029", + "name": "getLikeWildcardCharacters", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_getLikeWildcardCharacters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcolumnsEqual\u0028\u0029", + "name": "columnsEqual", + "summary": "Compares\u0020the\u0020definitions\u0020of\u0020the\u0020given\u0020columns\u0020in\u0020the\u0020context\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_columnsEqual" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcolumnDeclarationsMatch\u0028\u0029", + "name": "columnDeclarationsMatch", + "summary": "Whether\u0020the\u0020database\u0020data\u0020type\u0020matches\u0020that\u0020expected\u0020for\u0020the\u0020doctrine\u0020type\u0020for\u0020the\u0020given\u0020colunms.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_columnDeclarationsMatch" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003ACREATE_INDEXES", + "name": "CREATE_INDEXES", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#constant_CREATE_INDEXES" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003ACREATE_FOREIGNKEYS", + "name": "CREATE_FOREIGNKEYS", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#constant_CREATE_FOREIGNKEYS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A\u0024doctrineTypeMapping", + "name": "doctrineTypeMapping", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#property_doctrineTypeMapping" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A\u0024doctrineTypeComments", + "name": "doctrineTypeComments", + "summary": "Contains\u0020a\u0020list\u0020of\u0020all\u0020columns\u0020that\u0020should\u0020generate\u0020parseable\u0020column\u0020comments\u0020for\u0020type\u002Ddetection\nin\u0020reverse\u0020engineering\u0020scenarios.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#property_doctrineTypeComments" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A\u0024_eventManager", + "name": "_eventManager", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#property__eventManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A\u0024_keywords", + "name": "_keywords", + "summary": "Holds\u0020the\u0020KeywordList\u0020instance\u0020for\u0020the\u0020current\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#property__keywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\AbstractPlatform\u003A\u003A\u0024disableTypeComments", + "name": "disableTypeComments", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-AbstractPlatform.html#property_disableTypeComments" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit", + "name": "DateIntervalUnit", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003ASECOND", + "name": "SECOND", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_SECOND" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003AMINUTE", + "name": "MINUTE", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_MINUTE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003AHOUR", + "name": "HOUR", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_HOUR" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003ADAY", + "name": "DAY", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_DAY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003AWEEK", + "name": "WEEK", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_WEEK" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003AMONTH", + "name": "MONTH", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_MONTH" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003AQUARTER", + "name": "QUARTER", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_QUARTER" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DateIntervalUnit\u003A\u003AYEAR", + "name": "YEAR", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DateIntervalUnit.html#constant_YEAR" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2111Platform", + "name": "DB2111Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020IBM\u0020DB2\u002011.1\u0020\u002811.1\u0020GA\u0029\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-DB2111Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2111Platform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-DB2111Platform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform", + "name": "DB2Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020IBM\u0020DB2\u0020database\u0020platform\u0020of\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetCharMaxLength\u0028\u0029", + "name": "getCharMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020char\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getCharMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBinaryDefaultLength\u0028\u0029", + "name": "getBinaryDefaultLength", + "summary": "Gets\u0020the\u0020default\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBinaryDefaultLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetVarcharTypeDeclarationSQL\u0028\u0029", + "name": "getVarcharTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020VARCHAR\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getVarcharTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AisCommentedDoctrineType\u0028\u0029", + "name": "isCommentedDoctrineType", + "summary": "Is\u0020it\u0020necessary\u0020for\u0020the\u0020platform\u0020to\u0020add\u0020a\u0020parsable\u0020type\u0020comment\u0020to\u0020allow\u0020reverse\u0020engineering\u0020the\u0020given\u0020type\u003F", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_isCommentedDoctrineType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBitAndComparisonExpression\u0028\u0029", + "name": "getBitAndComparisonExpression", + "summary": "Returns\u0020the\u0020SQL\u0020bit\u0020AND\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBitAndComparisonExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetBitOrComparisonExpression\u0028\u0029", + "name": "getBitOrComparisonExpression", + "summary": "Returns\u0020the\u0020SQL\u0020bit\u0020OR\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getBitOrComparisonExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetTruncateTableSQL\u0028\u0029", + "name": "getTruncateTableSQL", + "summary": "Generates\u0020a\u0020Truncate\u0020Table\u0020SQL\u0020statement\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getTruncateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AsupportsCreateDropDatabase\u0028\u0029", + "name": "supportsCreateDropDatabase", + "summary": "Whether\u0020this\u0020platform\u0020supports\u0020create\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_supportsCreateDropDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetCurrentDateSQL\u0028\u0029", + "name": "getCurrentDateSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getCurrentDateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetCurrentTimeSQL\u0028\u0029", + "name": "getCurrentTimeSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020time.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getCurrentTimeSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetCurrentTimestampSQL\u0028\u0029", + "name": "getCurrentTimestampSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020timestamp", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getCurrentTimestampSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetRenameTableSQL\u0028\u0029", + "name": "getRenameTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getRenameTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgatherAlterColumnSQL\u0028\u0029", + "name": "gatherAlterColumnSQL", + "summary": "Gathers\u0020the\u0020table\u0020alteration\u0020SQL\u0020for\u0020a\u0020given\u0020column\u0020diff.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_gatherAlterColumnSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetAlterColumnClausesSQL\u0028\u0029", + "name": "getAlterColumnClausesSQL", + "summary": "Returns\u0020the\u0020ALTER\u0020COLUMN\u0020SQL\u0020clauses\u0020for\u0020altering\u0020a\u0020column\u0020described\u0020by\u0020the\u0020given\u0020column\u0020diff.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getAlterColumnClausesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetPreAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getPreAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetEmptyIdentityInsertSQL\u0028\u0029", + "name": "getEmptyIdentityInsertSQL", + "summary": "Returns\u0020the\u0020insert\u0020SQL\u0020for\u0020an\u0020empty\u0020insert\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getEmptyIdentityInsertSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetCreateTemporaryTableSnippetSQL\u0028\u0029", + "name": "getCreateTemporaryTableSnippetSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getCreateTemporaryTableSnippetSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetTemporaryTableName\u0028\u0029", + "name": "getTemporaryTableName", + "summary": "Some\u0020vendors\u0020require\u0020temporary\u0020table\u0020names\u0020to\u0020be\u0020qualified\u0020specially.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getTemporaryTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetSubstringExpression\u0028\u0029", + "name": "getSubstringExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020get\u0020a\u0020substring\u0020inside\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getSubstringExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetLengthExpression\u0028\u0029", + "name": "getLengthExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020length\u0020of\u0020a\u0020text\u0020column\u0020in\u0020characters.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getLengthExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AsupportsIdentityColumns\u0028\u0029", + "name": "supportsIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020identity\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_supportsIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AprefersIdentityColumns\u0028\u0029", + "name": "prefersIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020prefers\u0020identity\u0020columns\u0020\u0028eg.\u0020autoincrement\u0029\u0020for\u0020ID\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_prefersIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetForUpdateSQL\u0028\u0029", + "name": "getForUpdateSQL", + "summary": "Returns\u0020the\u0020FOR\u0020UPDATE\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getForUpdateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetDummySelectSQL\u0028\u0029", + "name": "getDummySelectSQL", + "summary": "This\u0020is\u0020for\u0020test\u0020reasons,\u0020many\u0020vendors\u0020have\u0020special\u0020requirements\u0020for\u0020dummy\u0020statements.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getDummySelectSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AsupportsSavepoints\u0028\u0029", + "name": "supportsSavepoints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_supportsSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AgetListTableCommentsSQL\u0028\u0029", + "name": "getListTableCommentsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_getListTableCommentsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_COLUMNS_GENERATED_DEFAULT", + "name": "SYSCAT_COLUMNS_GENERATED_DEFAULT", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_COLUMNS_GENERATED_DEFAULT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_INDEXES_UNIQUERULE_PERMITS_DUPLICATES", + "name": "SYSCAT_INDEXES_UNIQUERULE_PERMITS_DUPLICATES", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_INDEXES_UNIQUERULE_PERMITS_DUPLICATES" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_INDEXES_UNIQUERULE_IMPLEMENTS_PRIMARY_KEY", + "name": "SYSCAT_INDEXES_UNIQUERULE_IMPLEMENTS_PRIMARY_KEY", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_INDEXES_UNIQUERULE_IMPLEMENTS_PRIMARY_KEY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_TABCONST_TYPE_PRIMARY_KEY", + "name": "SYSCAT_TABCONST_TYPE_PRIMARY_KEY", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_TABCONST_TYPE_PRIMARY_KEY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_REFERENCES_UPDATERULE_RESTRICT", + "name": "SYSCAT_REFERENCES_UPDATERULE_RESTRICT", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_REFERENCES_UPDATERULE_RESTRICT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_REFERENCES_DELETERULE_CASCADE", + "name": "SYSCAT_REFERENCES_DELETERULE_CASCADE", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_REFERENCES_DELETERULE_CASCADE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_REFERENCES_DELETERULE_SET_NULL", + "name": "SYSCAT_REFERENCES_DELETERULE_SET_NULL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_REFERENCES_DELETERULE_SET_NULL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSCAT_REFERENCES_DELETERULE_RESTRICT", + "name": "SYSCAT_REFERENCES_DELETERULE_RESTRICT", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSCAT_REFERENCES_DELETERULE_RESTRICT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\DB2Platform\u003A\u003ASYSIBM_SYSTABLES_TYPE_TABLE", + "name": "SYSIBM_SYSTABLES_TYPE_TABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-DB2Platform.html#constant_SYSIBM_SYSTABLES_TYPE_TABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\DB2Keywords", + "name": "DB2Keywords", + "summary": "DB2\u0020Keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-DB2Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\DB2Keywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-DB2Keywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\DB2Keywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-DB2Keywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList", + "name": "KeywordList", + "summary": "Abstract\u0020interface\u0020for\u0020a\u0020SQL\u0020reserved\u0020keyword\u0020dictionary.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-KeywordList.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList\u003A\u003AisKeyword\u0028\u0029", + "name": "isKeyword", + "summary": "Checks\u0020if\u0020the\u0020given\u0020word\u0020is\u0020a\u0020keyword\u0020of\u0020this\u0020dialect\/vendor\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-KeywordList.html#method_isKeyword" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList\u003A\u003AinitializeKeywords\u0028\u0029", + "name": "initializeKeywords", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-KeywordList.html#method_initializeKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-KeywordList.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-KeywordList.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList\u003A\u003A\u0024keywords", + "name": "keywords", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-KeywordList.html#property_keywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MariaDb102Keywords", + "name": "MariaDb102Keywords", + "summary": "MariaDb\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MariaDb102Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MariaDb102Keywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MariaDb102Keywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MariaDBKeywords", + "name": "MariaDBKeywords", + "summary": "MySQL\u0020Keywordlist.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MariaDBKeywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MariaDBKeywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MariaDBKeywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MariaDBKeywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MariaDBKeywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL57Keywords", + "name": "MySQL57Keywords", + "summary": "MySQL\u00205.7\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL57Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL57Keywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL57Keywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL57Keywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL57Keywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL80Keywords", + "name": "MySQL80Keywords", + "summary": "MySQL\u00208.0\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL80Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL80Keywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL80Keywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL80Keywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL80Keywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL84Keywords", + "name": "MySQL84Keywords", + "summary": "MySQL\u00208.4\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL84Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL84Keywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL84Keywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQL84Keywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQL84Keywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQLKeywords", + "name": "MySQLKeywords", + "summary": "MySQL\u0020Keywordlist.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQLKeywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQLKeywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQLKeywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\MySQLKeywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-MySQLKeywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\OracleKeywords", + "name": "OracleKeywords", + "summary": "Oracle\u0020Keywordlist.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-OracleKeywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\OracleKeywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-OracleKeywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\OracleKeywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-OracleKeywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQL100Keywords", + "name": "PostgreSQL100Keywords", + "summary": "PostgreSQL\u002010.0\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-PostgreSQL100Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQL100Keywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-PostgreSQL100Keywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQL94Keywords", + "name": "PostgreSQL94Keywords", + "summary": "PostgreSQL\u00209.4\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-PostgreSQL94Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQLKeywords", + "name": "PostgreSQLKeywords", + "summary": "Reserved\u0020keywords\u0020list\u0020corresponding\u0020to\u0020the\u0020PostgreSQL\u0020database\u0020platform\u0020of\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-PostgreSQLKeywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQLKeywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-PostgreSQLKeywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQLKeywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-PostgreSQLKeywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator", + "name": "ReservedKeywordsValidator", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AgetViolations\u0028\u0029", + "name": "getViolations", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_getViolations" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AisReservedWord\u0028\u0029", + "name": "isReservedWord", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_isReservedWord" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AaddViolation\u0028\u0029", + "name": "addViolation", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_addViolation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AacceptColumn\u0028\u0029", + "name": "acceptColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_acceptColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AacceptIndex\u0028\u0029", + "name": "acceptIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_acceptIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AacceptSchema\u0028\u0029", + "name": "acceptSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_acceptSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003A\u0024keywordLists", + "name": "keywordLists", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#property_keywordLists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator\u003A\u003A\u0024violations", + "name": "violations", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-ReservedKeywordsValidator.html#property_violations" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLiteKeywords", + "name": "SQLiteKeywords", + "summary": "SQLite\u0020Keywordlist.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLiteKeywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLiteKeywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLiteKeywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLiteKeywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLiteKeywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLServer2012Keywords", + "name": "SQLServer2012Keywords", + "summary": "Microsoft\u0020SQL\u0020Server\u00202012\u0020reserved\u0020keyword\u0020dictionary.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLServer2012Keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLServerKeywords", + "name": "SQLServerKeywords", + "summary": "Microsoft\u0020SQL\u0020Server\u00202012\u0020reserved\u0020keyword\u0020dictionary.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLServerKeywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLServerKeywords\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLServerKeywords.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords\\SQLServerKeywords\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Returns\u0020the\u0020list\u0020of\u0020keywords.", + "url": "classes/Doctrine-DBAL-Platforms-Keywords-SQLServerKeywords.html#method_getKeywords" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1010Platform", + "name": "MariaDb1010Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MariaDB\u002010.10\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1010Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1010Platform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1010Platform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1010Platform\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1010Platform.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1027Platform", + "name": "MariaDb1027Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MariaDB\u002010.2\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1027Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1043Platform", + "name": "MariaDb1043Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MariaDB\u002010.4\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1043Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1043Platform\u003A\u003AgetJsonTypeDeclarationSQL\u0028\u0029", + "name": "getJsonTypeDeclarationSQL", + "summary": "Use\u0020JSON\u0020rather\u0020than\u0020LONGTEXT\u0020for\u0020json\u0020columns.\u0020Since\u0020it\u0020is\u0020not\u0020a\u0020true\u0020native\u0020type,\u0020do\u0020not\u0020override\nhasNativeJsonType\u0028\u0029\u0020so\u0020the\u0020DC2Type\u0020comment\u0020will\u0020still\u0020be\u0020set.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1043Platform.html#method_getJsonTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1043Platform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1043Platform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1043Platform\u003A\u003AgetColumnTypeSQLSnippet\u0028\u0029", + "name": "getColumnTypeSQLSnippet", + "summary": "Generate\u0020SQL\u0020snippets\u0020to\u0020reverse\u0020the\u0020aliasing\u0020of\u0020JSON\u0020to\u0020LONGTEXT.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1043Platform.html#method_getColumnTypeSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1043Platform\u003A\u003AgetColumnDeclarationSQL\u0028\u0029", + "name": "getColumnDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020declare\u0020a\u0020generic\u0020type\ncolumn\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1043Platform.html#method_getColumnDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1052Platform", + "name": "MariaDb1052Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MariaDB\u002010.5\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1052Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1052Platform\u003A\u003AgetPreAlterTableRenameIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableRenameIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1052Platform.html#method_getPreAlterTableRenameIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1052Platform\u003A\u003AgetPostAlterTableRenameIndexForeignKeySQL\u0028\u0029", + "name": "getPostAlterTableRenameIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1052Platform.html#method_getPostAlterTableRenameIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1052Platform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1052Platform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1060Platform", + "name": "MariaDb1060Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MariaDB\u002010.6\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1060Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDb1060Platform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MariaDb1060Platform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDBPlatform", + "name": "MariaDBPlatform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MariaDB\u0020database\u0020platform\u0020of\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDBPlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDBPlatform\u003A\u003AgetJsonTypeDeclarationSQL\u0028\u0029", + "name": "getJsonTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020JSON\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDBPlatform.html#method_getJsonTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDBPlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDBPlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MariaDBPlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-MariaDBPlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL\\Comparator", + "name": "Comparator", + "summary": "Compares\u0020schemas\u0020in\u0020the\u0020context\u0020of\u0020MySQL\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL-Comparator.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL\\Comparator\u003A\u003AcompareTables\u0028\u0029", + "name": "compareTables", + "summary": "Compares\u0020the\u0020tables\u0020and\u0020returns\u0020the\u0020difference\u0020between\u0020them.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL-Comparator.html#method_compareTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL\\Comparator\u003A\u003AdiffTable\u0028\u0029", + "name": "diffTable", + "summary": "Returns\u0020the\u0020difference\u0020between\u0020the\u0020tables\u0020\u0024fromTable\u0020and\u0020\u0024toTable.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL-Comparator.html#method_diffTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL\\Comparator\u003A\u003AnormalizeColumns\u0028\u0029", + "name": "normalizeColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL-Comparator.html#method_normalizeColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL\\Comparator\u003A\u003AnormalizeOptions\u0028\u0029", + "name": "normalizeOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL-Comparator.html#method_normalizeOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL\\Comparator\u003A\u003A\u0024collationMetadataProvider", + "name": "collationMetadataProvider", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL-Comparator.html#property_collationMetadataProvider" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform", + "name": "MySQL57Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MySQL\u00205.7\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AhasNativeJsonType\u0028\u0029", + "name": "hasNativeJsonType", + "summary": "Does\u0020this\u0020platform\u0020have\u0020native\u0020JSON\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_hasNativeJsonType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AgetJsonTypeDeclarationSQL\u0028\u0029", + "name": "getJsonTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020JSON\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_getJsonTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AcreateSQLParser\u0028\u0029", + "name": "createSQLParser", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_createSQLParser" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AgetPreAlterTableRenameIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableRenameIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_getPreAlterTableRenameIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AgetPostAlterTableRenameIndexForeignKeySQL\u0028\u0029", + "name": "getPostAlterTableRenameIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_getPostAlterTableRenameIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL57Platform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL57Platform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL80Platform", + "name": "MySQL80Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MySQL\u00208.0\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL80Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL80Platform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL80Platform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL80Platform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-MySQL80Platform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL84Platform", + "name": "MySQL84Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020MySQL\u00208.4\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL84Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL84Platform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-MySQL84Platform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQLPlatform", + "name": "MySQLPlatform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020Oracle\u0020MySQL\u0020database\u0020platform\nof\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-MySQLPlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform", + "name": "OraclePlatform", + "summary": "OraclePlatform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AassertValidIdentifier\u0028\u0029", + "name": "assertValidIdentifier", + "summary": "Assertion\u0020for\u0020Oracle\u0020identifiers.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_assertValidIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetSubstringExpression\u0028\u0029", + "name": "getSubstringExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020get\u0020a\u0020substring\u0020inside\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getSubstringExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetNowExpression\u0028\u0029", + "name": "getNowExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020current\u0020system\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getNowExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBitAndComparisonExpression\u0028\u0029", + "name": "getBitAndComparisonExpression", + "summary": "Returns\u0020the\u0020SQL\u0020bit\u0020AND\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBitAndComparisonExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBitOrComparisonExpression\u0028\u0029", + "name": "getBitOrComparisonExpression", + "summary": "Returns\u0020the\u0020SQL\u0020bit\u0020OR\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBitOrComparisonExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetCreatePrimaryKeySQL\u0028\u0029", + "name": "getCreatePrimaryKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020unnamed\u0020primary\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getCreatePrimaryKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetCreateSequenceSQL\u0028\u0029", + "name": "getCreateSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getCreateSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetAlterSequenceSQL\u0028\u0029", + "name": "getAlterSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020change\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getAlterSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetSequenceCacheSQL\u0028\u0029", + "name": "getSequenceCacheSQL", + "summary": "Cache\u0020definition\u0020for\u0020sequences", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getSequenceCacheSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetSequenceNextValSQL\u0028\u0029", + "name": "getSequenceNextValSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getSequenceNextValSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetSetTransactionIsolationSQL\u0028\u0029", + "name": "getSetTransactionIsolationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020set\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getSetTransactionIsolationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003A_getTransactionIsolationLevelSQL\u0028\u0029", + "name": "_getTransactionIsolationLevelSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020given\u0020transaction\u0020isolation\u0020level\u0020Connection\u0020constant.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method__getTransactionIsolationLevelSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateTimeTzTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTzTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020with\u0020timezone\u0020offset\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateTimeTzTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AnormalizeIdentifier\u0028\u0029", + "name": "normalizeIdentifier", + "summary": "Normalizes\u0020the\u0020given\u0020identifier.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_normalizeIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AaddSuffix\u0028\u0029", + "name": "addSuffix", + "summary": "Adds\u0020suffix\u0020to\u0020identifier,", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_addSuffix" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetAutoincrementIdentifierName\u0028\u0029", + "name": "getAutoincrementIdentifierName", + "summary": "Returns\u0020the\u0020autoincrement\u0020primary\u0020key\u0020identifier\u0020name\u0020for\u0020the\u0020given\u0020table\u0020identifier.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getAutoincrementIdentifierName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetListTableConstraintsSQL\u0028\u0029", + "name": "getListTableConstraintsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getListTableConstraintsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDropForeignKeySQL\u0028\u0029", + "name": "getDropForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020a\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDropForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetCreateDatabaseSQL\u0028\u0029", + "name": "getCreateDatabaseSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020new\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getCreateDatabaseSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDropDatabaseSQL\u0028\u0029", + "name": "getDropDatabaseSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020drop\u0020an\u0020existing\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDropDatabaseSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AusesSequenceEmulatedIdentityColumns\u0028\u0029", + "name": "usesSequenceEmulatedIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020emulates\u0020identity\u0020columns\u0020through\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_usesSequenceEmulatedIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetCreateTemporaryTableSnippetSQL\u0028\u0029", + "name": "getCreateTemporaryTableSnippetSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getCreateTemporaryTableSnippetSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateTimeTzFormatString\u0028\u0029", + "name": "getDateTimeTzFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020datetime\u0020with\u0020timezone\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateTimeTzFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDateFormatString\u0028\u0029", + "name": "getDateFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020date\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDateFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetTimeFormatString\u0028\u0029", + "name": "getTimeFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020time\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getTimeFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetMaxIdentifierLength\u0028\u0029", + "name": "getMaxIdentifierLength", + "summary": "Maximum\u0020length\u0020of\u0020any\u0020given\u0020database\u0020identifier,\u0020like\u0020tables\u0020or\u0020column\u0020names.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getMaxIdentifierLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AsupportsSequences\u0028\u0029", + "name": "supportsSequences", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_supportsSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AsupportsReleaseSavepoints\u0028\u0029", + "name": "supportsReleaseSavepoints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020releasing\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_supportsReleaseSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetTruncateTableSQL\u0028\u0029", + "name": "getTruncateTableSQL", + "summary": "Generates\u0020a\u0020Truncate\u0020Table\u0020SQL\u0020statement\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getTruncateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetDummySelectSQL\u0028\u0029", + "name": "getDummySelectSQL", + "summary": "This\u0020is\u0020for\u0020test\u0020reasons,\u0020many\u0020vendors\u0020have\u0020special\u0020requirements\u0020for\u0020dummy\u0020statements.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getDummySelectSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AreleaseSavePoint\u0028\u0029", + "name": "releaseSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020release\u0020a\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_releaseSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AgetListTableCommentsSQL\u0028\u0029", + "name": "getListTableCommentsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_getListTableCommentsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\OraclePlatform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-OraclePlatform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQL100Platform", + "name": "PostgreSQL100Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020PostgreSQL\u002010.0\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQL100Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQL100Platform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQL100Platform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQL100Platform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQL100Platform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQL120Platform", + "name": "PostgreSQL120Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020PostgreSQL\u002012.0\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQL120Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQL120Platform\u003A\u003AgetDefaultColumnValueSQLSnippet\u0028\u0029", + "name": "getDefaultColumnValueSQLSnippet", + "summary": "Get\u0020the\u0020snippet\u0020used\u0020to\u0020retrieve\u0020the\u0020default\u0020value\u0020for\u0020a\u0020given\u0020column", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQL120Platform.html#method_getDefaultColumnValueSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQL94Platform", + "name": "PostgreSQL94Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020PostgreSQL\u00209.4\u002B\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQL94Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform", + "name": "PostgreSQLPlatform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020PostgreSQL\u0020database\u0020platform\u0020of\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AsetUseBooleanTrueFalseStrings\u0028\u0029", + "name": "setUseBooleanTrueFalseStrings", + "summary": "PostgreSQL\u0020has\u0020different\u0020behavior\u0020with\u0020some\u0020drivers\nwith\u0020regard\u0020to\u0020how\u0020booleans\u0020have\u0020to\u0020be\u0020handled.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_setUseBooleanTrueFalseStrings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetSubstringExpression\u0028\u0029", + "name": "getSubstringExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020get\u0020a\u0020substring\u0020inside\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getSubstringExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetNowExpression\u0028\u0029", + "name": "getNowExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020current\u0020system\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getNowExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetRegexpExpression\u0028\u0029", + "name": "getRegexpExpression", + "summary": "Returns\u0020the\u0020regular\u0020expression\u0020operator.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getRegexpExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AsupportsSequences\u0028\u0029", + "name": "supportsSequences", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_supportsSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AsupportsSchemas\u0028\u0029", + "name": "supportsSchemas", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020database\u0020schemas.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_supportsSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDefaultSchemaName\u0028\u0029", + "name": "getDefaultSchemaName", + "summary": "Returns\u0020the\u0020default\u0020schema\u0020name.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDefaultSchemaName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AsupportsIdentityColumns\u0028\u0029", + "name": "supportsIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020identity\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_supportsIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AusesSequenceEmulatedIdentityColumns\u0028\u0029", + "name": "usesSequenceEmulatedIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020emulates\u0020identity\u0020columns\u0020through\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_usesSequenceEmulatedIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetIdentitySequenceName\u0028\u0029", + "name": "getIdentitySequenceName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020the\u0020sequence\u0020for\u0020a\u0020particular\u0020identity\u0020column\u0020in\u0020a\u0020particular\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getIdentitySequenceName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AhasNativeGuidType\u0028\u0029", + "name": "hasNativeGuidType", + "summary": "Does\u0020this\u0020platform\u0020have\u0020native\u0020guid\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_hasNativeGuidType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListNamespacesSQL\u0028\u0029", + "name": "getListNamespacesSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0020for\u0020retrieving\u0020the\u0020namespaces\u0020defined\u0020in\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListNamespacesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListTableConstraintsSQL\u0028\u0029", + "name": "getListTableConstraintsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListTableConstraintsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetTableWhereClause\u0028\u0029", + "name": "getTableWhereClause", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getTableWhereClause" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AisUnchangedBinaryColumn\u0028\u0029", + "name": "isUnchangedBinaryColumn", + "summary": "Checks\u0020whether\u0020a\u0020given\u0020column\u0020diff\u0020is\u0020a\u0020logically\u0020unchanged\u0020binary\u0020type\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_isUnchangedBinaryColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetCreateSequenceSQL\u0028\u0029", + "name": "getCreateSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getCreateSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetAlterSequenceSQL\u0028\u0029", + "name": "getAlterSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020change\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getAlterSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetSequenceCacheSQL\u0028\u0029", + "name": "getSequenceCacheSQL", + "summary": "Cache\u0020definition\u0020for\u0020sequences", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getSequenceCacheSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDropSequenceSQL\u0028\u0029", + "name": "getDropSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020drop\u0020an\u0020existing\u0020sequence.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDropSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDropForeignKeySQL\u0028\u0029", + "name": "getDropForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020a\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDropForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDropIndexSQL\u0028\u0029", + "name": "getDropIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020an\u0020index\u0020from\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDropIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AtableName\u0028\u0029", + "name": "tableName", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_tableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AconvertSingleBooleanValue\u0028\u0029", + "name": "convertSingleBooleanValue", + "summary": "Converts\u0020a\u0020single\u0020boolean\u0020value.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_convertSingleBooleanValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AdoConvertBooleans\u0028\u0029", + "name": "doConvertBooleans", + "summary": "Converts\u0020one\u0020or\u0020multiple\u0020boolean\u0020values.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_doConvertBooleans" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AconvertBooleans\u0028\u0029", + "name": "convertBooleans", + "summary": "Some\u0020platforms\u0020need\u0020the\u0020boolean\u0020values\u0020to\u0020be\u0020converted.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_convertBooleans" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AconvertBooleansToDatabaseValue\u0028\u0029", + "name": "convertBooleansToDatabaseValue", + "summary": "This\u0020method\u0020should\u0020handle\u0020the\u0020prepared\u0020statements\u0020case.\u0020When\u0020there\u0020is\u0020no\ndistinction,\u0020it\u0027s\u0020OK\u0020to\u0020use\u0020the\u0020same\u0020method.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_convertBooleansToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AconvertFromBoolean\u0028\u0029", + "name": "convertFromBoolean", + "summary": "Some\u0020platforms\u0020have\u0020boolean\u0020literals\u0020that\u0020needs\u0020to\u0020be\u0020correctly\u0020converted", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_convertFromBoolean" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetSequenceNextValSQL\u0028\u0029", + "name": "getSequenceNextValSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getSequenceNextValSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetSetTransactionIsolationSQL\u0028\u0029", + "name": "getSetTransactionIsolationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020set\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getSetTransactionIsolationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetGuidTypeDeclarationSQL\u0028\u0029", + "name": "getGuidTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020GUID\/UUID\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getGuidTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDateTimeTzTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTzTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020with\u0020timezone\u0020offset\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDateTimeTzTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDateTimeTzFormatString\u0028\u0029", + "name": "getDateTimeTzFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020datetime\u0020with\u0020timezone\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDateTimeTzFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetEmptyIdentityInsertSQL\u0028\u0029", + "name": "getEmptyIdentityInsertSQL", + "summary": "Returns\u0020the\u0020insert\u0020SQL\u0020for\u0020an\u0020empty\u0020insert\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getEmptyIdentityInsertSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetTruncateTableSQL\u0028\u0029", + "name": "getTruncateTableSQL", + "summary": "Generates\u0020a\u0020Truncate\u0020Table\u0020SQL\u0020statement\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getTruncateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetDefaultColumnValueSQLSnippet\u0028\u0029", + "name": "getDefaultColumnValueSQLSnippet", + "summary": "Get\u0020the\u0020snippet\u0020used\u0020to\u0020retrieve\u0020the\u0020default\u0020value\u0020for\u0020a\u0020given\u0020column", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getDefaultColumnValueSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetReadLockSQL\u0028\u0029", + "name": "getReadLockSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020append\u0020to\u0020any\u0020SELECT\u0020statement\u0020which\u0020locks\u0020rows\u0020in\u0020shared\u0020read\u0020lock.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getReadLockSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetVarcharMaxLength\u0028\u0029", + "name": "getVarcharMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020varchar\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getVarcharMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetBinaryDefaultLength\u0028\u0029", + "name": "getBinaryDefaultLength", + "summary": "Gets\u0020the\u0020default\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getBinaryDefaultLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AhasNativeJsonType\u0028\u0029", + "name": "hasNativeJsonType", + "summary": "Does\u0020this\u0020platform\u0020have\u0020native\u0020JSON\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_hasNativeJsonType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetJsonTypeDeclarationSQL\u0028\u0029", + "name": "getJsonTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020JSON\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getJsonTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetOldColumnComment\u0028\u0029", + "name": "getOldColumnComment", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getOldColumnComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AgetListTableMetadataSQL\u0028\u0029", + "name": "getListTableMetadataSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_getListTableMetadataSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003A\u0024useBooleanTrueFalseStrings", + "name": "useBooleanTrueFalseStrings", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#property_useBooleanTrueFalseStrings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\PostgreSQLPlatform\u003A\u003A\u0024booleanLiterals", + "name": "booleanLiterals", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-PostgreSQLPlatform.html#property_booleanLiterals" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLite\\Comparator", + "name": "Comparator", + "summary": "Compares\u0020schemas\u0020in\u0020the\u0020context\u0020of\u0020SQLite\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLite-Comparator.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLite\\Comparator\u003A\u003AcompareTables\u0028\u0029", + "name": "compareTables", + "summary": "Compares\u0020the\u0020tables\u0020and\u0020returns\u0020the\u0020difference\u0020between\u0020them.", + "url": "classes/Doctrine-DBAL-Platforms-SQLite-Comparator.html#method_compareTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLite\\Comparator\u003A\u003AdiffTable\u0028\u0029", + "name": "diffTable", + "summary": "Returns\u0020the\u0020difference\u0020between\u0020the\u0020tables\u0020\u0024fromTable\u0020and\u0020\u0024toTable.", + "url": "classes/Doctrine-DBAL-Platforms-SQLite-Comparator.html#method_diffTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLite\\Comparator\u003A\u003AnormalizeColumns\u0028\u0029", + "name": "normalizeColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLite-Comparator.html#method_normalizeColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform", + "name": "SqlitePlatform", + "summary": "The\u0020SqlitePlatform\u0020class\u0020describes\u0020the\u0020specifics\u0020and\u0020dialects\u0020of\u0020the\u0020SQLite\ndatabase\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetRegexpExpression\u0028\u0029", + "name": "getRegexpExpression", + "summary": "Returns\u0020the\u0020regular\u0020expression\u0020operator.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getRegexpExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetNowExpression\u0028\u0029", + "name": "getNowExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020current\u0020system\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getNowExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetModExpression\u0028\u0029", + "name": "getModExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020remainder\u0020of\u0020the\u0020division\u0020operation\u0020\u0024expression1\u0020\/\u0020\u0024expression2.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getModExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetTrimExpression\u0028\u0029", + "name": "getTrimExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020trim\u0020a\u0020string.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getTrimExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetSubstringExpression\u0028\u0029", + "name": "getSubstringExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020get\u0020a\u0020substring\u0020inside\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getSubstringExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003A_getTransactionIsolationLevelSQL\u0028\u0029", + "name": "_getTransactionIsolationLevelSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020given\u0020transaction\u0020isolation\u0020level\u0020Connection\u0020constant.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method__getTransactionIsolationLevelSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetSetTransactionIsolationSQL\u0028\u0029", + "name": "getSetTransactionIsolationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020set\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getSetTransactionIsolationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AprefersIdentityColumns\u0028\u0029", + "name": "prefersIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020prefers\u0020identity\u0020columns\u0020\u0028eg.\u0020autoincrement\u0029\u0020for\u0020ID\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_prefersIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetTinyIntTypeDeclarationSQL\u0028\u0029", + "name": "getTinyIntTypeDeclarationSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getTinyIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetMediumIntTypeDeclarationSQL\u0028\u0029", + "name": "getMediumIntTypeDeclarationSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getMediumIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AdisableSchemaEmulation\u0028\u0029", + "name": "disableSchemaEmulation", + "summary": "Disables\u0020schema\u0020emulation.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_disableSchemaEmulation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AemulateSchemaNamespacing\u0028\u0029", + "name": "emulateSchemaNamespacing", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_emulateSchemaNamespacing" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetNonAutoincrementPrimaryKeyDefinition\u0028\u0029", + "name": "getNonAutoincrementPrimaryKeyDefinition", + "summary": "Generate\u0020a\u0020PRIMARY\u0020KEY\u0020definition\u0020if\u0020no\u0020autoincrement\u0020value\u0020is\u0020used", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getNonAutoincrementPrimaryKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetBinaryDefaultLength\u0028\u0029", + "name": "getBinaryDefaultLength", + "summary": "Gets\u0020the\u0020default\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getBinaryDefaultLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetListTableConstraintsSQL\u0028\u0029", + "name": "getListTableConstraintsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getListTableConstraintsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AsupportsCreateDropDatabase\u0028\u0029", + "name": "supportsCreateDropDatabase", + "summary": "Whether\u0020this\u0020platform\u0020supports\u0020create\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_supportsCreateDropDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AsupportsIdentityColumns\u0028\u0029", + "name": "supportsIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020identity\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_supportsIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetTruncateTableSQL\u0028\u0029", + "name": "getTruncateTableSQL", + "summary": "Generates\u0020a\u0020Truncate\u0020Table\u0020SQL\u0020statement\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getTruncateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AudfSqrt\u0028\u0029", + "name": "udfSqrt", + "summary": "User\u002Ddefined\u0020function\u0020for\u0020Sqlite\u0020that\u0020is\u0020used\u0020with\u0020PDO\u003A\u003AsqliteCreateFunction\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_udfSqrt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AudfMod\u0028\u0029", + "name": "udfMod", + "summary": "User\u002Ddefined\u0020function\u0020for\u0020Sqlite\u0020that\u0020implements\u0020MOD\u0028a,\u0020b\u0029.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_udfMod" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AudfLocate\u0028\u0029", + "name": "udfLocate", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_udfLocate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetForUpdateSQL\u0028\u0029", + "name": "getForUpdateSQL", + "summary": "Returns\u0020the\u0020FOR\u0020UPDATE\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getForUpdateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetInlineTableCommentSQL\u0028\u0029", + "name": "getInlineTableCommentSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getInlineTableCommentSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetPreAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPreAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getPreAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetPostAlterTableIndexForeignKeySQL\u0028\u0029", + "name": "getPostAlterTableIndexForeignKeySQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getPostAlterTableIndexForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetTemporaryTableName\u0028\u0029", + "name": "getTemporaryTableName", + "summary": "Some\u0020vendors\u0020require\u0020temporary\u0020table\u0020names\u0020to\u0020be\u0020qualified\u0020specially.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getTemporaryTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AcanEmulateSchemas\u0028\u0029", + "name": "canEmulateSchemas", + "summary": "Whether\u0020this\u0020platform\u0020can\u0020emulate\u0020schemas.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_canEmulateSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCreateTablesSQL\u0028\u0029", + "name": "getCreateTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCreateTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCreateIndexSQL\u0028\u0029", + "name": "getCreateIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020index\u0020on\u0020a\u0020table\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCreateIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetDropTablesSQL\u0028\u0029", + "name": "getDropTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getDropTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCreatePrimaryKeySQL\u0028\u0029", + "name": "getCreatePrimaryKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020unnamed\u0020primary\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCreatePrimaryKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCreateForeignKeySQL\u0028\u0029", + "name": "getCreateForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020new\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCreateForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetDropForeignKeySQL\u0028\u0029", + "name": "getDropForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020a\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getDropForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCreateConstraintSQL\u0028\u0029", + "name": "getCreateConstraintSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020constraint\u0020on\u0020a\u0020table\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCreateConstraintSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetCreateTableSQL\u0028\u0029", + "name": "getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0028s\u0029\u0020to\u0020create\u0020a\u0020table\u0020with\u0020the\u0020specified\u0020name,\u0020columns\u0020and\u0020constraints\non\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AreplaceColumn\u0028\u0029", + "name": "replaceColumn", + "summary": "Replace\u0020the\u0020column\u0020with\u0020the\u0020given\u0020name\u0020with\u0020the\u0020new\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_replaceColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetSimpleAlterTableSQL\u0028\u0029", + "name": "getSimpleAlterTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getSimpleAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetColumnNamesInAlteredTable\u0028\u0029", + "name": "getColumnNamesInAlteredTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getColumnNamesInAlteredTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetIndexesInAlteredTable\u0028\u0029", + "name": "getIndexesInAlteredTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getIndexesInAlteredTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetForeignKeysInAlteredTable\u0028\u0029", + "name": "getForeignKeysInAlteredTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getForeignKeysInAlteredTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AgetPrimaryIndexInAlteredTable\u0028\u0029", + "name": "getPrimaryIndexInAlteredTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_getPrimaryIndexInAlteredTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SqlitePlatform\u003A\u003A\u0024schemaEmulationEnabled", + "name": "schemaEmulationEnabled", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SqlitePlatform.html#property_schemaEmulationEnabled" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\Comparator", + "name": "Comparator", + "summary": "Compares\u0020schemas\u0020in\u0020the\u0020context\u0020of\u0020SQL\u0020Server\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-Comparator.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\Comparator\u003A\u003AcompareTables\u0028\u0029", + "name": "compareTables", + "summary": "Compares\u0020the\u0020tables\u0020and\u0020returns\u0020the\u0020difference\u0020between\u0020them.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-Comparator.html#method_compareTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\Comparator\u003A\u003AdiffTable\u0028\u0029", + "name": "diffTable", + "summary": "Returns\u0020the\u0020difference\u0020between\u0020the\u0020tables\u0020\u0024fromTable\u0020and\u0020\u0024toTable.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-Comparator.html#method_diffTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\Comparator\u003A\u003AnormalizeColumns\u0028\u0029", + "name": "normalizeColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-Comparator.html#method_normalizeColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\Comparator\u003A\u003A\u0024databaseCollation", + "name": "databaseCollation", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-Comparator.html#property_databaseCollation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\SQL\\Builder\\SQLServerSelectSQLBuilder", + "name": "SQLServerSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-SQL-Builder-SQLServerSelectSQLBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\SQL\\Builder\\SQLServerSelectSQLBuilder\u003A\u003AbuildSQL\u0028\u0029", + "name": "buildSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-SQL-Builder-SQLServerSelectSQLBuilder.html#method_buildSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\SQL\\Builder\\SQLServerSelectSQLBuilder\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer-SQL-Builder-SQLServerSelectSQLBuilder.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer2012Platform", + "name": "SQLServer2012Platform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020Microsoft\u0020SQL\u0020Server\u0020database\u0020platform\nof\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServer2012Platform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform", + "name": "SQLServerPlatform", + "summary": "Provides\u0020the\u0020behavior,\u0020features\u0020and\u0020SQL\u0020dialect\u0020of\u0020the\u0020Microsoft\u0020SQL\u0020Server\u0020database\u0020platform\nof\u0020the\u0020oldest\u0020supported\u0020version.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AcreateSelectSQLBuilder\u0028\u0029", + "name": "createSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_createSelectSQLBuilder" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCurrentDateSQL\u0028\u0029", + "name": "getCurrentDateSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020date.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCurrentDateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCurrentTimeSQL\u0028\u0029", + "name": "getCurrentTimeSQL", + "summary": "Returns\u0020the\u0020SQL\u0020specific\u0020for\u0020the\u0020platform\u0020to\u0020get\u0020the\u0020current\u0020time.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCurrentTimeSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetConvertExpression\u0028\u0029", + "name": "getConvertExpression", + "summary": "Returns\u0020an\u0020expression\u0020that\u0020converts\u0020an\u0020expression\u0020of\u0020one\u0020data\u0020type\u0020to\u0020another.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getConvertExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateArithmeticIntervalExpression\u0028\u0029", + "name": "getDateArithmeticIntervalExpression", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020a\u0020date\u0020arithmetic\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateArithmeticIntervalExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateDiffExpression\u0028\u0029", + "name": "getDateDiffExpression", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020calculate\u0020the\u0020difference\u0020in\u0020days\u0020between\u0020the\u0020two\u0020passed\u0020dates.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateDiffExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AprefersIdentityColumns\u0028\u0029", + "name": "prefersIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020prefers\u0020identity\u0020columns\u0020\u0028eg.\u0020autoincrement\u0029\u0020for\u0020ID\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_prefersIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AsupportsIdentityColumns\u0028\u0029", + "name": "supportsIdentityColumns", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020identity\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_supportsIdentityColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AsupportsReleaseSavepoints\u0028\u0029", + "name": "supportsReleaseSavepoints", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020releasing\u0020savepoints.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_supportsReleaseSavepoints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AsupportsSchemas\u0028\u0029", + "name": "supportsSchemas", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020database\u0020schemas.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_supportsSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDefaultSchemaName\u0028\u0029", + "name": "getDefaultSchemaName", + "summary": "Returns\u0020the\u0020default\u0020schema\u0020name.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDefaultSchemaName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AsupportsSequences\u0028\u0029", + "name": "supportsSequences", + "summary": "Whether\u0020the\u0020platform\u0020supports\u0020sequences.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_supportsSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetAlterSequenceSQL\u0028\u0029", + "name": "getAlterSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020change\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getAlterSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCreateSequenceSQL\u0028\u0029", + "name": "getCreateSequenceSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020sequence\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCreateSequenceSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetSequenceNextValSQL\u0028\u0029", + "name": "getSequenceNextValSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getSequenceNextValSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AhasNativeGuidType\u0028\u0029", + "name": "hasNativeGuidType", + "summary": "Does\u0020this\u0020platform\u0020have\u0020native\u0020guid\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_hasNativeGuidType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDropForeignKeySQL\u0028\u0029", + "name": "getDropForeignKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020a\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDropForeignKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDropIndexSQL\u0028\u0029", + "name": "getDropIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020drop\u0020an\u0020index\u0020from\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDropIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003A_getCreateTableSQL\u0028\u0029", + "name": "_getCreateTableSQL", + "summary": "Returns\u0020the\u0020SQL\u0020used\u0020to\u0020create\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method__getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCreatePrimaryKeySQL\u0028\u0029", + "name": "getCreatePrimaryKeySQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020unnamed\u0020primary\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCreatePrimaryKeySQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AunquoteSingleIdentifier\u0028\u0029", + "name": "unquoteSingleIdentifier", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_unquoteSingleIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCreateColumnCommentSQL\u0028\u0029", + "name": "getCreateColumnCommentSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0020for\u0020creating\u0020a\u0020column\u0020comment.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCreateColumnCommentSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCreateIndexSQL\u0028\u0029", + "name": "getCreateIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020an\u0020index\u0020on\u0020a\u0020table\u0020on\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCreateIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCreateIndexSQLFlags\u0028\u0029", + "name": "getCreateIndexSQLFlags", + "summary": "Adds\u0020additional\u0020flags\u0020for\u0020index\u0020generation.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCreateIndexSQLFlags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003A_appendUniqueConstraintDefinition\u0028\u0029", + "name": "_appendUniqueConstraintDefinition", + "summary": "Extend\u0020unique\u0020key\u0020constraint\u0020with\u0020required\u0020filters", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method__appendUniqueConstraintDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetAlterTableSQL\u0028\u0029", + "name": "getAlterTableSQL", + "summary": "Gets\u0020the\u0020SQL\u0020statements\u0020for\u0020altering\u0020an\u0020existing\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getAlterTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetRenameTableSQL\u0028\u0029", + "name": "getRenameTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getRenameTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetAlterTableAddDefaultConstraintClause\u0028\u0029", + "name": "getAlterTableAddDefaultConstraintClause", + "summary": "Returns\u0020the\u0020SQL\u0020clause\u0020for\u0020adding\u0020a\u0020default\u0020constraint\u0020in\u0020an\u0020ALTER\u0020TABLE\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getAlterTableAddDefaultConstraintClause" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetAlterTableDropDefaultConstraintClause\u0028\u0029", + "name": "getAlterTableDropDefaultConstraintClause", + "summary": "Returns\u0020the\u0020SQL\u0020clause\u0020for\u0020dropping\u0020an\u0020existing\u0020default\u0020constraint\u0020in\u0020an\u0020ALTER\u0020TABLE\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getAlterTableDropDefaultConstraintClause" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AalterColumnRequiresDropDefaultConstraint\u0028\u0029", + "name": "alterColumnRequiresDropDefaultConstraint", + "summary": "Checks\u0020whether\u0020a\u0020column\u0020alteration\u0020requires\u0020dropping\u0020its\u0020default\u0020constraint\u0020first.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_alterColumnRequiresDropDefaultConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetAlterColumnCommentSQL\u0028\u0029", + "name": "getAlterColumnCommentSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0020for\u0020altering\u0020a\u0020column\u0020comment.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getAlterColumnCommentSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDropColumnCommentSQL\u0028\u0029", + "name": "getDropColumnCommentSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0020for\u0020dropping\u0020a\u0020column\u0020comment.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDropColumnCommentSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetRenameIndexSQL\u0028\u0029", + "name": "getRenameIndexSQL", + "summary": "Returns\u0020the\u0020SQL\u0020for\u0020renaming\u0020an\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getRenameIndexSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetEmptyIdentityInsertSQL\u0028\u0029", + "name": "getEmptyIdentityInsertSQL", + "summary": "Returns\u0020the\u0020insert\u0020SQL\u0020for\u0020an\u0020empty\u0020insert\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getEmptyIdentityInsertSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetListTablesSQL\u0028\u0029", + "name": "getListTablesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getListTablesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetListTableColumnsSQL\u0028\u0029", + "name": "getListTableColumnsSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getListTableColumnsSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetListTableForeignKeysSQL\u0028\u0029", + "name": "getListTableForeignKeysSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getListTableForeignKeysSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetListTableIndexesSQL\u0028\u0029", + "name": "getListTableIndexesSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getListTableIndexesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetTableWhereClause\u0028\u0029", + "name": "getTableWhereClause", + "summary": "Returns\u0020the\u0020where\u0020clause\u0020to\u0020filter\u0020schema\u0020and\u0020table\u0020name\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getTableWhereClause" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetLocateExpression\u0028\u0029", + "name": "getLocateExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020position\u0020of\u0020the\u0020first\u0020occurrence\u0020of\u0020substring\u0020\u0024substr\u0020in\u0020string\u0020\u0024str.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getLocateExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetModExpression\u0028\u0029", + "name": "getModExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020remainder\u0020of\u0020the\u0020division\u0020operation\u0020\u0024expression1\u0020\/\u0020\u0024expression2.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getModExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetTrimExpression\u0028\u0029", + "name": "getTrimExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020trim\u0020a\u0020string.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getTrimExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetConcatExpression\u0028\u0029", + "name": "getConcatExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020concatenate\u0020the\u0020given\u0020expressions.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getConcatExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetListNamespacesSQL\u0028\u0029", + "name": "getListNamespacesSQL", + "summary": "Returns\u0020the\u0020SQL\u0020statement\u0020for\u0020retrieving\u0020the\u0020namespaces\u0020defined\u0020in\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getListNamespacesSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetSubstringExpression\u0028\u0029", + "name": "getSubstringExpression", + "summary": "Returns\u0020a\u0020SQL\u0020snippet\u0020to\u0020get\u0020a\u0020substring\u0020inside\u0020an\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getSubstringExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetLengthExpression\u0028\u0029", + "name": "getLengthExpression", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020get\u0020the\u0020length\u0020of\u0020a\u0020text\u0020column\u0020in\u0020characters.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getLengthExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCurrentDatabaseExpression\u0028\u0029", + "name": "getCurrentDatabaseExpression", + "summary": "Returns\u0020the\u0020SQL\u0020expression\u0020which\u0020represents\u0020the\u0020currently\u0020selected\u0020database.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCurrentDatabaseExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetSetTransactionIsolationSQL\u0028\u0029", + "name": "getSetTransactionIsolationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020set\u0020the\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getSetTransactionIsolationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetIntegerTypeDeclarationSQL\u0028\u0029", + "name": "getIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00204\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetBigIntTypeDeclarationSQL\u0028\u0029", + "name": "getBigIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020an\u00208\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getBigIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetSmallIntTypeDeclarationSQL\u0028\u0029", + "name": "getSmallIntTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u00202\u0020byte\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getSmallIntTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetGuidTypeDeclarationSQL\u0028\u0029", + "name": "getGuidTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020to\u0020declare\u0020a\u0020GUID\/UUID\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getGuidTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateTimeTzTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTzTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020with\u0020timezone\u0020offset\u0020columns.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateTimeTzTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetAsciiStringTypeDeclarationSQL\u0028\u0029", + "name": "getAsciiStringTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020column\u0020that\u0020can\nstore\u0020characters\u0020in\u0020the\u0020ASCII\u0020character\u0020set", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getAsciiStringTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetVarcharTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getVarcharTypeDeclarationSQLSnippet", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getVarcharTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetBinaryTypeDeclarationSQLSnippet\u0028\u0029", + "name": "getBinaryTypeDeclarationSQLSnippet", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020BINARY\/VARBINARY\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getBinaryTypeDeclarationSQLSnippet" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetBinaryMaxLength\u0028\u0029", + "name": "getBinaryMaxLength", + "summary": "Gets\u0020the\u0020maximum\u0020length\u0020of\u0020a\u0020binary\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getBinaryMaxLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetClobTypeDeclarationSQL\u0028\u0029", + "name": "getClobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020used\u0020to\u0020declare\u0020a\u0020CLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getClobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003A_getCommonIntegerTypeDeclarationSQL\u0028\u0029", + "name": "_getCommonIntegerTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020common\u0020properties\u0020of\u0020an\u0020integer\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method__getCommonIntegerTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateTimeTypeDeclarationSQL\u0028\u0029", + "name": "getDateTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020datetime\u0020columns\u0020in\nstatements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateTypeDeclarationSQL\u0028\u0029", + "name": "getDateTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020date\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetTimeTypeDeclarationSQL\u0028\u0029", + "name": "getTimeTypeDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020to\u0020be\u0020used\u0020to\u0020create\u0020time\u0020columns\u0020in\u0020statements\nlike\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getTimeTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetBooleanTypeDeclarationSQL\u0028\u0029", + "name": "getBooleanTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020snippet\u0020that\u0020declares\u0020a\u0020boolean\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getBooleanTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AdoModifyLimitQuery\u0028\u0029", + "name": "doModifyLimitQuery", + "summary": "Adds\u0020an\u0020platform\u002Dspecific\u0020LIMIT\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_doModifyLimitQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AconvertBooleans\u0028\u0029", + "name": "convertBooleans", + "summary": "Some\u0020platforms\u0020need\u0020the\u0020boolean\u0020values\u0020to\u0020be\u0020converted.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_convertBooleans" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCreateTemporaryTableSnippetSQL\u0028\u0029", + "name": "getCreateTemporaryTableSnippetSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCreateTemporaryTableSnippetSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetTemporaryTableName\u0028\u0029", + "name": "getTemporaryTableName", + "summary": "Some\u0020vendors\u0020require\u0020temporary\u0020table\u0020names\u0020to\u0020be\u0020qualified\u0020specially.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getTemporaryTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateTimeFormatString\u0028\u0029", + "name": "getDateTimeFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020datetime\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateTimeFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateFormatString\u0028\u0029", + "name": "getDateFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020date\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetTimeFormatString\u0028\u0029", + "name": "getTimeFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020time\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getTimeFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetDateTimeTzFormatString\u0028\u0029", + "name": "getDateTimeTzFormatString", + "summary": "Gets\u0020the\u0020format\u0020string,\u0020as\u0020accepted\u0020by\u0020the\u0020date\u0028\u0029\u0020function,\u0020that\u0020describes\nthe\u0020format\u0020of\u0020a\u0020stored\u0020datetime\u0020with\u0020timezone\u0020value\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getDateTimeTzFormatString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AinitializeDoctrineTypeMappings\u0028\u0029", + "name": "initializeDoctrineTypeMappings", + "summary": "Lazy\u0020load\u0020Doctrine\u0020Type\u0020Mappings.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_initializeDoctrineTypeMappings" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AcreateSavePoint\u0028\u0029", + "name": "createSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020create\u0020a\u0020new\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_createSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AreleaseSavePoint\u0028\u0029", + "name": "releaseSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020release\u0020a\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_releaseSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003ArollbackSavePoint\u0028\u0029", + "name": "rollbackSavePoint", + "summary": "Returns\u0020the\u0020SQL\u0020to\u0020rollback\u0020a\u0020savepoint.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_rollbackSavePoint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AappendLockHint\u0028\u0029", + "name": "appendLockHint", + "summary": "Honors\u0020that\u0020some\u0020SQL\u0020vendors\u0020such\u0020as\u0020MsSql\u0020use\u0020table\u0020hints\u0020for\u0020locking\u0020instead\u0020of\u0020the\nANSI\u0020SQL\u0020FOR\u0020UPDATE\u0020specification.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_appendLockHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetForUpdateSQL\u0028\u0029", + "name": "getForUpdateSQL", + "summary": "Returns\u0020the\u0020FOR\u0020UPDATE\u0020expression.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getForUpdateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetReservedKeywordsClass\u0028\u0029", + "name": "getReservedKeywordsClass", + "summary": "Returns\u0020the\u0020class\u0020name\u0020of\u0020the\u0020reserved\u0020keywords\u0020list.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getReservedKeywordsClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AquoteSingleIdentifier\u0028\u0029", + "name": "quoteSingleIdentifier", + "summary": "Quotes\u0020a\u0020single\u0020identifier\u0020\u0028no\u0020dot\u0020chain\u0020separation\u0029.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_quoteSingleIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetTruncateTableSQL\u0028\u0029", + "name": "getTruncateTableSQL", + "summary": "Generates\u0020a\u0020Truncate\u0020Table\u0020SQL\u0020statement\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getTruncateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetBlobTypeDeclarationSQL\u0028\u0029", + "name": "getBlobTypeDeclarationSQL", + "summary": "Returns\u0020the\u0020SQL\u0020Snippet\u0020used\u0020to\u0020declare\u0020a\u0020BLOB\u0020column\u0020type.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getBlobTypeDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetColumnCollationDeclarationSQL\u0028\u0029", + "name": "getColumnCollationDeclarationSQL", + "summary": "Obtains\u0020DBMS\u0020specific\u0020SQL\u0020code\u0020portion\u0020needed\u0020to\u0020set\u0020the\u0020COLLATION\nof\u0020a\u0020column\u0020declaration\u0020to\u0020be\u0020used\u0020in\u0020statements\u0020like\u0020CREATE\u0020TABLE.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getColumnCollationDeclarationSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AcolumnsEqual\u0028\u0029", + "name": "columnsEqual", + "summary": "Compares\u0020the\u0020definitions\u0020of\u0020the\u0020given\u0020columns\u0020in\u0020the\u0020context\u0020of\u0020this\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_columnsEqual" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetLikeWildcardCharacters\u0028\u0029", + "name": "getLikeWildcardCharacters", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getLikeWildcardCharacters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgenerateDefaultConstraintName\u0028\u0029", + "name": "generateDefaultConstraintName", + "summary": "Returns\u0020a\u0020unique\u0020default\u0020constraint\u0020name\u0020for\u0020a\u0020table\u0020and\u0020column.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_generateDefaultConstraintName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgenerateIdentifierName\u0028\u0029", + "name": "generateIdentifierName", + "summary": "Returns\u0020a\u0020hash\u0020value\u0020for\u0020a\u0020given\u0020identifier.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_generateIdentifierName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetCommentOnTableSQL\u0028\u0029", + "name": "getCommentOnTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getCommentOnTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AgetListTableMetadataSQL\u0028\u0029", + "name": "getListTableMetadataSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_getListTableMetadataSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AshouldAddOrderBy\u0028\u0029", + "name": "shouldAddOrderBy", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_shouldAddOrderBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServerPlatform\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "Creates\u0020the\u0020schema\u0020manager\u0020that\u0020can\u0020be\u0020used\u0020to\u0020inspect\u0020and\u0020change\u0020the\u0020underlying\ndatabase\u0020schema\u0020according\u0020to\u0020the\u0020dialect\u0020of\u0020the\u0020platform.", + "url": "classes/Doctrine-DBAL-Platforms-SQLServerPlatform.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\TrimMode", + "name": "TrimMode", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-TrimMode.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\TrimMode\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-TrimMode.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\TrimMode\u003A\u003AUNSPECIFIED", + "name": "UNSPECIFIED", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-TrimMode.html#constant_UNSPECIFIED" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\TrimMode\u003A\u003ALEADING", + "name": "LEADING", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-TrimMode.html#constant_LEADING" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\TrimMode\u003A\u003ATRAILING", + "name": "TRAILING", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-TrimMode.html#constant_TRAILING" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\TrimMode\u003A\u003ABOTH", + "name": "BOTH", + "summary": "", + "url": "classes/Doctrine-DBAL-Platforms-TrimMode.html#constant_BOTH" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection", + "name": "Connection", + "summary": "Portability\u0020wrapper\u0020for\u0020a\u0020Connection.", + "url": "classes/Doctrine-DBAL-Portability-Connection.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepares\u0020a\u0020statement\u0020for\u0020execution\u0020and\u0020returns\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#method_prepare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Executes\u0020an\u0020SQL\u0020statement,\u0020returning\u0020a\u0020result\u0020set\u0020as\u0020a\u0020Statement\u0020object.", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#method_query" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003APORTABILITY_ALL", + "name": "PORTABILITY_ALL", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#constant_PORTABILITY_ALL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003APORTABILITY_NONE", + "name": "PORTABILITY_NONE", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#constant_PORTABILITY_NONE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003APORTABILITY_RTRIM", + "name": "PORTABILITY_RTRIM", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#constant_PORTABILITY_RTRIM" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003APORTABILITY_EMPTY_TO_NULL", + "name": "PORTABILITY_EMPTY_TO_NULL", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#constant_PORTABILITY_EMPTY_TO_NULL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003APORTABILITY_FIX_CASE", + "name": "PORTABILITY_FIX_CASE", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#constant_PORTABILITY_FIX_CASE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Connection\u003A\u003A\u0024converter", + "name": "converter", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Connection.html#property_converter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter", + "name": "Converter", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A\u0024convertNumeric", + "name": "convertNumeric", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#property_convertNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A\u0024convertAssociative", + "name": "convertAssociative", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#property_convertAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A\u0024convertOne", + "name": "convertOne", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#property_convertOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A\u0024convertAllNumeric", + "name": "convertAllNumeric", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#property_convertAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A\u0024convertAllAssociative", + "name": "convertAllAssociative", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#property_convertAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003A\u0024convertFirstColumn", + "name": "convertFirstColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#property_convertFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_id" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003AconvertEmptyStringToNull\u0028\u0029", + "name": "convertEmptyStringToNull", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_convertEmptyStringToNull" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003ArightTrimString\u0028\u0029", + "name": "rightTrimString", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_rightTrimString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003AcreateConvertValue\u0028\u0029", + "name": "createConvertValue", + "summary": "Creates\u0020a\u0020function\u0020that\u0020will\u0020convert\u0020each\u0020individual\u0020value\u0020retrieved\u0020from\u0020the\u0020database", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_createConvertValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003AcreateConvertRow\u0028\u0029", + "name": "createConvertRow", + "summary": "Creates\u0020a\u0020function\u0020that\u0020will\u0020convert\u0020each\u0020array\u002Drow\u0020retrieved\u0020from\u0020the\u0020database", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_createConvertRow" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003AcreateConvert\u0028\u0029", + "name": "createConvert", + "summary": "Creates\u0020a\u0020function\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020return\u0020value\u0020of\u0020Statement\u003A\u003Afetch\u002A\u0028\u0029\nor\u0020an\u0020identity\u0020function\u0020if\u0020no\u0020conversion\u0020is\u0020needed", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_createConvert" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003AcreateConvertAll\u0028\u0029", + "name": "createConvertAll", + "summary": "Creates\u0020a\u0020function\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020return\u0020value\u0020of\u0020Statement\u003A\u003AfetchAll\u002A\u0028\u0029\nor\u0020an\u0020identity\u0020function\u0020if\u0020no\u0020transformation\u0020is\u0020required", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_createConvertAll" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003AcreateMapper\u0028\u0029", + "name": "createMapper", + "summary": "Creates\u0020a\u0020function\u0020that\u0020maps\u0020each\u0020value\u0020of\u0020the\u0020array\u0020using\u0020the\u0020given\u0020function", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_createMapper" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003Acompose\u0028\u0029", + "name": "compose", + "summary": "Creates\u0020a\u0020composition\u0020of\u0020the\u0020given\u0020set\u0020of\u0020functions", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#method_compose" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003ACASE_LOWER", + "name": "CASE_LOWER", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#constant_CASE_LOWER" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Converter\u003A\u003ACASE_UPPER", + "name": "CASE_UPPER", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Converter.html#constant_CASE_UPPER" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Driver", + "name": "Driver", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Driver\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Driver.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Driver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Portability-Driver.html#method_connect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Driver\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Driver.html#property_mode" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Driver\u003A\u003A\u0024case", + "name": "case", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Driver.html#property_case" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Middleware", + "name": "Middleware", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Middleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Middleware\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Middleware.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Middleware\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Middleware.html#method_wrap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Middleware\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Middleware.html#property_mode" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Middleware\u003A\u003A\u0024case", + "name": "case", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Middleware.html#property_case" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\OptimizeFlags", + "name": "OptimizeFlags", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-OptimizeFlags.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\OptimizeFlags\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-OptimizeFlags.html#method___invoke" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\OptimizeFlags\u003A\u003A\u0024platforms", + "name": "platforms", + "summary": "Platform\u002Dspecific\u0020portability\u0020flags\u0020that\u0020need\u0020to\u0020be\u0020excluded\u0020from\u0020the\u0020user\u002Dprovided\u0020mode\nsince\u0020the\u0020platform\u0020already\u0020operates\u0020in\u0020this\u0020mode\u0020to\u0020avoid\u0020unnecessary\u0020conversion\u0020overhead.", + "url": "classes/Doctrine-DBAL-Portability-OptimizeFlags.html#property_platforms" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Portability-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Portability-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Portability-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Portability-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Portability-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Portability-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Result\u003A\u003A\u0024converter", + "name": "converter", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Result.html#property_converter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Statement", + "name": "Statement", + "summary": "Portability\u0020wrapper\u0020for\u0020a\u0020Statement.", + "url": "classes/Doctrine-DBAL-Portability-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Statement\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Wraps\u0020\u003Ctt\u003EStatement\u003C\/tt\u003E\u0020and\u0020applies\u0020portability\u0020measures.", + "url": "classes/Doctrine-DBAL-Portability-Statement.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020a\u0020prepared\u0020statement", + "url": "classes/Doctrine-DBAL-Portability-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability\\Statement\u003A\u003A\u0024converter", + "name": "converter", + "summary": "", + "url": "classes/Doctrine-DBAL-Portability-Statement.html#property_converter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression", + "name": "CompositeExpression", + "summary": "Composite\u0020expression\u0020is\u0020responsible\u0020to\u0020build\u0020a\u0020group\u0020of\u0020similar\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003Aand\u0028\u0029", + "name": "and", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_and" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003Aor\u0028\u0029", + "name": "or", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_or" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003AaddMultiple\u0028\u0029", + "name": "addMultiple", + "summary": "Adds\u0020multiple\u0020parts\u0020to\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_addMultiple" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Adds\u0020an\u0020expression\u0020to\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_add" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Returns\u0020a\u0020new\u0020CompositeExpression\u0020with\u0020the\u0020given\u0020parts\u0020added.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_with" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Retrieves\u0020the\u0020amount\u0020of\u0020expressions\u0020on\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_count" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Retrieves\u0020the\u0020string\u0020representation\u0020of\u0020this\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method___toString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Returns\u0020the\u0020type\u0020of\u0020this\u0020composite\u0020expression\u0020\u0028AND\/OR\u0029.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#method_getType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003ATYPE_AND", + "name": "TYPE_AND", + "summary": "Constant\u0020that\u0020represents\u0020an\u0020AND\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#constant_TYPE_AND" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003ATYPE_OR", + "name": "TYPE_OR", + "summary": "Constant\u0020that\u0020represents\u0020an\u0020OR\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#constant_TYPE_OR" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003A\u0024type", + "name": "type", + "summary": "The\u0020instance\u0020type\u0020of\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#property_type" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\CompositeExpression\u003A\u003A\u0024parts", + "name": "parts", + "summary": "Each\u0020expression\u0020part\u0020of\u0020the\u0020composite\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-CompositeExpression.html#property_parts" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder", + "name": "ExpressionBuilder", + "summary": "ExpressionBuilder\u0020class\u0020is\u0020responsible\u0020to\u0020dynamically\u0020create\u0020SQL\u0020query\u0020parts.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initializes\u0020a\u0020new\u0020\u003Ctt\u003EExpressionBuilder\u003C\/tt\u003E.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Aand\u0028\u0029", + "name": "and", + "summary": "Creates\u0020a\u0020conjunction\u0020of\u0020the\u0020given\u0020expressions.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_and" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Aor\u0028\u0029", + "name": "or", + "summary": "Creates\u0020a\u0020disjunction\u0020of\u0020the\u0020given\u0020expressions.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_or" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AandX\u0028\u0029", + "name": "andX", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_andX" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AorX\u0028\u0029", + "name": "orX", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_orX" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Acomparison\u0028\u0029", + "name": "comparison", + "summary": "Creates\u0020a\u0020comparison\u0020expression.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_comparison" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Aeq\u0028\u0029", + "name": "eq", + "summary": "Creates\u0020an\u0020equality\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_eq" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Aneq\u0028\u0029", + "name": "neq", + "summary": "Creates\u0020a\u0020non\u0020equality\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_neq" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Alt\u0028\u0029", + "name": "lt", + "summary": "Creates\u0020a\u0020lower\u002Dthan\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_lt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Alte\u0028\u0029", + "name": "lte", + "summary": "Creates\u0020a\u0020lower\u002Dthan\u002Dequal\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_lte" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Agt\u0028\u0029", + "name": "gt", + "summary": "Creates\u0020a\u0020greater\u002Dthan\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_gt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Agte\u0028\u0029", + "name": "gte", + "summary": "Creates\u0020a\u0020greater\u002Dthan\u002Dequal\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_gte" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AisNull\u0028\u0029", + "name": "isNull", + "summary": "Creates\u0020an\u0020IS\u0020NULL\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_isNull" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AisNotNull\u0028\u0029", + "name": "isNotNull", + "summary": "Creates\u0020an\u0020IS\u0020NOT\u0020NULL\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_isNotNull" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Alike\u0028\u0029", + "name": "like", + "summary": "Creates\u0020a\u0020LIKE\u0028\u0029\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_like" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AnotLike\u0028\u0029", + "name": "notLike", + "summary": "Creates\u0020a\u0020NOT\u0020LIKE\u0028\u0029\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_notLike" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Ain\u0028\u0029", + "name": "in", + "summary": "Creates\u0020an\u0020IN\u0020\u0028\u0029\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_in" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AnotIn\u0028\u0029", + "name": "notIn", + "summary": "Creates\u0020a\u0020NOT\u0020IN\u0020\u0028\u0029\u0020comparison\u0020expression\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_notIn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003Aliteral\u0028\u0029", + "name": "literal", + "summary": "Builds\u0020an\u0020SQL\u0020literal\u0020from\u0020a\u0020given\u0020input\u0020parameter.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#method_literal" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AEQ", + "name": "EQ", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#constant_EQ" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003ANEQ", + "name": "NEQ", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#constant_NEQ" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003ALT", + "name": "LT", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#constant_LT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003ALTE", + "name": "LTE", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#constant_LTE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AGT", + "name": "GT", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#constant_GT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003AGTE", + "name": "GTE", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#constant_GTE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression\\ExpressionBuilder\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020DBAL\u0020Connection.", + "url": "classes/Doctrine-DBAL-Query-Expression-ExpressionBuilder.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\ForUpdate\\ConflictResolutionMode", + "name": "ConflictResolutionMode", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-ForUpdate-ConflictResolutionMode.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\ForUpdate\\ConflictResolutionMode\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020cannot\u0020be\u0020instantiated.", + "url": "classes/Doctrine-DBAL-Query-ForUpdate-ConflictResolutionMode.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\ForUpdate\\ConflictResolutionMode\u003A\u003AORDINARY", + "name": "ORDINARY", + "summary": "Wait\u0020for\u0020the\u0020row\u0020to\u0020be\u0020unlocked", + "url": "classes/Doctrine-DBAL-Query-ForUpdate-ConflictResolutionMode.html#constant_ORDINARY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\ForUpdate\\ConflictResolutionMode\u003A\u003ASKIP_LOCKED", + "name": "SKIP_LOCKED", + "summary": "Skip\u0020the\u0020row\u0020if\u0020it\u0020is\u0020locked", + "url": "classes/Doctrine-DBAL-Query-ForUpdate-ConflictResolutionMode.html#constant_SKIP_LOCKED" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit", + "name": "Limit", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit\u003A\u003AisDefined\u0028\u0029", + "name": "isDefined", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html#method_isDefined" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit\u003A\u003AgetMaxResults\u0028\u0029", + "name": "getMaxResults", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html#method_getMaxResults" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit\u003A\u003AgetFirstResult\u0028\u0029", + "name": "getFirstResult", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html#method_getFirstResult" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit\u003A\u003A\u0024maxResults", + "name": "maxResults", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html#property_maxResults" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Limit\u003A\u003A\u0024firstResult", + "name": "firstResult", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-Limit.html#property_firstResult" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder", + "name": "QueryBuilder", + "summary": "QueryBuilder\u0020class\u0020is\u0020responsible\u0020to\u0020dynamically\u0020create\u0020SQL\u0020queries.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initializes\u0020a\u0020new\u0020\u003Ctt\u003EQueryBuilder\u003C\/tt\u003E.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Aexpr\u0028\u0029", + "name": "expr", + "summary": "Gets\u0020an\u0020ExpressionBuilder\u0020used\u0020for\u0020object\u002Doriented\u0020construction\u0020of\u0020query\u0020expressions.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_expr" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020currently\u0020built\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Gets\u0020the\u0020associated\u0020DBAL\u0020Connection\u0020for\u0020this\u0020query\u0020builder.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetState\u0028\u0029", + "name": "getState", + "summary": "Gets\u0020the\u0020state\u0020of\u0020this\u0020query\u0020builder\u0020instance.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getState" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020first\u0020row\u0020of\u0020the\u0020result\nas\u0020an\u0020associative\u0020array.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020first\u0020row\u0020of\u0020the\u0020result\nas\u0020a\u0020numerically\u0020indexed\u0020array.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020value\u0020of\u0020a\u0020single\u0020column\nof\u0020the\u0020first\u0020row\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020array\u0020of\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020array\u0020of\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchAllKeyValue\u0028\u0029", + "name": "fetchAllKeyValue", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020with\u0020the\u0020keys\nmapped\u0020to\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020mapped\u0020to\u0020the\u0020second\u0020column.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchAllKeyValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchAllAssociativeIndexed\u0028\u0029", + "name": "fetchAllAssociativeIndexed", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020with\u0020the\u0020keys\u0020mapped\nto\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020being\u0020an\u0020associative\u0020array\u0020representing\u0020the\u0020rest\u0020of\u0020the\u0020columns\nand\u0020their\u0020values.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchAllAssociativeIndexed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "Prepares\u0020and\u0020executes\u0020an\u0020SQL\u0020query\u0020and\u0020returns\u0020the\u0020result\u0020as\u0020an\u0020array\u0020of\u0020the\u0020first\u0020column\u0020values.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AexecuteQuery\u0028\u0029", + "name": "executeQuery", + "summary": "Executes\u0020an\u0020SQL\u0020query\u0020\u0028SELECT\u0029\u0020and\u0020returns\u0020a\u0020Result.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_executeQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AexecuteStatement\u0028\u0029", + "name": "executeStatement", + "summary": "Executes\u0020an\u0020SQL\u0020statement\u0020and\u0020returns\u0020the\u0020number\u0020of\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_executeStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020this\u0020query\u0020using\u0020the\u0020bound\u0020parameters\u0020and\u0020their\u0020types.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetSQL\u0028\u0029", + "name": "getSQL", + "summary": "Gets\u0020the\u0020complete\u0020SQL\u0020string\u0020formed\u0020by\u0020the\u0020current\u0020specifications\u0020of\u0020this\u0020QueryBuilder.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AsetParameter\u0028\u0029", + "name": "setParameter", + "summary": "Sets\u0020a\u0020query\u0020parameter\u0020for\u0020the\u0020query\u0020being\u0020constructed.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_setParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AsetParameters\u0028\u0029", + "name": "setParameters", + "summary": "Sets\u0020a\u0020collection\u0020of\u0020query\u0020parameters\u0020for\u0020the\u0020query\u0020being\u0020constructed.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_setParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "Gets\u0020all\u0020defined\u0020query\u0020parameters\u0020for\u0020the\u0020query\u0020being\u0020constructed\u0020indexed\u0020by\u0020parameter\u0020index\u0020or\u0020name.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getParameters" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetParameter\u0028\u0029", + "name": "getParameter", + "summary": "Gets\u0020a\u0020\u0028previously\u0020set\u0029\u0020query\u0020parameter\u0020of\u0020the\u0020query\u0020being\u0020constructed.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetParameterTypes\u0028\u0029", + "name": "getParameterTypes", + "summary": "Gets\u0020all\u0020defined\u0020query\u0020parameter\u0020types\u0020for\u0020the\u0020query\u0020being\u0020constructed\u0020indexed\u0020by\u0020parameter\u0020index\u0020or\u0020name.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getParameterTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetParameterType\u0028\u0029", + "name": "getParameterType", + "summary": "Gets\u0020a\u0020\u0028previously\u0020set\u0029\u0020query\u0020parameter\u0020type\u0020of\u0020the\u0020query\u0020being\u0020constructed.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getParameterType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AsetFirstResult\u0028\u0029", + "name": "setFirstResult", + "summary": "Sets\u0020the\u0020position\u0020of\u0020the\u0020first\u0020result\u0020to\u0020retrieve\u0020\u0028the\u0020\u0022offset\u0022\u0029.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_setFirstResult" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetFirstResult\u0028\u0029", + "name": "getFirstResult", + "summary": "Gets\u0020the\u0020position\u0020of\u0020the\u0020first\u0020result\u0020the\u0020query\u0020object\u0020was\u0020set\u0020to\u0020retrieve\u0020\u0028the\u0020\u0022offset\u0022\u0029.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getFirstResult" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AsetMaxResults\u0028\u0029", + "name": "setMaxResults", + "summary": "Sets\u0020the\u0020maximum\u0020number\u0020of\u0020results\u0020to\u0020retrieve\u0020\u0028the\u0020\u0022limit\u0022\u0029.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_setMaxResults" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetMaxResults\u0028\u0029", + "name": "getMaxResults", + "summary": "Gets\u0020the\u0020maximum\u0020number\u0020of\u0020results\u0020the\u0020query\u0020object\u0020was\u0020set\u0020to\u0020retrieve\u0020\u0028the\u0020\u0022limit\u0022\u0029.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getMaxResults" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AforUpdate\u0028\u0029", + "name": "forUpdate", + "summary": "Locks\u0020the\u0020queried\u0020rows\u0020for\u0020a\u0020subsequent\u0020update.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_forUpdate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Either\u0020appends\u0020to\u0020or\u0020replaces\u0020a\u0020single,\u0020generic\u0020query\u0020part.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_add" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "Specifies\u0020an\u0020item\u0020that\u0020is\u0020to\u0020be\u0020returned\u0020in\u0020the\u0020query\u0020result.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_select" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Adistinct\u0028\u0029", + "name": "distinct", + "summary": "Adds\u0020or\u0020removes\u0020DISTINCT\u0020to\/from\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_distinct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AaddSelect\u0028\u0029", + "name": "addSelect", + "summary": "Adds\u0020an\u0020item\u0020that\u0020is\u0020to\u0020be\u0020returned\u0020in\u0020the\u0020query\u0020result.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_addSelect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Turns\u0020the\u0020query\u0020being\u0020built\u0020into\u0020a\u0020bulk\u0020delete\u0020query\u0020that\u0020ranges\u0020over\na\u0020certain\u0020table.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_delete" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Turns\u0020the\u0020query\u0020being\u0020built\u0020into\u0020a\u0020bulk\u0020update\u0020query\u0020that\u0020ranges\u0020over\na\u0020certain\u0020table", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_update" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "Turns\u0020the\u0020query\u0020being\u0020built\u0020into\u0020an\u0020insert\u0020query\u0020that\u0020inserts\u0020into\na\u0020certain\u0020table", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_insert" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Afrom\u0028\u0029", + "name": "from", + "summary": "Creates\u0020and\u0020adds\u0020a\u0020query\u0020root\u0020corresponding\u0020to\u0020the\u0020table\u0020identified\u0020by\u0020the\ngiven\u0020alias,\u0020forming\u0020a\u0020cartesian\u0020product\u0020with\u0020any\u0020existing\u0020query\u0020roots.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_from" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "Creates\u0020and\u0020adds\u0020a\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_join" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AinnerJoin\u0028\u0029", + "name": "innerJoin", + "summary": "Creates\u0020and\u0020adds\u0020a\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_innerJoin" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AleftJoin\u0028\u0029", + "name": "leftJoin", + "summary": "Creates\u0020and\u0020adds\u0020a\u0020left\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_leftJoin" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003ArightJoin\u0028\u0029", + "name": "rightJoin", + "summary": "Creates\u0020and\u0020adds\u0020a\u0020right\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_rightJoin" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Sets\u0020a\u0020new\u0020value\u0020for\u0020a\u0020column\u0020in\u0020a\u0020bulk\u0020update\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_set" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Specifies\u0020one\u0020or\u0020more\u0020restrictions\u0020to\u0020the\u0020query\u0020result.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_where" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AandWhere\u0028\u0029", + "name": "andWhere", + "summary": "Adds\u0020one\u0020or\u0020more\u0020restrictions\u0020to\u0020the\u0020query\u0020results,\u0020forming\u0020a\u0020logical\nconjunction\u0020with\u0020any\u0020previously\u0020specified\u0020restrictions.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_andWhere" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AorWhere\u0028\u0029", + "name": "orWhere", + "summary": "Adds\u0020one\u0020or\u0020more\u0020restrictions\u0020to\u0020the\u0020query\u0020results,\u0020forming\u0020a\u0020logical\ndisjunction\u0020with\u0020any\u0020previously\u0020specified\u0020restrictions.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_orWhere" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Specifies\u0020a\u0020grouping\u0020over\u0020the\u0020results\u0020of\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_groupBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AaddGroupBy\u0028\u0029", + "name": "addGroupBy", + "summary": "Adds\u0020a\u0020grouping\u0020expression\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_addGroupBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AsetValue\u0028\u0029", + "name": "setValue", + "summary": "Sets\u0020a\u0020value\u0020for\u0020a\u0020column\u0020in\u0020an\u0020insert\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_setValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Avalues\u0028\u0029", + "name": "values", + "summary": "Specifies\u0020values\u0020for\u0020an\u0020insert\u0020query\u0020indexed\u0020by\u0020column\u0020names.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_values" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003Ahaving\u0028\u0029", + "name": "having", + "summary": "Specifies\u0020a\u0020restriction\u0020over\u0020the\u0020groups\u0020of\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_having" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AandHaving\u0028\u0029", + "name": "andHaving", + "summary": "Adds\u0020a\u0020restriction\u0020over\u0020the\u0020groups\u0020of\u0020the\u0020query,\u0020forming\u0020a\u0020logical\nconjunction\u0020with\u0020any\u0020existing\u0020having\u0020restrictions.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_andHaving" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AorHaving\u0028\u0029", + "name": "orHaving", + "summary": "Adds\u0020a\u0020restriction\u0020over\u0020the\u0020groups\u0020of\u0020the\u0020query,\u0020forming\u0020a\u0020logical\ndisjunction\u0020with\u0020any\u0020existing\u0020having\u0020restrictions.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_orHaving" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AorderBy\u0028\u0029", + "name": "orderBy", + "summary": "Specifies\u0020an\u0020ordering\u0020for\u0020the\u0020query\u0020results.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_orderBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AaddOrderBy\u0028\u0029", + "name": "addOrderBy", + "summary": "Adds\u0020an\u0020ordering\u0020to\u0020the\u0020query\u0020results.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_addOrderBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetQueryPart\u0028\u0029", + "name": "getQueryPart", + "summary": "Gets\u0020a\u0020query\u0020part\u0020by\u0020its\u0020name.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getQueryPart" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetQueryParts\u0028\u0029", + "name": "getQueryParts", + "summary": "Gets\u0020all\u0020query\u0020parts.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getQueryParts" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AresetQueryParts\u0028\u0029", + "name": "resetQueryParts", + "summary": "Resets\u0020SQL\u0020parts.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_resetQueryParts" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AresetQueryPart\u0028\u0029", + "name": "resetQueryPart", + "summary": "Resets\u0020a\u0020single\u0020SQL\u0020part.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_resetQueryPart" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AresetWhere\u0028\u0029", + "name": "resetWhere", + "summary": "Resets\u0020the\u0020WHERE\u0020conditions\u0020for\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_resetWhere" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AresetGroupBy\u0028\u0029", + "name": "resetGroupBy", + "summary": "Resets\u0020the\u0020grouping\u0020for\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_resetGroupBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AresetHaving\u0028\u0029", + "name": "resetHaving", + "summary": "Resets\u0020the\u0020HAVING\u0020conditions\u0020for\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_resetHaving" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AresetOrderBy\u0028\u0029", + "name": "resetOrderBy", + "summary": "Resets\u0020the\u0020ordering\u0020for\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_resetOrderBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetSQLForSelect\u0028\u0029", + "name": "getSQLForSelect", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getSQLForSelect" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetFromClauses\u0028\u0029", + "name": "getFromClauses", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getFromClauses" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AverifyAllAliasesAreKnown\u0028\u0029", + "name": "verifyAllAliasesAreKnown", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_verifyAllAliasesAreKnown" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetSQLForInsert\u0028\u0029", + "name": "getSQLForInsert", + "summary": "Converts\u0020this\u0020instance\u0020into\u0020an\u0020INSERT\u0020string\u0020in\u0020SQL.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getSQLForInsert" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetSQLForUpdate\u0028\u0029", + "name": "getSQLForUpdate", + "summary": "Converts\u0020this\u0020instance\u0020into\u0020an\u0020UPDATE\u0020string\u0020in\u0020SQL.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getSQLForUpdate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetSQLForDelete\u0028\u0029", + "name": "getSQLForDelete", + "summary": "Converts\u0020this\u0020instance\u0020into\u0020a\u0020DELETE\u0020string\u0020in\u0020SQL.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getSQLForDelete" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Gets\u0020a\u0020string\u0020representation\u0020of\u0020this\u0020QueryBuilder\u0020which\u0020corresponds\u0020to\nthe\u0020final\u0020SQL\u0020query\u0020being\u0020constructed.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method___toString" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AcreateNamedParameter\u0028\u0029", + "name": "createNamedParameter", + "summary": "Creates\u0020a\u0020new\u0020named\u0020parameter\u0020and\u0020bind\u0020the\u0020value\u0020\u0024value\u0020to\u0020it.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_createNamedParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AcreatePositionalParameter\u0028\u0029", + "name": "createPositionalParameter", + "summary": "Creates\u0020a\u0020new\u0020positional\u0020parameter\u0020and\u0020bind\u0020the\u0020given\u0020value\u0020to\u0020it.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_createPositionalParameter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AgetSQLForJoins\u0028\u0029", + "name": "getSQLForJoins", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_getSQLForJoins" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Deep\u0020clone\u0020of\u0020all\u0020expression\u0020objects\u0020in\u0020the\u0020SQL\u0020parts.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method___clone" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AenableResultCache\u0028\u0029", + "name": "enableResultCache", + "summary": "Enables\u0020caching\u0020of\u0020the\u0020results\u0020of\u0020this\u0020query,\u0020for\u0020given\u0020amount\u0020of\u0020seconds\nand\u0020optionally\u0020specified\u0020which\u0020key\u0020to\u0020use\u0020for\u0020the\u0020cache\u0020entry.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_enableResultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AdisableResultCache\u0028\u0029", + "name": "disableResultCache", + "summary": "Disables\u0020caching\u0020of\u0020the\u0020results\u0020of\u0020this\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#method_disableResultCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003ASELECT", + "name": "SELECT", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_SELECT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003ADELETE", + "name": "DELETE", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_DELETE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AUPDATE", + "name": "UPDATE", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_UPDATE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003AINSERT", + "name": "INSERT", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_INSERT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003ASTATE_DIRTY", + "name": "STATE_DIRTY", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_STATE_DIRTY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003ASTATE_CLEAN", + "name": "STATE_CLEAN", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_STATE_CLEAN" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003ASQL_PARTS_DEFAULTS", + "name": "SQL_PARTS_DEFAULTS", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#constant_SQL_PARTS_DEFAULTS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020DBAL\u0020Connection.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024sqlParts", + "name": "sqlParts", + "summary": "The\u0020array\u0020of\u0020SQL\u0020parts\u0020collected.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_sqlParts" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024sql", + "name": "sql", + "summary": "The\u0020complete\u0020SQL\u0020string\u0020for\u0020this\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024params", + "name": "params", + "summary": "The\u0020query\u0020parameters.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_params" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024paramTypes", + "name": "paramTypes", + "summary": "The\u0020parameter\u0020type\u0020map\u0020of\u0020this\u0020query.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_paramTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024type", + "name": "type", + "summary": "The\u0020type\u0020of\u0020query\u0020this\u0020is.\u0020Can\u0020be\u0020select,\u0020update\u0020or\u0020delete.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_type" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024state", + "name": "state", + "summary": "The\u0020state\u0020of\u0020the\u0020query\u0020object.\u0020Can\u0020be\u0020dirty\u0020or\u0020clean.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_state" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024firstResult", + "name": "firstResult", + "summary": "The\u0020index\u0020of\u0020the\u0020first\u0020result\u0020to\u0020retrieve.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_firstResult" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024maxResults", + "name": "maxResults", + "summary": "The\u0020maximum\u0020number\u0020of\u0020results\u0020to\u0020retrieve\u0020or\u0020NULL\u0020to\u0020retrieve\u0020all\u0020results.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_maxResults" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024boundCounter", + "name": "boundCounter", + "summary": "The\u0020counter\u0020of\u0020bound\u0020parameters\u0020used\u0020with\u0020\u007B\u0040see\u0020bindValue\u0029.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_boundCounter" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryBuilder\u003A\u003A\u0024resultCacheProfile", + "name": "resultCacheProfile", + "summary": "The\u0020query\u0020cache\u0020profile\u0020used\u0020for\u0020caching\u0020results.", + "url": "classes/Doctrine-DBAL-Query-QueryBuilder.html#property_resultCacheProfile" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryException", + "name": "QueryException", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryException\u003A\u003AunknownAlias\u0028\u0029", + "name": "unknownAlias", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryException.html#method_unknownAlias" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\QueryException\u003A\u003AnonUniqueAlias\u0028\u0029", + "name": "nonUniqueAlias", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-QueryException.html#method_nonUniqueAlias" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery", + "name": "SelectQuery", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AisDistinct\u0028\u0029", + "name": "isDistinct", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_isDistinct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetFrom\u0028\u0029", + "name": "getFrom", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getFrom" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetWhere\u0028\u0029", + "name": "getWhere", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getWhere" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetGroupBy\u0028\u0029", + "name": "getGroupBy", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getGroupBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetHaving\u0028\u0029", + "name": "getHaving", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getHaving" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetOrderBy\u0028\u0029", + "name": "getOrderBy", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getOrderBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetLimit\u0028\u0029", + "name": "getLimit", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getLimit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003AgetForUpdate\u0028\u0029", + "name": "getForUpdate", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#method_getForUpdate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024distinct", + "name": "distinct", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_distinct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024columns", + "name": "columns", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_columns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024from", + "name": "from", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_from" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024where", + "name": "where", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_where" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024groupBy", + "name": "groupBy", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_groupBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024having", + "name": "having", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_having" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024orderBy", + "name": "orderBy", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_orderBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024limit", + "name": "limit", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_limit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\SelectQuery\u003A\u003A\u0024forUpdate", + "name": "forUpdate", + "summary": "", + "url": "classes/Doctrine-DBAL-Query-SelectQuery.html#property_forUpdate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query", + "name": "Query", + "summary": "An\u0020SQL\u0020query\u0020together\u0020with\u0020its\u0020bound\u0020parameters.", + "url": "classes/Doctrine-DBAL-Query.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Query.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003AgetSQL\u0028\u0029", + "name": "getSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Query.html#method_getSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003AgetParams\u0028\u0029", + "name": "getParams", + "summary": "", + "url": "classes/Doctrine-DBAL-Query.html#method_getParams" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003AgetTypes\u0028\u0029", + "name": "getTypes", + "summary": "", + "url": "classes/Doctrine-DBAL-Query.html#method_getTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003A\u0024sql", + "name": "sql", + "summary": "The\u0020SQL\u0020query.", + "url": "classes/Doctrine-DBAL-Query.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003A\u0024params", + "name": "params", + "summary": "The\u0020parameters\u0020bound\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query.html#property_params" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\u003A\u003A\u0024types", + "name": "types", + "summary": "The\u0020types\u0020of\u0020the\u0020parameters\u0020bound\u0020to\u0020the\u0020query.", + "url": "classes/Doctrine-DBAL-Query.html#property_types" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result", + "name": "Result", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchNumeric\u0028\u0029", + "name": "fetchNumeric", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020a\u0020numeric\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchAssociative\u0028\u0029", + "name": "fetchAssociative", + "summary": "Returns\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020as\u0020an\u0020associative\u0020array\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchOne\u0028\u0029", + "name": "fetchOne", + "summary": "Returns\u0020the\u0020first\u0020value\u0020of\u0020the\u0020next\u0020row\u0020of\u0020the\u0020result\u0020or\u0020FALSE\u0020if\u0020there\u0020are\u0020no\u0020more\u0020rows.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchOne" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchAllNumeric\u0028\u0029", + "name": "fetchAllNumeric", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020numeric\u0020arrays.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchAllNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchAllAssociative\u0028\u0029", + "name": "fetchAllAssociative", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020all\u0020of\u0020the\u0020result\u0020rows\u0020represented\u0020as\u0020associative\u0020arrays.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchAllAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchAllKeyValue\u0028\u0029", + "name": "fetchAllKeyValue", + "summary": "Returns\u0020an\u0020array\u0020containing\u0020the\u0020values\u0020of\u0020the\u0020first\u0020column\u0020of\u0020the\u0020result.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchAllKeyValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchAllAssociativeIndexed\u0028\u0029", + "name": "fetchAllAssociativeIndexed", + "summary": "Returns\u0020an\u0020associative\u0020array\u0020with\u0020the\u0020keys\u0020mapped\u0020to\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020being\nan\u0020associative\u0020array\u0020representing\u0020the\u0020rest\u0020of\u0020the\u0020columns\u0020and\u0020their\u0020values.", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchAllAssociativeIndexed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchFirstColumn\u0028\u0029", + "name": "fetchFirstColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchFirstColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AiterateNumeric\u0028\u0029", + "name": "iterateNumeric", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_iterateNumeric" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AiterateAssociative\u0028\u0029", + "name": "iterateAssociative", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_iterateAssociative" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AiterateKeyValue\u0028\u0029", + "name": "iterateKeyValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_iterateKeyValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AiterateAssociativeIndexed\u0028\u0029", + "name": "iterateAssociativeIndexed", + "summary": "Returns\u0020an\u0020iterator\u0020over\u0020the\u0020result\u0020set\u0020with\u0020the\u0020keys\u0020mapped\u0020to\u0020the\u0020first\u0020column\u0020and\u0020the\u0020values\u0020being\nan\u0020associative\u0020array\u0020representing\u0020the\u0020rest\u0020of\u0020the\u0020columns\u0020and\u0020their\u0020values.", + "url": "classes/Doctrine-DBAL-Result.html#method_iterateAssociativeIndexed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AiterateColumn\u0028\u0029", + "name": "iterateColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_iterateColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003ArowCount\u0028\u0029", + "name": "rowCount", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_rowCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AcolumnCount\u0028\u0029", + "name": "columnCount", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_columnCount" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003Afree\u0028\u0029", + "name": "free", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_free" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AensureHasKeyValue\u0028\u0029", + "name": "ensureHasKeyValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#method_ensureHasKeyValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "BC\u0020layer\u0020for\u0020a\u0020wide\u002Dspread\u0020use\u002Dcase\u0020of\u0020old\u0020DBAL\u0020APIs", + "url": "classes/Doctrine-DBAL-Result.html#method_fetch" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003AfetchAll\u0028\u0029", + "name": "fetchAll", + "summary": "BC\u0020layer\u0020for\u0020a\u0020wide\u002Dspread\u0020use\u002Dcase\u0020of\u0020old\u0020DBAL\u0020APIs", + "url": "classes/Doctrine-DBAL-Result.html#method_fetchAll" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003A\u0024result", + "name": "result", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#property_result" + }, { + "fqsen": "\\Doctrine\\DBAL\\Result\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Result.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset", + "name": "AbstractAsset", + "summary": "The\u0020abstract\u0020asset\u0020allows\u0020to\u0020reset\u0020the\u0020name\u0020of\u0020all\u0020assets\u0020without\u0020publishing\u0020this\u0020to\u0020the\u0020public\u0020userland.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003A_setName\u0028\u0029", + "name": "_setName", + "summary": "Sets\u0020the\u0020name\u0020of\u0020this\u0020asset.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method__setName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AisInDefaultNamespace\u0028\u0029", + "name": "isInDefaultNamespace", + "summary": "Is\u0020this\u0020asset\u0020in\u0020the\u0020default\u0020namespace\u003F", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_isInDefaultNamespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AgetNamespaceName\u0028\u0029", + "name": "getNamespaceName", + "summary": "Gets\u0020the\u0020namespace\u0020name\u0020of\u0020this\u0020asset.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_getNamespaceName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AgetShortestName\u0028\u0029", + "name": "getShortestName", + "summary": "The\u0020shortest\u0020name\u0020is\u0020stripped\u0020of\u0020the\u0020default\u0020namespace.\u0020All\u0020other\nnamespaced\u0020elements\u0020are\u0020returned\u0020as\u0020full\u002Dqualified\u0020names.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_getShortestName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AgetFullQualifiedName\u0028\u0029", + "name": "getFullQualifiedName", + "summary": "The\u0020normalized\u0020name\u0020is\u0020full\u002Dqualified\u0020and\u0020lower\u002Dcased.\u0020Lower\u002Dcasing\u0020is\nactually\u0020wrong,\u0020but\u0020we\u0020have\u0020to\u0020do\u0020it\u0020to\u0020keep\u0020our\u0020sanity.\u0020If\u0020you\u0020are\nusing\u0020database\u0020objects\u0020that\u0020only\u0020differentiate\u0020in\u0020the\u0020casing\u0020\u0028FOO\u0020vs\nFoo\u0029\u0020then\u0020you\u0020will\u0020NOT\u0020be\u0020able\u0020to\u0020use\u0020Doctrine\u0020Schema\u0020abstraction.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_getFullQualifiedName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AisQuoted\u0028\u0029", + "name": "isQuoted", + "summary": "Checks\u0020if\u0020this\u0020asset\u0027s\u0020name\u0020is\u0020quoted.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_isQuoted" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AisIdentifierQuoted\u0028\u0029", + "name": "isIdentifierQuoted", + "summary": "Checks\u0020if\u0020this\u0020identifier\u0020is\u0020quoted.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_isIdentifierQuoted" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AtrimQuotes\u0028\u0029", + "name": "trimQuotes", + "summary": "Trim\u0020quotes\u0020from\u0020the\u0020identifier.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_trimQuotes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020this\u0020schema\u0020asset.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003AgetQuotedName\u0028\u0029", + "name": "getQuotedName", + "summary": "Gets\u0020the\u0020quoted\u0020representation\u0020of\u0020this\u0020asset\u0020but\u0020only\u0020if\u0020it\u0020was\u0020defined\u0020with\u0020one.\u0020Otherwise\nreturn\u0020the\u0020plain\u0020unquoted\u0020value\u0020as\u0020inserted.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method_getQuotedName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003A_generateIdentifierName\u0028\u0029", + "name": "_generateIdentifierName", + "summary": "Generates\u0020an\u0020identifier\u0020from\u0020a\u0020list\u0020of\u0020column\u0020names\u0020obeying\u0020a\u0020certain\u0020string\u0020length.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#method__generateIdentifierName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003A\u0024_name", + "name": "_name", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#property__name" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003A\u0024_namespace", + "name": "_namespace", + "summary": "Namespace\u0020of\u0020the\u0020asset.\u0020If\u0020none\u0020isset\u0020the\u0020default\u0020namespace\u0020is\u0020assumed.", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#property__namespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractAsset\u003A\u003A\u0024_quoted", + "name": "_quoted", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractAsset.html#property__quoted" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager", + "name": "AbstractSchemaManager", + "summary": "Base\u0020class\u0020for\u0020schema\u0020managers.\u0020Schema\u0020managers\u0020are\u0020used\u0020to\u0020inspect\u0020and\/or\nmodify\u0020the\u0020database\u0020schema\/structure.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AgetDatabasePlatform\u0028\u0029", + "name": "getDatabasePlatform", + "summary": "Returns\u0020the\u0020associated\u0020platform.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_getDatabasePlatform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AtryMethod\u0028\u0029", + "name": "tryMethod", + "summary": "Tries\u0020any\u0020method\u0020on\u0020the\u0020schema\u0020manager.\u0020Normally\u0020a\u0020method\u0020throws\u0020an\nexception\u0020when\u0020your\u0020DBMS\u0020doesn\u0027t\u0020support\u0020it\u0020or\u0020if\u0020an\u0020error\u0020occurs.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_tryMethod" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistDatabases\u0028\u0029", + "name": "listDatabases", + "summary": "Lists\u0020the\u0020available\u0020databases\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listDatabases" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistNamespaceNames\u0028\u0029", + "name": "listNamespaceNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020namespaces\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listNamespaceNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistSchemaNames\u0028\u0029", + "name": "listSchemaNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020the\u0020names\u0020of\u0020all\u0020schemata\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listSchemaNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistSequences\u0028\u0029", + "name": "listSequences", + "summary": "Lists\u0020the\u0020available\u0020sequences\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdoListTableColumns\u0028\u0029", + "name": "doListTableColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_doListTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdoListTableIndexes\u0028\u0029", + "name": "doListTableIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_doListTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AtablesExist\u0028\u0029", + "name": "tablesExist", + "summary": "Returns\u0020true\u0020if\u0020all\u0020the\u0020given\u0020tables\u0020exist.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_tablesExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdoListTableNames\u0028\u0029", + "name": "doListTableNames", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_doListTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AfilterAssetNames\u0028\u0029", + "name": "filterAssetNames", + "summary": "Filters\u0020asset\u0020names\u0020if\u0020they\u0020are\u0020configured\u0020to\u0020return\u0020only\u0020a\u0020subset\u0020of\u0020all\nthe\u0020found\u0020elements.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_filterAssetNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdoListTables\u0028\u0029", + "name": "doListTables", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_doListTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdoListTableDetails\u0028\u0029", + "name": "doListTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_doListTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AnormalizeName\u0028\u0029", + "name": "normalizeName", + "summary": "An\u0020extension\u0020point\u0020for\u0020those\u0020platforms\u0020where\u0020case\u0020sensitivity\u0020of\u0020the\u0020object\u0020name\u0020depends\u0020on\u0020whether\u0020it\u0027s\u0020quoted.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_normalizeName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AfetchTableColumnsByTable\u0028\u0029", + "name": "fetchTableColumnsByTable", + "summary": "Fetches\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_fetchTableColumnsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AfetchIndexColumnsByTable\u0028\u0029", + "name": "fetchIndexColumnsByTable", + "summary": "Fetches\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_fetchIndexColumnsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AfetchForeignKeyColumnsByTable\u0028\u0029", + "name": "fetchForeignKeyColumnsByTable", + "summary": "Fetches\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_fetchForeignKeyColumnsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AintrospectTable\u0028\u0029", + "name": "introspectTable", + "summary": "Introspects\u0020the\u0020table\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_introspectTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistViews\u0028\u0029", + "name": "listViews", + "summary": "Lists\u0020the\u0020views\u0020this\u0020connection\u0020has.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listViews" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdoListTableForeignKeys\u0028\u0029", + "name": "doListTableForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_doListTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropDatabase\u0028\u0029", + "name": "dropDatabase", + "summary": "Drops\u0020a\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropSchema\u0028\u0029", + "name": "dropSchema", + "summary": "Drops\u0020a\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropTable\u0028\u0029", + "name": "dropTable", + "summary": "Drops\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropIndex\u0028\u0029", + "name": "dropIndex", + "summary": "Drops\u0020the\u0020index\u0020from\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropConstraint\u0028\u0029", + "name": "dropConstraint", + "summary": "Drops\u0020the\u0020constraint\u0020from\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropForeignKey\u0028\u0029", + "name": "dropForeignKey", + "summary": "Drops\u0020a\u0020foreign\u0020key\u0020from\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropSequence\u0028\u0029", + "name": "dropSequence", + "summary": "Drops\u0020a\u0020sequence\u0020with\u0020a\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropUniqueConstraint\u0028\u0029", + "name": "dropUniqueConstraint", + "summary": "Drops\u0020the\u0020unique\u0020constraint\u0020from\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropView\u0028\u0029", + "name": "dropView", + "summary": "Drops\u0020a\u0020view.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropView" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateSchemaObjects\u0028\u0029", + "name": "createSchemaObjects", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createSchemaObjects" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Creates\u0020a\u0020new\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateTable\u0028\u0029", + "name": "createTable", + "summary": "Creates\u0020a\u0020new\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateSequence\u0028\u0029", + "name": "createSequence", + "summary": "Creates\u0020a\u0020new\u0020sequence.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateConstraint\u0028\u0029", + "name": "createConstraint", + "summary": "Creates\u0020a\u0020constraint\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateIndex\u0028\u0029", + "name": "createIndex", + "summary": "Creates\u0020a\u0020new\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateForeignKey\u0028\u0029", + "name": "createForeignKey", + "summary": "Creates\u0020a\u0020new\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateUniqueConstraint\u0028\u0029", + "name": "createUniqueConstraint", + "summary": "Creates\u0020a\u0020unique\u0020constraint\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateView\u0028\u0029", + "name": "createView", + "summary": "Creates\u0020a\u0020new\u0020view.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createView" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropSchemaObjects\u0028\u0029", + "name": "dropSchemaObjects", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropSchemaObjects" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateConstraint\u0028\u0029", + "name": "dropAndCreateConstraint", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateIndex\u0028\u0029", + "name": "dropAndCreateIndex", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020new\u0020index\u0020on\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateForeignKey\u0028\u0029", + "name": "dropAndCreateForeignKey", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020new\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateSequence\u0028\u0029", + "name": "dropAndCreateSequence", + "summary": "Drops\u0020and\u0020create\u0020a\u0020new\u0020sequence.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateTable\u0028\u0029", + "name": "dropAndCreateTable", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020new\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateDatabase\u0028\u0029", + "name": "dropAndCreateDatabase", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020new\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AdropAndCreateView\u0028\u0029", + "name": "dropAndCreateView", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020new\u0020view.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_dropAndCreateView" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AalterSchema\u0028\u0029", + "name": "alterSchema", + "summary": "Alters\u0020an\u0020existing\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_alterSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AmigrateSchema\u0028\u0029", + "name": "migrateSchema", + "summary": "Migrates\u0020an\u0020existing\u0020schema\u0020to\u0020a\u0020new\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_migrateSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AalterTable\u0028\u0029", + "name": "alterTable", + "summary": "Alters\u0020an\u0020existing\u0020tables\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_alterTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003ArenameTable\u0028\u0029", + "name": "renameTable", + "summary": "Renames\u0020a\u0020given\u0020table\u0020to\u0020another\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_renameTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableDatabasesList\u0028\u0029", + "name": "_getPortableDatabasesList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableDatabasesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AgetPortableNamespacesList\u0028\u0029", + "name": "getPortableNamespacesList", + "summary": "Converts\u0020a\u0020list\u0020of\u0020namespace\u0020names\u0020from\u0020the\u0020native\u0020DBMS\u0020data\u0020definition\u0020to\u0020a\u0020portable\u0020Doctrine\u0020definition.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_getPortableNamespacesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableDatabaseDefinition\u0028\u0029", + "name": "_getPortableDatabaseDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableDatabaseDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AgetPortableNamespaceDefinition\u0028\u0029", + "name": "getPortableNamespaceDefinition", + "summary": "Converts\u0020a\u0020namespace\u0020definition\u0020from\u0020the\u0020native\u0020DBMS\u0020data\u0020definition\u0020to\u0020a\u0020portable\u0020Doctrine\u0020definition.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_getPortableNamespaceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableSequencesList\u0028\u0029", + "name": "_getPortableSequencesList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableSequencesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableSequenceDefinition\u0028\u0029", + "name": "_getPortableSequenceDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableSequenceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTableColumnList\u0028\u0029", + "name": "_getPortableTableColumnList", + "summary": "Independent\u0020of\u0020the\u0020database\u0020the\u0020keys\u0020of\u0020the\u0020column\u0020list\u0020result\u0020are\u0020lowercased.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTableColumnList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTablesList\u0028\u0029", + "name": "_getPortableTablesList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTablesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableViewsList\u0028\u0029", + "name": "_getPortableViewsList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableViewsList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTableForeignKeysList\u0028\u0029", + "name": "_getPortableTableForeignKeysList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTableForeignKeysList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateSchema\u0028\u0029", + "name": "createSchema", + "summary": "Creates\u0020a\u0020schema\u0020instance\u0020for\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AintrospectSchema\u0028\u0029", + "name": "introspectSchema", + "summary": "Returns\u0020a\u0020\u007B\u0040see\u0020Schema\u007D\u0020instance\u0020representing\u0020the\u0020current\u0020database\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_introspectSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateSchemaConfig\u0028\u0029", + "name": "createSchemaConfig", + "summary": "Creates\u0020the\u0020configuration\u0020for\u0020this\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createSchemaConfig" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AgetSchemaSearchPaths\u0028\u0029", + "name": "getSchemaSearchPaths", + "summary": "The\u0020search\u0020path\u0020for\u0020namespaces\u0020in\u0020the\u0020currently\u0020connected\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_getSchemaSearchPaths" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AgetDatabase\u0028\u0029", + "name": "getDatabase", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_getDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AcreateComparator\u0028\u0029", + "name": "createComparator", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_createComparator" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003AfetchAllAssociativeGrouped\u0028\u0029", + "name": "fetchAllAssociativeGrouped", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#method_fetchAllAssociativeGrouped" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A\u0024_conn", + "name": "_conn", + "summary": "Holds\u0020instance\u0020of\u0020the\u0020Doctrine\u0020connection\u0020for\u0020this\u0020schema\u0020manager.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#property__conn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\AbstractSchemaManager\u003A\u003A\u0024_platform", + "name": "_platform", + "summary": "Holds\u0020instance\u0020of\u0020the\u0020database\u0020platform\u0020used\u0020for\u0020this\u0020schema\u0020manager.", + "url": "classes/Doctrine-DBAL-Schema-AbstractSchemaManager.html#property__platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column", + "name": "Column", + "summary": "Object\u0020representation\u0020of\u0020a\u0020database\u0020column.", + "url": "classes/Doctrine-DBAL-Schema-Column.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020new\u0020Column.", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetType\u0028\u0029", + "name": "setType", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetLength\u0028\u0029", + "name": "setLength", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetPrecision\u0028\u0029", + "name": "setPrecision", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setPrecision" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetScale\u0028\u0029", + "name": "setScale", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setScale" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetUnsigned\u0028\u0029", + "name": "setUnsigned", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setUnsigned" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetFixed\u0028\u0029", + "name": "setFixed", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setFixed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetNotnull\u0028\u0029", + "name": "setNotnull", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setNotnull" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetDefault\u0028\u0029", + "name": "setDefault", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setDefault" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetPlatformOptions\u0028\u0029", + "name": "setPlatformOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setPlatformOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetPlatformOption\u0028\u0029", + "name": "setPlatformOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setPlatformOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetColumnDefinition\u0028\u0029", + "name": "setColumnDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetLength\u0028\u0029", + "name": "getLength", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetPrecision\u0028\u0029", + "name": "getPrecision", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getPrecision" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetScale\u0028\u0029", + "name": "getScale", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getScale" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetUnsigned\u0028\u0029", + "name": "getUnsigned", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getUnsigned" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetFixed\u0028\u0029", + "name": "getFixed", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getFixed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetNotnull\u0028\u0029", + "name": "getNotnull", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getNotnull" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetPlatformOptions\u0028\u0029", + "name": "getPlatformOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getPlatformOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AhasPlatformOption\u0028\u0029", + "name": "hasPlatformOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_hasPlatformOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetPlatformOption\u0028\u0029", + "name": "getPlatformOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getPlatformOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetColumnDefinition\u0028\u0029", + "name": "getColumnDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetAutoincrement\u0028\u0029", + "name": "getAutoincrement", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getAutoincrement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetAutoincrement\u0028\u0029", + "name": "setAutoincrement", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setAutoincrement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetComment\u0028\u0029", + "name": "setComment", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetComment\u0028\u0029", + "name": "getComment", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetCustomSchemaOption\u0028\u0029", + "name": "setCustomSchemaOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setCustomSchemaOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AhasCustomSchemaOption\u0028\u0029", + "name": "hasCustomSchemaOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_hasCustomSchemaOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetCustomSchemaOption\u0028\u0029", + "name": "getCustomSchemaOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getCustomSchemaOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AsetCustomSchemaOptions\u0028\u0029", + "name": "setCustomSchemaOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_setCustomSchemaOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AgetCustomSchemaOptions\u0028\u0029", + "name": "getCustomSchemaOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_getCustomSchemaOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#method_toArray" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_type", + "name": "_type", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__type" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_length", + "name": "_length", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__length" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_precision", + "name": "_precision", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__precision" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_scale", + "name": "_scale", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__scale" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_unsigned", + "name": "_unsigned", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__unsigned" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_fixed", + "name": "_fixed", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__fixed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_notnull", + "name": "_notnull", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__notnull" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_default", + "name": "_default", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__default" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_autoincrement", + "name": "_autoincrement", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__autoincrement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_platformOptions", + "name": "_platformOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__platformOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_columnDefinition", + "name": "_columnDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__columnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_comment", + "name": "_comment", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__comment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Column\u003A\u003A\u0024_customSchemaOptions", + "name": "_customSchemaOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Column.html#property__customSchemaOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff", + "name": "ColumnDiff", + "summary": "Represents\u0020the\u0020change\u0020of\u0020a\u0020column.", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AgetOldColumn\u0028\u0029", + "name": "getOldColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_getOldColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AgetNewColumn\u0028\u0029", + "name": "getNewColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_getNewColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasTypeChanged\u0028\u0029", + "name": "hasTypeChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasTypeChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasLengthChanged\u0028\u0029", + "name": "hasLengthChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasLengthChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasPrecisionChanged\u0028\u0029", + "name": "hasPrecisionChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasPrecisionChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasScaleChanged\u0028\u0029", + "name": "hasScaleChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasScaleChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasUnsignedChanged\u0028\u0029", + "name": "hasUnsignedChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasUnsignedChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasFixedChanged\u0028\u0029", + "name": "hasFixedChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasFixedChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasNotNullChanged\u0028\u0029", + "name": "hasNotNullChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasNotNullChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasDefaultChanged\u0028\u0029", + "name": "hasDefaultChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasDefaultChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasAutoIncrementChanged\u0028\u0029", + "name": "hasAutoIncrementChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasAutoIncrementChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasCommentChanged\u0028\u0029", + "name": "hasCommentChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasCommentChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AhasChanged\u0028\u0029", + "name": "hasChanged", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_hasChanged" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003AgetOldColumnName\u0028\u0029", + "name": "getOldColumnName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#method_getOldColumnName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003A\u0024oldColumnName", + "name": "oldColumnName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#property_oldColumnName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ColumnDiff\u003A\u003A\u0024changedProperties", + "name": "changedProperties", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ColumnDiff.html#property_changedProperties" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator", + "name": "Comparator", + "summary": "Compares\u0020two\u0020Schemas\u0020and\u0020return\u0020an\u0020instance\u0020of\u0020SchemaDiff.", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method___call" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method___callStatic" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AdoCompareSchemas\u0028\u0029", + "name": "doCompareSchemas", + "summary": "Returns\u0020a\u0020SchemaDiff\u0020object\u0020containing\u0020the\u0020differences\u0020between\u0020the\u0020schemas\u0020\u0024fromSchema\u0020and\u0020\u0024toSchema.", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_doCompareSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003Acompare\u0028\u0029", + "name": "compare", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_compare" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AisAutoIncrementSequenceInSchema\u0028\u0029", + "name": "isAutoIncrementSequenceInSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_isAutoIncrementSequenceInSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AdiffSequence\u0028\u0029", + "name": "diffSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_diffSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AdiffTable\u0028\u0029", + "name": "diffTable", + "summary": "Returns\u0020the\u0020difference\u0020between\u0020the\u0020tables\u0020\u0024fromTable\u0020and\u0020\u0024toTable.", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_diffTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AcompareTables\u0028\u0029", + "name": "compareTables", + "summary": "Compares\u0020the\u0020tables\u0020and\u0020returns\u0020the\u0020difference\u0020between\u0020them.", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_compareTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AdetectRenamedColumns\u0028\u0029", + "name": "detectRenamedColumns", + "summary": "Try\u0020to\u0020find\u0020columns\u0020that\u0020only\u0020changed\u0020their\u0020name,\u0020rename\u0020operations\u0020maybe\u0020cheaper\u0020than\u0020add\/drop\nhowever\u0020ambiguities\u0020between\u0020different\u0020possibilities\u0020should\u0020not\u0020lead\u0020to\u0020renaming\u0020at\u0020all.", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_detectRenamedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AdetectRenamedIndexes\u0028\u0029", + "name": "detectRenamedIndexes", + "summary": "Try\u0020to\u0020find\u0020indexes\u0020that\u0020only\u0020changed\u0020their\u0020name,\u0020rename\u0020operations\u0020maybe\u0020cheaper\u0020than\u0020add\/drop\nhowever\u0020ambiguities\u0020between\u0020different\u0020possibilities\u0020should\u0020not\u0020lead\u0020to\u0020renaming\u0020at\u0020all.", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_detectRenamedIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003AdiffColumn\u0028\u0029", + "name": "diffColumn", + "summary": "Returns\u0020the\u0020difference\u0020between\u0020the\u0020columns", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#method_diffColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Comparator\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Comparator.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Constraint", + "name": "Constraint", + "summary": "Marker\u0020interface\u0020for\u0020constraints.", + "url": "classes/Doctrine-DBAL-Schema-Constraint.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Constraint\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Constraint.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Constraint\u003A\u003AgetQuotedName\u0028\u0029", + "name": "getQuotedName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Constraint.html#method_getQuotedName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Constraint\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020referencing\u0020table\u0020columns\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-Constraint.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Constraint\u003A\u003AgetQuotedColumns\u0028\u0029", + "name": "getQuotedColumns", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020column\u0020names\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-Constraint.html#method_getQuotedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager", + "name": "DB2SchemaManager", + "summary": "IBM\u0020Db2\u0020Schema\u0020Manager.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableTableForeignKeysList\u0028\u0029", + "name": "_getPortableTableForeignKeysList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableTableForeignKeysList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableForeignKeyRuleDef\u0028\u0029", + "name": "_getPortableForeignKeyRuleDef", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableForeignKeyRuleDef" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AnormalizeName\u0028\u0029", + "name": "normalizeName", + "summary": "An\u0020extension\u0020point\u0020for\u0020those\u0020platforms\u0020where\u0020case\u0020sensitivity\u0020of\u0020the\u0020object\u0020name\u0020depends\u0020on\u0020whether\u0020it\u0027s\u0020quoted.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_normalizeName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DB2SchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-DB2SchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DefaultSchemaManagerFactory", + "name": "DefaultSchemaManagerFactory", + "summary": "A\u0020schema\u0020manager\u0020factory\u0020that\u0020returns\u0020the\u0020default\u0020schema\u0020manager\u0020for\u0020the\u0020given\u0020platform.", + "url": "classes/Doctrine-DBAL-Schema-DefaultSchemaManagerFactory.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\DefaultSchemaManagerFactory\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-DefaultSchemaManagerFactory.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\ColumnAlreadyExists", + "name": "ColumnAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-ColumnAlreadyExists.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\ColumnAlreadyExists\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-ColumnAlreadyExists.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\ColumnDoesNotExist", + "name": "ColumnDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-ColumnDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\ColumnDoesNotExist\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-ColumnDoesNotExist.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\ForeignKeyDoesNotExist", + "name": "ForeignKeyDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-ForeignKeyDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\ForeignKeyDoesNotExist\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-ForeignKeyDoesNotExist.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\IndexAlreadyExists", + "name": "IndexAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-IndexAlreadyExists.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\IndexAlreadyExists\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-IndexAlreadyExists.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\IndexDoesNotExist", + "name": "IndexDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-IndexDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\IndexDoesNotExist\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-IndexDoesNotExist.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\IndexNameInvalid", + "name": "IndexNameInvalid", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-IndexNameInvalid.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\IndexNameInvalid\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-IndexNameInvalid.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\InvalidTableName", + "name": "InvalidTableName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-InvalidTableName.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\InvalidTableName\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-InvalidTableName.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\NamedForeignKeyRequired", + "name": "NamedForeignKeyRequired", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-NamedForeignKeyRequired.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\NamedForeignKeyRequired\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-NamedForeignKeyRequired.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\NamespaceAlreadyExists", + "name": "NamespaceAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-NamespaceAlreadyExists.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\NamespaceAlreadyExists\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-NamespaceAlreadyExists.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\SequenceAlreadyExists", + "name": "SequenceAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-SequenceAlreadyExists.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\SequenceAlreadyExists\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-SequenceAlreadyExists.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\SequenceDoesNotExist", + "name": "SequenceDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-SequenceDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\SequenceDoesNotExist\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-SequenceDoesNotExist.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\TableAlreadyExists", + "name": "TableAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-TableAlreadyExists.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\TableAlreadyExists\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-TableAlreadyExists.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\TableDoesNotExist", + "name": "TableDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-TableDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\TableDoesNotExist\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-TableDoesNotExist.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\UniqueConstraintDoesNotExist", + "name": "UniqueConstraintDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-UniqueConstraintDoesNotExist.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\UniqueConstraintDoesNotExist\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-UniqueConstraintDoesNotExist.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\UnknownColumnOption", + "name": "UnknownColumnOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-UnknownColumnOption.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception\\UnknownColumnOption\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Exception-UnknownColumnOption.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint", + "name": "ForeignKeyConstraint", + "summary": "An\u0020abstraction\u0020class\u0020for\u0020a\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initializes\u0020the\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AcreateIdentifierMap\u0028\u0029", + "name": "createIdentifierMap", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_createIdentifierMap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetLocalTableName\u0028\u0029", + "name": "getLocalTableName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020the\u0020referencing\u0020table\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getLocalTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AsetLocalTable\u0028\u0029", + "name": "setLocalTable", + "summary": "Sets\u0020the\u0020Table\u0020instance\u0020of\u0020the\u0020referencing\u0020table\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_setLocalTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetLocalTable\u0028\u0029", + "name": "getLocalTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getLocalTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetLocalColumns\u0028\u0029", + "name": "getLocalColumns", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020referencing\u0020table\u0020columns\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getLocalColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetQuotedLocalColumns\u0028\u0029", + "name": "getQuotedLocalColumns", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020referencing\u0020table\u0020column\u0020names\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getQuotedLocalColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetUnquotedLocalColumns\u0028\u0029", + "name": "getUnquotedLocalColumns", + "summary": "Returns\u0020unquoted\u0020representation\u0020of\u0020local\u0020table\u0020column\u0020names\u0020for\u0020comparison\u0020with\u0020other\u0020FK", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getUnquotedLocalColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetUnquotedForeignColumns\u0028\u0029", + "name": "getUnquotedForeignColumns", + "summary": "Returns\u0020unquoted\u0020representation\u0020of\u0020foreign\u0020table\u0020column\u0020names\u0020for\u0020comparison\u0020with\u0020other\u0020FK", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getUnquotedForeignColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020referencing\u0020table\u0020columns\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetQuotedColumns\u0028\u0029", + "name": "getQuotedColumns", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020referencing\u0020table\u0020column\u0020names\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getQuotedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetForeignTableName\u0028\u0029", + "name": "getForeignTableName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020the\u0020referenced\u0020table\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getForeignTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetUnqualifiedForeignTableName\u0028\u0029", + "name": "getUnqualifiedForeignTableName", + "summary": "Returns\u0020the\u0020non\u002Dschema\u0020qualified\u0020foreign\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getUnqualifiedForeignTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetQuotedForeignTableName\u0028\u0029", + "name": "getQuotedForeignTableName", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020referenced\u0020table\u0020name\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getQuotedForeignTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetForeignColumns\u0028\u0029", + "name": "getForeignColumns", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020referenced\u0020table\u0020columns\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getForeignColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetQuotedForeignColumns\u0028\u0029", + "name": "getQuotedForeignColumns", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020referenced\u0020table\u0020column\u0020names\nthe\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getQuotedForeignColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "Returns\u0020whether\u0020or\u0020not\u0020a\u0020given\u0020option\nis\u0020associated\u0020with\u0020the\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_hasOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "Returns\u0020an\u0020option\u0020associated\u0020with\u0020the\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Returns\u0020the\u0020options\u0020associated\u0020with\u0020the\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_getOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AonUpdate\u0028\u0029", + "name": "onUpdate", + "summary": "Returns\u0020the\u0020referential\u0020action\u0020for\u0020UPDATE\u0020operations\non\u0020the\u0020referenced\u0020table\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_onUpdate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AonDelete\u0028\u0029", + "name": "onDelete", + "summary": "Returns\u0020the\u0020referential\u0020action\u0020for\u0020DELETE\u0020operations\non\u0020the\u0020referenced\u0020table\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_onDelete" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AonEvent\u0028\u0029", + "name": "onEvent", + "summary": "Returns\u0020the\u0020referential\u0020action\u0020for\u0020a\u0020given\u0020database\u0020operation\non\u0020the\u0020referenced\u0020table\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_onEvent" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003AintersectsIndexColumns\u0028\u0029", + "name": "intersectsIndexColumns", + "summary": "Checks\u0020whether\u0020this\u0020foreign\u0020key\u0020constraint\u0020intersects\u0020the\u0020given\u0020index\u0020columns.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#method_intersectsIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003A\u0024_localTable", + "name": "_localTable", + "summary": "Instance\u0020of\u0020the\u0020referencing\u0020table\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#property__localTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003A\u0024_localColumnNames", + "name": "_localColumnNames", + "summary": "Asset\u0020identifier\u0020instances\u0020of\u0020the\u0020referencing\u0020table\u0020column\u0020names\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#property__localColumnNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003A\u0024_foreignTableName", + "name": "_foreignTableName", + "summary": "Table\u0020or\u0020asset\u0020identifier\u0020instance\u0020of\u0020the\u0020referenced\u0020table\u0020name\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#property__foreignTableName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003A\u0024_foreignColumnNames", + "name": "_foreignColumnNames", + "summary": "Asset\u0020identifier\u0020instances\u0020of\u0020the\u0020referenced\u0020table\u0020column\u0020names\u0020the\u0020foreign\u0020key\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#property__foreignColumnNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\ForeignKeyConstraint\u003A\u003A\u0024_options", + "name": "_options", + "summary": "Options\u0020associated\u0020with\u0020the\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-ForeignKeyConstraint.html#property__options" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Identifier", + "name": "Identifier", + "summary": "An\u0020abstraction\u0020class\u0020for\u0020an\u0020asset\u0020identifier.", + "url": "classes/Doctrine-DBAL-Schema-Identifier.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Identifier\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Identifier.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index", + "name": "Index", + "summary": "The\u0020abstract\u0020asset\u0020allows\u0020to\u0020reset\u0020the\u0020name\u0020of\u0020all\u0020assets\u0020without\u0020publishing\u0020this\u0020to\u0020the\u0020public\u0020userland.", + "url": "classes/Doctrine-DBAL-Schema-Index.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A_addColumn\u0028\u0029", + "name": "_addColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method__addColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020referencing\u0020table\u0020columns\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AgetQuotedColumns\u0028\u0029", + "name": "getQuotedColumns", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020column\u0020names\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_getQuotedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AgetUnquotedColumns\u0028\u0029", + "name": "getUnquotedColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_getUnquotedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AisSimpleIndex\u0028\u0029", + "name": "isSimpleIndex", + "summary": "Is\u0020the\u0020index\u0020neither\u0020unique\u0020nor\u0020primary\u0020key\u003F", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_isSimpleIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AisUnique\u0028\u0029", + "name": "isUnique", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_isUnique" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AisPrimary\u0028\u0029", + "name": "isPrimary", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_isPrimary" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AhasColumnAtPosition\u0028\u0029", + "name": "hasColumnAtPosition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_hasColumnAtPosition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AspansColumns\u0028\u0029", + "name": "spansColumns", + "summary": "Checks\u0020if\u0020this\u0020index\u0020exactly\u0020spans\u0020the\u0020given\u0020column\u0020names\u0020in\u0020the\u0020correct\u0020order.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_spansColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AisFullfilledBy\u0028\u0029", + "name": "isFullfilledBy", + "summary": "Keeping\u0020misspelled\u0020function\u0020name\u0020for\u0020backwards\u0020compatibility", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_isFullfilledBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AisFulfilledBy\u0028\u0029", + "name": "isFulfilledBy", + "summary": "Checks\u0020if\u0020the\u0020other\u0020index\u0020already\u0020fulfills\u0020all\u0020the\u0020indexing\u0020and\u0020constraint\u0020needs\u0020of\u0020the\u0020current\u0020one.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_isFulfilledBy" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003Aoverrules\u0028\u0029", + "name": "overrules", + "summary": "Detects\u0020if\u0020the\u0020other\u0020index\u0020is\u0020a\u0020non\u002Dunique,\u0020non\u0020primary\u0020index\u0020that\u0020can\u0020be\u0020overwritten\u0020by\u0020this\u0020one.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_overrules" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AgetFlags\u0028\u0029", + "name": "getFlags", + "summary": "Returns\u0020platform\u0020specific\u0020flags\u0020for\u0020indexes.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_getFlags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AaddFlag\u0028\u0029", + "name": "addFlag", + "summary": "Adds\u0020Flag\u0020for\u0020an\u0020index\u0020that\u0020translates\u0020to\u0020platform\u0020specific\u0020handling.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_addFlag" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AhasFlag\u0028\u0029", + "name": "hasFlag", + "summary": "Does\u0020this\u0020index\u0020have\u0020a\u0020specific\u0020flag\u003F", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_hasFlag" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AremoveFlag\u0028\u0029", + "name": "removeFlag", + "summary": "Removes\u0020a\u0020flag.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_removeFlag" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_hasOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_getOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_getOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AsamePartialIndex\u0028\u0029", + "name": "samePartialIndex", + "summary": "Return\u0020whether\u0020the\u0020two\u0020indexes\u0020have\u0020the\u0020same\u0020partial\u0020index", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_samePartialIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003AhasSameColumnLengths\u0028\u0029", + "name": "hasSameColumnLengths", + "summary": "Returns\u0020whether\u0020the\u0020index\u0020has\u0020the\u0020same\u0020column\u0020lengths\u0020as\u0020the\u0020other", + "url": "classes/Doctrine-DBAL-Schema-Index.html#method_hasSameColumnLengths" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A\u0024_columns", + "name": "_columns", + "summary": "Asset\u0020identifier\u0020instances\u0020of\u0020the\u0020column\u0020names\u0020the\u0020index\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#property__columns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A\u0024_isUnique", + "name": "_isUnique", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#property__isUnique" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A\u0024_isPrimary", + "name": "_isPrimary", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Index.html#property__isPrimary" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A\u0024_flags", + "name": "_flags", + "summary": "Platform\u0020specific\u0020flags\u0020for\u0020indexes.", + "url": "classes/Doctrine-DBAL-Schema-Index.html#property__flags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Index\u003A\u003A\u0024options", + "name": "options", + "summary": "Platform\u0020specific\u0020options", + "url": "classes/Doctrine-DBAL-Schema-Index.html#property_options" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager", + "name": "MySQLSchemaManager", + "summary": "Schema\u0020manager\u0020for\u0020the\u0020MySQL\u0020RDBMS.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableDatabaseDefinition\u0028\u0029", + "name": "_getPortableDatabaseDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableDatabaseDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AexpectedDbType\u0028\u0029", + "name": "expectedDbType", + "summary": "Returns\u0020the\u0020database\u0020data\u0020type\u0020for\u0020a\u0020given\u0020doctrine\u0020type\u0020and\u0020column", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_expectedDbType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AgetMariaDb1027ColumnDefault\u0028\u0029", + "name": "getMariaDb1027ColumnDefault", + "summary": "Return\u0020Doctrine\/Mysql\u002Dcompatible\u0020column\u0020default\u0020values\u0020for\u0020MariaDB\u002010.2.7\u002B\u0020servers.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_getMariaDb1027ColumnDefault" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableTableForeignKeysList\u0028\u0029", + "name": "_getPortableTableForeignKeysList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableTableForeignKeysList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AcreateComparator\u0028\u0029", + "name": "createComparator", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_createComparator" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AparseCreateOptions\u0028\u0029", + "name": "parseCreateOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#method_parseCreateOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\MySQLSchemaManager\u003A\u003AMARIADB_ESCAPE_SEQUENCES", + "name": "MARIADB_ESCAPE_SEQUENCES", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-MySQLSchemaManager.html#constant_MARIADB_ESCAPE_SEQUENCES" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager", + "name": "OracleSchemaManager", + "summary": "Oracle\u0020Schema\u0020Manager.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableTableForeignKeysList\u0028\u0029", + "name": "_getPortableTableForeignKeysList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableTableForeignKeysList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableSequenceDefinition\u0028\u0029", + "name": "_getPortableSequenceDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableSequenceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003A_getPortableDatabaseDefinition\u0028\u0029", + "name": "_getPortableDatabaseDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method__getPortableDatabaseDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Creates\u0020a\u0020new\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_createDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AdropTable\u0028\u0029", + "name": "dropTable", + "summary": "Drops\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_dropTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AgetQuotedIdentifierName\u0028\u0029", + "name": "getQuotedIdentifierName", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020given\u0020identifier\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_getQuotedIdentifierName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\OracleSchemaManager\u003A\u003AnormalizeName\u0028\u0029", + "name": "normalizeName", + "summary": "An\u0020extension\u0020point\u0020for\u0020those\u0020platforms\u0020where\u0020case\u0020sensitivity\u0020of\u0020the\u0020object\u0020name\u0020depends\u0020on\u0020whether\u0020it\u0027s\u0020quoted.", + "url": "classes/Doctrine-DBAL-Schema-OracleSchemaManager.html#method_normalizeName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager", + "name": "PostgreSQLSchemaManager", + "summary": "PostgreSQL\u0020Schema\u0020Manager.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AgetSchemaNames\u0028\u0029", + "name": "getSchemaNames", + "summary": "Gets\u0020all\u0020the\u0020existing\u0020schema\u0020names.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_getSchemaNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AlistSchemaNames\u0028\u0029", + "name": "listSchemaNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020the\u0020names\u0020of\u0020all\u0020schemata\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_listSchemaNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AgetSchemaSearchPaths\u0028\u0029", + "name": "getSchemaSearchPaths", + "summary": "The\u0020search\u0020path\u0020for\u0020namespaces\u0020in\u0020the\u0020currently\u0020connected\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_getSchemaSearchPaths" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AgetCurrentSchema\u0028\u0029", + "name": "getCurrentSchema", + "summary": "Returns\u0020the\u0020name\u0020of\u0020the\u0020current\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_getCurrentSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableDatabaseDefinition\u0028\u0029", + "name": "_getPortableDatabaseDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableDatabaseDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AgetPortableNamespaceDefinition\u0028\u0029", + "name": "getPortableNamespaceDefinition", + "summary": "Converts\u0020a\u0020namespace\u0020definition\u0020from\u0020the\u0020native\u0020DBMS\u0020data\u0020definition\u0020to\u0020a\u0020portable\u0020Doctrine\u0020definition.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_getPortableNamespaceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableSequenceDefinition\u0028\u0029", + "name": "_getPortableSequenceDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableSequenceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AfixVersion94NegativeNumericDefaultValue\u0028\u0029", + "name": "fixVersion94NegativeNumericDefaultValue", + "summary": "PostgreSQL\u00209.4\u0020puts\u0020parentheses\u0020around\u0020negative\u0020numeric\u0020default\u0020values\u0020that\u0020need\u0020to\u0020be\u0020stripped\u0020eventually.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_fixVersion94NegativeNumericDefaultValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AparseDefaultExpression\u0028\u0029", + "name": "parseDefaultExpression", + "summary": "Parses\u0020a\u0020default\u0020value\u0020expression\u0020as\u0020given\u0020by\u0020PostgreSQL", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_parseDefaultExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003AbuildQueryConditions\u0028\u0029", + "name": "buildQueryConditions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#method_buildQueryConditions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\PostgreSQLSchemaManager\u003A\u003A\u0024existingSchemaPaths", + "name": "existingSchemaPaths", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-PostgreSQLSchemaManager.html#property_existingSchemaPaths" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema", + "name": "Schema", + "summary": "Object\u0020representation\u0020of\u0020a\u0020database\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AhasExplicitForeignKeyIndexes\u0028\u0029", + "name": "hasExplicitForeignKeyIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_hasExplicitForeignKeyIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A_addTable\u0028\u0029", + "name": "_addTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method__addTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A_addSequence\u0028\u0029", + "name": "_addSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method__addSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetNamespaces\u0028\u0029", + "name": "getNamespaces", + "summary": "Returns\u0020the\u0020namespaces\u0020of\u0020this\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getNamespaces" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetTables\u0028\u0029", + "name": "getTables", + "summary": "Gets\u0020all\u0020tables\u0020of\u0020this\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetFullQualifiedAssetName\u0028\u0029", + "name": "getFullQualifiedAssetName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getFullQualifiedAssetName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AnormalizeName\u0028\u0029", + "name": "normalizeName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_normalizeName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetUnquotedAssetName\u0028\u0029", + "name": "getUnquotedAssetName", + "summary": "Returns\u0020the\u0020unquoted\u0020representation\u0020of\u0020a\u0020given\u0020asset\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getUnquotedAssetName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AhasNamespace\u0028\u0029", + "name": "hasNamespace", + "summary": "Does\u0020this\u0020schema\u0020have\u0020a\u0020namespace\u0020with\u0020the\u0020given\u0020name\u003F", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_hasNamespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AhasTable\u0028\u0029", + "name": "hasTable", + "summary": "Does\u0020this\u0020schema\u0020have\u0020a\u0020table\u0020with\u0020the\u0020given\u0020name\u003F", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_hasTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetTableNames\u0028\u0029", + "name": "getTableNames", + "summary": "Gets\u0020all\u0020table\u0020names,\u0020prefixed\u0020with\u0020a\u0020schema\u0020name,\u0020even\u0020the\u0020default\u0020one\u0020if\u0020present.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AhasSequence\u0028\u0029", + "name": "hasSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_hasSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetSequence\u0028\u0029", + "name": "getSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetSequences\u0028\u0029", + "name": "getSequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AcreateNamespace\u0028\u0029", + "name": "createNamespace", + "summary": "Creates\u0020a\u0020new\u0020namespace.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_createNamespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AcreateTable\u0028\u0029", + "name": "createTable", + "summary": "Creates\u0020a\u0020new\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_createTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003ArenameTable\u0028\u0029", + "name": "renameTable", + "summary": "Renames\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_renameTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AdropTable\u0028\u0029", + "name": "dropTable", + "summary": "Drops\u0020a\u0020table\u0020from\u0020the\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_dropTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AcreateSequence\u0028\u0029", + "name": "createSequence", + "summary": "Creates\u0020a\u0020new\u0020sequence.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_createSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AdropSequence\u0028\u0029", + "name": "dropSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_dropSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AtoSql\u0028\u0029", + "name": "toSql", + "summary": "Returns\u0020an\u0020array\u0020of\u0020necessary\u0020SQL\u0020queries\u0020to\u0020create\u0020the\u0020schema\u0020on\u0020the\u0020given\u0020platform.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_toSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AtoDropSql\u0028\u0029", + "name": "toDropSql", + "summary": "Return\u0020an\u0020array\u0020of\u0020necessary\u0020SQL\u0020queries\u0020to\u0020drop\u0020the\u0020schema\u0020on\u0020the\u0020given\u0020platform.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_toDropSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetMigrateToSql\u0028\u0029", + "name": "getMigrateToSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getMigrateToSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003AgetMigrateFromSql\u0028\u0029", + "name": "getMigrateFromSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_getMigrateFromSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003Avisit\u0028\u0029", + "name": "visit", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method_visit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Cloning\u0020a\u0020Schema\u0020triggers\u0020a\u0020deep\u0020clone\u0020of\u0020all\u0020related\u0020assets.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#method___clone" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A\u0024namespaces", + "name": "namespaces", + "summary": "The\u0020namespaces\u0020in\u0020this\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#property_namespaces" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A\u0024_tables", + "name": "_tables", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#property__tables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A\u0024_sequences", + "name": "_sequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#property__sequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Schema\u003A\u003A\u0024_schemaConfig", + "name": "_schemaConfig", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Schema.html#property__schemaConfig" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig", + "name": "SchemaConfig", + "summary": "Configuration\u0020for\u0020a\u0020Schema.", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003A\u0024hasExplicitForeignKeyIndexes", + "name": "hasExplicitForeignKeyIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#property_hasExplicitForeignKeyIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AsetExplicitForeignKeyIndexes\u0028\u0029", + "name": "setExplicitForeignKeyIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_setExplicitForeignKeyIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AsetMaxIdentifierLength\u0028\u0029", + "name": "setMaxIdentifierLength", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_setMaxIdentifierLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AgetMaxIdentifierLength\u0028\u0029", + "name": "getMaxIdentifierLength", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_getMaxIdentifierLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020default\u0020namespace\u0020of\u0020schema\u0020objects.", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AsetName\u0028\u0029", + "name": "setName", + "summary": "Sets\u0020the\u0020default\u0020namespace\u0020name\u0020of\u0020schema\u0020objects.", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_setName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AgetDefaultTableOptions\u0028\u0029", + "name": "getDefaultTableOptions", + "summary": "Gets\u0020the\u0020default\u0020options\u0020that\u0020are\u0020passed\u0020to\u0020Table\u0020instances\u0020created\u0020with\nSchema\u0023createTable\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_getDefaultTableOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003AsetDefaultTableOptions\u0028\u0029", + "name": "setDefaultTableOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#method_setDefaultTableOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003A\u0024maxIdentifierLength", + "name": "maxIdentifierLength", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#property_maxIdentifierLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#property_name" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaConfig\u003A\u003A\u0024defaultTableOptions", + "name": "defaultTableOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaConfig.html#property_defaultTableOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff", + "name": "SchemaDiff", + "summary": "Differences\u0020between\u0020two\u0020schemas.", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetCreatedSchemas\u0028\u0029", + "name": "getCreatedSchemas", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getCreatedSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetDroppedSchemas\u0028\u0029", + "name": "getDroppedSchemas", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getDroppedSchemas" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetCreatedTables\u0028\u0029", + "name": "getCreatedTables", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getCreatedTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetAlteredTables\u0028\u0029", + "name": "getAlteredTables", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getAlteredTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetDroppedTables\u0028\u0029", + "name": "getDroppedTables", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getDroppedTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetCreatedSequences\u0028\u0029", + "name": "getCreatedSequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getCreatedSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetAlteredSequences\u0028\u0029", + "name": "getAlteredSequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getAlteredSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AgetDroppedSequences\u0028\u0029", + "name": "getDroppedSequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_getDroppedSequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020whether\u0020the\u0020diff\u0020is\u0020empty\u0020\u0028contains\u0020no\u0020changes\u0029.", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_isEmpty" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AtoSaveSql\u0028\u0029", + "name": "toSaveSql", + "summary": "The\u0020to\u0020save\u0020sql\u0020mode\u0020ensures\u0020that\u0020the\u0020following\u0020things\u0020don\u0027t\u0020happen\u003A", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_toSaveSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003AtoSql\u0028\u0029", + "name": "toSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method_toSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003A_toSql\u0028\u0029", + "name": "_toSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#method__toSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003A\u0024fromSchema", + "name": "fromSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#property_fromSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaDiff\u003A\u003A\u0024orphanedForeignKeys", + "name": "orphanedForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaDiff.html#property_orphanedForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException", + "name": "SchemaException", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AtableDoesNotExist\u0028\u0029", + "name": "tableDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_tableDoesNotExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AindexNameInvalid\u0028\u0029", + "name": "indexNameInvalid", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_indexNameInvalid" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AindexDoesNotExist\u0028\u0029", + "name": "indexDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_indexDoesNotExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AindexAlreadyExists\u0028\u0029", + "name": "indexAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_indexAlreadyExists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AcolumnDoesNotExist\u0028\u0029", + "name": "columnDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_columnDoesNotExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AnamespaceAlreadyExists\u0028\u0029", + "name": "namespaceAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_namespaceAlreadyExists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AtableAlreadyExists\u0028\u0029", + "name": "tableAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_tableAlreadyExists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AcolumnAlreadyExists\u0028\u0029", + "name": "columnAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_columnAlreadyExists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AsequenceAlreadyExists\u0028\u0029", + "name": "sequenceAlreadyExists", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_sequenceAlreadyExists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AsequenceDoesNotExist\u0028\u0029", + "name": "sequenceDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_sequenceDoesNotExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AuniqueConstraintDoesNotExist\u0028\u0029", + "name": "uniqueConstraintDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_uniqueConstraintDoesNotExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AforeignKeyDoesNotExist\u0028\u0029", + "name": "foreignKeyDoesNotExist", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_foreignKeyDoesNotExist" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AnamedForeignKeyRequired\u0028\u0029", + "name": "namedForeignKeyRequired", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_namedForeignKeyRequired" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AalterTableChangeNotSupported\u0028\u0029", + "name": "alterTableChangeNotSupported", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#method_alterTableChangeNotSupported" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ATABLE_DOESNT_EXIST", + "name": "TABLE_DOESNT_EXIST", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_TABLE_DOESNT_EXIST" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ATABLE_ALREADY_EXISTS", + "name": "TABLE_ALREADY_EXISTS", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_TABLE_ALREADY_EXISTS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ACOLUMN_DOESNT_EXIST", + "name": "COLUMN_DOESNT_EXIST", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_COLUMN_DOESNT_EXIST" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ACOLUMN_ALREADY_EXISTS", + "name": "COLUMN_ALREADY_EXISTS", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_COLUMN_ALREADY_EXISTS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AINDEX_DOESNT_EXIST", + "name": "INDEX_DOESNT_EXIST", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_INDEX_DOESNT_EXIST" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AINDEX_ALREADY_EXISTS", + "name": "INDEX_ALREADY_EXISTS", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_INDEX_ALREADY_EXISTS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ASEQUENCE_DOENST_EXIST", + "name": "SEQUENCE_DOENST_EXIST", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_SEQUENCE_DOENST_EXIST" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ASEQUENCE_ALREADY_EXISTS", + "name": "SEQUENCE_ALREADY_EXISTS", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_SEQUENCE_ALREADY_EXISTS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AINDEX_INVALID_NAME", + "name": "INDEX_INVALID_NAME", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_INDEX_INVALID_NAME" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003AFOREIGNKEY_DOESNT_EXIST", + "name": "FOREIGNKEY_DOESNT_EXIST", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_FOREIGNKEY_DOESNT_EXIST" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ACONSTRAINT_DOESNT_EXIST", + "name": "CONSTRAINT_DOESNT_EXIST", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_CONSTRAINT_DOESNT_EXIST" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaException\u003A\u003ANAMESPACE_ALREADY_EXISTS", + "name": "NAMESPACE_ALREADY_EXISTS", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaException.html#constant_NAMESPACE_ALREADY_EXISTS" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaManagerFactory", + "name": "SchemaManagerFactory", + "summary": "Creates\u0020a\u0020schema\u0020manager\u0020for\u0020the\u0020given\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-SchemaManagerFactory.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SchemaManagerFactory\u003A\u003AcreateSchemaManager\u0028\u0029", + "name": "createSchemaManager", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SchemaManagerFactory.html#method_createSchemaManager" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence", + "name": "Sequence", + "summary": "Sequence\u0020structure.", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AgetAllocationSize\u0028\u0029", + "name": "getAllocationSize", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_getAllocationSize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AgetInitialValue\u0028\u0029", + "name": "getInitialValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_getInitialValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AgetCache\u0028\u0029", + "name": "getCache", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_getCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AsetAllocationSize\u0028\u0029", + "name": "setAllocationSize", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_setAllocationSize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AsetInitialValue\u0028\u0029", + "name": "setInitialValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_setInitialValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AsetCache\u0028\u0029", + "name": "setCache", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_setCache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003AisAutoIncrementsFor\u0028\u0029", + "name": "isAutoIncrementsFor", + "summary": "Checks\u0020if\u0020this\u0020sequence\u0020is\u0020an\u0020autoincrement\u0020sequence\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_isAutoIncrementsFor" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003Avisit\u0028\u0029", + "name": "visit", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#method_visit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003A\u0024allocationSize", + "name": "allocationSize", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#property_allocationSize" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003A\u0024initialValue", + "name": "initialValue", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#property_initialValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Sequence\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Sequence.html#property_cache" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager", + "name": "SqliteSchemaManager", + "summary": "Sqlite\u0020SchemaManager.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AfetchForeignKeyColumnsByTable\u0028\u0029", + "name": "fetchForeignKeyColumnsByTable", + "summary": "Fetches\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_fetchForeignKeyColumnsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AdropDatabase\u0028\u0029", + "name": "dropDatabase", + "summary": "Drops\u0020a\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_dropDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Creates\u0020a\u0020new\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_createDatabase" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AcreateForeignKey\u0028\u0029", + "name": "createForeignKey", + "summary": "Creates\u0020a\u0020new\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_createForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AdropAndCreateForeignKey\u0028\u0029", + "name": "dropAndCreateForeignKey", + "summary": "Drops\u0020and\u0020creates\u0020a\u0020new\u0020foreign\u0020key.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_dropAndCreateForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AdropForeignKey\u0028\u0029", + "name": "dropForeignKey", + "summary": "Drops\u0020a\u0020foreign\u0020key\u0020from\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_dropForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableTableColumnList\u0028\u0029", + "name": "_getPortableTableColumnList", + "summary": "Independent\u0020of\u0020the\u0020database\u0020the\u0020keys\u0020of\u0020the\u0020column\u0020list\u0020result\u0020are\u0020lowercased.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableTableColumnList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableTableForeignKeysList\u0028\u0029", + "name": "_getPortableTableForeignKeysList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableTableForeignKeysList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AparseColumnCollationFromSQL\u0028\u0029", + "name": "parseColumnCollationFromSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_parseColumnCollationFromSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AparseTableCommentFromSQL\u0028\u0029", + "name": "parseTableCommentFromSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_parseTableCommentFromSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AparseColumnCommentFromSQL\u0028\u0029", + "name": "parseColumnCommentFromSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_parseColumnCommentFromSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AbuildIdentifierPattern\u0028\u0029", + "name": "buildIdentifierPattern", + "summary": "Returns\u0020a\u0020regular\u0020expression\u0020pattern\u0020that\u0020matches\u0020the\u0020given\u0020unquoted\u0020or\u0020quoted\u0020identifier.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_buildIdentifierPattern" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AgetCreateTableSQL\u0028\u0029", + "name": "getCreateTableSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_getCreateTableSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AaddDetailsToTableForeignKeyColumns\u0028\u0029", + "name": "addDetailsToTableForeignKeyColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_addDetailsToTableForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AgetForeignKeyDetails\u0028\u0029", + "name": "getForeignKeyDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_getForeignKeyDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AcreateComparator\u0028\u0029", + "name": "createComparator", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_createComparator" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AgetSchemaSearchPaths\u0028\u0029", + "name": "getSchemaSearchPaths", + "summary": "The\u0020search\u0020path\u0020for\u0020namespaces\u0020in\u0020the\u0020currently\u0020connected\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_getSchemaSearchPaths" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SqliteSchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-SqliteSchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager", + "name": "SQLServerSchemaManager", + "summary": "SQL\u0020Server\u0020Schema\u0020Manager.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistTableNames\u0028\u0029", + "name": "listTableNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020all\u0020tables\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistTables\u0028\u0029", + "name": "listTables", + "summary": "Lists\u0020the\u0020tables\u0020for\u0020this\u0020connection.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listTables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistTableDetails\u0028\u0029", + "name": "listTableDetails", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listTableDetails" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistTableColumns\u0028\u0029", + "name": "listTableColumns", + "summary": "Lists\u0020the\u0020columns\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistTableIndexes\u0028\u0029", + "name": "listTableIndexes", + "summary": "Lists\u0020the\u0020indexes\u0020for\u0020a\u0020given\u0020table\u0020returning\u0020an\u0020array\u0020of\u0020Index\u0020instances.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listTableIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistTableForeignKeys\u0028\u0029", + "name": "listTableForeignKeys", + "summary": "Lists\u0020the\u0020foreign\u0020keys\u0020for\u0020the\u0020given\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listTableForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AlistSchemaNames\u0028\u0029", + "name": "listSchemaNames", + "summary": "Returns\u0020a\u0020list\u0020of\u0020the\u0020names\u0020of\u0020all\u0020schemata\u0020in\u0020the\u0020current\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_listSchemaNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableSequenceDefinition\u0028\u0029", + "name": "_getPortableSequenceDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableSequenceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableTableColumnDefinition\u0028\u0029", + "name": "_getPortableTableColumnDefinition", + "summary": "Gets\u0020Table\u0020Column\u0020Definition.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableTableColumnDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AparseDefaultExpression\u0028\u0029", + "name": "parseDefaultExpression", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_parseDefaultExpression" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableTableForeignKeysList\u0028\u0029", + "name": "_getPortableTableForeignKeysList", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableTableForeignKeysList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableTableIndexesList\u0028\u0029", + "name": "_getPortableTableIndexesList", + "summary": "Aggregates\u0020and\u0020groups\u0020the\u0020index\u0020results\u0020according\u0020to\u0020the\u0020required\u0020data\u0020result.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableTableIndexesList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableTableForeignKeyDefinition\u0028\u0029", + "name": "_getPortableTableForeignKeyDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableTableForeignKeyDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableTableDefinition\u0028\u0029", + "name": "_getPortableTableDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableTableDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableDatabaseDefinition\u0028\u0029", + "name": "_getPortableDatabaseDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableDatabaseDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AgetPortableNamespaceDefinition\u0028\u0029", + "name": "getPortableNamespaceDefinition", + "summary": "Converts\u0020a\u0020namespace\u0020definition\u0020from\u0020the\u0020native\u0020DBMS\u0020data\u0020definition\u0020to\u0020a\u0020portable\u0020Doctrine\u0020definition.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_getPortableNamespaceDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A_getPortableViewDefinition\u0028\u0029", + "name": "_getPortableViewDefinition", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method__getPortableViewDefinition" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AalterTable\u0028\u0029", + "name": "alterTable", + "summary": "Alters\u0020an\u0020existing\u0020tables\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_alterTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AgetColumnConstraints\u0028\u0029", + "name": "getColumnConstraints", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020constraints\u0020for\u0020a\u0020given\u0020column.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_getColumnConstraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AcreateComparator\u0028\u0029", + "name": "createComparator", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_createComparator" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AgetDatabaseCollation\u0028\u0029", + "name": "getDatabaseCollation", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_getDatabaseCollation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AselectTableNames\u0028\u0029", + "name": "selectTableNames", + "summary": "Selects\u0020names\u0020of\u0020tables\u0020in\u0020the\u0020specified\u0020database.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_selectTableNames" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AselectTableColumns\u0028\u0029", + "name": "selectTableColumns", + "summary": "Selects\u0020definitions\u0020of\u0020table\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_selectTableColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AselectIndexColumns\u0028\u0029", + "name": "selectIndexColumns", + "summary": "Selects\u0020definitions\u0020of\u0020index\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\u0020narrows\u0020down\nthe\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_selectIndexColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AselectForeignKeyColumns\u0028\u0029", + "name": "selectForeignKeyColumns", + "summary": "Selects\u0020definitions\u0020of\u0020foreign\u0020key\u0020columns\u0020in\u0020the\u0020specified\u0020database.\u0020If\u0020the\u0020table\u0020name\u0020is\u0020specified,\nnarrows\u0020down\u0020the\u0020selection\u0020to\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_selectForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AfetchTableOptionsByTable\u0028\u0029", + "name": "fetchTableOptionsByTable", + "summary": "Fetches\u0020table\u0020options\u0020for\u0020the\u0020tables\u0020in\u0020the\u0020specified\u0020database\u0020and\u0020returns\u0020them\u0020grouped\u0020by\u0020table\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_fetchTableOptionsByTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003AgetTableWhereClause\u0028\u0029", + "name": "getTableWhereClause", + "summary": "Returns\u0020the\u0020where\u0020clause\u0020to\u0020filter\u0020schema\u0020and\u0020table\u0020name\u0020in\u0020a\u0020query.", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#method_getTableWhereClause" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\SQLServerSchemaManager\u003A\u003A\u0024databaseCollation", + "name": "databaseCollation", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-SQLServerSchemaManager.html#property_databaseCollation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table", + "name": "Table", + "summary": "Object\u0020Representation\u0020of\u0020a\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Table.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AsetSchemaConfig\u0028\u0029", + "name": "setSchemaConfig", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_setSchemaConfig" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_getMaxIdentifierLength\u0028\u0029", + "name": "_getMaxIdentifierLength", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__getMaxIdentifierLength" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AsetPrimaryKey\u0028\u0029", + "name": "setPrimaryKey", + "summary": "Sets\u0020the\u0020Primary\u0020Key.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_setPrimaryKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AaddIndex\u0028\u0029", + "name": "addIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_addIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AaddUniqueConstraint\u0028\u0029", + "name": "addUniqueConstraint", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_addUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AdropPrimaryKey\u0028\u0029", + "name": "dropPrimaryKey", + "summary": "Drops\u0020the\u0020primary\u0020key\u0020from\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_dropPrimaryKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AdropIndex\u0028\u0029", + "name": "dropIndex", + "summary": "Drops\u0020an\u0020index\u0020from\u0020this\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_dropIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AaddUniqueIndex\u0028\u0029", + "name": "addUniqueIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_addUniqueIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003ArenameIndex\u0028\u0029", + "name": "renameIndex", + "summary": "Renames\u0020an\u0020index.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_renameIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AcolumnsAreIndexed\u0028\u0029", + "name": "columnsAreIndexed", + "summary": "Checks\u0020if\u0020an\u0020index\u0020begins\u0020in\u0020the\u0020order\u0020of\u0020the\u0020given\u0020columns.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_columnsAreIndexed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_createIndex\u0028\u0029", + "name": "_createIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__createIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AaddColumn\u0028\u0029", + "name": "addColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_addColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AchangeColumn\u0028\u0029", + "name": "changeColumn", + "summary": "Change\u0020Column\u0020Details.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_changeColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AmodifyColumn\u0028\u0029", + "name": "modifyColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_modifyColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AdropColumn\u0028\u0029", + "name": "dropColumn", + "summary": "Drops\u0020a\u0020Column\u0020from\u0020the\u0020Table.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_dropColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AaddForeignKeyConstraint\u0028\u0029", + "name": "addForeignKeyConstraint", + "summary": "Adds\u0020a\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_addForeignKeyConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AaddOption\u0028\u0029", + "name": "addOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_addOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_addColumn\u0028\u0029", + "name": "_addColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__addColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_addIndex\u0028\u0029", + "name": "_addIndex", + "summary": "Adds\u0020an\u0020index\u0020to\u0020the\u0020table.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__addIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_addUniqueConstraint\u0028\u0029", + "name": "_addUniqueConstraint", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__addUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_addForeignKeyConstraint\u0028\u0029", + "name": "_addForeignKeyConstraint", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__addForeignKeyConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AhasForeignKey\u0028\u0029", + "name": "hasForeignKey", + "summary": "Returns\u0020whether\u0020this\u0020table\u0020has\u0020a\u0020foreign\u0020key\u0020constraint\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_hasForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetForeignKey\u0028\u0029", + "name": "getForeignKey", + "summary": "Returns\u0020the\u0020foreign\u0020key\u0020constraint\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AremoveForeignKey\u0028\u0029", + "name": "removeForeignKey", + "summary": "Removes\u0020the\u0020foreign\u0020key\u0020constraint\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_removeForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AhasUniqueConstraint\u0028\u0029", + "name": "hasUniqueConstraint", + "summary": "Returns\u0020whether\u0020this\u0020table\u0020has\u0020a\u0020unique\u0020constraint\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_hasUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetUniqueConstraint\u0028\u0029", + "name": "getUniqueConstraint", + "summary": "Returns\u0020the\u0020unique\u0020constraint\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AremoveUniqueConstraint\u0028\u0029", + "name": "removeUniqueConstraint", + "summary": "Removes\u0020the\u0020unique\u0020constraint\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_removeUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Returns\u0020ordered\u0020list\u0020of\u0020columns\u0020\u0028primary\u0020keys\u0020are\u0020first,\u0020then\u0020foreign\u0020keys,\u0020then\u0020the\u0020rest\u0029", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetForeignKeyColumns\u0028\u0029", + "name": "getForeignKeyColumns", + "summary": "Returns\u0020the\u0020foreign\u0020key\u0020columns", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getForeignKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AfilterColumns\u0028\u0029", + "name": "filterColumns", + "summary": "Returns\u0020only\u0020columns\u0020that\u0020have\u0020specified\u0020names", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_filterColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AhasColumn\u0028\u0029", + "name": "hasColumn", + "summary": "Returns\u0020whether\u0020this\u0020table\u0020has\u0020a\u0020Column\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_hasColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetColumn\u0028\u0029", + "name": "getColumn", + "summary": "Returns\u0020the\u0020Column\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetPrimaryKey\u0028\u0029", + "name": "getPrimaryKey", + "summary": "Returns\u0020the\u0020primary\u0020key.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getPrimaryKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetPrimaryKeyColumns\u0028\u0029", + "name": "getPrimaryKeyColumns", + "summary": "Returns\u0020the\u0020primary\u0020key\u0020columns.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getPrimaryKeyColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AhasPrimaryKey\u0028\u0029", + "name": "hasPrimaryKey", + "summary": "Returns\u0020whether\u0020this\u0020table\u0020has\u0020a\u0020primary\u0020key.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_hasPrimaryKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AhasIndex\u0028\u0029", + "name": "hasIndex", + "summary": "Returns\u0020whether\u0020this\u0020table\u0020has\u0020an\u0020Index\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_hasIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetIndex\u0028\u0029", + "name": "getIndex", + "summary": "Returns\u0020the\u0020Index\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetIndexes\u0028\u0029", + "name": "getIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetUniqueConstraints\u0028\u0029", + "name": "getUniqueConstraints", + "summary": "Returns\u0020the\u0020unique\u0020constraints.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getUniqueConstraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetForeignKeys\u0028\u0029", + "name": "getForeignKeys", + "summary": "Returns\u0020the\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_hasOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003Avisit\u0028\u0029", + "name": "visit", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_visit" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Clone\u0020of\u0020a\u0020Table\u0020triggers\u0020a\u0020deep\u0020clone\u0020of\u0020all\u0020affected\u0020assets.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method___clone" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A_createUniqueConstraint\u0028\u0029", + "name": "_createUniqueConstraint", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method__createUniqueConstraint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AnormalizeIdentifier\u0028\u0029", + "name": "normalizeIdentifier", + "summary": "Normalizes\u0020a\u0020given\u0020identifier.", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_normalizeIdentifier" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AsetComment\u0028\u0029", + "name": "setComment", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_setComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003AgetComment\u0028\u0029", + "name": "getComment", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#method_getComment" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024_columns", + "name": "_columns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property__columns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024_indexes", + "name": "_indexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property__indexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024_primaryKeyName", + "name": "_primaryKeyName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property__primaryKeyName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024uniqueConstraints", + "name": "uniqueConstraints", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property_uniqueConstraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024_fkConstraints", + "name": "_fkConstraints", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property__fkConstraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024_options", + "name": "_options", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property__options" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024_schemaConfig", + "name": "_schemaConfig", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property__schemaConfig" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Table\u003A\u003A\u0024implicitIndexes", + "name": "implicitIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Table.html#property_implicitIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff", + "name": "TableDiff", + "summary": "Table\u0020Diff.", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetNewName\u0028\u0029", + "name": "getNewName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getNewName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetOldTable\u0028\u0029", + "name": "getOldTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getOldTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetAddedColumns\u0028\u0029", + "name": "getAddedColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getAddedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetModifiedColumns\u0028\u0029", + "name": "getModifiedColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getModifiedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetDroppedColumns\u0028\u0029", + "name": "getDroppedColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getDroppedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetRenamedColumns\u0028\u0029", + "name": "getRenamedColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getRenamedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetAddedIndexes\u0028\u0029", + "name": "getAddedIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getAddedIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetModifiedIndexes\u0028\u0029", + "name": "getModifiedIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getModifiedIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetDroppedIndexes\u0028\u0029", + "name": "getDroppedIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getDroppedIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetRenamedIndexes\u0028\u0029", + "name": "getRenamedIndexes", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getRenamedIndexes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetAddedForeignKeys\u0028\u0029", + "name": "getAddedForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getAddedForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetModifiedForeignKeys\u0028\u0029", + "name": "getModifiedForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getModifiedForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AgetDroppedForeignKeys\u0028\u0029", + "name": "getDroppedForeignKeys", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_getDroppedForeignKeys" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020whether\u0020the\u0020diff\u0020is\u0020empty\u0020\u0028contains\u0020no\u0020changes\u0029.", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#method_isEmpty" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#property_name" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\TableDiff\u003A\u003A\u0024newName", + "name": "newName", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-TableDiff.html#property_newName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint", + "name": "UniqueConstraint", + "summary": "Class\u0020for\u0020a\u0020unique\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Returns\u0020the\u0020names\u0020of\u0020the\u0020referencing\u0020table\u0020columns\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_getColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AgetQuotedColumns\u0028\u0029", + "name": "getQuotedColumns", + "summary": "Returns\u0020the\u0020quoted\u0020representation\u0020of\u0020the\u0020column\u0020names\nthe\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_getQuotedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AgetUnquotedColumns\u0028\u0029", + "name": "getUnquotedColumns", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_getUnquotedColumns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AgetFlags\u0028\u0029", + "name": "getFlags", + "summary": "Returns\u0020platform\u0020specific\u0020flags\u0020for\u0020unique\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_getFlags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AaddFlag\u0028\u0029", + "name": "addFlag", + "summary": "Adds\u0020flag\u0020for\u0020a\u0020unique\u0020constraint\u0020that\u0020translates\u0020to\u0020platform\u0020specific\u0020handling.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_addFlag" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AhasFlag\u0028\u0029", + "name": "hasFlag", + "summary": "Does\u0020this\u0020unique\u0020constraint\u0020have\u0020a\u0020specific\u0020flag\u003F", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_hasFlag" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AremoveFlag\u0028\u0029", + "name": "removeFlag", + "summary": "Removes\u0020a\u0020flag.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_removeFlag" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "Does\u0020this\u0020unique\u0020constraint\u0020have\u0020a\u0020specific\u0020option\u003F", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_hasOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_getOption" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_getOptions" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003AaddColumn\u0028\u0029", + "name": "addColumn", + "summary": "Adds\u0020a\u0020new\u0020column\u0020to\u0020the\u0020unique\u0020constraint.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#method_addColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003A\u0024columns", + "name": "columns", + "summary": "Asset\u0020identifier\u0020instances\u0020of\u0020the\u0020column\u0020names\u0020the\u0020unique\u0020constraint\u0020is\u0020associated\u0020with.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#property_columns" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003A\u0024flags", + "name": "flags", + "summary": "Platform\u0020specific\u0020flags.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#property_flags" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\UniqueConstraint\u003A\u003A\u0024options", + "name": "options", + "summary": "Platform\u0020specific\u0020options.", + "url": "classes/Doctrine-DBAL-Schema-UniqueConstraint.html#property_options" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\View", + "name": "View", + "summary": "Representation\u0020of\u0020a\u0020Database\u0020View.", + "url": "classes/Doctrine-DBAL-Schema-View.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\View\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-View.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\View\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-View.html#method_getSql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\View\u003A\u003A\u0024sql", + "name": "sql", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-View.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor", + "name": "AbstractVisitor", + "summary": "Abstract\u0020Visitor\u0020with\u0020empty\u0020methods\u0020for\u0020easy\u0020extension.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptSchema\u0028\u0029", + "name": "acceptSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptNamespace\u0028\u0029", + "name": "acceptNamespace", + "summary": "Accepts\u0020a\u0020schema\u0020namespace\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptNamespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptColumn\u0028\u0029", + "name": "acceptColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptIndex\u0028\u0029", + "name": "acceptIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-AbstractVisitor.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector", + "name": "CreateSchemaSqlCollector", + "summary": "Abstract\u0020Visitor\u0020with\u0020empty\u0020methods\u0020for\u0020easy\u0020extension.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003AacceptNamespace\u0028\u0029", + "name": "acceptNamespace", + "summary": "Accepts\u0020a\u0020schema\u0020namespace\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method_acceptNamespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003AresetQueries\u0028\u0029", + "name": "resetQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method_resetQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003AgetQueries\u0028\u0029", + "name": "getQueries", + "summary": "Gets\u0020all\u0020queries\u0020collected\u0020so\u0020far.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#method_getQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003A\u0024createNamespaceQueries", + "name": "createNamespaceQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#property_createNamespaceQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003A\u0024createTableQueries", + "name": "createTableQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#property_createTableQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003A\u0024createSequenceQueries", + "name": "createSequenceQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#property_createSequenceQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003A\u0024createFkConstraintQueries", + "name": "createFkConstraintQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#property_createFkConstraintQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-CreateSchemaSqlCollector.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector", + "name": "DropSchemaSqlCollector", + "summary": "Gathers\u0020SQL\u0020statements\u0020that\u0020allow\u0020to\u0020completely\u0020drop\u0020the\u0020current\u0020schema.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003AclearQueries\u0028\u0029", + "name": "clearQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method_clearQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003AgetQueries\u0028\u0029", + "name": "getQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method_getQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003AinitializeQueries\u0028\u0029", + "name": "initializeQueries", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#method_initializeQueries" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003A\u0024constraints", + "name": "constraints", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#property_constraints" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003A\u0024sequences", + "name": "sequences", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#property_sequences" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003A\u0024tables", + "name": "tables", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#property_tables" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-DropSchemaSqlCollector.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz", + "name": "Graphviz", + "summary": "Create\u0020a\u0020Graphviz\u0020output\u0020of\u0020a\u0020Schema.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AacceptSchema\u0028\u0029", + "name": "acceptSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_acceptSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AcreateTableLabel\u0028\u0029", + "name": "createTableLabel", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_createTableLabel" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AcreateNode\u0028\u0029", + "name": "createNode", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_createNode" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AcreateNodeRelation\u0028\u0029", + "name": "createNodeRelation", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_createNodeRelation" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "Get\u0020Graphviz\u0020Output", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_getOutput" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020dot\u0020language\u0020output\u0020to\u0020a\u0020file.\u0020This\u0020should\u0020usually\u0020be\u0020a\u0020\u002A.dot\u0020file.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#method_write" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Graphviz\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Graphviz.html#property_output" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\NamespaceVisitor", + "name": "NamespaceVisitor", + "summary": "Visitor\u0020that\u0020can\u0020visit\u0020schema\u0020namespaces.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-NamespaceVisitor.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\NamespaceVisitor\u003A\u003AacceptNamespace\u0028\u0029", + "name": "acceptNamespace", + "summary": "Accepts\u0020a\u0020schema\u0020namespace\u0020name.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-NamespaceVisitor.html#method_acceptNamespace" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets", + "name": "RemoveNamespacedAssets", + "summary": "Removes\u0020assets\u0020from\u0020a\u0020schema\u0020that\u0020are\u0020not\u0020in\u0020the\u0020default\u0020namespace.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets\u003A\u003AacceptSchema\u0028\u0029", + "name": "acceptSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html#method_acceptSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets\u003A\u003A\u0024schema", + "name": "schema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-RemoveNamespacedAssets.html#property_schema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor", + "name": "Visitor", + "summary": "Schema\u0020Visitor\u0020used\u0020for\u0020Validation\u0020or\u0020Generation\u0020purposes.", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor\u003A\u003AacceptSchema\u0028\u0029", + "name": "acceptSchema", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html#method_acceptSchema" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor\u003A\u003AacceptTable\u0028\u0029", + "name": "acceptTable", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html#method_acceptTable" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor\u003A\u003AacceptColumn\u0028\u0029", + "name": "acceptColumn", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html#method_acceptColumn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor\u003A\u003AacceptForeignKey\u0028\u0029", + "name": "acceptForeignKey", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html#method_acceptForeignKey" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor\u003A\u003AacceptIndex\u0028\u0029", + "name": "acceptIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html#method_acceptIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor\\Visitor\u003A\u003AacceptSequence\u0028\u0029", + "name": "acceptSequence", + "summary": "", + "url": "classes/Doctrine-DBAL-Schema-Visitor-Visitor.html#method_acceptSequence" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder", + "name": "CreateSchemaObjectsSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder\u003A\u003AbuildSQL\u0028\u0029", + "name": "buildSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html#method_buildSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder\u003A\u003AbuildNamespaceStatements\u0028\u0029", + "name": "buildNamespaceStatements", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html#method_buildNamespaceStatements" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder\u003A\u003AbuildTableStatements\u0028\u0029", + "name": "buildTableStatements", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html#method_buildTableStatements" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder\u003A\u003AbuildSequenceStatements\u0028\u0029", + "name": "buildSequenceStatements", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html#method_buildSequenceStatements" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\CreateSchemaObjectsSQLBuilder\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-CreateSchemaObjectsSQLBuilder.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DefaultSelectSQLBuilder", + "name": "DefaultSelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DefaultSelectSQLBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DefaultSelectSQLBuilder\u003A\u003AbuildSQL\u0028\u0029", + "name": "buildSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DefaultSelectSQLBuilder.html#method_buildSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DefaultSelectSQLBuilder\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DefaultSelectSQLBuilder.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DefaultSelectSQLBuilder\u003A\u003A\u0024forUpdateSQL", + "name": "forUpdateSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DefaultSelectSQLBuilder.html#property_forUpdateSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DefaultSelectSQLBuilder\u003A\u003A\u0024skipLockedSQL", + "name": "skipLockedSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DefaultSelectSQLBuilder.html#property_skipLockedSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DropSchemaObjectsSQLBuilder", + "name": "DropSchemaObjectsSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DropSchemaObjectsSQLBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DropSchemaObjectsSQLBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DropSchemaObjectsSQLBuilder.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DropSchemaObjectsSQLBuilder\u003A\u003AbuildSQL\u0028\u0029", + "name": "buildSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DropSchemaObjectsSQLBuilder.html#method_buildSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DropSchemaObjectsSQLBuilder\u003A\u003AbuildTableStatements\u0028\u0029", + "name": "buildTableStatements", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DropSchemaObjectsSQLBuilder.html#method_buildTableStatements" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DropSchemaObjectsSQLBuilder\u003A\u003AbuildSequenceStatements\u0028\u0029", + "name": "buildSequenceStatements", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DropSchemaObjectsSQLBuilder.html#method_buildSequenceStatements" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\DropSchemaObjectsSQLBuilder\u003A\u003A\u0024platform", + "name": "platform", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-DropSchemaObjectsSQLBuilder.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\SelectSQLBuilder", + "name": "SelectSQLBuilder", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-SelectSQLBuilder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder\\SelectSQLBuilder\u003A\u003AbuildSQL\u0028\u0029", + "name": "buildSQL", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Builder-SelectSQLBuilder.html#method_buildSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Parser\\Exception\\RegularExpressionError", + "name": "RegularExpressionError", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Parser-Exception-RegularExpressionError.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Parser\\Exception\\RegularExpressionError\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Parser-Exception-RegularExpressionError.html#method_new" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Parser\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/Doctrine-DBAL-SQL-Parser-Exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement", + "name": "Statement", + "summary": "A\u0020database\u0020abstraction\u002Dlevel\u0020statement\u0020that\u0020implements\u0020support\u0020for\u0020logging,\u0020DBAL\u0020mapping\u0020types,\u0020etc.", + "url": "classes/Doctrine-DBAL-Statement.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003AbindValue\u0028\u0029", + "name": "bindValue", + "summary": "Binds\u0020a\u0020parameter\u0020value\u0020to\u0020the\u0020statement.", + "url": "classes/Doctrine-DBAL-Statement.html#method_bindValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003AbindParam\u0028\u0029", + "name": "bindParam", + "summary": "Binds\u0020a\u0020parameter\u0020to\u0020a\u0020value\u0020by\u0020reference.", + "url": "classes/Doctrine-DBAL-Statement.html#method_bindParam" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020statement\u0020with\u0020the\u0020currently\u0020bound\u0020parameters.", + "url": "classes/Doctrine-DBAL-Statement.html#method_execute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003AexecuteQuery\u0028\u0029", + "name": "executeQuery", + "summary": "Executes\u0020the\u0020statement\u0020with\u0020the\u0020currently\u0020bound\u0020parameters\u0020and\u0020return\u0020result.", + "url": "classes/Doctrine-DBAL-Statement.html#method_executeQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003AexecuteStatement\u0028\u0029", + "name": "executeStatement", + "summary": "Executes\u0020the\u0020statement\u0020with\u0020the\u0020currently\u0020bound\u0020parameters\u0020and\u0020return\u0020affected\u0020rows.", + "url": "classes/Doctrine-DBAL-Statement.html#method_executeStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003AgetWrappedStatement\u0028\u0029", + "name": "getWrappedStatement", + "summary": "Gets\u0020the\u0020wrapped\u0020driver\u0020statement.", + "url": "classes/Doctrine-DBAL-Statement.html#method_getWrappedStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003A\u0024sql", + "name": "sql", + "summary": "The\u0020SQL\u0020statement.", + "url": "classes/Doctrine-DBAL-Statement.html#property_sql" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003A\u0024params", + "name": "params", + "summary": "The\u0020bound\u0020parameters.", + "url": "classes/Doctrine-DBAL-Statement.html#property_params" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003A\u0024types", + "name": "types", + "summary": "The\u0020parameter\u0020types.", + "url": "classes/Doctrine-DBAL-Statement.html#property_types" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003A\u0024stmt", + "name": "stmt", + "summary": "The\u0020underlying\u0020driver\u0020statement.", + "url": "classes/Doctrine-DBAL-Statement.html#property_stmt" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003A\u0024platform", + "name": "platform", + "summary": "The\u0020underlying\u0020database\u0020platform.", + "url": "classes/Doctrine-DBAL-Statement.html#property_platform" + }, { + "fqsen": "\\Doctrine\\DBAL\\Statement\u003A\u003A\u0024conn", + "name": "conn", + "summary": "The\u0020connection\u0020this\u0020statement\u0020is\u0020bound\u0020to\u0020and\u0020executed\u0020on.", + "url": "classes/Doctrine-DBAL-Statement.html#property_conn" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand", + "name": "ReservedWordsCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003AsetKeywordList\u0028\u0029", + "name": "setKeywordList", + "summary": "Add\u0020or\u0020replace\u0020a\u0020keyword\u0020list.", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#method_setKeywordList" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003AsetKeywordListClass\u0028\u0029", + "name": "setKeywordListClass", + "summary": "If\u0020you\u0020want\u0020to\u0020add\u0020or\u0020replace\u0020a\u0020keywords\u0020list\u0020use\u0020this\u0020command.", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#method_setKeywordListClass" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#method_configure" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003AdoExecute\u0028\u0029", + "name": "doExecute", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#method_doExecute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003A\u0024keywordLists", + "name": "keywordLists", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#property_keywordLists" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand\u003A\u003A\u0024connectionProvider", + "name": "connectionProvider", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-ReservedWordsCommand.html#property_connectionProvider" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand", + "name": "RunSqlCommand", + "summary": "Task\u0020for\u0020executing\u0020arbitrary\u0020SQL\u0020that\u0020can\u0020come\u0020from\u0020a\u0020file\u0020or\u0020directly\u0020from\nthe\u0020command\u0020line.", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#method_configure" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003AdoExecute\u0028\u0029", + "name": "doExecute", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#method_doExecute" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003ArunQuery\u0028\u0029", + "name": "runQuery", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#method_runQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003ArunStatement\u0028\u0029", + "name": "runStatement", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#method_runStatement" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand\u003A\u003A\u0024connectionProvider", + "name": "connectionProvider", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-Command-RunSqlCommand.html#property_connectionProvider" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionNotFound", + "name": "ConnectionNotFound", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionNotFound.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\\SingleConnectionProvider", + "name": "SingleConnectionProvider", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider-SingleConnectionProvider.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\\SingleConnectionProvider\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider-SingleConnectionProvider.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\\SingleConnectionProvider\u003A\u003AgetDefaultConnection\u0028\u0029", + "name": "getDefaultConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider-SingleConnectionProvider.html#method_getDefaultConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\\SingleConnectionProvider\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider-SingleConnectionProvider.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\\SingleConnectionProvider\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider-SingleConnectionProvider.html#property_connection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\\SingleConnectionProvider\u003A\u003A\u0024defaultConnectionName", + "name": "defaultConnectionName", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider-SingleConnectionProvider.html#property_defaultConnectionName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider", + "name": "ConnectionProvider", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\u003A\u003AgetDefaultConnection\u0028\u0029", + "name": "getDefaultConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider.html#method_getDefaultConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConnectionProvider.html#method_getConnection" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConsoleRunner", + "name": "ConsoleRunner", + "summary": "Handles\u0020running\u0020the\u0020Console\u0020Tools\u0020inside\u0020Symfony\u0020Console\u0020context.", + "url": "classes/Doctrine-DBAL-Tools-Console-ConsoleRunner.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConsoleRunner\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020console\u0020with\u0020the\u0020given\u0020connection\u0020provider.", + "url": "classes/Doctrine-DBAL-Tools-Console-ConsoleRunner.html#method_run" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConsoleRunner\u003A\u003AaddCommands\u0028\u0029", + "name": "addCommands", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-Console-ConsoleRunner.html#method_addCommands" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConsoleRunner\u003A\u003AprintCliConfigTemplate\u0028\u0029", + "name": "printCliConfigTemplate", + "summary": "Prints\u0020the\u0020instructions\u0020to\u0020create\u0020a\u0020configuration\u0020file", + "url": "classes/Doctrine-DBAL-Tools-Console-ConsoleRunner.html#method_printCliConfigTemplate" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser", + "name": "DsnParser", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_parse" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003AparseDatabaseUrlPath\u0028\u0029", + "name": "parseDatabaseUrlPath", + "summary": "Parses\u0020the\u0020given\u0020connection\u0020URL\u0020and\u0020resolves\u0020the\u0020given\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_parseDatabaseUrlPath" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003AnormalizeDatabaseUrlPath\u0028\u0029", + "name": "normalizeDatabaseUrlPath", + "summary": "Normalizes\u0020the\u0020given\u0020connection\u0020URL\u0020path.", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_normalizeDatabaseUrlPath" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003AparseDatabaseUrlQuery\u0028\u0029", + "name": "parseDatabaseUrlQuery", + "summary": "Parses\u0020the\u0020query\u0020part\u0020of\u0020the\u0020given\u0020connection\u0020URL\u0020and\u0020resolves\u0020the\u0020given\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_parseDatabaseUrlQuery" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003AparseRegularDatabaseUrlPath\u0028\u0029", + "name": "parseRegularDatabaseUrlPath", + "summary": "Parses\u0020the\u0020given\u0020regular\u0020connection\u0020URL\u0020and\u0020resolves\u0020the\u0020given\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_parseRegularDatabaseUrlPath" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003AparseSqliteDatabaseUrlPath\u0028\u0029", + "name": "parseSqliteDatabaseUrlPath", + "summary": "Parses\u0020the\u0020given\u0020SQLite\u0020connection\u0020URL\u0020and\u0020resolves\u0020the\u0020given\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_parseSqliteDatabaseUrlPath" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003AparseDatabaseUrlScheme\u0028\u0029", + "name": "parseDatabaseUrlScheme", + "summary": "Parses\u0020the\u0020scheme\u0020part\u0020from\u0020given\u0020connection\u0020URL\u0020and\u0020resolves\u0020the\u0020given\u0020connection\u0020parameters.", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#method_parseDatabaseUrlScheme" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\DsnParser\u003A\u003A\u0024schemeMapping", + "name": "schemeMapping", + "summary": "", + "url": "classes/Doctrine-DBAL-Tools-DsnParser.html#property_schemeMapping" + }, { + "fqsen": "\\Doctrine\\DBAL\\TransactionIsolationLevel", + "name": "TransactionIsolationLevel", + "summary": "", + "url": "classes/Doctrine-DBAL-TransactionIsolationLevel.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\TransactionIsolationLevel\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-TransactionIsolationLevel.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\TransactionIsolationLevel\u003A\u003AREAD_UNCOMMITTED", + "name": "READ_UNCOMMITTED", + "summary": "Transaction\u0020isolation\u0020level\u0020READ\u0020UNCOMMITTED.", + "url": "classes/Doctrine-DBAL-TransactionIsolationLevel.html#constant_READ_UNCOMMITTED" + }, { + "fqsen": "\\Doctrine\\DBAL\\TransactionIsolationLevel\u003A\u003AREAD_COMMITTED", + "name": "READ_COMMITTED", + "summary": "Transaction\u0020isolation\u0020level\u0020READ\u0020COMMITTED.", + "url": "classes/Doctrine-DBAL-TransactionIsolationLevel.html#constant_READ_COMMITTED" + }, { + "fqsen": "\\Doctrine\\DBAL\\TransactionIsolationLevel\u003A\u003AREPEATABLE_READ", + "name": "REPEATABLE_READ", + "summary": "Transaction\u0020isolation\u0020level\u0020REPEATABLE\u0020READ.", + "url": "classes/Doctrine-DBAL-TransactionIsolationLevel.html#constant_REPEATABLE_READ" + }, { + "fqsen": "\\Doctrine\\DBAL\\TransactionIsolationLevel\u003A\u003ASERIALIZABLE", + "name": "SERIALIZABLE", + "summary": "Transaction\u0020isolation\u0020level\u0020SERIALIZABLE.", + "url": "classes/Doctrine-DBAL-TransactionIsolationLevel.html#constant_SERIALIZABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ArrayType", + "name": "ArrayType", + "summary": "Type\u0020that\u0020maps\u0020a\u0020PHP\u0020array\u0020to\u0020a\u0020clob\u0020SQL\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ArrayType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ArrayType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ArrayType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ArrayType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ArrayType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ArrayType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ArrayType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ArrayType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ArrayType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ArrayType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-ArrayType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\AsciiStringType", + "name": "AsciiStringType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020VARCHAR\u0020to\u0020a\u0020PHP\u0020string.", + "url": "classes/Doctrine-DBAL-Types-AsciiStringType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\AsciiStringType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-AsciiStringType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\AsciiStringType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-AsciiStringType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\AsciiStringType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-AsciiStringType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BigIntType", + "name": "BigIntType", + "summary": "Type\u0020that\u0020maps\u0020a\u0020database\u0020BIGINT\u0020to\u0020a\u0020PHP\u0020string.", + "url": "classes/Doctrine-DBAL-Types-BigIntType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BigIntType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BigIntType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BigIntType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BigIntType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BigIntType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-BigIntType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BigIntType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BigIntType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BinaryType", + "name": "BinaryType", + "summary": "Type\u0020that\u0020maps\u0020ab\u0020SQL\u0020BINARY\/VARBINARY\u0020to\u0020a\u0020PHP\u0020resource\u0020stream.", + "url": "classes/Doctrine-DBAL-Types-BinaryType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BinaryType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BinaryType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BinaryType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BinaryType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BinaryType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BinaryType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BinaryType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-BinaryType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BlobType", + "name": "BlobType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020BLOB\u0020to\u0020a\u0020PHP\u0020resource\u0020stream.", + "url": "classes/Doctrine-DBAL-Types-BlobType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BlobType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BlobType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BlobType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BlobType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BlobType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BlobType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BlobType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-BlobType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType", + "name": "BooleanType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020boolean\u0020to\u0020a\u0020PHP\u0020boolean.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\BooleanType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-BooleanType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ConversionException", + "name": "ConversionException", + "summary": "Conversion\u0020Exception\u0020is\u0020thrown\u0020when\u0020the\u0020database\u0020to\u0020PHP\u0020conversion\u0020fails.", + "url": "classes/Doctrine-DBAL-Types-ConversionException.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ConversionException\u003A\u003AconversionFailed\u0028\u0029", + "name": "conversionFailed", + "summary": "Thrown\u0020when\u0020a\u0020Database\u0020to\u0020Doctrine\u0020Type\u0020Conversion\u0020fails.", + "url": "classes/Doctrine-DBAL-Types-ConversionException.html#method_conversionFailed" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ConversionException\u003A\u003AconversionFailedFormat\u0028\u0029", + "name": "conversionFailedFormat", + "summary": "Thrown\u0020when\u0020a\u0020Database\u0020to\u0020Doctrine\u0020Type\u0020Conversion\u0020fails\u0020and\u0020we\u0020can\u0020make\u0020a\u0020statement\nabout\u0020the\u0020expected\u0020format.", + "url": "classes/Doctrine-DBAL-Types-ConversionException.html#method_conversionFailedFormat" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ConversionException\u003A\u003AconversionFailedInvalidType\u0028\u0029", + "name": "conversionFailedInvalidType", + "summary": "Thrown\u0020when\u0020the\u0020PHP\u0020value\u0020passed\u0020to\u0020the\u0020converter\u0020was\u0020not\u0020of\u0020the\u0020expected\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ConversionException.html#method_conversionFailedInvalidType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ConversionException\u003A\u003AconversionFailedSerialization\u0028\u0029", + "name": "conversionFailedSerialization", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-ConversionException.html#method_conversionFailedSerialization" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ConversionException\u003A\u003AconversionFailedUnserialization\u0028\u0029", + "name": "conversionFailedUnserialization", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-ConversionException.html#method_conversionFailedUnserialization" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateImmutableType", + "name": "DateImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020DateType\u007D.", + "url": "classes/Doctrine-DBAL-Types-DateImmutableType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateImmutableType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateImmutableType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateImmutableType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateImmutableType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateImmutableType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateImmutableType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateImmutableType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-DateImmutableType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType", + "name": "DateIntervalType", + "summary": "Type\u0020that\u0020maps\u0020interval\u0020string\u0020to\u0020a\u0020PHP\u0020DateInterval\u0020Object.", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateIntervalType\u003A\u003AFORMAT", + "name": "FORMAT", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-DateIntervalType.html#constant_FORMAT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeImmutableType", + "name": "DateTimeImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020DateTimeType\u007D.", + "url": "classes/Doctrine-DBAL-Types-DateTimeImmutableType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeImmutableType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeImmutableType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeImmutableType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeImmutableType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeImmutableType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeImmutableType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeImmutableType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeImmutableType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeType", + "name": "DateTimeType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020DATETIME\/TIMESTAMP\u0020to\u0020a\u0020PHP\u0020DateTime\u0020object.", + "url": "classes/Doctrine-DBAL-Types-DateTimeType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzImmutableType", + "name": "DateTimeTzImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020DateTimeTzType\u007D.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzImmutableType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzImmutableType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzImmutableType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzImmutableType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzImmutableType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzImmutableType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzImmutableType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzImmutableType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzImmutableType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzType", + "name": "DateTimeTzType", + "summary": "DateTime\u0020type\u0020accepting\u0020additional\u0020information\u0020about\u0020timezone\u0020offsets.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateTimeTzType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateTimeTzType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateType", + "name": "DateType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020DATE\u0020to\u0020a\u0020PHP\u0020Date\u0020object.", + "url": "classes/Doctrine-DBAL-Types-DateType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DateType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DateType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DecimalType", + "name": "DecimalType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020DECIMAL\u0020to\u0020a\u0020PHP\u0020string.", + "url": "classes/Doctrine-DBAL-Types-DecimalType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DecimalType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DecimalType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DecimalType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DecimalType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\DecimalType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-DecimalType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\FloatType", + "name": "FloatType", + "summary": "The\u0020base\u0020class\u0020for\u0020so\u002Dcalled\u0020Doctrine\u0020mapping\u0020types.", + "url": "classes/Doctrine-DBAL-Types-FloatType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\FloatType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-FloatType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\FloatType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-FloatType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\FloatType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-FloatType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\GuidType", + "name": "GuidType", + "summary": "Represents\u0020a\u0020GUID\/UUID\u0020datatype\u0020\u0028both\u0020are\u0020actually\u0020synonyms\u0029\u0020in\u0020the\u0020database.", + "url": "classes/Doctrine-DBAL-Types-GuidType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\GuidType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-GuidType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\GuidType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-GuidType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\GuidType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-GuidType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\IntegerType", + "name": "IntegerType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020INT\u0020to\u0020a\u0020PHP\u0020integer.", + "url": "classes/Doctrine-DBAL-Types-IntegerType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\IntegerType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-IntegerType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\IntegerType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-IntegerType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\IntegerType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-IntegerType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\IntegerType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-IntegerType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\JsonType", + "name": "JsonType", + "summary": "Type\u0020generating\u0020json\u0020objects\u0020values", + "url": "classes/Doctrine-DBAL-Types-JsonType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\JsonType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-JsonType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\JsonType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-JsonType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\JsonType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-JsonType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\JsonType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-JsonType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\JsonType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-JsonType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ObjectType", + "name": "ObjectType", + "summary": "Type\u0020that\u0020maps\u0020a\u0020PHP\u0020object\u0020to\u0020a\u0020clob\u0020SQL\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ObjectType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ObjectType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ObjectType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ObjectType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ObjectType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ObjectType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ObjectType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ObjectType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-ObjectType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\ObjectType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-ObjectType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SimpleArrayType", + "name": "SimpleArrayType", + "summary": "Array\u0020Type\u0020which\u0020can\u0020be\u0020used\u0020for\u0020simple\u0020values.", + "url": "classes/Doctrine-DBAL-Types-SimpleArrayType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SimpleArrayType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SimpleArrayType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SimpleArrayType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SimpleArrayType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SimpleArrayType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SimpleArrayType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SimpleArrayType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SimpleArrayType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SimpleArrayType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-SimpleArrayType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SmallIntType", + "name": "SmallIntType", + "summary": "Type\u0020that\u0020maps\u0020a\u0020database\u0020SMALLINT\u0020to\u0020a\u0020PHP\u0020integer.", + "url": "classes/Doctrine-DBAL-Types-SmallIntType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SmallIntType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SmallIntType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SmallIntType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SmallIntType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SmallIntType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-SmallIntType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\SmallIntType\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-SmallIntType.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\StringType", + "name": "StringType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020VARCHAR\u0020to\u0020a\u0020PHP\u0020string.", + "url": "classes/Doctrine-DBAL-Types-StringType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\StringType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-StringType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\StringType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-StringType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TextType", + "name": "TextType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020CLOB\u0020to\u0020a\u0020PHP\u0020string.", + "url": "classes/Doctrine-DBAL-Types-TextType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TextType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TextType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TextType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TextType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TextType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TextType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeImmutableType", + "name": "TimeImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020TimeType\u007D.", + "url": "classes/Doctrine-DBAL-Types-TimeImmutableType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeImmutableType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeImmutableType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeImmutableType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeImmutableType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeImmutableType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeImmutableType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeImmutableType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-TimeImmutableType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeType", + "name": "TimeType", + "summary": "Type\u0020that\u0020maps\u0020an\u0020SQL\u0020TIME\u0020to\u0020a\u0020PHP\u0020DateTime\u0020object.", + "url": "classes/Doctrine-DBAL-Types-TimeType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TimeType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TimeType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type", + "name": "Type", + "summary": "The\u0020base\u0020class\u0020for\u0020so\u002Dcalled\u0020Doctrine\u0020mapping\u0020types.", + "url": "classes/Doctrine-DBAL-Types-Type.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetTypeRegistry\u0028\u0029", + "name": "getTypeRegistry", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getTypeRegistry" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AcreateTypeRegistry\u0028\u0029", + "name": "createTypeRegistry", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_createTypeRegistry" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Factory\u0020method\u0020to\u0020create\u0020type\u0020instances.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AlookupName\u0028\u0029", + "name": "lookupName", + "summary": "Finds\u0020a\u0020name\u0020for\u0020the\u0020given\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_lookupName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AaddType\u0028\u0029", + "name": "addType", + "summary": "Adds\u0020a\u0020custom\u0020type\u0020to\u0020the\u0020type\u0020map.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_addType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AhasType\u0028\u0029", + "name": "hasType", + "summary": "Checks\u0020if\u0020exists\u0020support\u0020for\u0020a\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_hasType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AoverrideType\u0028\u0029", + "name": "overrideType", + "summary": "Overrides\u0020an\u0020already\u0020defined\u0020type\u0020to\u0020use\u0020a\u0020different\u0020implementation.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_overrideType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetBindingType\u0028\u0029", + "name": "getBindingType", + "summary": "Gets\u0020the\u0020\u0028preferred\u0029\u0020binding\u0020type\u0020for\u0020values\u0020of\u0020this\u0020type\u0020that\ncan\u0020be\u0020used\u0020when\u0020binding\u0020parameters\u0020to\u0020prepared\u0020statements.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getBindingType" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetTypesMap\u0028\u0029", + "name": "getTypesMap", + "summary": "Gets\u0020the\u0020types\u0020array\u0020map\u0020which\u0020holds\u0020all\u0020registered\u0020types\u0020and\u0020the\u0020corresponding\ntype\u0020class", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getTypesMap" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AcanRequireSQLConversion\u0028\u0029", + "name": "canRequireSQLConversion", + "summary": "Does\u0020working\u0020with\u0020this\u0020column\u0020require\u0020SQL\u0020conversion\u0020functions\u003F", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_canRequireSQLConversion" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AconvertToDatabaseValueSQL\u0028\u0029", + "name": "convertToDatabaseValueSQL", + "summary": "Modifies\u0020the\u0020SQL\u0020expression\u0020\u0028identifier,\u0020parameter\u0029\u0020to\u0020convert\u0020to\u0020a\u0020database\u0020value.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_convertToDatabaseValueSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AconvertToPHPValueSQL\u0028\u0029", + "name": "convertToPHPValueSQL", + "summary": "Modifies\u0020the\u0020SQL\u0020expression\u0020\u0028identifier,\u0020parameter\u0029\u0020to\u0020convert\u0020to\u0020a\u0020PHP\u0020value.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_convertToPHPValueSQL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003AgetMappedDatabaseTypes\u0028\u0029", + "name": "getMappedDatabaseTypes", + "summary": "Gets\u0020an\u0020array\u0020of\u0020database\u0020types\u0020that\u0020map\u0020to\u0020this\u0020Doctrine\u0020type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_getMappedDatabaseTypes" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-Type.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003ABUILTIN_TYPES_MAP", + "name": "BUILTIN_TYPES_MAP", + "summary": "The\u0020map\u0020of\u0020supported\u0020doctrine\u0020mapping\u0020types.", + "url": "classes/Doctrine-DBAL-Types-Type.html#constant_BUILTIN_TYPES_MAP" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Type\u003A\u003A\u0024typeRegistry", + "name": "typeRegistry", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Type.html#property_typeRegistry" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry", + "name": "TypeRegistry", + "summary": "The\u0020type\u0020registry\u0020is\u0020responsible\u0020for\u0020holding\u0020a\u0020map\u0020of\u0020all\u0020known\u0020DBAL\u0020types.", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Finds\u0020a\u0020type\u0020by\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method_get" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003AlookupName\u0028\u0029", + "name": "lookupName", + "summary": "Finds\u0020a\u0020name\u0020for\u0020the\u0020given\u0020type.", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method_lookupName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020there\u0020is\u0020a\u0020type\u0020of\u0020the\u0020given\u0020name.", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method_has" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Registers\u0020a\u0020custom\u0020type\u0020to\u0020the\u0020type\u0020map.", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method_register" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003Aoverride\u0028\u0029", + "name": "override", + "summary": "Overrides\u0020an\u0020already\u0020defined\u0020type\u0020to\u0020use\u0020a\u0020different\u0020implementation.", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method_override" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003AfindTypeName\u0028\u0029", + "name": "findTypeName", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#method_findTypeName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003A\u0024instances", + "name": "instances", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#property_instances" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\TypeRegistry\u003A\u003A\u0024instancesReverseIndex", + "name": "instancesReverseIndex", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-TypeRegistry.html#property_instancesReverseIndex" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types", + "name": "Types", + "summary": "Default\u0020built\u002Din\u0020types\u0020provided\u0020by\u0020Doctrine\u0020DBAL.", + "url": "classes/Doctrine-DBAL-Types-Types.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#method___construct" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AARRAY", + "name": "ARRAY", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_ARRAY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AASCII_STRING", + "name": "ASCII_STRING", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_ASCII_STRING" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ABIGINT", + "name": "BIGINT", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_BIGINT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ABINARY", + "name": "BINARY", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_BINARY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ABLOB", + "name": "BLOB", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_BLOB" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ABOOLEAN", + "name": "BOOLEAN", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_BOOLEAN" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATE_MUTABLE", + "name": "DATE_MUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATE_MUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATE_IMMUTABLE", + "name": "DATE_IMMUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATE_IMMUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATEINTERVAL", + "name": "DATEINTERVAL", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATEINTERVAL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATETIME_MUTABLE", + "name": "DATETIME_MUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATETIME_MUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATETIME_IMMUTABLE", + "name": "DATETIME_IMMUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATETIME_IMMUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATETIMETZ_MUTABLE", + "name": "DATETIMETZ_MUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATETIMETZ_MUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADATETIMETZ_IMMUTABLE", + "name": "DATETIMETZ_IMMUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DATETIMETZ_IMMUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ADECIMAL", + "name": "DECIMAL", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_DECIMAL" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AFLOAT", + "name": "FLOAT", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_FLOAT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AGUID", + "name": "GUID", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_GUID" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AINTEGER", + "name": "INTEGER", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_INTEGER" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AJSON", + "name": "JSON", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_JSON" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003AOBJECT", + "name": "OBJECT", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_OBJECT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ASIMPLE_ARRAY", + "name": "SIMPLE_ARRAY", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_SIMPLE_ARRAY" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ASMALLINT", + "name": "SMALLINT", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_SMALLINT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ASTRING", + "name": "STRING", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_STRING" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ATEXT", + "name": "TEXT", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_TEXT" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ATIME_MUTABLE", + "name": "TIME_MUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_TIME_MUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\Types\u003A\u003ATIME_IMMUTABLE", + "name": "TIME_IMMUTABLE", + "summary": "", + "url": "classes/Doctrine-DBAL-Types-Types.html#constant_TIME_IMMUTABLE" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeImmutableType", + "name": "VarDateTimeImmutableType", + "summary": "Immutable\u0020type\u0020of\u0020\u007B\u0040see\u0020VarDateTimeType\u007D.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeImmutableType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeImmutableType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeImmutableType.html#method_getName" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeImmutableType\u003A\u003AconvertToDatabaseValue\u0028\u0029", + "name": "convertToDatabaseValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020PHP\u0020representation\u0020to\u0020its\u0020database\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeImmutableType.html#method_convertToDatabaseValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeImmutableType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeImmutableType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeImmutableType\u003A\u003ArequiresSQLCommentHint\u0028\u0029", + "name": "requiresSQLCommentHint", + "summary": "If\u0020this\u0020Doctrine\u0020Type\u0020maps\u0020to\u0020an\u0020already\u0020mapped\u0020database\u0020type,\nreverse\u0020schema\u0020engineering\u0020can\u0027t\u0020tell\u0020them\u0020apart.\u0020You\u0020need\u0020to\u0020mark\none\u0020of\u0020those\u0020types\u0020as\u0020commented,\u0020which\u0020will\u0020have\u0020Doctrine\u0020use\u0020an\u0020SQL\ncomment\u0020to\u0020typehint\u0020the\u0020actual\u0020Doctrine\u0020Type.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeImmutableType.html#method_requiresSQLCommentHint" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeType", + "name": "VarDateTimeType", + "summary": "Variable\u0020DateTime\u0020Type\u0020using\u0020DateTime\u003A\u003A__construct\u0028\u0029\u0020instead\u0020of\u0020DateTime\u003A\u003AcreateFromFormat\u0028\u0029.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeType.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types\\VarDateTimeType\u003A\u003AconvertToPHPValue\u0028\u0029", + "name": "convertToPHPValue", + "summary": "Converts\u0020a\u0020value\u0020from\u0020its\u0020database\u0020representation\u0020to\u0020its\u0020PHP\u0020representation\nof\u0020this\u0020type.", + "url": "classes/Doctrine-DBAL-Types-VarDateTimeType.html#method_convertToPHPValue" + }, { + "fqsen": "\\Doctrine\\DBAL\\VersionAwarePlatformDriver", + "name": "VersionAwarePlatformDriver", + "summary": "Contract\u0020for\u0020a\u0020driver\u0020that\u0020is\u0020able\u0020to\u0020create\u0020platform\u0020instances\u0020by\u0020version.", + "url": "classes/Doctrine-DBAL-VersionAwarePlatformDriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\VersionAwarePlatformDriver\u003A\u003AcreateDatabasePlatformForVersion\u0028\u0029", + "name": "createDatabasePlatformForVersion", + "summary": "Factory\u0020method\u0020for\u0020creating\u0020the\u0020appropriate\u0020platform\u0020instance\u0020for\u0020the\u0020given\u0020version.", + "url": "classes/Doctrine-DBAL-VersionAwarePlatformDriver.html#method_createDatabasePlatformForVersion" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation", + "name": "Deprecation", + "summary": "Manages\u0020Deprecation\u0020logging\u0020in\u0020different\u0020ways.", + "url": "classes/Doctrine-Deprecations-Deprecation.html" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003Atrigger\u0028\u0029", + "name": "trigger", + "summary": "Trigger\u0020a\u0020deprecation\u0020for\u0020the\u0020given\u0020package\u0020and\u0020identfier.", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_trigger" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AtriggerIfCalledFromOutside\u0028\u0029", + "name": "triggerIfCalledFromOutside", + "summary": "Trigger\u0020a\u0020deprecation\u0020for\u0020the\u0020given\u0020package\u0020and\u0020identifier\u0020when\u0020called\u0020from\u0020outside.", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_triggerIfCalledFromOutside" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AdelegateTriggerToBackend\u0028\u0029", + "name": "delegateTriggerToBackend", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_delegateTriggerToBackend" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003Abasename\u0028\u0029", + "name": "basename", + "summary": "A\u0020non\u002Dlocal\u002Daware\u0020version\u0020of\u0020PHPs\u0020basename\u0020function.", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_basename" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AenableTrackingDeprecations\u0028\u0029", + "name": "enableTrackingDeprecations", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_enableTrackingDeprecations" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AenableWithTriggerError\u0028\u0029", + "name": "enableWithTriggerError", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_enableWithTriggerError" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AenableWithPsrLogger\u0028\u0029", + "name": "enableWithPsrLogger", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_enableWithPsrLogger" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AwithoutDeduplication\u0028\u0029", + "name": "withoutDeduplication", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_withoutDeduplication" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003Adisable\u0028\u0029", + "name": "disable", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_disable" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AignorePackage\u0028\u0029", + "name": "ignorePackage", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_ignorePackage" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AignoreDeprecations\u0028\u0029", + "name": "ignoreDeprecations", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_ignoreDeprecations" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AgetUniqueTriggeredDeprecationsCount\u0028\u0029", + "name": "getUniqueTriggeredDeprecationsCount", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_getUniqueTriggeredDeprecationsCount" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AgetTriggeredDeprecations\u0028\u0029", + "name": "getTriggeredDeprecations", + "summary": "Returns\u0020each\u0020triggered\u0020deprecation\u0020link\u0020identifier\u0020and\u0020the\u0020amount\u0020of\u0020occurrences.", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_getTriggeredDeprecations" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003AgetTypeFromEnv\u0028\u0029", + "name": "getTypeFromEnv", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#method_getTypeFromEnv" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003ATYPE_NONE", + "name": "TYPE_NONE", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#constant_TYPE_NONE" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003ATYPE_TRACK_DEPRECATIONS", + "name": "TYPE_TRACK_DEPRECATIONS", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#constant_TYPE_TRACK_DEPRECATIONS" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003ATYPE_TRIGGER_ERROR", + "name": "TYPE_TRIGGER_ERROR", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#constant_TYPE_TRIGGER_ERROR" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003ATYPE_PSR_LOGGER", + "name": "TYPE_PSR_LOGGER", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#constant_TYPE_PSR_LOGGER" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#property_type" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#property_logger" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003A\u0024ignoredPackages", + "name": "ignoredPackages", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#property_ignoredPackages" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003A\u0024triggeredDeprecations", + "name": "triggeredDeprecations", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#property_triggeredDeprecations" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003A\u0024ignoredLinks", + "name": "ignoredLinks", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#property_ignoredLinks" + }, { + "fqsen": "\\Doctrine\\Deprecations\\Deprecation\u003A\u003A\u0024deduplication", + "name": "deduplication", + "summary": "", + "url": "classes/Doctrine-Deprecations-Deprecation.html#property_deduplication" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations", + "name": "VerifyDeprecations", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations\u003A\u003AexpectDeprecationWithIdentifier\u0028\u0029", + "name": "expectDeprecationWithIdentifier", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html#method_expectDeprecationWithIdentifier" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations\u003A\u003AexpectNoDeprecationWithIdentifier\u0028\u0029", + "name": "expectNoDeprecationWithIdentifier", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html#method_expectNoDeprecationWithIdentifier" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations\u003A\u003AenableDeprecationTracking\u0028\u0029", + "name": "enableDeprecationTracking", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html#method_enableDeprecationTracking" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations\u003A\u003AverifyDeprecationsAreTriggered\u0028\u0029", + "name": "verifyDeprecationsAreTriggered", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html#method_verifyDeprecationsAreTriggered" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations\u003A\u003A\u0024doctrineDeprecationsExpectations", + "name": "doctrineDeprecationsExpectations", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html#property_doctrineDeprecationsExpectations" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit\\VerifyDeprecations\u003A\u003A\u0024doctrineNoDeprecationsExpectations", + "name": "doctrineNoDeprecationsExpectations", + "summary": "", + "url": "classes/Doctrine-Deprecations-PHPUnit-VerifyDeprecations.html#property_doctrineNoDeprecationsExpectations" + }, { + "fqsen": "\\Doctrine\\Common\\EventArgs", + "name": "EventArgs", + "summary": "EventArgs\u0020is\u0020the\u0020base\u0020class\u0020for\u0020classes\u0020containing\u0020event\u0020data.", + "url": "classes/Doctrine-Common-EventArgs.html" + }, { + "fqsen": "\\Doctrine\\Common\\EventArgs\u003A\u003AgetEmptyInstance\u0028\u0029", + "name": "getEmptyInstance", + "summary": "Gets\u0020the\u0020single,\u0020empty\u0020and\u0020immutable\u0020EventArgs\u0020instance.", + "url": "classes/Doctrine-Common-EventArgs.html#method_getEmptyInstance" + }, { + "fqsen": "\\Doctrine\\Common\\EventArgs\u003A\u003A\u0024emptyEventArgsInstance", + "name": "emptyEventArgsInstance", + "summary": "Single\u0020instance\u0020of\u0020EventArgs.", + "url": "classes/Doctrine-Common-EventArgs.html#property_emptyEventArgsInstance" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager", + "name": "EventManager", + "summary": "The\u0020EventManager\u0020is\u0020the\u0020central\u0020point\u0020of\u0020Doctrine\u0027s\u0020event\u0020listener\u0020system.", + "url": "classes/Doctrine-Common-EventManager.html" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AdispatchEvent\u0028\u0029", + "name": "dispatchEvent", + "summary": "Dispatches\u0020an\u0020event\u0020to\u0020all\u0020registered\u0020listeners.", + "url": "classes/Doctrine-Common-EventManager.html#method_dispatchEvent" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AgetListeners\u0028\u0029", + "name": "getListeners", + "summary": "Gets\u0020the\u0020listeners\u0020of\u0020a\u0020specific\u0020event.", + "url": "classes/Doctrine-Common-EventManager.html#method_getListeners" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AgetAllListeners\u0028\u0029", + "name": "getAllListeners", + "summary": "Gets\u0020all\u0020listeners\u0020keyed\u0020by\u0020event\u0020name.", + "url": "classes/Doctrine-Common-EventManager.html#method_getAllListeners" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AhasListeners\u0028\u0029", + "name": "hasListeners", + "summary": "Checks\u0020whether\u0020an\u0020event\u0020has\u0020any\u0020registered\u0020listeners.", + "url": "classes/Doctrine-Common-EventManager.html#method_hasListeners" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AaddEventListener\u0028\u0029", + "name": "addEventListener", + "summary": "Adds\u0020an\u0020event\u0020listener\u0020that\u0020listens\u0020on\u0020the\u0020specified\u0020events.", + "url": "classes/Doctrine-Common-EventManager.html#method_addEventListener" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AremoveEventListener\u0028\u0029", + "name": "removeEventListener", + "summary": "Removes\u0020an\u0020event\u0020listener\u0020from\u0020the\u0020specified\u0020events.", + "url": "classes/Doctrine-Common-EventManager.html#method_removeEventListener" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AaddEventSubscriber\u0028\u0029", + "name": "addEventSubscriber", + "summary": "Adds\u0020an\u0020EventSubscriber.", + "url": "classes/Doctrine-Common-EventManager.html#method_addEventSubscriber" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003AremoveEventSubscriber\u0028\u0029", + "name": "removeEventSubscriber", + "summary": "Removes\u0020an\u0020EventSubscriber.", + "url": "classes/Doctrine-Common-EventManager.html#method_removeEventSubscriber" + }, { + "fqsen": "\\Doctrine\\Common\\EventManager\u003A\u003A\u0024listeners", + "name": "listeners", + "summary": "Map\u0020of\u0020registered\u0020listeners.", + "url": "classes/Doctrine-Common-EventManager.html#property_listeners" + }, { + "fqsen": "\\Doctrine\\Common\\EventSubscriber", + "name": "EventSubscriber", + "summary": "An\u0020EventSubscriber\u0020knows\u0020what\u0020events\u0020it\u0020is\u0020interested\u0020in.", + "url": "classes/Doctrine-Common-EventSubscriber.html" + }, { + "fqsen": "\\Doctrine\\Common\\EventSubscriber\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "Returns\u0020an\u0020array\u0020of\u0020events\u0020this\u0020subscriber\u0020wants\u0020to\u0020listen\u0020to.", + "url": "classes/Doctrine-Common-EventSubscriber.html#method_getSubscribedEvents" + }, { + "fqsen": "\\Doctrine\\Inflector\\CachedWordInflector", + "name": "CachedWordInflector", + "summary": "", + "url": "classes/Doctrine-Inflector-CachedWordInflector.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\CachedWordInflector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-CachedWordInflector.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\CachedWordInflector\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-CachedWordInflector.html#method_inflect" + }, { + "fqsen": "\\Doctrine\\Inflector\\CachedWordInflector\u003A\u003A\u0024wordInflector", + "name": "wordInflector", + "summary": "", + "url": "classes/Doctrine-Inflector-CachedWordInflector.html#property_wordInflector" + }, { + "fqsen": "\\Doctrine\\Inflector\\CachedWordInflector\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Doctrine-Inflector-CachedWordInflector.html#property_cache" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory", + "name": "GenericLanguageInflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Builds\u0020the\u0020inflector\u0020instance\u0020with\u0020all\u0020applicable\u0020rules", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#method_build" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003AwithSingularRules\u0028\u0029", + "name": "withSingularRules", + "summary": "Applies\u0020custom\u0020rules\u0020for\u0020singularisation", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#method_withSingularRules" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003AwithPluralRules\u0028\u0029", + "name": "withPluralRules", + "summary": "Applies\u0020custom\u0020rules\u0020for\u0020pluralisation", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#method_withPluralRules" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003A\u0024singularRulesets", + "name": "singularRulesets", + "summary": "", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#property_singularRulesets" + }, { + "fqsen": "\\Doctrine\\Inflector\\GenericLanguageInflectorFactory\u003A\u003A\u0024pluralRulesets", + "name": "pluralRulesets", + "summary": "", + "url": "classes/Doctrine-Inflector-GenericLanguageInflectorFactory.html#property_pluralRulesets" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector", + "name": "Inflector", + "summary": "", + "url": "classes/Doctrine-Inflector-Inflector.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Inflector.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Atableize\u0028\u0029", + "name": "tableize", + "summary": "Converts\u0020a\u0020word\u0020into\u0020the\u0020format\u0020for\u0020a\u0020Doctrine\u0020table\u0020name.\u0020Converts\u0020\u0027ModelName\u0027\u0020to\u0020\u0027model_name\u0027.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_tableize" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Aclassify\u0028\u0029", + "name": "classify", + "summary": "Converts\u0020a\u0020word\u0020into\u0020the\u0020format\u0020for\u0020a\u0020Doctrine\u0020class\u0020name.\u0020Converts\u0020\u0027table_name\u0027\u0020to\u0020\u0027TableName\u0027.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_classify" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Acamelize\u0028\u0029", + "name": "camelize", + "summary": "Camelizes\u0020a\u0020word.\u0020This\u0020uses\u0020the\u0020classify\u0028\u0029\u0020method\u0020and\u0020turns\u0020the\u0020first\u0020character\u0020to\u0020lowercase.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_camelize" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Acapitalize\u0028\u0029", + "name": "capitalize", + "summary": "Uppercases\u0020words\u0020with\u0020configurable\u0020delimiters\u0020between\u0020words.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_capitalize" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003AseemsUtf8\u0028\u0029", + "name": "seemsUtf8", + "summary": "Checks\u0020if\u0020the\u0020given\u0020string\u0020seems\u0020like\u0020it\u0020has\u0020utf8\u0020characters\u0020in\u0020it.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_seemsUtf8" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Aunaccent\u0028\u0029", + "name": "unaccent", + "summary": "Remove\u0020any\u0020illegal\u0020characters,\u0020accents,\u0020etc.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_unaccent" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Aurlize\u0028\u0029", + "name": "urlize", + "summary": "Convert\u0020any\u0020passed\u0020string\u0020to\u0020a\u0020url\u0020friendly\u0020string.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_urlize" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Asingularize\u0028\u0029", + "name": "singularize", + "summary": "Returns\u0020a\u0020word\u0020in\u0020singular\u0020form.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_singularize" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003Apluralize\u0028\u0029", + "name": "pluralize", + "summary": "Returns\u0020a\u0020word\u0020in\u0020plural\u0020form.", + "url": "classes/Doctrine-Inflector-Inflector.html#method_pluralize" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003AACCENTED_CHARACTERS", + "name": "ACCENTED_CHARACTERS", + "summary": "", + "url": "classes/Doctrine-Inflector-Inflector.html#constant_ACCENTED_CHARACTERS" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003A\u0024singularizer", + "name": "singularizer", + "summary": "", + "url": "classes/Doctrine-Inflector-Inflector.html#property_singularizer" + }, { + "fqsen": "\\Doctrine\\Inflector\\Inflector\u003A\u003A\u0024pluralizer", + "name": "pluralizer", + "summary": "", + "url": "classes/Doctrine-Inflector-Inflector.html#property_pluralizer" + }, { + "fqsen": "\\Doctrine\\Inflector\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\InflectorFactory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "", + "url": "classes/Doctrine-Inflector-InflectorFactory.html#method_create" + }, { + "fqsen": "\\Doctrine\\Inflector\\InflectorFactory\u003A\u003AcreateForLanguage\u0028\u0029", + "name": "createForLanguage", + "summary": "", + "url": "classes/Doctrine-Inflector-InflectorFactory.html#method_createForLanguage" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language", + "name": "Language", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003AENGLISH", + "name": "ENGLISH", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#constant_ENGLISH" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003AFRENCH", + "name": "FRENCH", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#constant_FRENCH" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003ANORWEGIAN_BOKMAL", + "name": "NORWEGIAN_BOKMAL", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#constant_NORWEGIAN_BOKMAL" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003APORTUGUESE", + "name": "PORTUGUESE", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#constant_PORTUGUESE" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003ASPANISH", + "name": "SPANISH", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#constant_SPANISH" + }, { + "fqsen": "\\Doctrine\\Inflector\\Language\u003A\u003ATURKISH", + "name": "TURKISH", + "summary": "", + "url": "classes/Doctrine-Inflector-Language.html#constant_TURKISH" + }, { + "fqsen": "\\Doctrine\\Inflector\\LanguageInflectorFactory", + "name": "LanguageInflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-LanguageInflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\LanguageInflectorFactory\u003A\u003AwithSingularRules\u0028\u0029", + "name": "withSingularRules", + "summary": "Applies\u0020custom\u0020rules\u0020for\u0020singularisation", + "url": "classes/Doctrine-Inflector-LanguageInflectorFactory.html#method_withSingularRules" + }, { + "fqsen": "\\Doctrine\\Inflector\\LanguageInflectorFactory\u003A\u003AwithPluralRules\u0028\u0029", + "name": "withPluralRules", + "summary": "Applies\u0020custom\u0020rules\u0020for\u0020pluralisation", + "url": "classes/Doctrine-Inflector-LanguageInflectorFactory.html#method_withPluralRules" + }, { + "fqsen": "\\Doctrine\\Inflector\\LanguageInflectorFactory\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Builds\u0020the\u0020inflector\u0020instance\u0020with\u0020all\u0020applicable\u0020rules", + "url": "classes/Doctrine-Inflector-LanguageInflectorFactory.html#method_build" + }, { + "fqsen": "\\Doctrine\\Inflector\\NoopWordInflector", + "name": "NoopWordInflector", + "summary": "", + "url": "classes/Doctrine-Inflector-NoopWordInflector.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\NoopWordInflector\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-NoopWordInflector.html#method_inflect" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Inflectible", + "name": "Inflectible", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Inflectible.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Inflectible\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Inflectible.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Inflectible\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Inflectible.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Inflectible\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Inflectible.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\InflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-InflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\InflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-InflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Rules", + "name": "Rules", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Rules\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Rules.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Rules\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Rules.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Uninflected", + "name": "Uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Uninflected.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Uninflected\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Uninflected.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Uninflected\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Uninflected.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English\\Uninflected\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-English-Uninflected.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Inflectible", + "name": "Inflectible", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Inflectible.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Inflectible\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Inflectible.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Inflectible\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Inflectible.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Inflectible\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Inflectible.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\InflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-InflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\InflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-InflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Rules", + "name": "Rules", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Rules\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Rules.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Rules\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Rules.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Uninflected", + "name": "Uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Uninflected.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Uninflected\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Uninflected.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Uninflected\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Uninflected.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French\\Uninflected\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-French-Uninflected.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Inflectible", + "name": "Inflectible", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Inflectible.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Inflectible\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Inflectible.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Inflectible\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Inflectible.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Inflectible\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Inflectible.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\InflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-InflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\InflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-InflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Rules", + "name": "Rules", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Rules\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Rules.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Rules\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Rules.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Uninflected", + "name": "Uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Uninflected.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Uninflected\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Uninflected.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Uninflected\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Uninflected.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal\\Uninflected\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-NorwegianBokmal-Uninflected.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern", + "name": "Pattern", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern\u003A\u003AgetPattern\u0028\u0029", + "name": "getPattern", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html#method_getPattern" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern\u003A\u003AgetRegex\u0028\u0029", + "name": "getRegex", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html#method_getRegex" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern\u003A\u003Amatches\u0028\u0029", + "name": "matches", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html#method_matches" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern\u003A\u003A\u0024pattern", + "name": "pattern", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html#property_pattern" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Pattern\u003A\u003A\u0024regex", + "name": "regex", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Pattern.html#property_regex" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Patterns", + "name": "Patterns", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Patterns.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Patterns\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Patterns.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Patterns\u003A\u003Amatches\u0028\u0029", + "name": "matches", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Patterns.html#method_matches" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Patterns\u003A\u003A\u0024patterns", + "name": "patterns", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Patterns.html#property_patterns" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Patterns\u003A\u003A\u0024regex", + "name": "regex", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Patterns.html#property_regex" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Inflectible", + "name": "Inflectible", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Inflectible.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Inflectible\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Inflectible.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Inflectible\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Inflectible.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Inflectible\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Inflectible.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\InflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-InflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\InflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-InflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Rules", + "name": "Rules", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Rules\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Rules.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Rules\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Rules.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Uninflected", + "name": "Uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Uninflected.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Uninflected\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Uninflected.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Uninflected\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Uninflected.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese\\Uninflected\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Portuguese-Uninflected.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset", + "name": "Ruleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003AgetRegular\u0028\u0029", + "name": "getRegular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#method_getRegular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003AgetUninflected\u0028\u0029", + "name": "getUninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#method_getUninflected" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003A\u0024regular", + "name": "regular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#property_regular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003A\u0024uninflected", + "name": "uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#property_uninflected" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Ruleset\u003A\u003A\u0024irregular", + "name": "irregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Ruleset.html#property_irregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Inflectible", + "name": "Inflectible", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Inflectible.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Inflectible\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Inflectible.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Inflectible\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Inflectible.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Inflectible\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Inflectible.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\InflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-InflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\InflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-InflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Rules", + "name": "Rules", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Rules\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Rules.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Rules\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Rules.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Uninflected", + "name": "Uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Uninflected.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Uninflected\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Uninflected.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Uninflected\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Uninflected.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish\\Uninflected\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Spanish-Uninflected.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitution", + "name": "Substitution", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitution.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitution\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitution.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitution\u003A\u003AgetFrom\u0028\u0029", + "name": "getFrom", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitution.html#method_getFrom" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitution\u003A\u003AgetTo\u0028\u0029", + "name": "getTo", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitution.html#method_getTo" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitution\u003A\u003A\u0024from", + "name": "from", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitution.html#property_from" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitution\u003A\u003A\u0024to", + "name": "to", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitution.html#property_to" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitutions", + "name": "Substitutions", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitutions.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitutions\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitutions.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitutions\u003A\u003AgetFlippedSubstitutions\u0028\u0029", + "name": "getFlippedSubstitutions", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitutions.html#method_getFlippedSubstitutions" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitutions\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitutions.html#method_inflect" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Substitutions\u003A\u003A\u0024substitutions", + "name": "substitutions", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Substitutions.html#property_substitutions" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation", + "name": "Transformation", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation\u003A\u003AgetPattern\u0028\u0029", + "name": "getPattern", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html#method_getPattern" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation\u003A\u003AgetReplacement\u0028\u0029", + "name": "getReplacement", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html#method_getReplacement" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html#method_inflect" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation\u003A\u003A\u0024pattern", + "name": "pattern", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html#property_pattern" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformation\u003A\u003A\u0024replacement", + "name": "replacement", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformation.html#property_replacement" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformations", + "name": "Transformations", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformations.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformations\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformations.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformations\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformations.html#method_inflect" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Transformations\u003A\u003A\u0024transformations", + "name": "transformations", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Transformations.html#property_transformations" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Inflectible", + "name": "Inflectible", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Inflectible.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Inflectible\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Inflectible.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Inflectible\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Inflectible.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Inflectible\u003A\u003AgetIrregular\u0028\u0029", + "name": "getIrregular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Inflectible.html#method_getIrregular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\InflectorFactory", + "name": "InflectorFactory", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-InflectorFactory.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\InflectorFactory\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-InflectorFactory.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\InflectorFactory\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-InflectorFactory.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Rules", + "name": "Rules", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Rules\u003A\u003AgetSingularRuleset\u0028\u0029", + "name": "getSingularRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Rules.html#method_getSingularRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Rules\u003A\u003AgetPluralRuleset\u0028\u0029", + "name": "getPluralRuleset", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Rules.html#method_getPluralRuleset" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Uninflected", + "name": "Uninflected", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Uninflected.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Uninflected\u003A\u003AgetSingular\u0028\u0029", + "name": "getSingular", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Uninflected.html#method_getSingular" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Uninflected\u003A\u003AgetPlural\u0028\u0029", + "name": "getPlural", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Uninflected.html#method_getPlural" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish\\Uninflected\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Turkish-Uninflected.html#method_getDefault" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Word", + "name": "Word", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Word.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Word\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Word.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Word\u003A\u003AgetWord\u0028\u0029", + "name": "getWord", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Word.html#method_getWord" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Word\u003A\u003A\u0024word", + "name": "word", + "summary": "", + "url": "classes/Doctrine-Inflector-Rules-Word.html#property_word" + }, { + "fqsen": "\\Doctrine\\Inflector\\RulesetInflector", + "name": "RulesetInflector", + "summary": "Inflects\u0020based\u0020on\u0020multiple\u0020rulesets.", + "url": "classes/Doctrine-Inflector-RulesetInflector.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\RulesetInflector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Doctrine-Inflector-RulesetInflector.html#method___construct" + }, { + "fqsen": "\\Doctrine\\Inflector\\RulesetInflector\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-RulesetInflector.html#method_inflect" + }, { + "fqsen": "\\Doctrine\\Inflector\\RulesetInflector\u003A\u003A\u0024rulesets", + "name": "rulesets", + "summary": "", + "url": "classes/Doctrine-Inflector-RulesetInflector.html#property_rulesets" + }, { + "fqsen": "\\Doctrine\\Inflector\\WordInflector", + "name": "WordInflector", + "summary": "", + "url": "classes/Doctrine-Inflector-WordInflector.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\WordInflector\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "", + "url": "classes/Doctrine-Inflector-WordInflector.html#method_inflect" + }, { + "fqsen": "\\Faker\\Calculator\\Ean", + "name": "Ean", + "summary": "Utility\u0020class\u0020for\u0020validating\u0020EAN\u002D8\u0020and\u0020EAN\u002D13\u0020numbers", + "url": "classes/Faker-Calculator-Ean.html" + }, { + "fqsen": "\\Faker\\Calculator\\Ean\u003A\u003Achecksum\u0028\u0029", + "name": "checksum", + "summary": "Computes\u0020the\u0020checksum\u0020of\u0020an\u0020EAN\u0020number.", + "url": "classes/Faker-Calculator-Ean.html#method_checksum" + }, { + "fqsen": "\\Faker\\Calculator\\Ean\u003A\u003AisValid\u0028\u0029", + "name": "isValid", + "summary": "Checks\u0020whether\u0020the\u0020provided\u0020number\u0020is\u0020an\u0020EAN\u0020compliant\u0020number\u0020and\u0020that\nthe\u0020checksum\u0020is\u0020correct.", + "url": "classes/Faker-Calculator-Ean.html#method_isValid" + }, { + "fqsen": "\\Faker\\Calculator\\Ean\u003A\u003APATTERN", + "name": "PATTERN", + "summary": "", + "url": "classes/Faker-Calculator-Ean.html#constant_PATTERN" + }, { + "fqsen": "\\Faker\\Calculator\\Iban", + "name": "Iban", + "summary": "", + "url": "classes/Faker-Calculator-Iban.html" + }, { + "fqsen": "\\Faker\\Calculator\\Iban\u003A\u003Achecksum\u0028\u0029", + "name": "checksum", + "summary": "Generates\u0020IBAN\u0020Checksum", + "url": "classes/Faker-Calculator-Iban.html#method_checksum" + }, { + "fqsen": "\\Faker\\Calculator\\Iban\u003A\u003AalphaToNumber\u0028\u0029", + "name": "alphaToNumber", + "summary": "Converts\u0020letter\u0020to\u0020number", + "url": "classes/Faker-Calculator-Iban.html#method_alphaToNumber" + }, { + "fqsen": "\\Faker\\Calculator\\Iban\u003A\u003Amod97\u0028\u0029", + "name": "mod97", + "summary": "Calculates\u0020mod97\u0020on\u0020a\u0020numeric\u0020string", + "url": "classes/Faker-Calculator-Iban.html#method_mod97" + }, { + "fqsen": "\\Faker\\Calculator\\Iban\u003A\u003AisValid\u0028\u0029", + "name": "isValid", + "summary": "Checks\u0020whether\u0020an\u0020IBAN\u0020has\u0020a\u0020valid\u0020checksum", + "url": "classes/Faker-Calculator-Iban.html#method_isValid" + }, { + "fqsen": "\\Faker\\Calculator\\Inn", + "name": "Inn", + "summary": "", + "url": "classes/Faker-Calculator-Inn.html" + }, { + "fqsen": "\\Faker\\Calculator\\Inn\u003A\u003Achecksum\u0028\u0029", + "name": "checksum", + "summary": "Generates\u0020INN\u0020Checksum", + "url": "classes/Faker-Calculator-Inn.html#method_checksum" + }, { + "fqsen": "\\Faker\\Calculator\\Inn\u003A\u003AisValid\u0028\u0029", + "name": "isValid", + "summary": "Checks\u0020whether\u0020an\u0020INN\u0020has\u0020a\u0020valid\u0020checksum", + "url": "classes/Faker-Calculator-Inn.html#method_isValid" + }, { + "fqsen": "\\Faker\\Calculator\\Isbn", + "name": "Isbn", + "summary": "Utility\u0020class\u0020for\u0020validating\u0020ISBN\u002D10", + "url": "classes/Faker-Calculator-Isbn.html" + }, { + "fqsen": "\\Faker\\Calculator\\Isbn\u003A\u003Achecksum\u0028\u0029", + "name": "checksum", + "summary": "ISBN\u002D10\u0020check\u0020digit", + "url": "classes/Faker-Calculator-Isbn.html#method_checksum" + }, { + "fqsen": "\\Faker\\Calculator\\Isbn\u003A\u003AisValid\u0028\u0029", + "name": "isValid", + "summary": "Checks\u0020whether\u0020the\u0020provided\u0020number\u0020is\u0020a\u0020valid\u0020ISBN\u002D10\u0020number", + "url": "classes/Faker-Calculator-Isbn.html#method_isValid" + }, { + "fqsen": "\\Faker\\Calculator\\Isbn\u003A\u003APATTERN", + "name": "PATTERN", + "summary": "", + "url": "classes/Faker-Calculator-Isbn.html#constant_PATTERN" + }, { + "fqsen": "\\Faker\\Calculator\\Luhn", + "name": "Luhn", + "summary": "Utility\u0020class\u0020for\u0020generating\u0020and\u0020validating\u0020Luhn\u0020numbers.", + "url": "classes/Faker-Calculator-Luhn.html" + }, { + "fqsen": "\\Faker\\Calculator\\Luhn\u003A\u003Achecksum\u0028\u0029", + "name": "checksum", + "summary": "", + "url": "classes/Faker-Calculator-Luhn.html#method_checksum" + }, { + "fqsen": "\\Faker\\Calculator\\Luhn\u003A\u003AcomputeCheckDigit\u0028\u0029", + "name": "computeCheckDigit", + "summary": "", + "url": "classes/Faker-Calculator-Luhn.html#method_computeCheckDigit" + }, { + "fqsen": "\\Faker\\Calculator\\Luhn\u003A\u003AisValid\u0028\u0029", + "name": "isValid", + "summary": "Checks\u0020whether\u0020a\u0020number\u0020\u0028partial\u0020number\u0020\u002B\u0020check\u0020digit\u0029\u0020is\u0020Luhn\u0020compliant", + "url": "classes/Faker-Calculator-Luhn.html#method_isValid" + }, { + "fqsen": "\\Faker\\Calculator\\Luhn\u003A\u003AgenerateLuhnNumber\u0028\u0029", + "name": "generateLuhnNumber", + "summary": "Generate\u0020a\u0020Luhn\u0020compliant\u0020number.", + "url": "classes/Faker-Calculator-Luhn.html#method_generateLuhnNumber" + }, { + "fqsen": "\\Faker\\Calculator\\TCNo", + "name": "TCNo", + "summary": "", + "url": "classes/Faker-Calculator-TCNo.html" + }, { + "fqsen": "\\Faker\\Calculator\\TCNo\u003A\u003Achecksum\u0028\u0029", + "name": "checksum", + "summary": "Generates\u0020Turkish\u0020Identity\u0020Number\u0020Checksum\nGets\u0020first\u00209\u0020digit\u0020as\u0020prefix\u0020and\u0020calculates\u0020checksum", + "url": "classes/Faker-Calculator-TCNo.html#method_checksum" + }, { + "fqsen": "\\Faker\\Calculator\\TCNo\u003A\u003AisValid\u0028\u0029", + "name": "isValid", + "summary": "Checks\u0020whether\u0020a\u0020TCNo\u0020has\u0020a\u0020valid\u0020checksum", + "url": "classes/Faker-Calculator-TCNo.html#method_isValid" + }, { + "fqsen": "\\Faker\\ChanceGenerator", + "name": "ChanceGenerator", + "summary": "This\u0020generator\u0020returns\u0020a\u0020default\u0020value\u0020for\u0020all\u0020called\u0020properties\nand\u0020methods.\u0020It\u0020works\u0020with\u0020Faker\\Generator\u003A\u003Aoptional\u0028\u0029.", + "url": "classes/Faker-ChanceGenerator.html" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ChanceGenerator.html#method___construct" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003Aext\u0028\u0029", + "name": "ext", + "summary": "", + "url": "classes/Faker-ChanceGenerator.html#method_ext" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Catch\u0020and\u0020proxy\u0020all\u0020generator\u0020calls\u0020but\u0020return\u0020only\u0020valid\u0020values", + "url": "classes/Faker-ChanceGenerator.html#method___get" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Faker-ChanceGenerator.html#method___call" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ChanceGenerator.html#property_generator" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003A\u0024weight", + "name": "weight", + "summary": "", + "url": "classes/Faker-ChanceGenerator.html#property_weight" + }, { + "fqsen": "\\Faker\\ChanceGenerator\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/Faker-ChanceGenerator.html#property_default" + }, { + "fqsen": "\\Faker\\Container\\Container", + "name": "Container", + "summary": "A\u0020simple\u0020implementation\u0020of\u0020a\u0020container.", + "url": "classes/Faker-Container-Container.html" + }, { + "fqsen": "\\Faker\\Container\\Container\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020container\u0020object\u0020with\u0020a\u0020set\u0020of\u0020definitions.\u0020The\u0020array\u0020value\u0020MUST\nproduce\u0020an\u0020object\u0020that\u0020implements\u0020Extension.", + "url": "classes/Faker-Container-Container.html#method___construct" + }, { + "fqsen": "\\Faker\\Container\\Container\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieve\u0020a\u0020definition\u0020from\u0020the\u0020container.", + "url": "classes/Faker-Container-Container.html#method_get" + }, { + "fqsen": "\\Faker\\Container\\Container\u003A\u003AgetService\u0028\u0029", + "name": "getService", + "summary": "Get\u0020the\u0020service\u0020from\u0020a\u0020definition.", + "url": "classes/Faker-Container-Container.html#method_getService" + }, { + "fqsen": "\\Faker\\Container\\Container\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Check\u0020if\u0020the\u0020container\u0020contains\u0020a\u0020given\u0020identifier.", + "url": "classes/Faker-Container-Container.html#method_has" + }, { + "fqsen": "\\Faker\\Container\\Container\u003A\u003A\u0024definitions", + "name": "definitions", + "summary": "", + "url": "classes/Faker-Container-Container.html#property_definitions" + }, { + "fqsen": "\\Faker\\Container\\Container\u003A\u003A\u0024services", + "name": "services", + "summary": "", + "url": "classes/Faker-Container-Container.html#property_services" + }, { + "fqsen": "\\Faker\\Container\\ContainerBuilder", + "name": "ContainerBuilder", + "summary": "", + "url": "classes/Faker-Container-ContainerBuilder.html" + }, { + "fqsen": "\\Faker\\Container\\ContainerBuilder\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "", + "url": "classes/Faker-Container-ContainerBuilder.html#method_add" + }, { + "fqsen": "\\Faker\\Container\\ContainerBuilder\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "", + "url": "classes/Faker-Container-ContainerBuilder.html#method_build" + }, { + "fqsen": "\\Faker\\Container\\ContainerBuilder\u003A\u003AdefaultExtensions\u0028\u0029", + "name": "defaultExtensions", + "summary": "", + "url": "classes/Faker-Container-ContainerBuilder.html#method_defaultExtensions" + }, { + "fqsen": "\\Faker\\Container\\ContainerBuilder\u003A\u003AwithDefaultExtensions\u0028\u0029", + "name": "withDefaultExtensions", + "summary": "", + "url": "classes/Faker-Container-ContainerBuilder.html#method_withDefaultExtensions" + }, { + "fqsen": "\\Faker\\Container\\ContainerBuilder\u003A\u003A\u0024definitions", + "name": "definitions", + "summary": "", + "url": "classes/Faker-Container-ContainerBuilder.html#property_definitions" + }, { + "fqsen": "\\Faker\\Container\\ContainerException", + "name": "ContainerException", + "summary": "", + "url": "classes/Faker-Container-ContainerException.html" + }, { + "fqsen": "\\Faker\\Container\\ContainerInterface", + "name": "ContainerInterface", + "summary": "Describes\u0020the\u0020interface\u0020of\u0020a\u0020container\u0020that\u0020exposes\u0020methods\u0020to\u0020read\u0020its\u0020entries.", + "url": "classes/Faker-Container-ContainerInterface.html" + }, { + "fqsen": "\\Faker\\Container\\NotInContainerException", + "name": "NotInContainerException", + "summary": "", + "url": "classes/Faker-Container-NotInContainerException.html" + }, { + "fqsen": "\\Faker\\Core\\Barcode", + "name": "Barcode", + "summary": "", + "url": "classes/Faker-Core-Barcode.html" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Core-Barcode.html#method___construct" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003Aean\u0028\u0029", + "name": "ean", + "summary": "", + "url": "classes/Faker-Core-Barcode.html#method_ean" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003Aean13\u0028\u0029", + "name": "ean13", + "summary": "Get\u0020a\u0020random\u0020EAN13\u0020barcode.", + "url": "classes/Faker-Core-Barcode.html#method_ean13" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003Aean8\u0028\u0029", + "name": "ean8", + "summary": "Get\u0020a\u0020random\u0020EAN8\u0020barcode.", + "url": "classes/Faker-Core-Barcode.html#method_ean8" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003Aisbn10\u0028\u0029", + "name": "isbn10", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D10\u0020code", + "url": "classes/Faker-Core-Barcode.html#method_isbn10" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003Aisbn13\u0028\u0029", + "name": "isbn13", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D13\u0020code", + "url": "classes/Faker-Core-Barcode.html#method_isbn13" + }, { + "fqsen": "\\Faker\\Core\\Barcode\u003A\u003A\u0024numberExtension", + "name": "numberExtension", + "summary": "", + "url": "classes/Faker-Core-Barcode.html#property_numberExtension" + }, { + "fqsen": "\\Faker\\Core\\Blood", + "name": "Blood", + "summary": "", + "url": "classes/Faker-Core-Blood.html" + }, { + "fqsen": "\\Faker\\Core\\Blood\u003A\u003AbloodType\u0028\u0029", + "name": "bloodType", + "summary": "Get\u0020an\u0020actual\u0020blood\u0020type", + "url": "classes/Faker-Core-Blood.html#method_bloodType" + }, { + "fqsen": "\\Faker\\Core\\Blood\u003A\u003AbloodRh\u0028\u0029", + "name": "bloodRh", + "summary": "Get\u0020a\u0020random\u0020resis\u0020value", + "url": "classes/Faker-Core-Blood.html#method_bloodRh" + }, { + "fqsen": "\\Faker\\Core\\Blood\u003A\u003AbloodGroup\u0028\u0029", + "name": "bloodGroup", + "summary": "Get\u0020a\u0020full\u0020blood\u0020group", + "url": "classes/Faker-Core-Blood.html#method_bloodGroup" + }, { + "fqsen": "\\Faker\\Core\\Blood\u003A\u003A\u0024bloodTypes", + "name": "bloodTypes", + "summary": "", + "url": "classes/Faker-Core-Blood.html#property_bloodTypes" + }, { + "fqsen": "\\Faker\\Core\\Blood\u003A\u003A\u0024bloodRhFactors", + "name": "bloodRhFactors", + "summary": "", + "url": "classes/Faker-Core-Blood.html#property_bloodRhFactors" + }, { + "fqsen": "\\Faker\\Core\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Core-Color.html" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Core-Color.html#method___construct" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003AhexColor\u0028\u0029", + "name": "hexColor", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_hexColor" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003AsafeHexColor\u0028\u0029", + "name": "safeHexColor", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_safeHexColor" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003ArgbColorAsArray\u0028\u0029", + "name": "rgbColorAsArray", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_rgbColorAsArray" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003ArgbColor\u0028\u0029", + "name": "rgbColor", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_rgbColor" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003ArgbCssColor\u0028\u0029", + "name": "rgbCssColor", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_rgbCssColor" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003ArgbaCssColor\u0028\u0029", + "name": "rgbaCssColor", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_rgbaCssColor" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003AsafeColorName\u0028\u0029", + "name": "safeColorName", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_safeColorName" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003AcolorName\u0028\u0029", + "name": "colorName", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_colorName" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003AhslColor\u0028\u0029", + "name": "hslColor", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_hslColor" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003AhslColorAsArray\u0028\u0029", + "name": "hslColorAsArray", + "summary": "", + "url": "classes/Faker-Core-Color.html#method_hslColorAsArray" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003A\u0024numberExtension", + "name": "numberExtension", + "summary": "", + "url": "classes/Faker-Core-Color.html#property_numberExtension" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Core-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Core\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Core-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Core\\Coordinates", + "name": "Coordinates", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html" + }, { + "fqsen": "\\Faker\\Core\\Coordinates\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html#method___construct" + }, { + "fqsen": "\\Faker\\Core\\Coordinates\u003A\u003Alatitude\u0028\u0029", + "name": "latitude", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html#method_latitude" + }, { + "fqsen": "\\Faker\\Core\\Coordinates\u003A\u003Alongitude\u0028\u0029", + "name": "longitude", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html#method_longitude" + }, { + "fqsen": "\\Faker\\Core\\Coordinates\u003A\u003AlocalCoordinates\u0028\u0029", + "name": "localCoordinates", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html#method_localCoordinates" + }, { + "fqsen": "\\Faker\\Core\\Coordinates\u003A\u003ArandomFloat\u0028\u0029", + "name": "randomFloat", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html#method_randomFloat" + }, { + "fqsen": "\\Faker\\Core\\Coordinates\u003A\u003A\u0024numberExtension", + "name": "numberExtension", + "summary": "", + "url": "classes/Faker-Core-Coordinates.html#property_numberExtension" + }, { + "fqsen": "\\Faker\\Core\\DateTime", + "name": "DateTime", + "summary": "", + "url": "classes/Faker-Core-DateTime.html" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AgetTimestamp\u0028\u0029", + "name": "getTimestamp", + "summary": "Get\u0020the\u0020POSIX\u002Dtimestamp\u0020of\u0020a\u0020DateTime,\u0020int\u0020or\u0020string.", + "url": "classes/Faker-Core-DateTime.html#method_getTimestamp" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AgetTimestampDateTime\u0028\u0029", + "name": "getTimestampDateTime", + "summary": "Get\u0020a\u0020DateTime\u0020created\u0020based\u0020on\u0020a\u0020POSIX\u002Dtimestamp.", + "url": "classes/Faker-Core-DateTime.html#method_getTimestampDateTime" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AresolveTimezone\u0028\u0029", + "name": "resolveTimezone", + "summary": "", + "url": "classes/Faker-Core-DateTime.html#method_resolveTimezone" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Internal\u0020method\u0020to\u0020set\u0020the\u0020timezone\u0020on\u0020a\u0020DateTime\u0020object.", + "url": "classes/Faker-Core-DateTime.html#method_setTimezone" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTime\u0028\u0029", + "name": "dateTime", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020\u0060\u0024until\u0060\u0020\u0028defaults\u0020to\u0020\u0022now\u0022\u0029.", + "url": "classes/Faker-Core-DateTime.html#method_dateTime" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeAD\u0028\u0029", + "name": "dateTimeAD", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020for\u0020a\u0020date\u0020between\u0020January\u00201,\u00200001,\u0020and\u0020now.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeAD" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeBetween\u0028\u0029", + "name": "dateTimeBetween", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020a\u0020random\u0020date\u0020between\u0020\u0060\u0024from\u0060\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeBetween" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeInInterval\u0028\u0029", + "name": "dateTimeInInterval", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020based\u0020on\u0020a\u0020random\u0020date\u0020between\u0020\u0060\u0024from\u0060\u0020and\u0020an\u0020interval.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeInInterval" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeThisWeek\u0028\u0029", + "name": "dateTimeThisWeek", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020week.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeThisWeek" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeThisMonth\u0028\u0029", + "name": "dateTimeThisMonth", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020month.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeThisMonth" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeThisYear\u0028\u0029", + "name": "dateTimeThisYear", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020year.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeThisYear" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeThisDecade\u0028\u0029", + "name": "dateTimeThisDecade", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020decade.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeThisDecade" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdateTimeThisCentury\u0028\u0029", + "name": "dateTimeThisCentury", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020century.", + "url": "classes/Faker-Core-DateTime.html#method_dateTimeThisCentury" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Adate\u0028\u0029", + "name": "date", + "summary": "Get\u0020a\u0020date\u0020string\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Core-DateTime.html#method_date" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Atime\u0028\u0029", + "name": "time", + "summary": "Get\u0020a\u0020time\u0020string\u0020\u002824h\u0020format\u0020by\u0020default\u0029.", + "url": "classes/Faker-Core-DateTime.html#method_time" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AunixTime\u0028\u0029", + "name": "unixTime", + "summary": "Get\u0020a\u0020UNIX\u0020\u0028POSIX\u002Dcompatible\u0029\u0020timestamp\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Core-DateTime.html#method_unixTime" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Aiso8601\u0028\u0029", + "name": "iso8601", + "summary": "Get\u0020a\u0020date\u0020string\u0020according\u0020to\u0020the\u0020ISO\u002D8601\u0020standard.", + "url": "classes/Faker-Core-DateTime.html#method_iso8601" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AamPm\u0028\u0029", + "name": "amPm", + "summary": "Get\u0020a\u0020string\u0020containing\u0020either\u0020\u0022am\u0022\u0020or\u0020\u0022pm\u0022.", + "url": "classes/Faker-Core-DateTime.html#method_amPm" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdayOfMonth\u0028\u0029", + "name": "dayOfMonth", + "summary": "Get\u0020a\u0020localized\u0020random\u0020day\u0020of\u0020the\u0020month.", + "url": "classes/Faker-Core-DateTime.html#method_dayOfMonth" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "Get\u0020a\u0020localized\u0020random\u0020day\u0020of\u0020the\u0020week.", + "url": "classes/Faker-Core-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Amonth\u0028\u0029", + "name": "month", + "summary": "Get\u0020a\u0020random\u0020month\u0020\u0028numbered\u0029.", + "url": "classes/Faker-Core-DateTime.html#method_month" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "Get\u0020a\u0020random\u0020month.", + "url": "classes/Faker-Core-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Ayear\u0028\u0029", + "name": "year", + "summary": "Get\u0020a\u0020random\u0020year\u0020between\u00201970\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Core-DateTime.html#method_year" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Acentury\u0028\u0029", + "name": "century", + "summary": "Get\u0020a\u0020random\u0020century,\u0020formatted\u0020as\u0020Roman\u0020numerals.", + "url": "classes/Faker-Core-DateTime.html#method_century" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003Atimezone\u0028\u0029", + "name": "timezone", + "summary": "Get\u0020a\u0020random\u0020timezone,\u0020uses\u0020\u0060\\DateTimeZone\u003A\u003AlistIdentifiers\u0028\u0029\u0060\u0020internally.", + "url": "classes/Faker-Core-DateTime.html#method_timezone" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003A\u0024centuries", + "name": "centuries", + "summary": "", + "url": "classes/Faker-Core-DateTime.html#property_centuries" + }, { + "fqsen": "\\Faker\\Core\\DateTime\u003A\u003A\u0024defaultTimezone", + "name": "defaultTimezone", + "summary": "", + "url": "classes/Faker-Core-DateTime.html#property_defaultTimezone" + }, { + "fqsen": "\\Faker\\Core\\File", + "name": "File", + "summary": "", + "url": "classes/Faker-Core-File.html" + }, { + "fqsen": "\\Faker\\Core\\File\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020a\u0020random\u0020MIME\u0020type", + "url": "classes/Faker-Core-File.html#method_mimeType" + }, { + "fqsen": "\\Faker\\Core\\File\u003A\u003Aextension\u0028\u0029", + "name": "extension", + "summary": "Get\u0020a\u0020random\u0020file\u0020extension\u0020\u0028without\u0020a\u0020dot\u0029", + "url": "classes/Faker-Core-File.html#method_extension" + }, { + "fqsen": "\\Faker\\Core\\File\u003A\u003AfilePath\u0028\u0029", + "name": "filePath", + "summary": "Get\u0020a\u0020full\u0020path\u0020to\u0020a\u0020new\u0020real\u0020file\u0020on\u0020the\u0020system.", + "url": "classes/Faker-Core-File.html#method_filePath" + }, { + "fqsen": "\\Faker\\Core\\File\u003A\u003A\u0024mimeTypes", + "name": "mimeTypes", + "summary": "MIME\u0020types\u0020from\u0020the\u0020apache.org\u0020file.\u0020Some\u0020types\u0020are\u0020truncated.", + "url": "classes/Faker-Core-File.html#property_mimeTypes" + }, { + "fqsen": "\\Faker\\Core\\Number", + "name": "Number", + "summary": "", + "url": "classes/Faker-Core-Number.html" + }, { + "fqsen": "\\Faker\\Core\\Number\u003A\u003AnumberBetween\u0028\u0029", + "name": "numberBetween", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u0020\u0024int1\u0020and\u0020\u0024int2\u0020\u0028any\u0020order\u0029", + "url": "classes/Faker-Core-Number.html#method_numberBetween" + }, { + "fqsen": "\\Faker\\Core\\Number\u003A\u003ArandomDigit\u0028\u0029", + "name": "randomDigit", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00200\u0020and\u00209", + "url": "classes/Faker-Core-Number.html#method_randomDigit" + }, { + "fqsen": "\\Faker\\Core\\Number\u003A\u003ArandomDigitNot\u0028\u0029", + "name": "randomDigitNot", + "summary": "Generates\u0020a\u0020random\u0020digit,\u0020which\u0020cannot\u0020be\u0020\u0024except", + "url": "classes/Faker-Core-Number.html#method_randomDigitNot" + }, { + "fqsen": "\\Faker\\Core\\Number\u003A\u003ArandomDigitNotZero\u0028\u0029", + "name": "randomDigitNotZero", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00201\u0020and\u00209", + "url": "classes/Faker-Core-Number.html#method_randomDigitNotZero" + }, { + "fqsen": "\\Faker\\Core\\Number\u003A\u003ArandomFloat\u0028\u0029", + "name": "randomFloat", + "summary": "Return\u0020a\u0020random\u0020float\u0020number", + "url": "classes/Faker-Core-Number.html#method_randomFloat" + }, { + "fqsen": "\\Faker\\Core\\Number\u003A\u003ArandomNumber\u0028\u0029", + "name": "randomNumber", + "summary": "Returns\u0020a\u0020random\u0020integer\u0020with\u00200\u0020to\u0020\u0024nbDigits\u0020digits.", + "url": "classes/Faker-Core-Number.html#method_randomNumber" + }, { + "fqsen": "\\Faker\\Core\\Uuid", + "name": "Uuid", + "summary": "", + "url": "classes/Faker-Core-Uuid.html" + }, { + "fqsen": "\\Faker\\Core\\Uuid\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Core-Uuid.html#method___construct" + }, { + "fqsen": "\\Faker\\Core\\Uuid\u003A\u003Auuid3\u0028\u0029", + "name": "uuid3", + "summary": "Generate\u0020name\u0020based\u0020md5\u0020UUID\u0020\u0028version\u00203\u0029.", + "url": "classes/Faker-Core-Uuid.html#method_uuid3" + }, { + "fqsen": "\\Faker\\Core\\Uuid\u003A\u003A\u0024numberExtension", + "name": "numberExtension", + "summary": "", + "url": "classes/Faker-Core-Uuid.html#property_numberExtension" + }, { + "fqsen": "\\Faker\\Core\\Version", + "name": "Version", + "summary": "", + "url": "classes/Faker-Core-Version.html" + }, { + "fqsen": "\\Faker\\Core\\Version\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Core-Version.html#method___construct" + }, { + "fqsen": "\\Faker\\Core\\Version\u003A\u003Asemver\u0028\u0029", + "name": "semver", + "summary": "Represents\u0020v2.0.0\u0020of\u0020the\u0020semantic\u0020versioning\u003A\u0020https\u003A\/\/semver.org\/spec\/v2.0.0.html", + "url": "classes/Faker-Core-Version.html#method_semver" + }, { + "fqsen": "\\Faker\\Core\\Version\u003A\u003AsemverPreReleaseIdentifier\u0028\u0029", + "name": "semverPreReleaseIdentifier", + "summary": "Common\u0020pre\u002Drelease\u0020identifier", + "url": "classes/Faker-Core-Version.html#method_semverPreReleaseIdentifier" + }, { + "fqsen": "\\Faker\\Core\\Version\u003A\u003AsemverBuildIdentifier\u0028\u0029", + "name": "semverBuildIdentifier", + "summary": "Common\u0020random\u0020build\u0020identifier", + "url": "classes/Faker-Core-Version.html#method_semverBuildIdentifier" + }, { + "fqsen": "\\Faker\\Core\\Version\u003A\u003A\u0024numberExtension", + "name": "numberExtension", + "summary": "", + "url": "classes/Faker-Core-Version.html#property_numberExtension" + }, { + "fqsen": "\\Faker\\Core\\Version\u003A\u003A\u0024semverCommonPreReleaseIdentifiers", + "name": "semverCommonPreReleaseIdentifiers", + "summary": "", + "url": "classes/Faker-Core-Version.html#property_semverCommonPreReleaseIdentifiers" + }, { + "fqsen": "\\Faker\\DefaultGenerator", + "name": "DefaultGenerator", + "summary": "This\u0020generator\u0020returns\u0020a\u0020default\u0020value\u0020for\u0020all\u0020called\u0020properties\nand\u0020methods.", + "url": "classes/Faker-DefaultGenerator.html" + }, { + "fqsen": "\\Faker\\DefaultGenerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-DefaultGenerator.html#method___construct" + }, { + "fqsen": "\\Faker\\DefaultGenerator\u003A\u003Aext\u0028\u0029", + "name": "ext", + "summary": "", + "url": "classes/Faker-DefaultGenerator.html#method_ext" + }, { + "fqsen": "\\Faker\\DefaultGenerator\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "", + "url": "classes/Faker-DefaultGenerator.html#method___get" + }, { + "fqsen": "\\Faker\\DefaultGenerator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Faker-DefaultGenerator.html#method___call" + }, { + "fqsen": "\\Faker\\DefaultGenerator\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/Faker-DefaultGenerator.html#property_default" + }, { + "fqsen": "\\Faker\\Documentor", + "name": "Documentor", + "summary": "", + "url": "classes/Faker-Documentor.html" + }, { + "fqsen": "\\Faker\\Documentor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Documentor.html#method___construct" + }, { + "fqsen": "\\Faker\\Documentor\u003A\u003AgetFormatters\u0028\u0029", + "name": "getFormatters", + "summary": "", + "url": "classes/Faker-Documentor.html#method_getFormatters" + }, { + "fqsen": "\\Faker\\Documentor\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-Documentor.html#property_generator" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension", + "name": "AddressExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-AddressExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Extension-AddressExtension.html#method_address" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020city\u0020name.", + "url": "classes/Faker-Extension-AddressExtension.html#method_city" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension\u003A\u003Apostcode\u0028\u0029", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Extension-AddressExtension.html#method_postcode" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Extension-AddressExtension.html#method_streetName" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension\u003A\u003AstreetAddress\u0028\u0029", + "name": "streetAddress", + "summary": "", + "url": "classes/Faker-Extension-AddressExtension.html#method_streetAddress" + }, { + "fqsen": "\\Faker\\Extension\\AddressExtension\u003A\u003AbuildingNumber\u0028\u0029", + "name": "buildingNumber", + "summary": "Randomly\u0020return\u0020a\u0020building\u0020number.", + "url": "classes/Faker-Extension-AddressExtension.html#method_buildingNumber" + }, { + "fqsen": "\\Faker\\Extension\\BarcodeExtension", + "name": "BarcodeExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-BarcodeExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\BarcodeExtension\u003A\u003Aean13\u0028\u0029", + "name": "ean13", + "summary": "Get\u0020a\u0020random\u0020EAN13\u0020barcode.", + "url": "classes/Faker-Extension-BarcodeExtension.html#method_ean13" + }, { + "fqsen": "\\Faker\\Extension\\BarcodeExtension\u003A\u003Aean8\u0028\u0029", + "name": "ean8", + "summary": "Get\u0020a\u0020random\u0020EAN8\u0020barcode.", + "url": "classes/Faker-Extension-BarcodeExtension.html#method_ean8" + }, { + "fqsen": "\\Faker\\Extension\\BarcodeExtension\u003A\u003Aisbn10\u0028\u0029", + "name": "isbn10", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D10\u0020code", + "url": "classes/Faker-Extension-BarcodeExtension.html#method_isbn10" + }, { + "fqsen": "\\Faker\\Extension\\BarcodeExtension\u003A\u003Aisbn13\u0028\u0029", + "name": "isbn13", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D13\u0020code", + "url": "classes/Faker-Extension-BarcodeExtension.html#method_isbn13" + }, { + "fqsen": "\\Faker\\Extension\\BloodExtension", + "name": "BloodExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-BloodExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\BloodExtension\u003A\u003AbloodType\u0028\u0029", + "name": "bloodType", + "summary": "Get\u0020an\u0020actual\u0020blood\u0020type", + "url": "classes/Faker-Extension-BloodExtension.html#method_bloodType" + }, { + "fqsen": "\\Faker\\Extension\\BloodExtension\u003A\u003AbloodRh\u0028\u0029", + "name": "bloodRh", + "summary": "Get\u0020a\u0020random\u0020resis\u0020value", + "url": "classes/Faker-Extension-BloodExtension.html#method_bloodRh" + }, { + "fqsen": "\\Faker\\Extension\\BloodExtension\u003A\u003AbloodGroup\u0028\u0029", + "name": "bloodGroup", + "summary": "Get\u0020a\u0020full\u0020blood\u0020group", + "url": "classes/Faker-Extension-BloodExtension.html#method_bloodGroup" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension", + "name": "ColorExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-ColorExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003AhexColor\u0028\u0029", + "name": "hexColor", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_hexColor" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003AsafeHexColor\u0028\u0029", + "name": "safeHexColor", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_safeHexColor" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003ArgbColorAsArray\u0028\u0029", + "name": "rgbColorAsArray", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_rgbColorAsArray" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003ArgbColor\u0028\u0029", + "name": "rgbColor", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_rgbColor" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003ArgbCssColor\u0028\u0029", + "name": "rgbCssColor", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_rgbCssColor" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003ArgbaCssColor\u0028\u0029", + "name": "rgbaCssColor", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_rgbaCssColor" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003AsafeColorName\u0028\u0029", + "name": "safeColorName", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_safeColorName" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003AcolorName\u0028\u0029", + "name": "colorName", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_colorName" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003AhslColor\u0028\u0029", + "name": "hslColor", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_hslColor" + }, { + "fqsen": "\\Faker\\Extension\\ColorExtension\u003A\u003AhslColorAsArray\u0028\u0029", + "name": "hslColorAsArray", + "summary": "", + "url": "classes/Faker-Extension-ColorExtension.html#method_hslColorAsArray" + }, { + "fqsen": "\\Faker\\Extension\\CompanyExtension", + "name": "CompanyExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-CompanyExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\CompanyExtension\u003A\u003Acompany\u0028\u0029", + "name": "company", + "summary": "", + "url": "classes/Faker-Extension-CompanyExtension.html#method_company" + }, { + "fqsen": "\\Faker\\Extension\\CompanyExtension\u003A\u003AcompanySuffix\u0028\u0029", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Extension-CompanyExtension.html#method_companySuffix" + }, { + "fqsen": "\\Faker\\Extension\\CompanyExtension\u003A\u003AjobTitle\u0028\u0029", + "name": "jobTitle", + "summary": "", + "url": "classes/Faker-Extension-CompanyExtension.html#method_jobTitle" + }, { + "fqsen": "\\Faker\\Extension\\CountryExtension", + "name": "CountryExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-CountryExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\CountryExtension\u003A\u003Acountry\u0028\u0029", + "name": "country", + "summary": "", + "url": "classes/Faker-Extension-CountryExtension.html#method_country" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension", + "name": "DateTimeExtension", + "summary": "FakerPHP\u0020extension\u0020for\u0020Date\u002Drelated\u0020randomization.", + "url": "classes/Faker-Extension-DateTimeExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTime\u0028\u0029", + "name": "dateTime", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020\u0060\u0024until\u0060\u0020\u0028defaults\u0020to\u0020\u0022now\u0022\u0029.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTime" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeAD\u0028\u0029", + "name": "dateTimeAD", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020for\u0020a\u0020date\u0020between\u0020January\u00201,\u00200001,\u0020and\u0020now.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeAD" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeBetween\u0028\u0029", + "name": "dateTimeBetween", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020a\u0020random\u0020date\u0020between\u0020\u0060\u0024from\u0060\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeBetween" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeInInterval\u0028\u0029", + "name": "dateTimeInInterval", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020based\u0020on\u0020a\u0020random\u0020date\u0020between\u0020\u0060\u0024from\u0060\u0020and\u0020an\u0020interval.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeInInterval" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeThisWeek\u0028\u0029", + "name": "dateTimeThisWeek", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020week.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeThisWeek" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeThisMonth\u0028\u0029", + "name": "dateTimeThisMonth", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020month.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeThisMonth" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeThisYear\u0028\u0029", + "name": "dateTimeThisYear", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020year.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeThisYear" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeThisDecade\u0028\u0029", + "name": "dateTimeThisDecade", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020decade.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeThisDecade" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdateTimeThisCentury\u0028\u0029", + "name": "dateTimeThisCentury", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020century.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dateTimeThisCentury" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Adate\u0028\u0029", + "name": "date", + "summary": "Get\u0020a\u0020date\u0020string\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_date" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Atime\u0028\u0029", + "name": "time", + "summary": "Get\u0020a\u0020time\u0020string\u0020\u002824h\u0020format\u0020by\u0020default\u0029.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_time" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AunixTime\u0028\u0029", + "name": "unixTime", + "summary": "Get\u0020a\u0020UNIX\u0020\u0028POSIX\u002Dcompatible\u0029\u0020timestamp\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_unixTime" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Aiso8601\u0028\u0029", + "name": "iso8601", + "summary": "Get\u0020a\u0020date\u0020string\u0020according\u0020to\u0020the\u0020ISO\u002D8601\u0020standard.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_iso8601" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AamPm\u0028\u0029", + "name": "amPm", + "summary": "Get\u0020a\u0020string\u0020containing\u0020either\u0020\u0022am\u0022\u0020or\u0020\u0022pm\u0022.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_amPm" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdayOfMonth\u0028\u0029", + "name": "dayOfMonth", + "summary": "Get\u0020a\u0020localized\u0020random\u0020day\u0020of\u0020the\u0020month.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dayOfMonth" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "Get\u0020a\u0020localized\u0020random\u0020day\u0020of\u0020the\u0020week.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Amonth\u0028\u0029", + "name": "month", + "summary": "Get\u0020a\u0020random\u0020month\u0020\u0028numbered\u0029.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_month" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "Get\u0020a\u0020random\u0020month.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_monthName" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Ayear\u0028\u0029", + "name": "year", + "summary": "Get\u0020a\u0020random\u0020year\u0020between\u00201970\u0020and\u0020\u0060\u0024until\u0060.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_year" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Acentury\u0028\u0029", + "name": "century", + "summary": "Get\u0020a\u0020random\u0020century,\u0020formatted\u0020as\u0020Roman\u0020numerals.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_century" + }, { + "fqsen": "\\Faker\\Extension\\DateTimeExtension\u003A\u003Atimezone\u0028\u0029", + "name": "timezone", + "summary": "Get\u0020a\u0020random\u0020timezone,\u0020uses\u0020\u0060\\DateTimeZone\u003A\u003AlistIdentifiers\u0028\u0029\u0060\u0020internally.", + "url": "classes/Faker-Extension-DateTimeExtension.html#method_timezone" + }, { + "fqsen": "\\Faker\\Extension\\Extension", + "name": "Extension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-Extension.html" + }, { + "fqsen": "\\Faker\\Extension\\ExtensionNotFound", + "name": "ExtensionNotFound", + "summary": "", + "url": "classes/Faker-Extension-ExtensionNotFound.html" + }, { + "fqsen": "\\Faker\\Extension\\FileExtension", + "name": "FileExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-FileExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\FileExtension\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020a\u0020random\u0020MIME\u0020type", + "url": "classes/Faker-Extension-FileExtension.html#method_mimeType" + }, { + "fqsen": "\\Faker\\Extension\\FileExtension\u003A\u003Aextension\u0028\u0029", + "name": "extension", + "summary": "Get\u0020a\u0020random\u0020file\u0020extension\u0020\u0028without\u0020a\u0020dot\u0029", + "url": "classes/Faker-Extension-FileExtension.html#method_extension" + }, { + "fqsen": "\\Faker\\Extension\\FileExtension\u003A\u003AfilePath\u0028\u0029", + "name": "filePath", + "summary": "Get\u0020a\u0020full\u0020path\u0020to\u0020a\u0020new\u0020real\u0020file\u0020on\u0020the\u0020system.", + "url": "classes/Faker-Extension-FileExtension.html#method_filePath" + }, { + "fqsen": "\\Faker\\Extension\\GeneratorAwareExtension", + "name": "GeneratorAwareExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-GeneratorAwareExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\GeneratorAwareExtension\u003A\u003AwithGenerator\u0028\u0029", + "name": "withGenerator", + "summary": "This\u0020method\u0020MUST\u0020be\u0020implemented\u0020in\u0020such\u0020a\u0020way\u0020as\u0020to\u0020retain\u0020the\nimmutability\u0020of\u0020the\u0020extension,\u0020and\u0020MUST\u0020return\u0020an\u0020instance\u0020that\u0020has\u0020the\nnew\u0020Generator.", + "url": "classes/Faker-Extension-GeneratorAwareExtension.html#method_withGenerator" + }, { + "fqsen": "\\Faker\\Extension\\GeneratorAwareExtensionTrait", + "name": "GeneratorAwareExtensionTrait", + "summary": "A\u0020helper\u0020trait\u0020to\u0020be\u0020used\u0020with\u0020GeneratorAwareExtension.", + "url": "classes/Faker-Extension-GeneratorAwareExtensionTrait.html" + }, { + "fqsen": "\\Faker\\Extension\\GeneratorAwareExtensionTrait\u003A\u003AwithGenerator\u0028\u0029", + "name": "withGenerator", + "summary": "", + "url": "classes/Faker-Extension-GeneratorAwareExtensionTrait.html#method_withGenerator" + }, { + "fqsen": "\\Faker\\Extension\\GeneratorAwareExtensionTrait\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-Extension-GeneratorAwareExtensionTrait.html#property_generator" + }, { + "fqsen": "\\Faker\\Extension\\Helper", + "name": "Helper", + "summary": "A\u0020class\u0020with\u0020some\u0020methods\u0020that\u0020may\u0020make\u0020building\u0020extensions\u0020easier.", + "url": "classes/Faker-Extension-Helper.html" + }, { + "fqsen": "\\Faker\\Extension\\Helper\u003A\u003ArandomElement\u0028\u0029", + "name": "randomElement", + "summary": "Returns\u0020a\u0020random\u0020element\u0020from\u0020a\u0020passed\u0020array.", + "url": "classes/Faker-Extension-Helper.html#method_randomElement" + }, { + "fqsen": "\\Faker\\Extension\\Helper\u003A\u003Anumerify\u0028\u0029", + "name": "numerify", + "summary": "Replaces\u0020all\u0020hash\u0020sign\u0020\u0028\u0027\u0023\u0027\u0029\u0020occurrences\u0020with\u0020a\u0020random\u0020number\nReplaces\u0020all\u0020percentage\u0020sign\u0020\u0028\u0027\u0025\u0027\u0029\u0020occurrences\u0020with\u0020a\u0020non\u002Dzero\u0020number.", + "url": "classes/Faker-Extension-Helper.html#method_numerify" + }, { + "fqsen": "\\Faker\\Extension\\Helper\u003A\u003Alexify\u0028\u0029", + "name": "lexify", + "summary": "Replaces\u0020all\u0020question\u0020mark\u0020\u0028\u0027\u003F\u0027\u0029\u0020occurrences\u0020with\u0020a\u0020random\u0020letter.", + "url": "classes/Faker-Extension-Helper.html#method_lexify" + }, { + "fqsen": "\\Faker\\Extension\\Helper\u003A\u003Abothify\u0028\u0029", + "name": "bothify", + "summary": "Replaces\u0020hash\u0020signs\u0020\u0028\u0027\u0023\u0027\u0029\u0020and\u0020question\u0020marks\u0020\u0028\u0027\u003F\u0027\u0029\u0020with\u0020random\u0020numbers\u0020and\u0020letters\nAn\u0020asterisk\u0020\u0028\u0027\u002A\u0027\u0029\u0020is\u0020replaced\u0020with\u0020either\u0020a\u0020random\u0020number\u0020or\u0020a\u0020random\u0020letter.", + "url": "classes/Faker-Extension-Helper.html#method_bothify" + }, { + "fqsen": "\\Faker\\Extension\\Helper\u003A\u003AreplaceWildcard\u0028\u0029", + "name": "replaceWildcard", + "summary": "", + "url": "classes/Faker-Extension-Helper.html#method_replaceWildcard" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension", + "name": "NumberExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-NumberExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension\u003A\u003AnumberBetween\u0028\u0029", + "name": "numberBetween", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u0020\u0024int1\u0020and\u0020\u0024int2\u0020\u0028any\u0020order\u0029", + "url": "classes/Faker-Extension-NumberExtension.html#method_numberBetween" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension\u003A\u003ArandomDigit\u0028\u0029", + "name": "randomDigit", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00200\u0020and\u00209", + "url": "classes/Faker-Extension-NumberExtension.html#method_randomDigit" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension\u003A\u003ArandomDigitNot\u0028\u0029", + "name": "randomDigitNot", + "summary": "Generates\u0020a\u0020random\u0020digit,\u0020which\u0020cannot\u0020be\u0020\u0024except", + "url": "classes/Faker-Extension-NumberExtension.html#method_randomDigitNot" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension\u003A\u003ArandomDigitNotZero\u0028\u0029", + "name": "randomDigitNotZero", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00201\u0020and\u00209", + "url": "classes/Faker-Extension-NumberExtension.html#method_randomDigitNotZero" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension\u003A\u003ArandomFloat\u0028\u0029", + "name": "randomFloat", + "summary": "Return\u0020a\u0020random\u0020float\u0020number", + "url": "classes/Faker-Extension-NumberExtension.html#method_randomFloat" + }, { + "fqsen": "\\Faker\\Extension\\NumberExtension\u003A\u003ArandomNumber\u0028\u0029", + "name": "randomNumber", + "summary": "Returns\u0020a\u0020random\u0020integer\u0020with\u00200\u0020to\u0020\u0024nbDigits\u0020digits.", + "url": "classes/Faker-Extension-NumberExtension.html#method_randomNumber" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension", + "name": "PersonExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-PersonExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_name" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AfirstName\u0028\u0029", + "name": "firstName", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_firstName" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AfirstNameMale\u0028\u0029", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_firstNameMale" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AfirstNameFemale\u0028\u0029", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_firstNameFemale" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_lastName" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_title" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AtitleMale\u0028\u0029", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_titleMale" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AtitleFemale\u0028\u0029", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#method_titleFemale" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AGENDER_FEMALE", + "name": "GENDER_FEMALE", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#constant_GENDER_FEMALE" + }, { + "fqsen": "\\Faker\\Extension\\PersonExtension\u003A\u003AGENDER_MALE", + "name": "GENDER_MALE", + "summary": "", + "url": "classes/Faker-Extension-PersonExtension.html#constant_GENDER_MALE" + }, { + "fqsen": "\\Faker\\Extension\\PhoneNumberExtension", + "name": "PhoneNumberExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-PhoneNumberExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\PhoneNumberExtension\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Extension-PhoneNumberExtension.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Extension\\PhoneNumberExtension\u003A\u003Ae164PhoneNumber\u0028\u0029", + "name": "e164PhoneNumber", + "summary": "", + "url": "classes/Faker-Extension-PhoneNumberExtension.html#method_e164PhoneNumber" + }, { + "fqsen": "\\Faker\\Extension\\UuidExtension", + "name": "UuidExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-UuidExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\UuidExtension\u003A\u003Auuid3\u0028\u0029", + "name": "uuid3", + "summary": "Generate\u0020name\u0020based\u0020md5\u0020UUID\u0020\u0028version\u00203\u0029.", + "url": "classes/Faker-Extension-UuidExtension.html#method_uuid3" + }, { + "fqsen": "\\Faker\\Extension\\VersionExtension", + "name": "VersionExtension", + "summary": "An\u0020extension\u0020is\u0020the\u0020only\u0020way\u0020to\u0020add\u0020new\u0020functionality\u0020to\u0020Faker.", + "url": "classes/Faker-Extension-VersionExtension.html" + }, { + "fqsen": "\\Faker\\Extension\\VersionExtension\u003A\u003Asemver\u0028\u0029", + "name": "semver", + "summary": "Get\u0020a\u0020version\u0020number\u0020in\u0020semantic\u0020versioning\u0020syntax\u00202.0.0.\u0020\u0028https\u003A\/\/semver.org\/spec\/v2.0.0.html\u0029", + "url": "classes/Faker-Extension-VersionExtension.html#method_semver" + }, { + "fqsen": "\\Faker\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Faker-Factory.html" + }, { + "fqsen": "\\Faker\\Factory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020generator", + "url": "classes/Faker-Factory.html#method_create" + }, { + "fqsen": "\\Faker\\Factory\u003A\u003AgetProviderClassname\u0028\u0029", + "name": "getProviderClassname", + "summary": "", + "url": "classes/Faker-Factory.html#method_getProviderClassname" + }, { + "fqsen": "\\Faker\\Factory\u003A\u003AfindProviderClassname\u0028\u0029", + "name": "findProviderClassname", + "summary": "", + "url": "classes/Faker-Factory.html#method_findProviderClassname" + }, { + "fqsen": "\\Faker\\Factory\u003A\u003ADEFAULT_LOCALE", + "name": "DEFAULT_LOCALE", + "summary": "", + "url": "classes/Faker-Factory.html#constant_DEFAULT_LOCALE" + }, { + "fqsen": "\\Faker\\Factory\u003A\u003A\u0024defaultProviders", + "name": "defaultProviders", + "summary": "", + "url": "classes/Faker-Factory.html#property_defaultProviders" + }, { + "fqsen": "\\Faker\\Generator", + "name": "Generator", + "summary": "", + "url": "classes/Faker-Generator.html" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Generator.html#method___construct" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aext\u0028\u0029", + "name": "ext", + "summary": "", + "url": "classes/Faker-Generator.html#method_ext" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AaddProvider\u0028\u0029", + "name": "addProvider", + "summary": "", + "url": "classes/Faker-Generator.html#method_addProvider" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AgetProviders\u0028\u0029", + "name": "getProviders", + "summary": "", + "url": "classes/Faker-Generator.html#method_getProviders" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "With\u0020the\u0020unique\u0020generator\u0020you\u0020are\u0020guaranteed\u0020to\u0020never\u0020get\u0020the\u0020same\u0020two\nvalues.", + "url": "classes/Faker-Generator.html#method_unique" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aoptional\u0028\u0029", + "name": "optional", + "summary": "Get\u0020a\u0020value\u0020only\u0020some\u0020percentage\u0020of\u0020the\u0020time.", + "url": "classes/Faker-Generator.html#method_optional" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Avalid\u0028\u0029", + "name": "valid", + "summary": "To\u0020make\u0020sure\u0020the\u0020value\u0020meet\u0020some\u0020criteria,\u0020pass\u0020a\u0020callable\u0020that\u0020verifies\u0020the\noutput.\u0020If\u0020the\u0020validator\u0020fails,\u0020the\u0020generator\u0020will\u0020try\u0020again.", + "url": "classes/Faker-Generator.html#method_valid" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aseed\u0028\u0029", + "name": "seed", + "summary": "", + "url": "classes/Faker-Generator.html#method_seed" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Amode\u0028\u0029", + "name": "mode", + "summary": "", + "url": "classes/Faker-Generator.html#method_mode" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "", + "url": "classes/Faker-Generator.html#method_format" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AgetFormatter\u0028\u0029", + "name": "getFormatter", + "summary": "", + "url": "classes/Faker-Generator.html#method_getFormatter" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Replaces\u0020tokens\u0020\u0028\u0027\u007B\u007B\u0020tokenName\u0020\u007D\u007D\u0027\u0029\u0020with\u0020the\u0020result\u0020from\u0020the\u0020token\u0020method\u0020call", + "url": "classes/Faker-Generator.html#method_parse" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020a\u0020random\u0020MIME\u0020type", + "url": "classes/Faker-Generator.html#method_mimeType" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AfileExtension\u0028\u0029", + "name": "fileExtension", + "summary": "Get\u0020a\u0020random\u0020file\u0020extension\u0020\u0028without\u0020a\u0020dot\u0029", + "url": "classes/Faker-Generator.html#method_fileExtension" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AfilePath\u0028\u0029", + "name": "filePath", + "summary": "Get\u0020a\u0020full\u0020path\u0020to\u0020a\u0020new\u0020real\u0020file\u0020on\u0020the\u0020system.", + "url": "classes/Faker-Generator.html#method_filePath" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AbloodType\u0028\u0029", + "name": "bloodType", + "summary": "Get\u0020an\u0020actual\u0020blood\u0020type", + "url": "classes/Faker-Generator.html#method_bloodType" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AbloodRh\u0028\u0029", + "name": "bloodRh", + "summary": "Get\u0020a\u0020random\u0020resis\u0020value", + "url": "classes/Faker-Generator.html#method_bloodRh" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AbloodGroup\u0028\u0029", + "name": "bloodGroup", + "summary": "Get\u0020a\u0020full\u0020blood\u0020group", + "url": "classes/Faker-Generator.html#method_bloodGroup" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aean13\u0028\u0029", + "name": "ean13", + "summary": "Get\u0020a\u0020random\u0020EAN13\u0020barcode.", + "url": "classes/Faker-Generator.html#method_ean13" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aean8\u0028\u0029", + "name": "ean8", + "summary": "Get\u0020a\u0020random\u0020EAN8\u0020barcode.", + "url": "classes/Faker-Generator.html#method_ean8" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aisbn10\u0028\u0029", + "name": "isbn10", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D10\u0020code", + "url": "classes/Faker-Generator.html#method_isbn10" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Aisbn13\u0028\u0029", + "name": "isbn13", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D13\u0020code", + "url": "classes/Faker-Generator.html#method_isbn13" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AnumberBetween\u0028\u0029", + "name": "numberBetween", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u0020\u0024int1\u0020and\u0020\u0024int2\u0020\u0028any\u0020order\u0029", + "url": "classes/Faker-Generator.html#method_numberBetween" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003ArandomDigit\u0028\u0029", + "name": "randomDigit", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00200\u0020and\u00209", + "url": "classes/Faker-Generator.html#method_randomDigit" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003ArandomDigitNot\u0028\u0029", + "name": "randomDigitNot", + "summary": "Generates\u0020a\u0020random\u0020digit,\u0020which\u0020cannot\u0020be\u0020\u0024except", + "url": "classes/Faker-Generator.html#method_randomDigitNot" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003ArandomDigitNotZero\u0028\u0029", + "name": "randomDigitNotZero", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00201\u0020and\u00209", + "url": "classes/Faker-Generator.html#method_randomDigitNotZero" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003ArandomFloat\u0028\u0029", + "name": "randomFloat", + "summary": "Return\u0020a\u0020random\u0020float\u0020number", + "url": "classes/Faker-Generator.html#method_randomFloat" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003ArandomNumber\u0028\u0029", + "name": "randomNumber", + "summary": "Returns\u0020a\u0020random\u0020integer\u0020with\u00200\u0020to\u0020\u0024nbDigits\u0020digits.", + "url": "classes/Faker-Generator.html#method_randomNumber" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003Asemver\u0028\u0029", + "name": "semver", + "summary": "Get\u0020a\u0020version\u0020number\u0020in\u0020semantic\u0020versioning\u0020syntax\u00202.0.0.\u0020\u0028https\u003A\/\/semver.org\/spec\/v2.0.0.html\u0029", + "url": "classes/Faker-Generator.html#method_semver" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003AcallFormatWithMatches\u0028\u0029", + "name": "callFormatWithMatches", + "summary": "", + "url": "classes/Faker-Generator.html#method_callFormatWithMatches" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "", + "url": "classes/Faker-Generator.html#method___get" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Faker-Generator.html#method___call" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Faker-Generator.html#method___destruct" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A__wakeup\u0028\u0029", + "name": "__wakeup", + "summary": "", + "url": "classes/Faker-Generator.html#method___wakeup" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A\u0024providers", + "name": "providers", + "summary": "", + "url": "classes/Faker-Generator.html#property_providers" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A\u0024formatters", + "name": "formatters", + "summary": "", + "url": "classes/Faker-Generator.html#property_formatters" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/Faker-Generator.html#property_container" + }, { + "fqsen": "\\Faker\\Generator\u003A\u003A\u0024uniqueGenerator", + "name": "uniqueGenerator", + "summary": "", + "url": "classes/Faker-Generator.html#property_uniqueGenerator" + }, { + "fqsen": "\\Faker\\Guesser\\Name", + "name": "Name", + "summary": "", + "url": "classes/Faker-Guesser-Name.html" + }, { + "fqsen": "\\Faker\\Guesser\\Name\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Guesser-Name.html#method___construct" + }, { + "fqsen": "\\Faker\\Guesser\\Name\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-Guesser-Name.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\Guesser\\Name\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-Guesser-Name.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\ColumnTypeGuesser", + "name": "ColumnTypeGuesser", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-ColumnTypeGuesser.html" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\ColumnTypeGuesser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-ColumnTypeGuesser.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\ColumnTypeGuesser\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-ColumnTypeGuesser.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\ColumnTypeGuesser\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-ColumnTypeGuesser.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator", + "name": "EntityPopulator", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method___get" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method___set" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003AmergeColumnFormattersWith\u0028\u0029", + "name": "mergeColumnFormattersWith", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_mergeColumnFormattersWith" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003AmergeModifiersWith\u0028\u0029", + "name": "mergeModifiersWith", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_mergeModifiersWith" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003AguessColumnFormatters\u0028\u0029", + "name": "guessColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_guessColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003AguessModifiers\u0028\u0029", + "name": "guessModifiers", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_guessModifiers" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003AsetConnection\u0028\u0029", + "name": "setConnection", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_setConnection" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#method_getTable" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#property_class" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A\u0024connectionName", + "name": "connectionName", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#property_connectionName" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A\u0024columnFormatters", + "name": "columnFormatters", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#property_columnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\EntityPopulator\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-EntityPopulator.html#property_modifiers" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator", + "name": "Populator", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003AgetGenerator\u0028\u0029", + "name": "getGenerator", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method_getGenerator" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003AgetGuessers\u0028\u0029", + "name": "getGuessers", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method_getGuessers" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003AremoveGuesser\u0028\u0029", + "name": "removeGuesser", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method_removeGuesser" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003AaddGuesser\u0028\u0029", + "name": "addGuesser", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method_addGuesser" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003AaddEntity\u0028\u0029", + "name": "addEntity", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method_addEntity" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003A\u0024entities", + "name": "entities", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#property_entities" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003A\u0024quantities", + "name": "quantities", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#property_quantities" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP\\Populator\u003A\u003A\u0024guessers", + "name": "guessers", + "summary": "", + "url": "classes/Faker-ORM-CakePHP-Populator.html#property_guessers" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\ColumnTypeGuesser", + "name": "ColumnTypeGuesser", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-ColumnTypeGuesser.html" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\ColumnTypeGuesser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-ColumnTypeGuesser.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\ColumnTypeGuesser\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-ColumnTypeGuesser.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\ColumnTypeGuesser\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-ColumnTypeGuesser.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator", + "name": "EntityPopulator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020table\u0020through\u0020a\u0020Doctrine\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_getClass" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AsetColumnFormatters\u0028\u0029", + "name": "setColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_setColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AgetColumnFormatters\u0028\u0029", + "name": "getColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_getColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AmergeColumnFormattersWith\u0028\u0029", + "name": "mergeColumnFormattersWith", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_mergeColumnFormattersWith" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AsetModifiers\u0028\u0029", + "name": "setModifiers", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_setModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AgetModifiers\u0028\u0029", + "name": "getModifiers", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_getModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AmergeModifiersWith\u0028\u0029", + "name": "mergeModifiersWith", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_mergeModifiersWith" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AguessColumnFormatters\u0028\u0029", + "name": "guessColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_guessColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Insert\u0020one\u0020new\u0020record\u0020using\u0020the\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AfillColumns\u0028\u0029", + "name": "fillColumns", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_fillColumns" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AcallMethods\u0028\u0029", + "name": "callMethods", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_callMethods" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003AgenerateId\u0028\u0029", + "name": "generateId", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#method_generateId" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#property_class" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003A\u0024columnFormatters", + "name": "columnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#property_columnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\EntityPopulator\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-EntityPopulator.html#property_modifiers" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator", + "name": "Populator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020database\u0020using\u0020the\u0020Doctrine\u0020ORM\u0020or\u0020ODM.", + "url": "classes/Faker-ORM-Doctrine-Populator.html" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Populator\u0020constructor.", + "url": "classes/Faker-ORM-Doctrine-Populator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003AaddEntity\u0028\u0029", + "name": "addEntity", + "summary": "Add\u0020an\u0020order\u0020for\u0020the\u0020generation\u0020of\u0020\u0024number\u0020records\u0020for\u0020\u0024entity.", + "url": "classes/Faker-ORM-Doctrine-Populator.html#method_addEntity" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Populate\u0020the\u0020database\u0020using\u0020all\u0020the\u0020Entity\u0020classes\u0020previously\u0020added.", + "url": "classes/Faker-ORM-Doctrine-Populator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A\u0024batchSize", + "name": "batchSize", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-Populator.html#property_batchSize" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-Populator.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A\u0024manager", + "name": "manager", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-Populator.html#property_manager" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A\u0024entities", + "name": "entities", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-Populator.html#property_entities" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A\u0024quantities", + "name": "quantities", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-Populator.html#property_quantities" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine\\Populator\u003A\u003A\u0024generateId", + "name": "generateId", + "summary": "", + "url": "classes/Faker-ORM-Doctrine-Populator.html#property_generateId" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\ColumnTypeGuesser", + "name": "ColumnTypeGuesser", + "summary": "", + "url": "classes/Faker-ORM-Mandango-ColumnTypeGuesser.html" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\ColumnTypeGuesser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Mandango-ColumnTypeGuesser.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\ColumnTypeGuesser\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-ORM-Mandango-ColumnTypeGuesser.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\ColumnTypeGuesser\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Mandango-ColumnTypeGuesser.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator", + "name": "EntityPopulator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020table\u0020through\u0020a\u0020Mandango\u0020ActiveRecord\u0020class.", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method_getClass" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003AsetColumnFormatters\u0028\u0029", + "name": "setColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method_setColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003AgetColumnFormatters\u0028\u0029", + "name": "getColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method_getColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003AmergeColumnFormattersWith\u0028\u0029", + "name": "mergeColumnFormattersWith", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method_mergeColumnFormattersWith" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003AguessColumnFormatters\u0028\u0029", + "name": "guessColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method_guessColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Insert\u0020one\u0020new\u0020record\u0020using\u0020the\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#property_class" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\EntityPopulator\u003A\u003A\u0024columnFormatters", + "name": "columnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Mandango-EntityPopulator.html#property_columnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator", + "name": "Populator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020database\u0020using\u0020Mandango.", + "url": "classes/Faker-ORM-Mandango-Populator.html" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Mandango-Populator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003AaddEntity\u0028\u0029", + "name": "addEntity", + "summary": "Add\u0020an\u0020order\u0020for\u0020the\u0020generation\u0020of\u0020\u0024number\u0020records\u0020for\u0020\u0024entity.", + "url": "classes/Faker-ORM-Mandango-Populator.html#method_addEntity" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Populate\u0020the\u0020database\u0020using\u0020all\u0020the\u0020Entity\u0020classes\u0020previously\u0020added.", + "url": "classes/Faker-ORM-Mandango-Populator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Mandango-Populator.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003A\u0024mandango", + "name": "mandango", + "summary": "", + "url": "classes/Faker-ORM-Mandango-Populator.html#property_mandango" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003A\u0024entities", + "name": "entities", + "summary": "", + "url": "classes/Faker-ORM-Mandango-Populator.html#property_entities" + }, { + "fqsen": "\\Faker\\ORM\\Mandango\\Populator\u003A\u003A\u0024quantities", + "name": "quantities", + "summary": "", + "url": "classes/Faker-ORM-Mandango-Populator.html#property_quantities" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\ColumnTypeGuesser", + "name": "ColumnTypeGuesser", + "summary": "", + "url": "classes/Faker-ORM-Propel-ColumnTypeGuesser.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\ColumnTypeGuesser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Propel-ColumnTypeGuesser.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\ColumnTypeGuesser\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-ORM-Propel-ColumnTypeGuesser.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\ColumnTypeGuesser\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Propel-ColumnTypeGuesser.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator", + "name": "EntityPopulator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020table\u0020through\u0020a\u0020Propel\u0020ActiveRecord\u0020class.", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_getClass" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AsetColumnFormatters\u0028\u0029", + "name": "setColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_setColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AgetColumnFormatters\u0028\u0029", + "name": "getColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_getColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AmergeColumnFormattersWith\u0028\u0029", + "name": "mergeColumnFormattersWith", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_mergeColumnFormattersWith" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AguessColumnFormatters\u0028\u0029", + "name": "guessColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_guessColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AisColumnBehavior\u0028\u0029", + "name": "isColumnBehavior", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_isColumnBehavior" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AsetModifiers\u0028\u0029", + "name": "setModifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_setModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AgetModifiers\u0028\u0029", + "name": "getModifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_getModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AmergeModifiersWith\u0028\u0029", + "name": "mergeModifiersWith", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_mergeModifiersWith" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003AguessModifiers\u0028\u0029", + "name": "guessModifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_guessModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Insert\u0020one\u0020new\u0020record\u0020using\u0020the\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#property_class" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003A\u0024columnFormatters", + "name": "columnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#property_columnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\EntityPopulator\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel-EntityPopulator.html#property_modifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator", + "name": "Populator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020database\u0020using\u0020the\u0020Propel\u0020ORM.", + "url": "classes/Faker-ORM-Propel-Populator.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Propel-Populator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003AaddEntity\u0028\u0029", + "name": "addEntity", + "summary": "Add\u0020an\u0020order\u0020for\u0020the\u0020generation\u0020of\u0020\u0024number\u0020records\u0020for\u0020\u0024entity.", + "url": "classes/Faker-ORM-Propel-Populator.html#method_addEntity" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Populate\u0020the\u0020database\u0020using\u0020all\u0020the\u0020Entity\u0020classes\u0020previously\u0020added.", + "url": "classes/Faker-ORM-Propel-Populator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Faker-ORM-Propel-Populator.html#method_getConnection" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Propel-Populator.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003A\u0024entities", + "name": "entities", + "summary": "", + "url": "classes/Faker-ORM-Propel-Populator.html#property_entities" + }, { + "fqsen": "\\Faker\\ORM\\Propel\\Populator\u003A\u003A\u0024quantities", + "name": "quantities", + "summary": "", + "url": "classes/Faker-ORM-Propel-Populator.html#property_quantities" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\ColumnTypeGuesser", + "name": "ColumnTypeGuesser", + "summary": "", + "url": "classes/Faker-ORM-Propel2-ColumnTypeGuesser.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\ColumnTypeGuesser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Propel2-ColumnTypeGuesser.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\ColumnTypeGuesser\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-ORM-Propel2-ColumnTypeGuesser.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\ColumnTypeGuesser\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Propel2-ColumnTypeGuesser.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator", + "name": "EntityPopulator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020table\u0020through\u0020a\u0020Propel\u0020ActiveRecord\u0020class.", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_getClass" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AsetColumnFormatters\u0028\u0029", + "name": "setColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_setColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AgetColumnFormatters\u0028\u0029", + "name": "getColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_getColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AmergeColumnFormattersWith\u0028\u0029", + "name": "mergeColumnFormattersWith", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_mergeColumnFormattersWith" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AguessColumnFormatters\u0028\u0029", + "name": "guessColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_guessColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AisColumnBehavior\u0028\u0029", + "name": "isColumnBehavior", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_isColumnBehavior" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AsetModifiers\u0028\u0029", + "name": "setModifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_setModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AgetModifiers\u0028\u0029", + "name": "getModifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_getModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AmergeModifiersWith\u0028\u0029", + "name": "mergeModifiersWith", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_mergeModifiersWith" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003AguessModifiers\u0028\u0029", + "name": "guessModifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_guessModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Insert\u0020one\u0020new\u0020record\u0020using\u0020the\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#property_class" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003A\u0024columnFormatters", + "name": "columnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#property_columnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\EntityPopulator\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "", + "url": "classes/Faker-ORM-Propel2-EntityPopulator.html#property_modifiers" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator", + "name": "Populator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020database\u0020using\u0020the\u0020Propel\u0020ORM.", + "url": "classes/Faker-ORM-Propel2-Populator.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Propel2-Populator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003AaddEntity\u0028\u0029", + "name": "addEntity", + "summary": "Add\u0020an\u0020order\u0020for\u0020the\u0020generation\u0020of\u0020\u0024number\u0020records\u0020for\u0020\u0024entity.", + "url": "classes/Faker-ORM-Propel2-Populator.html#method_addEntity" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Populate\u0020the\u0020database\u0020using\u0020all\u0020the\u0020Entity\u0020classes\u0020previously\u0020added.", + "url": "classes/Faker-ORM-Propel2-Populator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "", + "url": "classes/Faker-ORM-Propel2-Populator.html#method_getConnection" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Propel2-Populator.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003A\u0024entities", + "name": "entities", + "summary": "", + "url": "classes/Faker-ORM-Propel2-Populator.html#property_entities" + }, { + "fqsen": "\\Faker\\ORM\\Propel2\\Populator\u003A\u003A\u0024quantities", + "name": "quantities", + "summary": "", + "url": "classes/Faker-ORM-Propel2-Populator.html#property_quantities" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\ColumnTypeGuesser", + "name": "ColumnTypeGuesser", + "summary": "", + "url": "classes/Faker-ORM-Spot-ColumnTypeGuesser.html" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\ColumnTypeGuesser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "ColumnTypeGuesser\u0020constructor.", + "url": "classes/Faker-ORM-Spot-ColumnTypeGuesser.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\ColumnTypeGuesser\u003A\u003AguessFormat\u0028\u0029", + "name": "guessFormat", + "summary": "", + "url": "classes/Faker-ORM-Spot-ColumnTypeGuesser.html#method_guessFormat" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\ColumnTypeGuesser\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Spot-ColumnTypeGuesser.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator", + "name": "EntityPopulator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020table\u0020through\u0020a\u0020Spot\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AgetMapper\u0028\u0029", + "name": "getMapper", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_getMapper" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AsetColumnFormatters\u0028\u0029", + "name": "setColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_setColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AgetColumnFormatters\u0028\u0029", + "name": "getColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_getColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AmergeColumnFormattersWith\u0028\u0029", + "name": "mergeColumnFormattersWith", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_mergeColumnFormattersWith" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AsetModifiers\u0028\u0029", + "name": "setModifiers", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_setModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AgetModifiers\u0028\u0029", + "name": "getModifiers", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_getModifiers" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AmergeModifiersWith\u0028\u0029", + "name": "mergeModifiersWith", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_mergeModifiersWith" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AguessColumnFormatters\u0028\u0029", + "name": "guessColumnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_guessColumnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Insert\u0020one\u0020new\u0020record\u0020using\u0020the\u0020Entity\u0020class.", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AfillColumns\u0028\u0029", + "name": "fillColumns", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_fillColumns" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003AcallMethods\u0028\u0029", + "name": "callMethods", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#method_callMethods" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003ARELATED_FETCH_COUNT", + "name": "RELATED_FETCH_COUNT", + "summary": "When\u0020fetching\u0020existing\u0020data\u0020\u002D\u0020fetch\u0020only\u0020few\u0020first\u0020rows.", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#constant_RELATED_FETCH_COUNT" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003A\u0024mapper", + "name": "mapper", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#property_mapper" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003A\u0024locator", + "name": "locator", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#property_locator" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003A\u0024columnFormatters", + "name": "columnFormatters", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#property_columnFormatters" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#property_modifiers" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\EntityPopulator\u003A\u003A\u0024useExistingData", + "name": "useExistingData", + "summary": "", + "url": "classes/Faker-ORM-Spot-EntityPopulator.html#property_useExistingData" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator", + "name": "Populator", + "summary": "Service\u0020class\u0020for\u0020populating\u0020a\u0020database\u0020using\u0020the\u0020Spot\u0020ORM.", + "url": "classes/Faker-ORM-Spot-Populator.html" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Populator\u0020constructor.", + "url": "classes/Faker-ORM-Spot-Populator.html#method___construct" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003AaddEntity\u0028\u0029", + "name": "addEntity", + "summary": "Add\u0020an\u0020order\u0020for\u0020the\u0020generation\u0020of\u0020\u0024number\u0020records\u0020for\u0020\u0024entity.", + "url": "classes/Faker-ORM-Spot-Populator.html#method_addEntity" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Populate\u0020the\u0020database\u0020using\u0020all\u0020the\u0020Entity\u0020classes\u0020previously\u0020added.", + "url": "classes/Faker-ORM-Spot-Populator.html#method_execute" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ORM-Spot-Populator.html#property_generator" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003A\u0024locator", + "name": "locator", + "summary": "", + "url": "classes/Faker-ORM-Spot-Populator.html#property_locator" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003A\u0024entities", + "name": "entities", + "summary": "", + "url": "classes/Faker-ORM-Spot-Populator.html#property_entities" + }, { + "fqsen": "\\Faker\\ORM\\Spot\\Populator\u003A\u003A\u0024quantities", + "name": "quantities", + "summary": "", + "url": "classes/Faker-ORM-Spot-Populator.html#property_quantities" + }, { + "fqsen": "\\Faker\\Provider\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-Address.html#method_city" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Provider-Address.html#method_streetName" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003AstreetAddress\u0028\u0029", + "name": "streetAddress", + "summary": "", + "url": "classes/Faker-Provider-Address.html#method_streetAddress" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Provider-Address.html#method_address" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003Alatitude\u0028\u0029", + "name": "latitude", + "summary": "Uses\u0020signed\u0020degrees\u0020format\u0020\u0028returns\u0020a\u0020float\u0020number\u0020between\u0020\u002D90\u0020and\u002090\u0029", + "url": "classes/Faker-Provider-Address.html#method_latitude" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003Alongitude\u0028\u0029", + "name": "longitude", + "summary": "Uses\u0020signed\u0020degrees\u0020format\u0020\u0028returns\u0020a\u0020float\u0020number\u0020between\u0020\u002D180\u0020and\u0020180\u0029", + "url": "classes/Faker-Provider-Address.html#method_longitude" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003AlocalCoordinates\u0028\u0029", + "name": "localCoordinates", + "summary": "", + "url": "classes/Faker-Provider-Address.html#method_localCoordinates" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003Agovernorate\u0028\u0029", + "name": "governorate", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#method_governorate" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003AgovernorateId\u0028\u0029", + "name": "governorateId", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#method_governorateId" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024governorates", + "name": "governorates", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_governorates" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003AcompanyTaxIdNumber\u0028\u0029", + "name": "companyTaxIdNumber", + "summary": "example\u0020010101010", + "url": "classes/Faker-Provider-ar-EG-Company.html#method_companyTaxIdNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003AcompanyTradeRegisterNumber\u0028\u0029", + "name": "companyTradeRegisterNumber", + "summary": "example\u0020010101", + "url": "classes/Faker-Provider-ar-EG-Company.html#method_companyTradeRegisterNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003A\u0024lastNameAscii", + "name": "lastNameAscii", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#property_lastNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003A\u0024firstNameAscii", + "name": "firstNameAscii", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#property_firstNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-ar-EG-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_prefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003AnationalIdNumber\u0028\u0029", + "name": "nationalIdNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#method_nationalIdNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Text\u003A\u003AvalidStart\u0028\u0029", + "name": "validStart", + "summary": "", + "url": "classes/Faker-Provider-ar-EG-Text.html#method_validStart" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "License\u003A\u0020Attribution\u002DShareAlike\u00203.0\u0020Unported\u0020\u0028CC\u0020BY\u002DSA\u00203.0\u0029", + "url": "classes/Faker-Provider-ar-EG-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003A\u0024lastNameAscii", + "name": "lastNameAscii", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#property_lastNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003A\u0024firstNameAscii", + "name": "firstNameAscii", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#property_firstNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_prefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Text\u003A\u003AvalidStart\u0028\u0029", + "name": "validStart", + "summary": "", + "url": "classes/Faker-Provider-ar-JO-Text.html#method_validStart" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "License\u003A\u0020Attribution\u002DShareAlike\u00203.0\u0020Unported\u0020\u0028CC\u0020BY\u002DSA\u00203.0\u0029", + "url": "classes/Faker-Provider-ar-JO-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003AcityPrefix\u0028\u0029", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#method_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003Asubdivision\u0028\u0029", + "name": "subdivision", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#method_subdivision" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003Agovernorate\u0028\u0029", + "name": "governorate", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#method_governorate" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024subdivisions", + "name": "subdivisions", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_subdivisions" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024governorates", + "name": "governorates", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_governorates" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003AcompanyIdNumber\u0028\u0029", + "name": "companyIdNumber", + "summary": "example\u00207001010101", + "url": "classes/Faker-Provider-ar-SA-Company.html#method_companyIdNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003A\u0024lastNameAscii", + "name": "lastNameAscii", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#property_lastNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003A\u0024firstNameAscii", + "name": "firstNameAscii", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#property_firstNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-ar-SA-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_prefix" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003AidNumber\u0028\u0029", + "name": "idNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#method_idNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003AnationalIdNumber\u0028\u0029", + "name": "nationalIdNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#method_nationalIdNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003AforeignerIdNumber\u0028\u0029", + "name": "foreignerIdNumber", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#method_foreignerIdNumber" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Text\u003A\u003AvalidStart\u0028\u0029", + "name": "validStart", + "summary": "", + "url": "classes/Faker-Provider-ar-SA-Text.html#method_validStart" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "License\u003A\u0020Attribution\u002DShareAlike\u00203.0\u0020Unported\u0020\u0028CC\u0020BY\u002DSA\u00203.0\u0029", + "url": "classes/Faker-Provider-ar-SA-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\at_AT\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-at-AT-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\Barcode", + "name": "Barcode", + "summary": "", + "url": "classes/Faker-Provider-Barcode.html" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003Aean\u0028\u0029", + "name": "ean", + "summary": "", + "url": "classes/Faker-Provider-Barcode.html#method_ean" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003AeanChecksum\u0028\u0029", + "name": "eanChecksum", + "summary": "Utility\u0020function\u0020for\u0020computing\u0020EAN\u0020checksums", + "url": "classes/Faker-Provider-Barcode.html#method_eanChecksum" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003AisbnChecksum\u0028\u0029", + "name": "isbnChecksum", + "summary": "ISBN\u002D10\u0020check\u0020digit", + "url": "classes/Faker-Provider-Barcode.html#method_isbnChecksum" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003Aean13\u0028\u0029", + "name": "ean13", + "summary": "Get\u0020a\u0020random\u0020EAN13\u0020barcode.", + "url": "classes/Faker-Provider-Barcode.html#method_ean13" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003Aean8\u0028\u0029", + "name": "ean8", + "summary": "Get\u0020a\u0020random\u0020EAN8\u0020barcode.", + "url": "classes/Faker-Provider-Barcode.html#method_ean8" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003Aisbn10\u0028\u0029", + "name": "isbn10", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D10\u0020code", + "url": "classes/Faker-Provider-Barcode.html#method_isbn10" + }, { + "fqsen": "\\Faker\\Provider\\Barcode\u003A\u003Aisbn13\u0028\u0029", + "name": "isbn13", + "summary": "Get\u0020a\u0020random\u0020ISBN\u002D13\u0020code", + "url": "classes/Faker-Provider-Barcode.html#method_isbn13" + }, { + "fqsen": "\\Faker\\Provider\\Base", + "name": "Base", + "summary": "", + "url": "classes/Faker-Provider-Base.html" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Provider-Base.html#method___construct" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomDigit\u0028\u0029", + "name": "randomDigit", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00200\u0020and\u00209", + "url": "classes/Faker-Provider-Base.html#method_randomDigit" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomDigitNotNull\u0028\u0029", + "name": "randomDigitNotNull", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u00201\u0020and\u00209", + "url": "classes/Faker-Provider-Base.html#method_randomDigitNotNull" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomDigitNot\u0028\u0029", + "name": "randomDigitNot", + "summary": "Generates\u0020a\u0020random\u0020digit,\u0020which\u0020cannot\u0020be\u0020\u0024except", + "url": "classes/Faker-Provider-Base.html#method_randomDigitNot" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomNumber\u0028\u0029", + "name": "randomNumber", + "summary": "Returns\u0020a\u0020random\u0020integer\u0020with\u00200\u0020to\u0020\u0024nbDigits\u0020digits.", + "url": "classes/Faker-Provider-Base.html#method_randomNumber" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomFloat\u0028\u0029", + "name": "randomFloat", + "summary": "Return\u0020a\u0020random\u0020float\u0020number", + "url": "classes/Faker-Provider-Base.html#method_randomFloat" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003AnumberBetween\u0028\u0029", + "name": "numberBetween", + "summary": "Returns\u0020a\u0020random\u0020number\u0020between\u0020\u0024int1\u0020and\u0020\u0024int2\u0020\u0028any\u0020order\u0029", + "url": "classes/Faker-Provider-Base.html#method_numberBetween" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Apassthrough\u0028\u0029", + "name": "passthrough", + "summary": "Returns\u0020the\u0020passed\u0020value", + "url": "classes/Faker-Provider-Base.html#method_passthrough" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomLetter\u0028\u0029", + "name": "randomLetter", + "summary": "Returns\u0020a\u0020random\u0020letter\u0020from\u0020a\u0020to\u0020z", + "url": "classes/Faker-Provider-Base.html#method_randomLetter" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomAscii\u0028\u0029", + "name": "randomAscii", + "summary": "Returns\u0020a\u0020random\u0020ASCII\u0020character\u0020\u0028excluding\u0020accents\u0020and\u0020special\u0020chars\u0029", + "url": "classes/Faker-Provider-Base.html#method_randomAscii" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomElements\u0028\u0029", + "name": "randomElements", + "summary": "Returns\u0020randomly\u0020ordered\u0020subsequence\u0020of\u0020\u0024count\u0020elements\u0020from\u0020a\u0020provided\u0020array", + "url": "classes/Faker-Provider-Base.html#method_randomElements" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomElement\u0028\u0029", + "name": "randomElement", + "summary": "Returns\u0020a\u0020random\u0020element\u0020from\u0020a\u0020passed\u0020array", + "url": "classes/Faker-Provider-Base.html#method_randomElement" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003ArandomKey\u0028\u0029", + "name": "randomKey", + "summary": "Returns\u0020a\u0020random\u0020key\u0020from\u0020a\u0020passed\u0020associative\u0020array", + "url": "classes/Faker-Provider-Base.html#method_randomKey" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Ashuffle\u0028\u0029", + "name": "shuffle", + "summary": "Returns\u0020a\u0020shuffled\u0020version\u0020of\u0020the\u0020argument.", + "url": "classes/Faker-Provider-Base.html#method_shuffle" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003AshuffleArray\u0028\u0029", + "name": "shuffleArray", + "summary": "Returns\u0020a\u0020shuffled\u0020version\u0020of\u0020the\u0020array.", + "url": "classes/Faker-Provider-Base.html#method_shuffleArray" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003AshuffleString\u0028\u0029", + "name": "shuffleString", + "summary": "Returns\u0020a\u0020shuffled\u0020version\u0020of\u0020the\u0020string.", + "url": "classes/Faker-Provider-Base.html#method_shuffleString" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003AreplaceWildcard\u0028\u0029", + "name": "replaceWildcard", + "summary": "", + "url": "classes/Faker-Provider-Base.html#method_replaceWildcard" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Anumerify\u0028\u0029", + "name": "numerify", + "summary": "Replaces\u0020all\u0020hash\u0020sign\u0020\u0028\u0027\u0023\u0027\u0029\u0020occurrences\u0020with\u0020a\u0020random\u0020number\nReplaces\u0020all\u0020percentage\u0020sign\u0020\u0028\u0027\u0025\u0027\u0029\u0020occurrences\u0020with\u0020a\u0020not\u0020null\u0020number", + "url": "classes/Faker-Provider-Base.html#method_numerify" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Alexify\u0028\u0029", + "name": "lexify", + "summary": "Replaces\u0020all\u0020question\u0020mark\u0020\u0028\u0027\u003F\u0027\u0029\u0020occurrences\u0020with\u0020a\u0020random\u0020letter", + "url": "classes/Faker-Provider-Base.html#method_lexify" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Abothify\u0028\u0029", + "name": "bothify", + "summary": "Replaces\u0020hash\u0020signs\u0020\u0028\u0027\u0023\u0027\u0029\u0020and\u0020question\u0020marks\u0020\u0028\u0027\u003F\u0027\u0029\u0020with\u0020random\u0020numbers\u0020and\u0020letters\nAn\u0020asterisk\u0020\u0028\u0027\u002A\u0027\u0029\u0020is\u0020replaced\u0020with\u0020either\u0020a\u0020random\u0020number\u0020or\u0020a\u0020random\u0020letter", + "url": "classes/Faker-Provider-Base.html#method_bothify" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Aasciify\u0028\u0029", + "name": "asciify", + "summary": "Replaces\u0020\u002A\u0020signs\u0020with\u0020random\u0020numbers\u0020and\u0020letters\u0020and\u0020special\u0020characters", + "url": "classes/Faker-Provider-Base.html#method_asciify" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Aregexify\u0028\u0029", + "name": "regexify", + "summary": "Transforms\u0020a\u0020basic\u0020regular\u0020expression\u0020into\u0020a\u0020random\u0020string\u0020satisfying\u0020the\u0020expression.", + "url": "classes/Faker-Provider-Base.html#method_regexify" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003AtoLower\u0028\u0029", + "name": "toLower", + "summary": "Converts\u0020string\u0020to\u0020lowercase.", + "url": "classes/Faker-Provider-Base.html#method_toLower" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003AtoUpper\u0028\u0029", + "name": "toUpper", + "summary": "Converts\u0020string\u0020to\u0020uppercase.", + "url": "classes/Faker-Provider-Base.html#method_toUpper" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Aoptional\u0028\u0029", + "name": "optional", + "summary": "Chainable\u0020method\u0020for\u0020making\u0020any\u0020formatter\u0020optional.", + "url": "classes/Faker-Provider-Base.html#method_optional" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003A\u0024unique", + "name": "unique", + "summary": "", + "url": "classes/Faker-Provider-Base.html#property_unique" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003Avalid\u0028\u0029", + "name": "valid", + "summary": "Chainable\u0020method\u0020for\u0020forcing\u0020any\u0020formatter\u0020to\u0020return\u0020only\u0020valid\u0020values.", + "url": "classes/Faker-Provider-Base.html#method_valid" + }, { + "fqsen": "\\Faker\\Provider\\Base\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-Provider-Base.html#property_generator" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-bg-BG-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Payment\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Value\u0020Added\u0020Tax\u0020\u0028VAT\u0029", + "url": "classes/Faker-Provider-bg-BG-Payment.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-bg-BG-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\Biased", + "name": "Biased", + "summary": "", + "url": "classes/Faker-Provider-Biased.html" + }, { + "fqsen": "\\Faker\\Provider\\Biased\u003A\u003AbiasedNumberBetween\u0028\u0029", + "name": "biasedNumberBetween", + "summary": "Returns\u0020a\u0020biased\u0020integer\u0020between\u0020\u0024min\u0020and\u0020\u0024max\u0020\u0028both\u0020inclusive\u0029.", + "url": "classes/Faker-Provider-Biased.html#method_biasedNumberBetween" + }, { + "fqsen": "\\Faker\\Provider\\Biased\u003A\u003Aunbiased\u0028\u0029", + "name": "unbiased", + "summary": "\u0027unbiased\u0027\u0020creates\u0020an\u0020unbiased\u0020distribution\u0020by\u0020giving\neach\u0020value\u0020the\u0020same\u0020value\u0020of\u0020one.", + "url": "classes/Faker-Provider-Biased.html#method_unbiased" + }, { + "fqsen": "\\Faker\\Provider\\Biased\u003A\u003AlinearLow\u0028\u0029", + "name": "linearLow", + "summary": "\u0027linearLow\u0027\u0020favors\u0020lower\u0020numbers.\u0020The\u0020probability\u0020decreases\nin\u0020a\u0020linear\u0020fashion.", + "url": "classes/Faker-Provider-Biased.html#method_linearLow" + }, { + "fqsen": "\\Faker\\Provider\\Biased\u003A\u003AlinearHigh\u0028\u0029", + "name": "linearHigh", + "summary": "\u0027linearHigh\u0027\u0020favors\u0020higher\u0020numbers.\u0020The\u0020probability\u0020increases\nin\u0020a\u0020linear\u0020fashion.", + "url": "classes/Faker-Provider-Biased.html#method_linearHigh" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003AstreetNumber\u0028\u0029", + "name": "streetNumber", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#method_streetNumber" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003AbanglaStreetName\u0028\u0029", + "name": "banglaStreetName", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#method_banglaStreetName" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024streetNames", + "name": "streetNames", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_streetNames" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Company\u003A\u003AcompanyType\u0028\u0029", + "name": "companyType", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Company.html#method_companyType" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Company\u003A\u003AcompanyName\u0028\u0029", + "name": "companyName", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Company.html#method_companyName" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Company\u003A\u003A\u0024names", + "name": "names", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Company.html#property_names" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Company\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Company.html#property_types" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Utils", + "name": "Utils", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Utils.html" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD\\Utils\u003A\u003AgetBanglaNumber\u0028\u0029", + "name": "getBanglaNumber", + "summary": "", + "url": "classes/Faker-Provider-bn-BD-Utils.html#method_getBanglaNumber" + }, { + "fqsen": "\\Faker\\Provider\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003AhexColor\u0028\u0029", + "name": "hexColor", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_hexColor" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003AsafeHexColor\u0028\u0029", + "name": "safeHexColor", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_safeHexColor" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003ArgbColorAsArray\u0028\u0029", + "name": "rgbColorAsArray", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_rgbColorAsArray" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003ArgbColor\u0028\u0029", + "name": "rgbColor", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_rgbColor" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003ArgbCssColor\u0028\u0029", + "name": "rgbCssColor", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_rgbCssColor" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003ArgbaCssColor\u0028\u0029", + "name": "rgbaCssColor", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_rgbaCssColor" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003AsafeColorName\u0028\u0029", + "name": "safeColorName", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_safeColorName" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003AcolorName\u0028\u0029", + "name": "colorName", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_colorName" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003AhslColor\u0028\u0029", + "name": "hslColor", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_hslColor" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003AhslColorAsArray\u0028\u0029", + "name": "hslColorAsArray", + "summary": "", + "url": "classes/Faker-Provider-Color.html#method_hslColorAsArray" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\Company\u003A\u003Acompany\u0028\u0029", + "name": "company", + "summary": "", + "url": "classes/Faker-Provider-Company.html#method_company" + }, { + "fqsen": "\\Faker\\Provider\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\Company\u003A\u003AjobTitle\u0028\u0029", + "name": "jobTitle", + "summary": "", + "url": "classes/Faker-Provider-Company.html#method_jobTitle" + }, { + "fqsen": "\\Faker\\Provider\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "Source\u003A\u0020https\u003A\/\/cs.wikipedia.org\/wiki\/Seznam_m\u0025C4\u00259Bst_v_\u0025C4\u00258Cesku_podle_po\u0025C4\u00258Dtu_obyvatel", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003Aregion\u0028\u0029", + "name": "region", + "summary": "Randomly\u0020returns\u0020a\u0020czech\u0020region.", + "url": "classes/Faker-Provider-cs-CZ-Address.html#method_region" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "Real\u0020street\u0020names\u0020as\u0020random\u0020data\u0020can\u0020hardly\u0020be\ngenerated\u0020due\u0020to\u0020inflection.", + "url": "classes/Faker-Provider-cs-CZ-Address.html#method_streetName" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "Source\u003A\u0020https\u003A\/\/cs.wikipedia.org\/wiki\/Seznam_st\u0025C3\u0025A1t\u0025C5\u0025AF_sv\u0025C4\u00259Bta", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024regions", + "name": "regions", + "summary": "Source\u003A\u0020https\u003A\/\/cs.wikipedia.org\/wiki\/Kraje_v_\u0025C4\u00258Cesku\u0023Ekonomika", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_regions" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "Source\u003A\u0020http\u003A\/\/aplikace.mvcr.cz\/adresy\/", + "url": "classes/Faker-Provider-cs-CZ-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003AcatchPhraseNoun\u0028\u0029", + "name": "catchPhraseNoun", + "summary": "Returns\u0020a\u0020random\u0020catch\u0020phrase\u0020noun.", + "url": "classes/Faker-Provider-cs-CZ-Company.html#method_catchPhraseNoun" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003AcatchPhraseAttribute\u0028\u0029", + "name": "catchPhraseAttribute", + "summary": "Returns\u0020a\u0020random\u0020catch\u0020phrase\u0020attribute.", + "url": "classes/Faker-Provider-cs-CZ-Company.html#method_catchPhraseAttribute" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003AcatchPhraseVerb\u0028\u0029", + "name": "catchPhraseVerb", + "summary": "Returns\u0020a\u0020random\u0020catch\u0020phrase\u0020verb.", + "url": "classes/Faker-Provider-cs-CZ-Company.html#method_catchPhraseVerb" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003Aico\u0028\u0029", + "name": "ico", + "summary": "Generates\u0020valid\u0020czech\u0020I\u010CO", + "url": "classes/Faker-Provider-cs-CZ-Company.html#method_ico" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003A\u0024catchPhraseFormats", + "name": "catchPhraseFormats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#property_catchPhraseFormats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003A\u0024noun", + "name": "noun", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#property_noun" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003A\u0024verb", + "name": "verb", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#property_verb" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003A\u0024attribute", + "name": "attribute", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#property_attribute" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime", + "name": "DateTime", + "summary": "Czech\u0020months\u0020and\u0020days\u0020without\u0020setting\u0020locale", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003AmonthNameGenitive\u0028\u0029", + "name": "monthNameGenitive", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#method_monthNameGenitive" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003AdayOfMonth\u0028\u0029", + "name": "dayOfMonth", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#method_dayOfMonth" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003AformattedDate\u0028\u0029", + "name": "formattedDate", + "summary": "Full\u0020date\u0020with\u0020inflected\u0020month", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#method_formattedDate" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003A\u0024days", + "name": "days", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#property_days" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003A\u0024months", + "name": "months", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#property_months" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003A\u0024monthsGenitive", + "name": "monthsGenitive", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#property_monthsGenitive" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\DateTime\u003A\u003A\u0024formattedDateFormat", + "name": "formattedDateFormat", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-DateTime.html#property_formattedDateFormat" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-cs-CZ-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003AbirthNumber\u0028\u0029", + "name": "birthNumber", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#method_birthNumber" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003AbirthNumberMale\u0028\u0029", + "name": "birthNumberMale", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#method_birthNumberMale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003AbirthNumberFemale\u0028\u0029", + "name": "birthNumberFemale", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#method_birthNumberFemale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003AtitleMale\u0028\u0029", + "name": "titleMale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020Czech\u0020title", + "url": "classes/Faker-Provider-cs-CZ-Person.html#method_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003AtitleFemale\u0028\u0029", + "name": "titleFemale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020Czech\u0020title", + "url": "classes/Faker-Provider-cs-CZ-Person.html#method_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-cs-CZ-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Text\u003A\u003ArealText\u0028\u0029", + "name": "realText", + "summary": "Generate\u0020a\u0020text\u0020string\u0020by\u0020the\u0020Markov\u0020chain\u0020algorithm.", + "url": "classes/Faker-Provider-cs-CZ-Text.html#method_realText" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "License\u003A\u0020PD\u0020old\u002070", + "url": "classes/Faker-Provider-cs-CZ-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020city\u0020name.", + "url": "classes/Faker-Provider-da-DK-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024streetSuffixWord", + "name": "streetSuffixWord", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_streetSuffixWord" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024buildingLevel", + "name": "buildingLevel", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_buildingLevel" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024buildingSide", + "name": "buildingSide", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_buildingSide" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003Akommune\u0028\u0029", + "name": "kommune", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020municipality\u0020name,\u0020called\u0020\u0027kommune\u0027\u0020in\u0020danish.", + "url": "classes/Faker-Provider-da-DK-Address.html#method_kommune" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003Aregion\u0028\u0029", + "name": "region", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020region\u0020name.", + "url": "classes/Faker-Provider-da-DK-Address.html#method_region" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024kommuneNames", + "name": "kommuneNames", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_kommuneNames" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024regionNames", + "name": "regionNames", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_regionNames" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company\u003A\u003Acvr\u0028\u0029", + "name": "cvr", + "summary": "Generates\u0020a\u0020CVR\u0020number\u0020\u00288\u0020digits\u0029.", + "url": "classes/Faker-Provider-da-DK-Company.html#method_cvr" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company\u003A\u003Ap\u0028\u0029", + "name": "p", + "summary": "Generates\u0020a\u0020P\u0020entity\u0020number\u0020\u002810\u0020digits\u0029.", + "url": "classes/Faker-Provider-da-DK-Company.html#method_p" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company\u003A\u003A\u0024cvrFormat", + "name": "cvrFormat", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Company.html#property_cvrFormat" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Company\u003A\u003A\u0024pFormat", + "name": "pFormat", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Company.html#property_pFormat" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-da-DK-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003A\u0024middleName", + "name": "middleName", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html#property_middleName" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003Acpr\u0028\u0029", + "name": "cpr", + "summary": "Randomly\u0020return\u0020a\u0020danish\u0020CPR\u0020number\u0020\u0028Personnal\u0020identification\u0020number\u0029\u0020format.", + "url": "classes/Faker-Provider-da-DK-Person.html#method_cpr" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-da-DK-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-da-DK-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-da-DK-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\DateTime", + "name": "DateTime", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AgetMaxTimestamp\u0028\u0029", + "name": "getMaxTimestamp", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_getMaxTimestamp" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AunixTime\u0028\u0029", + "name": "unixTime", + "summary": "Get\u0020a\u0020timestamp\u0020between\u0020January\u00201,\u00201970,\u0020and\u0020now", + "url": "classes/Faker-Provider-DateTime.html#method_unixTime" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTime\u0028\u0029", + "name": "dateTime", + "summary": "Get\u0020a\u0020datetime\u0020object\u0020for\u0020a\u0020date\u0020between\u0020January\u00201,\u00201970\u0020and\u0020now", + "url": "classes/Faker-Provider-DateTime.html#method_dateTime" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeAD\u0028\u0029", + "name": "dateTimeAD", + "summary": "Get\u0020a\u0020datetime\u0020object\u0020for\u0020a\u0020date\u0020between\u0020January\u00201,\u0020001\u0020and\u0020now", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeAD" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003Aiso8601\u0028\u0029", + "name": "iso8601", + "summary": "get\u0020a\u0020date\u0020string\u0020formatted\u0020with\u0020ISO8601", + "url": "classes/Faker-Provider-DateTime.html#method_iso8601" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003Adate\u0028\u0029", + "name": "date", + "summary": "Get\u0020a\u0020date\u0020string\u0020between\u0020January\u00201,\u00201970\u0020and\u0020now", + "url": "classes/Faker-Provider-DateTime.html#method_date" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003Atime\u0028\u0029", + "name": "time", + "summary": "Get\u0020a\u0020time\u0020string\u0020\u002824h\u0020format\u0020by\u0020default\u0029", + "url": "classes/Faker-Provider-DateTime.html#method_time" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeBetween\u0028\u0029", + "name": "dateTimeBetween", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020based\u0020on\u0020a\u0020random\u0020date\u0020between\u0020two\u0020given\u0020dates.", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeBetween" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeInInterval\u0028\u0029", + "name": "dateTimeInInterval", + "summary": "Get\u0020a\u0020DateTime\u0020object\u0020based\u0020on\u0020a\u0020random\u0020date\u0020between\u0020one\u0020given\u0020date\u0020and\nan\u0020interval\nAccepts\u0020date\u0020string\u0020that\u0020can\u0020be\u0020recognized\u0020by\u0020strtotime\u0028\u0029.", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeInInterval" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeThisCentury\u0028\u0029", + "name": "dateTimeThisCentury", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020within\u0020a\u0020century.", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeThisCentury" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeThisDecade\u0028\u0029", + "name": "dateTimeThisDecade", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020within\u0020a\u0020decade.", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeThisDecade" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeThisYear\u0028\u0029", + "name": "dateTimeThisYear", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020inside\u0020the\u0020current\u0020year.", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeThisYear" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdateTimeThisMonth\u0028\u0029", + "name": "dateTimeThisMonth", + "summary": "Get\u0020a\u0020date\u0020time\u0020object\u0020somewhere\u0020within\u0020a\u0020month.", + "url": "classes/Faker-Provider-DateTime.html#method_dateTimeThisMonth" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AamPm\u0028\u0029", + "name": "amPm", + "summary": "Get\u0020a\u0020string\u0020containing\u0020either\u0020\u0022am\u0022\u0020or\u0020\u0022pm\u0022.", + "url": "classes/Faker-Provider-DateTime.html#method_amPm" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdayOfMonth\u0028\u0029", + "name": "dayOfMonth", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_dayOfMonth" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003Amonth\u0028\u0029", + "name": "month", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_month" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003Ayear\u0028\u0029", + "name": "year", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_year" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003A\u0024century", + "name": "century", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#property_century" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003Atimezone\u0028\u0029", + "name": "timezone", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_timezone" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Internal\u0020method\u0020to\u0020set\u0020the\u0020time\u0020zone\u0020on\u0020a\u0020DateTime.", + "url": "classes/Faker-Provider-DateTime.html#method_setTimezone" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AsetDefaultTimezone\u0028\u0029", + "name": "setDefaultTimezone", + "summary": "Sets\u0020default\u0020time\u0020zone.", + "url": "classes/Faker-Provider-DateTime.html#method_setDefaultTimezone" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AgetDefaultTimezone\u0028\u0029", + "name": "getDefaultTimezone", + "summary": "Gets\u0020default\u0020time\u0020zone.", + "url": "classes/Faker-Provider-DateTime.html#method_getDefaultTimezone" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003AresolveTimezone\u0028\u0029", + "name": "resolveTimezone", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#method_resolveTimezone" + }, { + "fqsen": "\\Faker\\Provider\\DateTime\u003A\u003A\u0024defaultTimezone", + "name": "defaultTimezone", + "summary": "", + "url": "classes/Faker-Provider-DateTime.html#property_defaultTimezone" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024streetSuffixShort", + "name": "streetSuffixShort", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_streetSuffixShort" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024streetSuffixLong", + "name": "streetSuffixLong", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_streetSuffixLong" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Payment\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Value\u0020Added\u0020Tax\u0020\u0028VAT\u0029", + "url": "classes/Faker-Provider-de-AT-Payment.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-de-AT-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003Assn\u0028\u0029", + "name": "ssn", + "summary": "Generates\u0020a\u0020random\u0020Austrian\u0020Social\u0020Security\u0020number.", + "url": "classes/Faker-Provider-de-AT-Person.html#method_ssn" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "60\u0020most\u0020popular\u0020names\u0020in\u00201985,\u00201995,\u00202005\u0020and\u00202015\n\u007B\u0040link\u007D\u0020https\u003A\/\/www.statistik.at\/wcm\/idc\/idcplg\u003FIdcService\u003DGET_NATIVE_FILE\u0026RevisionSelectionMethod\u003DLatestReleased\u0026dDocName\u003D115199", + "url": "classes/Faker-Provider-de-AT-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "60\u0020most\u0020popular\u0020names\u0020in\u00201985,\u00201995,\u00202005\u0020and\u00202015\n\u007B\u0040link\u007D\u0020https\u003A\/\/www.statistik.at\/wcm\/idc\/idcplg\u003FIdcService\u003DGET_NATIVE_FILE\u0026RevisionSelectionMethod\u003DLatestReleased\u0026dDocName\u003D115199", + "url": "classes/Faker-Provider-de-AT-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u0028February\u00202004\u0029\n\u007B\u0040link\u007D\u0020https\u003A\/\/de.wiktionary.org\/w\/index.php\u003Ftitle\u003DVerzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_Nachnamen_\u0025C3\u002596sterreichs", + "url": "classes/Faker-Provider-de-AT-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-de-AT-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-de-AT-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\de_AT\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-de-AT-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Returns\u0020a\u0020random\u0020city\u0020name.", + "url": "classes/Faker-Provider-de-CH-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024streetSuffixShort", + "name": "streetSuffixShort", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_streetSuffixShort" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024streetSuffixLong", + "name": "streetSuffixLong", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_streetSuffixLong" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024canton", + "name": "canton", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_canton" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003AcantonShort\u0028\u0029", + "name": "cantonShort", + "summary": "Returns\u0020the\u0020abbreviation\u0020of\u0020a\u0020canton.", + "url": "classes/Faker-Provider-de-CH-Address.html#method_cantonShort" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003AcantonName\u0028\u0029", + "name": "cantonName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020canton.", + "url": "classes/Faker-Provider-de-CH-Address.html#method_cantonName" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-de-CH-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Person\u003A\u003Aahv13\u0028\u0029", + "name": "ahv13", + "summary": "Generates\u0020a\u0020valid\u0020random\u0020AVS13\u0020\u0028swiss\u0020social\u0020security\u0029\u0020number", + "url": "classes/Faker-Provider-de-CH-Person.html#method_ahv13" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Person\u003A\u003Aavs13\u0028\u0029", + "name": "avs13", + "summary": "Generates\u0020a\u0020valid\u0020random\u0020AVS13\u0020\u0028swiss\u0020social\u0020security\u0029\u0020number", + "url": "classes/Faker-Provider-de-CH-Person.html#method_avs13" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u00286.\u0020January\u00202005\u0029\n\u007B\u0040link\u007D\u0020From\u0020https\u003A\/\/de.wiktionary.org\/wiki\/Verzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_m\u0025C3\u0025A4nnlichen_Vornamen_Deutschlands", + "url": "classes/Faker-Provider-de-CH-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u00286.\u0020January\u00202005\u0029\n\u007B\u0040link\u007D\u0020From\u0020https\u003A\/\/de.wiktionary.org\/wiki\/Verzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_weiblichen_Vornamen_Deutschlands", + "url": "classes/Faker-Provider-de-CH-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u00286.\u0020January\u00202005\u0029\n\u007B\u0040link\u007D\u0020https\u003A\/\/de.wiktionary.org\/wiki\/Verzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_Nachnamen_Deutschlands", + "url": "classes/Faker-Provider-de-CH-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-de-CH-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020Swiss\u0020mobile\u0020phone\u0020number.", + "url": "classes/Faker-Provider-de-CH-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020Swiss\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats.", + "url": "classes/Faker-Provider-de-CH-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-de-CH-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-de-CH-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020Die\u0020Leiden\u0020des\u0020jungen\u0020Werther\u002D\u002DBuch\u00201,\u0020by\nJohann\u0020Wolfgang\u0020von\u0020Goethe", + "url": "classes/Faker-Provider-de-CH-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024streetSuffixShort", + "name": "streetSuffixShort", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_streetSuffixShort" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024streetSuffixLong", + "name": "streetSuffixLong", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_streetSuffixLong" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-de-DE-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "Sources\u003A\nThe\u002019\u0020largest\u0020German\u0020banks\u0020by\u0020total\u0020assets", + "url": "classes/Faker-Provider-de-DE-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u00286.\u0020January\u00202005\u0029\n\u007B\u0040link\u007D\u0020From\u0020https\u003A\/\/de.wiktionary.org\/wiki\/Verzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_m\u0025C3\u0025A4nnlichen_Vornamen_Deutschlands", + "url": "classes/Faker-Provider-de-DE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u00286.\u0020January\u00202005\u0029\n\u007B\u0040link\u007D\u0020From\u0020https\u003A\/\/de.wiktionary.org\/wiki\/Verzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_weiblichen_Vornamen_Deutschlands", + "url": "classes/Faker-Provider-de-DE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "Top\u0020500\u0020Names\u0020from\u0020a\u0020phone\u0020directory\u0020\u00286.\u0020January\u00202005\u0029\n\u007B\u0040link\u007D\u0020https\u003A\/\/de.wiktionary.org\/wiki\/Verzeichnis\u003ADeutsch\/Namen\/die_h\u0025C3\u0025A4ufigsten_Nachnamen_Deutschlands", + "url": "classes/Faker-Provider-de-DE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003AtollFreeAreaCode\u0028\u0029", + "name": "tollFreeAreaCode", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#method_tollFreeAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003AtollFreePhoneNumber\u0028\u0029", + "name": "tollFreePhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#method_tollFreePhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Generate\u0020a\u0020mobile\u0020number.", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024areaCodeRegexes", + "name": "areaCodeRegexes", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_areaCodeRegexes" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024tollFreeAreaCodes", + "name": "tollFreeAreaCodes", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_tollFreeAreaCodes" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024tollFreeFormats", + "name": "tollFreeFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_tollFreeFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024mobileCodes", + "name": "mobileCodes", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_mobileCodes" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-de-DE-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-de-DE-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020Die\u0020Leiden\u0020des\u0020jungen\u0020Werther\u002D\u002DBuch\u00201,\u0020by\nJohann\u0020Wolfgang\u0020von\u0020Goethe", + "url": "classes/Faker-Provider-de-DE-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029.", + "url": "classes/Faker-Provider-el-CY-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-el-CY-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-el-CY-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020el_CY\u0020mobile\u0020phone\u0020number.", + "url": "classes/Faker-Provider-el-CY-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-el-CY-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\el_CY\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020el_CY\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats.", + "url": "classes/Faker-Provider-el-CY-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024prefecture", + "name": "prefecture", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_prefecture" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Company\u003A\u003A\u0024doy", + "name": "doy", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Company.html#property_doy" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Company\u003A\u003A\u0024object", + "name": "object", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Company.html#property_object" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Company\u003A\u003A\u0024companyFormats", + "name": "companyFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Company.html#property_companyFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Company\u003A\u003A\u0024grafm", + "name": "grafm", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Company.html#property_grafm" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-el-GR-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024firstName", + "name": "firstName", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_firstName" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "Generate\u0020an\u0020area\u0020code\u0020for\u0020a\u0020fixed\u0020line\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003AfixedLineNumber\u0028\u0029", + "name": "fixedLineNumber", + "summary": "Generate\u0020a\u0020fixed\u0020line\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_fixedLineNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Generate\u0020a\u0020mobile\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003AmobilePhoneNumber\u0028\u0029", + "name": "mobilePhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_mobilePhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003ApersonalNumber\u0028\u0029", + "name": "personalNumber", + "summary": "Generate\u0020a\u0020personal\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_personalNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003AtollFreeNumber\u0028\u0029", + "name": "tollFreeNumber", + "summary": "Generate\u0020a\u0020toll\u002Dfree\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_tollFreeNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003AsharedCostNumber\u0028\u0029", + "name": "sharedCostNumber", + "summary": "Generate\u0020a\u0020shared\u002Dcost\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_sharedCostNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003ApremiumRateNumber\u0028\u0029", + "name": "premiumRateNumber", + "summary": "Generate\u0020a\u0020premium\u002Drate\u0020number.", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#method_premiumRateNumber" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024internationalCallPrefixes", + "name": "internationalCallPrefixes", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_internationalCallPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024areaCodes", + "name": "areaCodes", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_areaCodes" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024fixedLineFormats", + "name": "fixedLineFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_fixedLineFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024mobileCodes", + "name": "mobileCodes", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_mobileCodes" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024personalFormats", + "name": "personalFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_personalFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024tollFreeFormats", + "name": "tollFreeFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_tollFreeFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024sharedCostCodes", + "name": "sharedCostCodes", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_sharedCostCodes" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024sharedCostFormats", + "name": "sharedCostFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_sharedCostFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024premiumRateCodes", + "name": "premiumRateCodes", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_premiumRateCodes" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\PhoneNumber\u003A\u003A\u0024premiumRateFormats", + "name": "premiumRateFormats", + "summary": "", + "url": "classes/Faker-Provider-el-GR-PhoneNumber.html#property_premiumRateFormats" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-el-GR-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "From\u0020el.wikisource.org.", + "url": "classes/Faker-Provider-el-GR-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003AbuildingLetter\u0028\u0029", + "name": "buildingLetter", + "summary": "Returns\u0020a\u0020sane\u0020building\u0020letter", + "url": "classes/Faker-Provider-en-AU-Address.html#method_buildingLetter" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024buildingLetters", + "name": "buildingLetters", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_buildingLetters" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-en-AU-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-AU-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-en-AU-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "", + "url": "classes/Faker-Provider-en-AU-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-AU-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-en-AU-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_AU\\PhoneNumber\u003A\u003A\u0024areacodes", + "name": "areacodes", + "summary": "", + "url": "classes/Faker-Provider-en-AU-PhoneNumber.html#property_areacodes" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address", + "name": "Address", + "summary": "Extend\u0020US\u0020class\u0020since\u0020most\u0020fields\u0020share\u0020the\u0020same\u0020format", + "url": "classes/Faker-Provider-en-CA-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-en-CA-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address\u003A\u003A\u0024provinceAbbr", + "name": "provinceAbbr", + "summary": "", + "url": "classes/Faker-Provider-en-CA-Address.html#property_provinceAbbr" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address\u003A\u003ArandomPostcodeLetter\u0028\u0029", + "name": "randomPostcodeLetter", + "summary": "Returns\u0020a\u0020postalcode\u002Dsafe\u0020letter", + "url": "classes/Faker-Provider-en-CA-Address.html#method_randomPostcodeLetter" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-CA-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address\u003A\u003A\u0024postcodeLetters", + "name": "postcodeLetters", + "summary": "", + "url": "classes/Faker-Provider-en-CA-Address.html#property_postcodeLetters" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-CA-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-CA-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_CA\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-CA-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024county", + "name": "county", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_county" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "UK\u0020VAT\u0020number", + "url": "classes/Faker-Provider-en-GB-Company.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AgenerateStandardVatNumber\u0028\u0029", + "name": "generateStandardVatNumber", + "summary": "Standard\n9\u0020digits\u0020\u0028block\u0020of\u00203,\u0020block\u0020of\u00204,\u0020block\u0020of\u00202\u0029", + "url": "classes/Faker-Provider-en-GB-Company.html#method_generateStandardVatNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AgenerateHealthAuthorityVatNumber\u0028\u0029", + "name": "generateHealthAuthorityVatNumber", + "summary": "Health\u0020authorities\nthe\u0020letters\u0020HA\u0020then\u00203\u0020digits\u0020from\u0020500\u0020to\u0020999\u0020\u0028e.g.\u0020GBHA599\u0029", + "url": "classes/Faker-Provider-en-GB-Company.html#method_generateHealthAuthorityVatNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AgenerateBranchTraderVatNumber\u0028\u0029", + "name": "generateBranchTraderVatNumber", + "summary": "Branch\u0020traders\n12\u0020digits\u0020\u0028as\u0020for\u00209\u0020digits,\u0020followed\u0020by\u0020a\u0020block\u0020of\u00203\u0020digits\u0029", + "url": "classes/Faker-Provider-en-GB-Company.html#method_generateBranchTraderVatNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AgenerateGovernmentVatNumber\u0028\u0029", + "name": "generateGovernmentVatNumber", + "summary": "Government\u0020departments\nthe\u0020letters\u0020GD\u0020then\u00203\u0020digits\u0020from\u0020000\u0020to\u0020499\u0020\u0028e.g.\u0020GBGD001\u0029", + "url": "classes/Faker-Provider-en-GB-Company.html#method_generateGovernmentVatNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AcalculateModulus97\u0028\u0029", + "name": "calculateModulus97", + "summary": "Apply\u0020a\u0020Modulus97\u0020algorithm\u0020to\u0020an\u0020input", + "url": "classes/Faker-Provider-en-GB-Company.html#method_calculateModulus97" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AVAT_PREFIX", + "name": "VAT_PREFIX", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Company.html#constant_VAT_PREFIX" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AVAT_TYPE_DEFAULT", + "name": "VAT_TYPE_DEFAULT", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Company.html#constant_VAT_TYPE_DEFAULT" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AVAT_TYPE_BRANCH", + "name": "VAT_TYPE_BRANCH", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Company.html#constant_VAT_TYPE_BRANCH" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AVAT_TYPE_GOVERNMENT", + "name": "VAT_TYPE_GOVERNMENT", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Company.html#constant_VAT_TYPE_GOVERNMENT" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Company\u003A\u003AVAT_TYPE_HEALTH_AUTHORITY", + "name": "VAT_TYPE_HEALTH_AUTHORITY", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Company.html#constant_VAT_TYPE_HEALTH_AUTHORITY" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-en-GB-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person\u003A\u003Anino\u0028\u0029", + "name": "nino", + "summary": "Generates\u0020a\u0020random\u0020National\u0020Insurance\u0020number.", + "url": "classes/Faker-Provider-en-GB-Person.html#method_nino" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-en-GB-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-GB-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020en_GB\u0020mobile\u0020phone\u0020number", + "url": "classes/Faker-Provider-en-GB-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020en_GB\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats", + "url": "classes/Faker-Provider-en-GB-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_GB\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-en-GB-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_city" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003Atown\u0028\u0029", + "name": "town", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_town" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003Asyllable\u0028\u0029", + "name": "syllable", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_syllable" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003Adirection\u0028\u0029", + "name": "direction", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_direction" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003AenglishStreetName\u0028\u0029", + "name": "englishStreetName", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_englishStreetName" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003AvillageSuffix\u0028\u0029", + "name": "villageSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_villageSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003AestateSuffix\u0028\u0029", + "name": "estateSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_estateSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003Avillage\u0028\u0029", + "name": "village", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_village" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003Aestate\u0028\u0029", + "name": "estate", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#method_estate" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024syllables", + "name": "syllables", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_syllables" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024villageNameFormats", + "name": "villageNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_villageNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024estateNameFormats", + "name": "estateNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_estateNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024villageSuffixes", + "name": "villageSuffixes", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_villageSuffixes" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024estateSuffixes", + "name": "estateSuffixes", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_estateSuffixes" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024englishStreetNames", + "name": "englishStreetNames", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_englishStreetNames" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024directions", + "name": "directions", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_directions" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024cities", + "name": "cities", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_cities" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Address\u003A\u003A\u0024towns", + "name": "towns", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Address.html#property_towns" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-en-HK-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020an\u0020en_HK\u0020mobile\u0020phone\u0020number", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003AlandlineNumber\u0028\u0029", + "name": "landlineNumber", + "summary": "Return\u0020an\u0020en_HK\u0020landline\u0020number", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#method_landlineNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003AfaxNumber\u0028\u0029", + "name": "faxNumber", + "summary": "Return\u0020an\u0020en_HK\u0020fax\u0020number", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#method_faxNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003A\u0024landlineFormats", + "name": "landlineFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#property_landlineFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_HK\\PhoneNumber\u003A\u003A\u0024faxFormats", + "name": "faxFormats", + "summary": "", + "url": "classes/Faker-Provider-en-HK-PhoneNumber.html#property_faxFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024societySuffix", + "name": "societySuffix", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_societySuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003AsocietyName\u0028\u0029", + "name": "societyName", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#method_societyName" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003Alocality\u0028\u0029", + "name": "locality", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#method_locality" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024localityName", + "name": "localityName", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_localityName" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024areaSuffix", + "name": "areaSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_areaSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024localityFormats", + "name": "localityFormats", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_localityFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024societyNameFormat", + "name": "societyNameFormat", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_societyNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person\u003A\u003A\u0024middleNameMale", + "name": "middleNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html#property_middleNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-en-IN-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-IN-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020en_IN\u0020mobile\u0020phone\u0020number", + "url": "classes/Faker-Provider-en-IN-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-IN-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_IN\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020en_IN\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats", + "url": "classes/Faker-Provider-en-IN-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Address\u003A\u003A\u0024county", + "name": "county", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Address.html#property_county" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Address\u003A\u003Aregion\u0028\u0029", + "name": "region", + "summary": "Randomly\u0020returns\u0020a\u0020Nigerian\u0020region\u0020of\u0020a\u0020state.", + "url": "classes/Faker-Provider-en-NG-Address.html#method_region" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Address\u003A\u003A\u0024regions", + "name": "regions", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Address.html#property_regions" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "An\u0020array\u0020of\u0020typical\u0020Nigerian\u0020male\u0020firstnames.", + "url": "classes/Faker-Provider-en-NG-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-en-NG-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-NG-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NG\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-NG-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-NZ-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020\u0028New\u0020Zealand\u0029\u0020poscode\u0020formats", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020\u0028New\u0020Zealand\u0029\u0020regions", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020\u0028New\u0020Zealand\u0029\u0020building\u0020number\u0020formats", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020\u0028New\u0020Zealand\u0029\u0020street\u0020suffixes", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "City\u0020suffixes", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "City\u0020formats", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020\u0028New\u0020Zealand\u0029\u0020address\u0020formats", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020\u0028New\u0020Zealand\u0029\u0020street\u0020address\u0020formats", + "url": "classes/Faker-Provider-en-NZ-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-NZ-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "An\u0020array\u0020of\u0020New\u0020Zealand\u0020TLDs.", + "url": "classes/Faker-Provider-en-NZ-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020en_NZ\u0020mobile\u0020phone\u0020number", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003AtollFreeNumber\u0028\u0029", + "name": "tollFreeNumber", + "summary": "Return\u0020a\u0020en_NZ\u0020toll\u0020free\u0020phone\u0020number", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#method_tollFreeNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "Return\u0020a\u0020en_NZ\u0020landline\u0020area\u0020code", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003AbeginningNumber\u0028\u0029", + "name": "beginningNumber", + "summary": "Return\u0020a\u0020en_NZ\u0020landline\u0020beginning\u0020number", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#method_beginningNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020landline\u0020phone\u0020number\u0020formats", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003A\u0024tollFreeFormats", + "name": "tollFreeFormats", + "summary": "An\u0020array\u0020of\u0020toll\u0020free\u0020phone\u0020number\u0020formats", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#property_tollFreeFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003A\u0024areaCodes", + "name": "areaCodes", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020landline\u0020area\u0020codes", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#property_areaCodes" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ\\PhoneNumber\u003A\u003A\u0024beginningNumbers", + "name": "beginningNumbers", + "summary": "An\u0020array\u0020of\u0020en_NZ\u0020landline\u0020beginning\u0020numbers", + "url": "classes/Faker-Provider-en-NZ-PhoneNumber.html#property_beginningNumbers" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024municipality", + "name": "municipality", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_municipality" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024barangay", + "name": "barangay", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_barangay" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-PH-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-PH-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020en_PH\u0020mobile\u0020phone\u0020number", + "url": "classes/Faker-Provider-en-PH-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_PH\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-en-PH-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024streetNumber", + "name": "streetNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_streetNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024blockNumber", + "name": "blockNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_blockNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024floorNumber", + "name": "floorNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_floorNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024apartmentNumber", + "name": "apartmentNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_apartmentNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024townName", + "name": "townName", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_townName" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024streetName", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_streetName" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-SG-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Person\u003A\u003Anric\u0028\u0029", + "name": "nric", + "summary": "National\u0020Registration\u0020Identity\u0020Card\u0020number", + "url": "classes/Faker-Provider-en-SG-Person.html#method_nric" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Person\u003A\u003Afin\u0028\u0029", + "name": "fin", + "summary": "Foreign\u0020Identification\u0020Number", + "url": "classes/Faker-Provider-en-SG-Person.html#method_fin" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\Person\u003A\u003AsingaporeId\u0028\u0029", + "name": "singaporeId", + "summary": "Singapore\u0020NRIC\u0020\u0028citizens\u0029\u0020or\u0020FIN\u0020\u0028foreigners\u0029\u0020number", + "url": "classes/Faker-Provider-en-SG-Person.html#method_singaporeId" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024tollFreeInternationalNumber", + "name": "tollFreeInternationalNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_tollFreeInternationalNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024tollFreeLineNumber", + "name": "tollFreeLineNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_tollFreeLineNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024premiumPhoneNumber", + "name": "premiumPhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_premiumPhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003AfixedLineNumber\u0028\u0029", + "name": "fixedLineNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#method_fixedLineNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024voipNumber", + "name": "voipNumber", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_voipNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024internationalCodePrefix", + "name": "internationalCodePrefix", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_internationalCodePrefix" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024zeroToEight", + "name": "zeroToEight", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_zeroToEight" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024oneToEight", + "name": "oneToEight", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_oneToEight" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024mobileNumberFormats", + "name": "mobileNumberFormats", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_mobileNumberFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024fixedLineNumberFormats", + "name": "fixedLineNumberFormats", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_fixedLineNumberFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_SG\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-SG-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Address\u003A\u003A\u0024district", + "name": "district", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Address.html#property_district" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "It\u0020is\u0020very\u0020common\u0020in\u0020Uganda\u0020for\u0020people\u0020to\u0020arrange\u0020their\u0020names\u0020as\nlastname\u0028surname\u0029\u0020firstname", + "url": "classes/Faker-Provider-en-UG-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "It\u0020is\u0020very\u0020common\u0020in\u0020Uganda\u0020for\u0020people\u0020to\u0020arrange\u0020their\u0020names\u0020as\nlastname\u0028surname\u0029\u0020firstname", + "url": "classes/Faker-Provider-en-UG-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-UG-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-UG-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_UG\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-UG-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003Aein\u0028\u0029", + "name": "ein", + "summary": "Employer\u0020Identification\u0020Number\u0020\u0028EIN\u0029", + "url": "classes/Faker-Provider-en-US-Company.html#method_ein" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "Source\u0020\u002D\u0020http\u003A\/\/www.careerplanner.com\/ListOfJobs.cfm", + "url": "classes/Faker-Provider-en-US-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Company\u003A\u003A\u0024einPrefixes", + "name": "einPrefixes", + "summary": "", + "url": "classes/Faker-Provider-en-US-Company.html#property_einPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-en-US-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "", + "url": "classes/Faker-Provider-en-US-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Payment\u003A\u003AbankRoutingNumber\u0028\u0029", + "name": "bankRoutingNumber", + "summary": "", + "url": "classes/Faker-Provider-en-US-Payment.html#method_bankRoutingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Payment\u003A\u003AcalculateRoutingNumberChecksum\u0028\u0029", + "name": "calculateRoutingNumberChecksum", + "summary": "", + "url": "classes/Faker-Provider-en-US-Payment.html#method_calculateRoutingNumberChecksum" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003Assn\u0028\u0029", + "name": "ssn", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#method_ssn" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-en-US-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003AtollFreeAreaCode\u0028\u0029", + "name": "tollFreeAreaCode", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#method_tollFreeAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003AtollFreePhoneNumber\u0028\u0029", + "name": "tollFreePhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#method_tollFreePhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003AphoneNumberWithExtension\u0028\u0029", + "name": "phoneNumberWithExtension", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#method_phoneNumberWithExtension" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "NPA\u002Dformat\u0020area\u0020code", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003AexchangeCode\u0028\u0029", + "name": "exchangeCode", + "summary": "NXX\u002Dformat\u0020central\u0020office\u0020exchange\u0020code", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#method_exchangeCode" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003A\u0024areaCodeRegexes", + "name": "areaCodeRegexes", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#property_areaCodeRegexes" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003A\u0024formatsWithExtension", + "name": "formatsWithExtension", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#property_formatsWithExtension" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003A\u0024tollFreeAreaCodes", + "name": "tollFreeAreaCodes", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#property_tollFreeAreaCodes" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\PhoneNumber\u003A\u003A\u0024tollFreeFormats", + "name": "tollFreeFormats", + "summary": "", + "url": "classes/Faker-Provider-en-US-PhoneNumber.html#property_tollFreeFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-en-US-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Project\u0020Gutenberg\u0027s\u0020Alice\u0027s\u0020Adventures\u0020in\u0020Wonderland,\u0020by\u0020Lewis\u0020Carroll", + "url": "classes/Faker-Provider-en-US-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024provinceAbbr", + "name": "provinceAbbr", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_provinceAbbr" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Company\u003A\u003AcompanyNumber\u0028\u0029", + "name": "companyNumber", + "summary": "Return\u0020a\u0020valid\u0020company\u0020registration\u0020number.", + "url": "classes/Faker-Provider-en-ZA-Company.html#method_companyNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Company\u003A\u003A\u0024legalEntities", + "name": "legalEntities", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Company.html#property_legalEntities" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "An\u0020array\u0020of\u0020South\u0020African\u0020TLDs.", + "url": "classes/Faker-Provider-en-ZA-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003AidNumber\u0028\u0029", + "name": "idNumber", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#method_idNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003AlicenceCode\u0028\u0029", + "name": "licenceCode", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#method_licenceCode" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\Person\u003A\u003A\u0024licenceCodes", + "name": "licenceCodes", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-Person.html#property_licenceCodes" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003AcellphoneCode\u0028\u0029", + "name": "cellphoneCode", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#method_cellphoneCode" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003AspecialCode\u0028\u0029", + "name": "specialCode", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#method_specialCode" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003AtollFreeNumber\u0028\u0029", + "name": "tollFreeNumber", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#method_tollFreeNumber" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003A\u0024cellphoneFormats", + "name": "cellphoneFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#property_cellphoneFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003A\u0024specialFormats", + "name": "specialFormats", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#property_specialFormats" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA\\PhoneNumber\u003A\u003A\u0024tollFreeAreaCodes", + "name": "tollFreeAreaCodes", + "summary": "", + "url": "classes/Faker-Provider-en-ZA-PhoneNumber.html#property_tollFreeAreaCodes" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-es-AR-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-es-AR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\es_AR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-AR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024community", + "name": "community", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_community" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-es-ES-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Payment\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Value\u0020Added\u0020Tax\u0020\u0028VAT\u0029", + "url": "classes/Faker-Provider-es-ES-Payment.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Payment\u003A\u003A\u0024vatMap", + "name": "vatMap", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Payment.html#property_vatMap" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003Adni\u0028\u0029", + "name": "dni", + "summary": "Generate\u0020a\u0020Documento\u0020Nacional\u0020de\u0020Identidad\u0020\u0028DNI\u0029\u0020number", + "url": "classes/Faker-Provider-es-ES-Person.html#method_dni" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003AlicenceCode\u0028\u0029", + "name": "licenceCode", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#method_licenceCode" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024crcMap", + "name": "crcMap", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_crcMap" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/www.ine.es\/daco\/daco42\/nombyapel\/nombyapel.htm\n\u007B\u0040link\u007D\u0020http\u003A\/\/www.ine.es\/dyngs\/INEbase\/es\/operacion.htm\u003Fc\u003DEstadistica_C\u0026cid\u003D1254736177009\u0026menu\u003DultiDatos\u0026idp\u003D1254734710990\nManually\u0020added\u0020accent\u0020marks\u0020because\u0020the\u0020source\u0020lacks\u0020of\u0020them", + "url": "classes/Faker-Provider-es-ES-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Person\u003A\u003A\u0024licenceCodes", + "name": "licenceCodes", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Person.html#property_licenceCodes" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-es-ES-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-es-ES-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\PhoneNumber\u003A\u003AtollFreeNumber\u0028\u0029", + "name": "tollFreeNumber", + "summary": "", + "url": "classes/Faker-Provider-es-ES-PhoneNumber.html#method_tollFreeNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\PhoneNumber\u003A\u003A\u0024tollFreeFormats", + "name": "tollFreeFormats", + "summary": "", + "url": "classes/Faker-Provider-es-ES-PhoneNumber.html#property_tollFreeFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-es-ES-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Benito\u0020P\u00E9rez\u0020Gald\u00F3s\nTarfalgar", + "url": "classes/Faker-Provider-es-ES-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003Aruc\u0028\u0029", + "name": "ruc", + "summary": "Generate\u0020a\u0020REG.\u0020UNICO\u0020DE\u0020CONTRIBUYENTES\u0020\u0028RUC\u0029\u0020number", + "url": "classes/Faker-Provider-es-PE-Company.html#method_ruc" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003Adni\u0028\u0029", + "name": "dni", + "summary": "Generate\u0020a\u0020Documento\u0020Nacional\u0020de\u0020Identidad\u0020\u0028DNI\u0029\u0020number", + "url": "classes/Faker-Provider-es-PE-Person.html#method_dni" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-es-PE-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-es-PE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\es_PE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-PE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Company\u003A\u003AtaxpayerIdentificationNumber\u0028\u0029", + "name": "taxpayerIdentificationNumber", + "summary": "Generate\u0020random\u0020Taxpayer\u0020Identification\u0020Number\u0020\u0028RIF\u0020in\u0020Venezuela\u0029.\u0020Ex\u0020J\u002D123456789\u002D1", + "url": "classes/Faker-Provider-es-VE-Company.html#method_taxpayerIdentificationNumber" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003AnationalId\u0028\u0029", + "name": "nationalId", + "summary": "Generate\u0020random\u0020national\u0020identification\u0020number\u0020\u0028c\u00E9dula\u0020de\u0020identidad\u0029.\u0020Ex\u0020V\u002D8756432", + "url": "classes/Faker-Provider-es-VE-Person.html#method_nationalId" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "CNE\u0020is\u0020the\u0020official\u0020national\u0020election\u0020registry\u0020org.", + "url": "classes/Faker-Provider-es-VE-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "CNE\u0020is\u0020the\u0020official\u0020national\u0020election\u0020registry\u0020org.", + "url": "classes/Faker-Provider-es-VE-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "CNE\u0020is\u0020the\u0020official\u0020national\u0020election\u0020registry\u0020org.", + "url": "classes/Faker-Provider-es-VE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "CNE\u0020is\u0020the\u0020official\u0020national\u0020election\u0020registry\u0020org.", + "url": "classes/Faker-Provider-es-VE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "CNE\u0020is\u0020the\u0020official\u0020national\u0020election\u0020registry\u0020org.", + "url": "classes/Faker-Provider-es-VE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\Person\u003A\u003A\u0024nationalityId", + "name": "nationalityId", + "summary": "", + "url": "classes/Faker-Provider-es-VE-Person.html#property_nationalityId" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-es-VE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\es_VE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-es-VE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\et_EE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-et-EE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\et_EE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-et-EE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\et_EE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-et-EE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\et_EE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-et-EE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024buildingNamePrefix", + "name": "buildingNamePrefix", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_buildingNamePrefix" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024buildingNumberPrefix", + "name": "buildingNumberPrefix", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_buildingNumberPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003Abuilding\u0028\u0029", + "name": "building", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#method_building" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024postcodePrefix", + "name": "postcodePrefix", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_postcodePrefix" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024buildingFormat", + "name": "buildingFormat", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_buildingFormat" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Company\u003A\u003A\u0024companyField", + "name": "companyField", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Company.html#property_companyField" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Company\u003A\u003A\u0024contract", + "name": "contract", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Company.html#property_contract" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003A\u0024lastNameAscii", + "name": "lastNameAscii", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#property_lastNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003A\u0024firstNameAscii", + "name": "firstNameAscii", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#property_firstNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003AnationalCode\u0028\u0029", + "name": "nationalCode", + "summary": "This\u0020method\u0020returns\u0020a\u0020valid\u0020Iranian\u0020nationalCode", + "url": "classes/Faker-Provider-fa-IR-Person.html#method_nationalCode" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003AcreateAreaCode\u0028\u0029", + "name": "createAreaCode", + "summary": "This\u0020method\u0020generates\u0020a\u00203\u002Ddigit\u0020valid\u0020area\u0020code\u0020to\u0020be\u0020used\u0020in\u0020nationalCode", + "url": "classes/Faker-Provider-fa-IR-Person.html#method_createAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003AcreateCoreCode\u0028\u0029", + "name": "createCoreCode", + "summary": "This\u0020method\u0020randomly\u0020generates\u0020a\u00206\u002Ddigit\u0020core\u0020code\u0020for\u0020nationalCode", + "url": "classes/Faker-Provider-fa-IR-Person.html#method_createCoreCode" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003AcreateControlCode\u0028\u0029", + "name": "createControlCode", + "summary": "This\u0020method\u0020uses\u0020the\u0020Iranian\u0020nationalCode\u0020validation\u0020algorithm\u0020to\u0020generate\u0020a\u0020valid\u002010\u002Ddigit\u0020code", + "url": "classes/Faker-Provider-fa-IR-Person.html#method_createControlCode" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\PhoneNumber\u003A\u003A\u0024mobileNumberPrefixes", + "name": "mobileNumberPrefixes", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-PhoneNumber.html#property_mobileNumberPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-fa-IR-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Text\u003A\u003ArealText\u0028\u0029", + "name": "realText", + "summary": "generates\u0020text\u0020string\u0020in\u0020arabic", + "url": "classes/Faker-Provider-fa-IR-Text.html#method_realText" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "License\u003A\u0020Creative\u0020Commons\u0020Attribution\u002DShareAlike\u0020License", + "url": "classes/Faker-Provider-fa-IR-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-fi-FI-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "National\u0020Personal\u0020Identity\u0020Number\u0020\u0028Henkil\u00F6tunnus\u0029", + "url": "classes/Faker-Provider-fi-FI-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003AlandLineAreaCode\u0028\u0029", + "name": "landLineAreaCode", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#method_landLineAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003Ae164landLineAreaCode\u0028\u0029", + "name": "e164landLineAreaCode", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#method_e164landLineAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003AmobileNetworkAreaCode\u0028\u0029", + "name": "mobileNetworkAreaCode", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#method_mobileNetworkAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003Ae164MobileNetworkAreaCode\u0028\u0029", + "name": "e164MobileNetworkAreaCode", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#method_e164MobileNetworkAreaCode" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003AnumberFormat\u0028\u0029", + "name": "numberFormat", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#method_numberFormat" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003Aseparator\u0028\u0029", + "name": "separator", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#method_separator" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003A\u0024landLineareaCodes", + "name": "landLineareaCodes", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#property_landLineareaCodes" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003A\u0024mobileNetworkAreaCodes", + "name": "mobileNetworkAreaCodes", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#property_mobileNetworkAreaCodes" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003A\u0024numberFormats", + "name": "numberFormats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#property_numberFormats" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fi-FI-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\File", + "name": "File", + "summary": "", + "url": "classes/Faker-Provider-File.html" + }, { + "fqsen": "\\Faker\\Provider\\File\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020a\u0020random\u0020MIME\u0020type", + "url": "classes/Faker-Provider-File.html#method_mimeType" + }, { + "fqsen": "\\Faker\\Provider\\File\u003A\u003AfileExtension\u0028\u0029", + "name": "fileExtension", + "summary": "Get\u0020a\u0020random\u0020file\u0020extension\u0020\u0028without\u0020a\u0020dot\u0029", + "url": "classes/Faker-Provider-File.html#method_fileExtension" + }, { + "fqsen": "\\Faker\\Provider\\File\u003A\u003Afile\u0028\u0029", + "name": "file", + "summary": "Copy\u0020a\u0020random\u0020file\u0020from\u0020the\u0020source\u0020directory\u0020to\u0020the\u0020target\u0020directory\u0020and\u0020returns\u0020the\u0020filename\/fullpath", + "url": "classes/Faker-Provider-File.html#method_file" + }, { + "fqsen": "\\Faker\\Provider\\File\u003A\u003A\u0024mimeTypes", + "name": "mimeTypes", + "summary": "MIME\u0020types\u0020from\u0020the\u0020apache.org\u0020file.\u0020Some\u0020types\u0020are\u0020truncated.", + "url": "classes/Faker-Provider-File.html#property_mimeTypes" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "Source\u003A\u0020http\u003A\/\/fr.wikipedia.org\/wiki\/Ville_de_Belgique", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-fr-BE-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Payment\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Value\u0020Added\u0020Tax\u0020\u0028VAT\u0029", + "url": "classes/Faker-Provider-fr-BE-Payment.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fr-BE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "The\u0020suffixes\u0020come\u0020from\u0020this\u0020list\u0020of\u0020communities\u0020in\u0020Qu\u00E9bec\nhttp\u003A\/\/fr.wikipedia.org\/wiki\/Liste_des_municipalit\u00E9s_locales_du_Qu\u00E9bec", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "This\u0020list\u0020is\u0020more\u0020or\u0020less\u0020the\u0020same\u0020as\u0020in\u0020\\Faker\\Provider\\fr_FR\\Person.php\nSome\u0020common\u0020names\u0020were\u0020added\u0020and\u0020other\u0020removed.", + "url": "classes/Faker-Provider-fr-CA-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "These\u0020last\u0020names\u0020come\u0020from\u0020this\u0020list\u0020of\u0020most\u0020common\u0020family\u0020names\u0020in\u0020Qu\u00E9bec\u0020\u00281\u0020to\u0020130\u0029\nhttp\u003A\/\/fr.wikipedia.org\/wiki\/Liste_des_noms_de_famille_les_plus_courants_au_Qu\u00E9bec", + "url": "classes/Faker-Provider-fr-CA-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-fr-CA-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020La\u0020chasse\u0020galerie,\u0020by\u0020Honor\u00E9\u0020Beaugrand", + "url": "classes/Faker-Provider-fr-CA-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Returns\u0020a\u0020random\u0020city\u0020name.", + "url": "classes/Faker-Provider-fr-CH-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024canton", + "name": "canton", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_canton" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003AcantonShort\u0028\u0029", + "name": "cantonShort", + "summary": "Returns\u0020the\u0020abbreviation\u0020of\u0020a\u0020canton.", + "url": "classes/Faker-Provider-fr-CH-Address.html#method_cantonShort" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003AcantonName\u0028\u0029", + "name": "cantonName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020canton.", + "url": "classes/Faker-Provider-fr-CH-Address.html#method_cantonName" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-fr-CH-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Person\u003A\u003Aavs13\u0028\u0029", + "name": "avs13", + "summary": "Generates\u0020a\u0020valid\u0020random\u0020AVS13\u0020\u0028swiss\u0020social\u0020security\u0029\u0020number", + "url": "classes/Faker-Provider-fr-CH-Person.html#method_avs13" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020Swiss\u0020mobile\u0020phone\u0020number.", + "url": "classes/Faker-Provider-fr-CH-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020Swiss\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats.", + "url": "classes/Faker-Provider-fr-CH-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-fr-CH-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003Aregion\u0028\u0029", + "name": "region", + "summary": "Randomly\u0020returns\u0020a\u0020french\u0020region.", + "url": "classes/Faker-Provider-fr-FR-Address.html#method_region" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003Adepartment\u0028\u0029", + "name": "department", + "summary": "Randomly\u0020returns\u0020a\u0020french\u0020department\u0020\u0028\u0027departmentNumber\u0027\u0020\u003D\u003E\u0020\u0027departmentName\u0027\u0029.", + "url": "classes/Faker-Provider-fr-FR-Address.html#method_department" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003AdepartmentName\u0028\u0029", + "name": "departmentName", + "summary": "Randomly\u0020returns\u0020a\u0020french\u0020department\u0020name.", + "url": "classes/Faker-Provider-fr-FR-Address.html#method_departmentName" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003AdepartmentNumber\u0028\u0029", + "name": "departmentNumber", + "summary": "Randomly\u0020returns\u0020a\u0020french\u0020department\u0020number.", + "url": "classes/Faker-Provider-fr-FR-Address.html#method_departmentNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024regions", + "name": "regions", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_regions" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024departments", + "name": "departments", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_departments" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003AcatchPhraseNoun\u0028\u0029", + "name": "catchPhraseNoun", + "summary": "Returns\u0020a\u0020random\u0020catch\u0020phrase\u0020noun.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_catchPhraseNoun" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003AcatchPhraseAttribute\u0028\u0029", + "name": "catchPhraseAttribute", + "summary": "Returns\u0020a\u0020random\u0020catch\u0020phrase\u0020attribute.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_catchPhraseAttribute" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003AcatchPhraseVerb\u0028\u0029", + "name": "catchPhraseVerb", + "summary": "Returns\u0020a\u0020random\u0020catch\u0020phrase\u0020verb.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_catchPhraseVerb" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "Generates\u0020a\u0020french\u0020catch\u0020phrase.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003Asiret\u0028\u0029", + "name": "siret", + "summary": "Generates\u0020a\u0020siret\u0020number\u0020\u002814\u0020digits\u0029\u0020that\u0020passes\u0020the\u0020Luhn\u0020check.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_siret" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003Asiren\u0028\u0029", + "name": "siren", + "summary": "Generates\u0020a\u0020siren\u0020number\u0020\u00289\u0020digits\u0029\u0020that\u0020passes\u0020the\u0020Luhn\u0020check.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_siren" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003AisCatchPhraseValid\u0028\u0029", + "name": "isCatchPhraseValid", + "summary": "Validates\u0020a\u0020french\u0020catch\u0020phrase.", + "url": "classes/Faker-Provider-fr-FR-Company.html#method_isCatchPhraseValid" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024catchPhraseFormats", + "name": "catchPhraseFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_catchPhraseFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024noun", + "name": "noun", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_noun" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024verb", + "name": "verb", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_verb" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024attribute", + "name": "attribute", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_attribute" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024siretNicFormats", + "name": "siretNicFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_siretNicFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024wordsWhichShouldNotAppearTwice", + "name": "wordsWhichShouldNotAppearTwice", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_wordsWhichShouldNotAppearTwice" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Payment\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Value\u0020Added\u0020Tax\u0020\u0028VAT\u0029", + "url": "classes/Faker-Provider-fr-FR-Payment.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-fr-FR-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_prefix" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003Anir\u0028\u0029", + "name": "nir", + "summary": "Generates\u0020a\u0020NIR\u0020\/\u0020S\u00E9curit\u00E9\u0020Sociale\u0020number\u0020\u002813\u0020digits\u0020\u002B\u00202\u0020digits\u0020for\u0020the\u0020key\u0029", + "url": "classes/Faker-Provider-fr-FR-Person.html#method_nir" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AphoneNumber06\u0028\u0029", + "name": "phoneNumber06", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_phoneNumber06" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AphoneNumber06WithSeparator\u0028\u0029", + "name": "phoneNumber06WithSeparator", + "summary": "Only\u00200601\u0020to\u00200638,\u00200640\u0020to\u00200689,\u00200695\u0020and\u00200698\u0020to\u00200699\u0020are\u0020acceptable\u0020prefixes\u0020with\u002006", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_phoneNumber06WithSeparator" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AphoneNumber07\u0028\u0029", + "name": "phoneNumber07", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_phoneNumber07" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AphoneNumber07WithSeparator\u0028\u0029", + "name": "phoneNumber07WithSeparator", + "summary": "Only\u00200730\u0020to\u00200789\u0020are\u0020acceptable\u0020prefixes\u0020with\u002007", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_phoneNumber07WithSeparator" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AphoneNumber08\u0028\u0029", + "name": "phoneNumber08", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_phoneNumber08" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AphoneNumber08WithSeparator\u0028\u0029", + "name": "phoneNumber08WithSeparator", + "summary": "Valid\u0020formats\u0020for\u002008\u003A", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_phoneNumber08WithSeparator" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003AserviceNumber\u0028\u0029", + "name": "serviceNumber", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#method_serviceNumber" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003A\u0024serviceFormats", + "name": "serviceFormats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#property_serviceFormats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-fr-FR-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020Madame\u0020Bovary,\u0020by\u0020Gustave\u0020Flaubert", + "url": "classes/Faker-Provider-fr-FR-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "\u007B\u0040link\u007D\u0020https\u003A\/\/data.gov.il\/dataset\/322", + "url": "classes/Faker-Provider-he-IL-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "\u007B\u0040link\u007D\u0020https\u003A\/\/he.wikipedia.org\/wiki\/\u0025D7\u0025A4\u0025D7\u002595\u0025D7\u0025A8\u0025D7\u002598\u0025D7\u00259C\u003A\u0025D7\u00259E\u0025D7\u002593\u0025D7\u002599\u0025D7\u0025A0\u0025D7\u002595\u0025D7\u0025AA_\u0025D7\u002594\u0025D7\u0025A2\u0025D7\u002595\u0025D7\u00259C\u0025D7\u00259D\/\u0025D7\u00259E\u0025D7\u002593\u0025D7\u002599\u0025D7\u0025A0\u0025D7\u002595\u0025D7\u0025AA_\u0025D7\u002591\u0025D7\u00259E\u0025D7\u002599\u0025D7\u002595\u0025D7\u0025A0\u0025D7\u002599\u0025D7\u00259D_\u0025D7\u0025A9\u0025D7\u002595\u0025D7\u0025A0\u0025D7\u002599\u0025D7\u00259D", + "url": "classes/Faker-Provider-he-IL-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-he-IL-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/www.mamy.co.il\/\u0025D7\u0025A9\u0025D7\u00259E\u0025D7\u002595\u0025D7\u0025AA\u002D\u0025D7\u00259C\u0025D7\u0025AA\u0025D7\u002599\u0025D7\u0025A0\u0025D7\u002595\u0025D7\u0025A7\u0025D7\u002595\u0025D7\u0025AA", + "url": "classes/Faker-Provider-he-IL-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/toladot.blogspot.co.il\/p\/blog\u002Dpage_28.html", + "url": "classes/Faker-Provider-he-IL-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-he-IL-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-he-IL-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\he_IL\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-he-IL-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003Astreet\u0028\u0029", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#method_street" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024streets", + "name": "streets", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_streets" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-hr-HR-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-hr-HR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem", + "name": "HtmlLorem", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method___construct" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ArandomHtml\u0028\u0029", + "name": "randomHtml", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_randomHtml" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomSubTree\u0028\u0029", + "name": "addRandomSubTree", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomSubTree" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomLeaf\u0028\u0029", + "name": "addRandomLeaf", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomLeaf" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomAttribute\u0028\u0029", + "name": "addRandomAttribute", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomAttribute" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomP\u0028\u0029", + "name": "addRandomP", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomP" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomText\u0028\u0029", + "name": "addRandomText", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomText" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomA\u0028\u0029", + "name": "addRandomA", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomA" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomTitle\u0028\u0029", + "name": "addRandomTitle", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomTitle" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomH\u0028\u0029", + "name": "addRandomH", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomH" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomB\u0028\u0029", + "name": "addRandomB", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomB" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomI\u0028\u0029", + "name": "addRandomI", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomI" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomSpan\u0028\u0029", + "name": "addRandomSpan", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomSpan" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddLoginForm\u0028\u0029", + "name": "addLoginForm", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addLoginForm" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomTable\u0028\u0029", + "name": "addRandomTable", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomTable" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AaddRandomUL\u0028\u0029", + "name": "addRandomUL", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#method_addRandomUL" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AHTML_TAG", + "name": "HTML_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_HTML_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AHEAD_TAG", + "name": "HEAD_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_HEAD_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ABODY_TAG", + "name": "BODY_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_BODY_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ADIV_TAG", + "name": "DIV_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_DIV_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AP_TAG", + "name": "P_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_P_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AA_TAG", + "name": "A_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_A_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ASPAN_TAG", + "name": "SPAN_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_SPAN_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATABLE_TAG", + "name": "TABLE_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_TABLE_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATHEAD_TAG", + "name": "THEAD_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_THEAD_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATBODY_TAG", + "name": "TBODY_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_TBODY_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATR_TAG", + "name": "TR_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_TR_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATD_TAG", + "name": "TD_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_TD_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATH_TAG", + "name": "TH_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_TH_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AUL_TAG", + "name": "UL_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_UL_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ALI_TAG", + "name": "LI_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_LI_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AH_TAG", + "name": "H_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_H_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AB_TAG", + "name": "B_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_B_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AI_TAG", + "name": "I_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_I_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ATITLE_TAG", + "name": "TITLE_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_TITLE_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AFORM_TAG", + "name": "FORM_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_FORM_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003AINPUT_TAG", + "name": "INPUT_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_INPUT_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003ALABEL_TAG", + "name": "LABEL_TAG", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#constant_LABEL_TAG" + }, { + "fqsen": "\\Faker\\Provider\\HtmlLorem\u003A\u003A\u0024idGenerator", + "name": "idGenerator", + "summary": "", + "url": "classes/Faker-Provider-HtmlLorem.html#property_idGenerator" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003Acapital\u0028\u0029", + "name": "capital", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#method_capital" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003AbigCity\u0028\u0029", + "name": "bigCity", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#method_bigCity" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003AsmallerCity\u0028\u0029", + "name": "smallerCity", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#method_smallerCity" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003AlocalCoordinates\u0028\u0029", + "name": "localCoordinates", + "summary": "Coordinates\u0020inside\u0020the\u0020border\u0020of\u0020Hungary", + "url": "classes/Faker-Provider-hu-HU-Address.html#method_localCoordinates" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024capitals", + "name": "capitals", + "summary": "Source\u003A\u0020https\u003A\/\/hu.wikipedia.org\/wiki\/Magyarorsz\u0025C3\u0025A1g_v\u0025C3\u0025A1rosainak_list\u0025C3\u0025A1ja", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_capitals" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024bigCities", + "name": "bigCities", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_bigCities" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Address\u003A\u003A\u0024smallerCities", + "name": "smallerCities", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Address.html#property_smallerCities" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-hu-HU-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person", + "name": "Person", + "summary": "More\u0020info\u0020about\u0020the\u0020hungarian\u0020names\u0020and\u0020hungarian\u0020name\u0020abbreviations\u0020can\u0020be\u0020found\u0020here\u003A", + "url": "classes/Faker-Provider-hu-HU-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024firstNameMaleNe", + "name": "firstNameMaleNe", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_firstNameMaleNe" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024lastNameFemaleMarried", + "name": "lastNameFemaleMarried", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_lastNameFemaleMarried" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-hu-HU-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Author\u003A\u0020Rejt\u0151\u0020Jen\u0151\nTitle\u003A\u0020Piszkos\u0020Fred,\u0020a\u0020kapit\u00E1ny", + "url": "classes/Faker-Provider-hu-HU-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#method_address" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber\u003A\u003Acode\u0028\u0029", + "name": "code", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html#method_code" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber\u003A\u003AnumberFormat\u0028\u0029", + "name": "numberFormat", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html#method_numberFormat" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber\u003A\u003A\u0024codes", + "name": "codes", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html#property_codes" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber\u003A\u003A\u0024numberFormats", + "name": "numberFormats", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html#property_numberFormats" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-hy-AM-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "Abbreviated\u0020State\u0020Names.", + "url": "classes/Faker-Provider-id-ID-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#method_city" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003AbuildingNumber\u0028\u0029", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#method_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "General\u0020tld\u0020and\u0020local\u0020tld", + "url": "classes/Faker-Provider-id-ID-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "Return\u0020last\u0020name", + "url": "classes/Faker-Provider-id-ID-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "For\u0020academic\u0020title", + "url": "classes/Faker-Provider-id-ID-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003Anik\u0028\u0029", + "name": "nik", + "summary": "Generates\u0020Nomor\u0020Induk\u0020Kependudukan\u0020\u0028NIK\u0029", + "url": "classes/Faker-Provider-id-ID-Person.html#method_nik" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024birthPlaceCode", + "name": "birthPlaceCode", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_birthPlaceCode" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-id-ID-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-id-ID-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-id-ID-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\Image", + "name": "Image", + "summary": "Depends\u0020on\u0020image\u0020generation\u0020from\u0020http\u003A\/\/lorempixel.com\/", + "url": "classes/Faker-Provider-Image.html" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003AimageUrl\u0028\u0029", + "name": "imageUrl", + "summary": "Generate\u0020the\u0020URL\u0020that\u0020will\u0020return\u0020a\u0020random\u0020image", + "url": "classes/Faker-Provider-Image.html#method_imageUrl" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003Aimage\u0028\u0029", + "name": "image", + "summary": "Download\u0020a\u0020remote\u0020random\u0020image\u0020to\u0020disk\u0020and\u0020return\u0020its\u0020location", + "url": "classes/Faker-Provider-Image.html#method_image" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003AgetFormats\u0028\u0029", + "name": "getFormats", + "summary": "", + "url": "classes/Faker-Provider-Image.html#method_getFormats" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003AgetFormatConstants\u0028\u0029", + "name": "getFormatConstants", + "summary": "", + "url": "classes/Faker-Provider-Image.html#method_getFormatConstants" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003ABASE_URL", + "name": "BASE_URL", + "summary": "", + "url": "classes/Faker-Provider-Image.html#constant_BASE_URL" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003AFORMAT_JPG", + "name": "FORMAT_JPG", + "summary": "", + "url": "classes/Faker-Provider-Image.html#constant_FORMAT_JPG" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003AFORMAT_JPEG", + "name": "FORMAT_JPEG", + "summary": "", + "url": "classes/Faker-Provider-Image.html#constant_FORMAT_JPEG" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003AFORMAT_PNG", + "name": "FORMAT_PNG", + "summary": "", + "url": "classes/Faker-Provider-Image.html#constant_FORMAT_PNG" + }, { + "fqsen": "\\Faker\\Provider\\Image\u003A\u003A\u0024categories", + "name": "categories", + "summary": "", + "url": "classes/Faker-Provider-Image.html#property_categories" + }, { + "fqsen": "\\Faker\\Provider\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Aemail\u0028\u0029", + "name": "email", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_email" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AsafeEmail\u0028\u0029", + "name": "safeEmail", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_safeEmail" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AfreeEmail\u0028\u0029", + "name": "freeEmail", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_freeEmail" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AcompanyEmail\u0028\u0029", + "name": "companyEmail", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_companyEmail" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AsafeEmailDomain\u0028\u0029", + "name": "safeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_safeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Apassword\u0028\u0029", + "name": "password", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_password" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AdomainWord\u0028\u0029", + "name": "domainWord", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_domainWord" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Aurl\u0028\u0029", + "name": "url", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_url" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Aslug\u0028\u0029", + "name": "slug", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_slug" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Aipv4\u0028\u0029", + "name": "ipv4", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_ipv4" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Aipv6\u0028\u0029", + "name": "ipv6", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_ipv6" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AlocalIpv4\u0028\u0029", + "name": "localIpv4", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_localIpv4" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AmacAddress\u0028\u0029", + "name": "macAddress", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_macAddress" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003Atransliterate\u0028\u0029", + "name": "transliterate", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_transliterate" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003AtoAscii\u0028\u0029", + "name": "toAscii", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#method_toAscii" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003A\u0024emailFormats", + "name": "emailFormats", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#property_emailFormats" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003A\u0024urlFormats", + "name": "urlFormats", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#property_urlFormats" + }, { + "fqsen": "\\Faker\\Provider\\Internet\u003A\u003A\u0024localIpBlocks", + "name": "localIpBlocks", + "summary": "", + "url": "classes/Faker-Provider-Internet.html#property_localIpBlocks" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020city\u0020name.", + "url": "classes/Faker-Provider-is-IS-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003Aregion\u0028\u0029", + "name": "region", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020region\u0020name.", + "url": "classes/Faker-Provider-is-IS-Address.html#method_region" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024regionNames", + "name": "regionNames", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_regionNames" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Company\u003A\u003Avsk\u0028\u0029", + "name": "vsk", + "summary": "Generates\u0020a\u0020VSK\u0020number\u0020\u00285\u0020digits\u0029.", + "url": "classes/Faker-Provider-is-IS-Company.html#method_vsk" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Company\u003A\u003A\u0024vskFormat", + "name": "vskFormat", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Company.html#property_vskFormat" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-is-IS-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003A\u0024middleName", + "name": "middleName", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Person.html#property_middleName" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "Generate\u0020prepared\u0020last\u0020name\u0020for\u0020further\u0020processing.", + "url": "classes/Faker-Provider-is-IS-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003AlastNameMale\u0028\u0029", + "name": "lastNameMale", + "summary": "Randomly\u0020return\u0020an\u0020Icelandic\u0020last\u0020name\u0020for\u0020a\u0020woman.", + "url": "classes/Faker-Provider-is-IS-Person.html#method_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003AlastNameFemale\u0028\u0029", + "name": "lastNameFemale", + "summary": "Randomly\u0020return\u0020an\u0020Icelandic\u0020last\u0020name\u0020for\u0020a\u0020man.", + "url": "classes/Faker-Provider-is-IS-Person.html#method_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003Assn\u0028\u0029", + "name": "ssn", + "summary": "Return\u0020a\u0020random\u0020Icelandic\u0020Kennitala\u0020\u0028Social\u0020Security\u0020number\u0029.", + "url": "classes/Faker-Provider-is-IS-Person.html#method_ssn" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-is-IS-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-is-IS-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-is-IS-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Returns\u0020a\u0020random\u0020city\u0020name.", + "url": "classes/Faker-Provider-it-CH-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024canton", + "name": "canton", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_canton" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003AcantonShort\u0028\u0029", + "name": "cantonShort", + "summary": "Returns\u0020the\u0020abbreviation\u0020of\u0020a\u0020canton.", + "url": "classes/Faker-Provider-it-CH-Address.html#method_cantonShort" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003AcantonName\u0028\u0029", + "name": "cantonName", + "summary": "Returns\u0020the\u0020name\u0020of\u0020canton.", + "url": "classes/Faker-Provider-it-CH-Address.html#method_cantonName" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-it-CH-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Person\u003A\u003Aavs13\u0028\u0029", + "name": "avs13", + "summary": "Generates\u0020a\u0020valid\u0020random\u0020AVS13\u0020\u0028swiss\u0020social\u0020security\u0029\u0020number", + "url": "classes/Faker-Provider-it-CH-Person.html#method_avs13" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-it-CH-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020Swiss\u0020mobile\u0020phone\u0020number.", + "url": "classes/Faker-Provider-it-CH-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-it-CH-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "An\u0020array\u0020of\u0020Swiss\u0020mobile\u0020\u0028cell\u0029\u0020phone\u0020number\u0020formats.", + "url": "classes/Faker-Provider-it-CH-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_CH\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-it-CH-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Italian\u0020VAT\u0020number\u0020\u0028partita\u0020IVA\u0029", + "url": "classes/Faker-Provider-it-IT-Company.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003AvatId\u0028\u0029", + "name": "vatId", + "summary": "Italian\u0020VAT\u0020number\u0020\u0028partita\u0020IVA\u0029", + "url": "classes/Faker-Provider-it-IT-Company.html#method_vatId" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-it-IT-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003AtaxId\u0028\u0029", + "name": "taxId", + "summary": "TaxCode\u0020\u0028CodiceFiscale\u0029", + "url": "classes/Faker-Provider-it-IT-Person.html#method_taxId" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-it-IT-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-it-IT-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-it-IT-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020Una\u0020notte\u0020bizzarra,\u0020by\u0020Anton\u0020Giulio\u0020Barrili", + "url": "classes/Faker-Provider-it-IT-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003Apostcode1\u0028\u0029", + "name": "postcode1", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#method_postcode1" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003Apostcode2\u0028\u0029", + "name": "postcode2", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#method_postcode2" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003Apostcode\u0028\u0029", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#method_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024prefecture", + "name": "prefecture", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_prefecture" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024ward", + "name": "ward", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_ward" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003AareaNumber\u0028\u0029", + "name": "areaNumber", + "summary": "\u4E01\u3001\u756A\u5730\u3001\u53F7", + "url": "classes/Faker-Provider-ja-JP-Address.html#method_areaNumber" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003AbuildingNumber\u0028\u0029", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#method_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024wardSuffix", + "name": "wardSuffix", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_wardSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024postcodeFormats", + "name": "postcodeFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_postcodeFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003A\u0024lastNameAscii", + "name": "lastNameAscii", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/dic.nicovideo.jp\/a\/\u0025E6\u002597\u0025A5\u0025E6\u00259C\u0025AC\u0025E3\u002581\u0025AE\u0025E8\u00258B\u002597\u0025E5\u0025AD\u002597\u002528\u0025E5\u002590\u00258D\u0025E5\u0025AD\u002597\u002529\u0025E3\u002581\u0025AE\u0025E4\u0025B8\u002580\u0025E8\u0025A6\u0025A7", + "url": "classes/Faker-Provider-ja-JP-Internet.html#property_lastNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003A\u0024firstNameAscii", + "name": "firstNameAscii", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/dic.nicovideo.jp\/a\/\u0025E6\u002597\u0025A5\u0025E6\u00259C\u0025AC\u0025E4\u0025BA\u0025BA\u0025E3\u002581\u0025AE\u0025E5\u002590\u00258D\u0025E5\u002589\u00258D\u0025E4\u0025B8\u002580\u0025E8\u0025A6\u0025A7\n\u007B\u0040link\u007D\u0020http\u003A\/\/www.meijiyasuda.co.jp\/enjoy\/ranking\/", + "url": "classes/Faker-Provider-ja-JP-Internet.html#property_firstNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003AkanaName\u0028\u0029", + "name": "kanaName", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#method_kanaName" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003AfirstKanaName\u0028\u0029", + "name": "firstKanaName", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#method_firstKanaName" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024firstKanaNameMale", + "name": "firstKanaNameMale", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_firstKanaNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024firstKanaNameFemale", + "name": "firstKanaNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_firstKanaNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024lastKanaName", + "name": "lastKanaName", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_lastKanaName" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/dic.nicovideo.jp\/a\/\u0025E6\u002597\u0025A5\u0025E6\u00259C\u0025AC\u0025E4\u0025BA\u0025BA\u0025E3\u002581\u0025AE\u0025E5\u002590\u00258D\u0025E5\u002589\u00258D\u0025E4\u0025B8\u002580\u0025E8\u0025A6\u0025A7\n\u007B\u0040link\u007D\u0020http\u003A\/\/www.meijiyasuda.co.jp\/enjoy\/ranking\/", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/dic.nicovideo.jp\/a\/\u0025E6\u002597\u0025A5\u0025E6\u00259C\u0025AC\u0025E4\u0025BA\u0025BA\u0025E3\u002581\u0025AE\u0025E5\u002590\u00258D\u0025E5\u002589\u00258D\u0025E4\u0025B8\u002580\u0025E8\u0025A6\u0025A7\n\u007B\u0040link\u007D\u0020http\u003A\/\/www.meijiyasuda.co.jp\/enjoy\/ranking\/", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/dic.nicovideo.jp\/a\/\u0025E6\u002597\u0025A5\u0025E6\u00259C\u0025AC\u0025E3\u002581\u0025AE\u0025E8\u00258B\u002597\u0025E5\u0025AD\u002597\u002528\u0025E5\u002590\u00258D\u0025E5\u0025AD\u002597\u002529\u0025E3\u002581\u0025AE\u0025E4\u0025B8\u002580\u0025E8\u0025A6\u0025A7", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024firstKanaNameFormat", + "name": "firstKanaNameFormat", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_firstKanaNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024maleKanaNameFormats", + "name": "maleKanaNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_maleKanaNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Person\u003A\u003A\u0024femaleKanaNameFormats", + "name": "femaleKanaNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Person.html#property_femaleKanaNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003Aexplode\u0028\u0029", + "name": "explode", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#method_explode" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003Astrlen\u0028\u0029", + "name": "strlen", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#method_strlen" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003AvalidStart\u0028\u0029", + "name": "validStart", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#method_validStart" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003AappendEnd\u0028\u0029", + "name": "appendEnd", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#method_appendEnd" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003A\u0024separator", + "name": "separator", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#property_separator" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003A\u0024separatorLen", + "name": "separatorLen", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#property_separatorLen" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003A\u0024notEndPunct", + "name": "notEndPunct", + "summary": "All\u0020punctuation\u0020in\u0020\u0024baseText\u003A\u0020\u3001\u0020\u3002\u0020\u300C\u0020\u300D\u0020\u300E\u0020\u300F\u0020\uFF01\u0020\uFF1F\u0020\u30FC\u0020\uFF0C\u0020\uFF1A\u0020\uFF1B", + "url": "classes/Faker-Provider-ja-JP-Text.html#property_notEndPunct" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003A\u0024endPunct", + "name": "endPunct", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#property_endPunct" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003A\u0024notBeginPunct", + "name": "notBeginPunct", + "summary": "", + "url": "classes/Faker-Provider-ja-JP-Text.html#property_notBeginPunct" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Title\u003A\u0020\u9280\u6CB3\u9244\u9053\u306E\u591C\u0020Night\u0020On\u0020The\u0020Milky\u0020Way\u0020Train\nAuthor\u003A\u0020\u5BAE\u6CA2\u8CE2\u6CBB\u0020Kenji\u0020Miyazawa\nLanguage\u003A\u0020Japanese", + "url": "classes/Faker-Provider-ja-JP-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024regionGenitiveForm", + "name": "regionGenitiveForm", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_regionGenitiveForm" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003Acompany\u0028\u0029", + "name": "company", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#method_company" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003AcompanyPrefix\u0028\u0029", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#method_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003AcompanyNameElement\u0028\u0029", + "name": "companyNameElement", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#method_companyNameElement" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003AcompanyNameSuffix\u0028\u0029", + "name": "companyNameSuffix", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#method_companyNameSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003A\u0024companyPrefixes", + "name": "companyPrefixes", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#property_companyPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003A\u0024companyNameSuffixes", + "name": "companyNameSuffixes", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#property_companyNameSuffixes" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003A\u0024companyElements", + "name": "companyElements", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#property_companyElements" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Company\u003A\u003A\u0024companyNameFormats", + "name": "companyNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Company.html#property_companyNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\DateTime", + "name": "DateTime", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-DateTime.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-ka-GE-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Text\u003A\u003A\u0024textStartsWithUppercase", + "name": "textStartsWithUppercase", + "summary": "", + "url": "classes/Faker-Provider-ka-GE-Text.html#property_textStartsWithUppercase" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "License\u003A\u0020Attribution\u002DShareAlike\u00203.0\u0020Unported\u0020\u0028CC\u0020BY\u002DSA\u00203.0\u0029", + "url": "classes/Faker-Provider-ka-GE-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003Acompany\u0028\u0029", + "name": "company", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#method_company" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003AcompanyPrefix\u0028\u0029", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#method_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003AcompanyNameElement\u0028\u0029", + "name": "companyNameElement", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#method_companyNameElement" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003AcompanyNameSuffix\u0028\u0029", + "name": "companyNameSuffix", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#method_companyNameSuffix" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003AbusinessIdentificationNumber\u0028\u0029", + "name": "businessIdentificationNumber", + "summary": "National\u0020Business\u0020Identification\u0020Numbers", + "url": "classes/Faker-Provider-kk-KZ-Company.html#method_businessIdentificationNumber" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003A\u0024companyNameFormats", + "name": "companyNameFormats", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#property_companyNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003A\u0024companyPrefixes", + "name": "companyPrefixes", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#property_companyPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003A\u0024companyNameSuffixes", + "name": "companyNameSuffixes", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#property_companyNameSuffixes" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Company\u003A\u003A\u0024companyElements", + "name": "companyElements", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Company.html#property_companyElements" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-kk-KZ-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AgetCenturyByYear\u0028\u0029", + "name": "getCenturyByYear", + "summary": "Note\u0021\u0020When\u0020calculating\u0020individual\u0020identification\u0020number\n\u0020\u00202000\u002D01\u002D01\u0020\u002D\u00202000\u002D12\u002D31\u0020counts\u0020as\u002021th\u0020century\n\u0020\u00201900\u002D01\u002D01\u0020\u002D\u00201900\u002D12\u002D31\u0020counts\u0020as\u002020th\u0020century", + "url": "classes/Faker-Provider-kk-KZ-Person.html#method_getCenturyByYear" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AindividualIdentificationNumber\u0028\u0029", + "name": "individualIdentificationNumber", + "summary": "National\u0020Individual\u0020Identification\u0020Numbers", + "url": "classes/Faker-Provider-kk-KZ-Person.html#method_individualIdentificationNumber" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AcheckSum\u0028\u0029", + "name": "checkSum", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#method_checkSum" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AgetControlDigit\u0028\u0029", + "name": "getControlDigit", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#method_getControlDigit" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AGENDER_MALE", + "name": "GENDER_MALE", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_GENDER_MALE" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AGENDER_FEMALE", + "name": "GENDER_FEMALE", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_GENDER_FEMALE" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003ACENTURY_19TH", + "name": "CENTURY_19TH", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_CENTURY_19TH" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003ACENTURY_20TH", + "name": "CENTURY_20TH", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_CENTURY_20TH" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003ACENTURY_21ST", + "name": "CENTURY_21ST", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_CENTURY_21ST" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AMALE_CENTURY_19TH", + "name": "MALE_CENTURY_19TH", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_MALE_CENTURY_19TH" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AMALE_CENTURY_20TH", + "name": "MALE_CENTURY_20TH", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_MALE_CENTURY_20TH" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AMALE_CENTURY_21ST", + "name": "MALE_CENTURY_21ST", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_MALE_CENTURY_21ST" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AFEMALE_CENTURY_19TH", + "name": "FEMALE_CENTURY_19TH", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_FEMALE_CENTURY_19TH" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AFEMALE_CENTURY_20TH", + "name": "FEMALE_CENTURY_20TH", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_FEMALE_CENTURY_20TH" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003AFEMALE_CENTURY_21ST", + "name": "FEMALE_CENTURY_21ST", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#constant_FEMALE_CENTURY_21ST" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024firstSequenceBitWeights", + "name": "firstSequenceBitWeights", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_firstSequenceBitWeights" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024secondSequenceBitWeights", + "name": "secondSequenceBitWeights", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_secondSequenceBitWeights" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024genderCenturyMap", + "name": "genderCenturyMap", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_genderCenturyMap" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-kk-KZ-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "From\u0020kk.wikipedia.org", + "url": "classes/Faker-Provider-kk-KZ-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024metropolitanCity", + "name": "metropolitanCity", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_metropolitanCity" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024borough", + "name": "borough", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_borough" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024streetName", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_streetName" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003A\u0024lastNameAscii", + "name": "lastNameAscii", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/ko.wikipedia.org\/wiki\/\u0025EB\u00258C\u002580\u0025ED\u002595\u00259C\u0025EB\u0025AF\u0025BC\u0025EA\u0025B5\u0025AD\u0025EC\u00259D\u002598_\u0025EC\u00259D\u0025B8\u0025EA\u0025B5\u0025AC\u0025EC\u002588\u00259C_\u0025EC\u002584\u0025B1\u0025EC\u002594\u0025A8_\u0025EB\u0025AA\u0025A9\u0025EB\u0025A1\u00259D", + "url": "classes/Faker-Provider-ko-KR-Internet.html#property_lastNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003A\u0024firstNameAscii", + "name": "firstNameAscii", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/ko.wikipedia.org\/wiki\/\u0025ED\u002595\u00259C\u0025EA\u0025B5\u0025AD\u0025EC\u00259D\u002598_\u0025EC\u002584\u0025B1\u0025EC\u002594\u0025A8\u0025EC\u002599\u002580_\u0025EC\u00259D\u0025B4\u0025EB\u0025A6\u002584\u0023.EC.8B.9C.EB.8C.80.EB.B3.84_.EA.B0.80.EC.9E.A5_.ED.9D.94.ED.95.9C_.EC.9D.B4.EB.A6.84_10.EC.84.A0.28.E9.81.B8.29", + "url": "classes/Faker-Provider-ko-KR-Internet.html#property_firstNameAscii" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003AdomainName\u0028\u0029", + "name": "domainName", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Internet.html#method_domainName" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003A\u0024safeEmailTld", + "name": "safeEmailTld", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Internet.html#property_safeEmailTld" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "This\u0020provider\u0020uses\u0020wikipedia\u0027s\u0020top\u0020Korean\u0020last\u0020names.\u0020These\u0020cover\u0020more\u0020than\u002090\u0025\u0020of\u0020Korean\u0020population.", + "url": "classes/Faker-Provider-ko-KR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/ko.wikipedia.org\/wiki\/\u0025ED\u002595\u00259C\u0025EA\u0025B5\u0025AD\u0025EC\u00259D\u002598_\u0025EC\u002584\u0025B1\u0025EC\u002594\u0025A8\u0025EC\u002599\u002580_\u0025EC\u00259D\u0025B4\u0025EB\u0025A6\u002584\u0023.EC.8B.9C.EB.8C.80.EB.B3.84_.EA.B0.80.EC.9E.A5_.ED.9D.94.ED.95.9C_.EC.9D.B4.EB.A6.84_10.EC.84.A0.28.E9.81.B8.29", + "url": "classes/Faker-Provider-ko-KR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/ko.wikipedia.org\/wiki\/\u0025EB\u00258C\u002580\u0025ED\u002595\u00259C\u0025EB\u0025AF\u0025BC\u0025EA\u0025B5\u0025AD\u0025EC\u00259D\u002598_\u0025EC\u00259D\u0025B8\u0025EA\u0025B5\u0025AC\u0025EC\u002588\u00259C_\u0025EC\u002584\u0025B1\u0025EC\u002594\u0025A8_\u0025EB\u0025AA\u0025A9\u0025EB\u0025A1\u00259D", + "url": "classes/Faker-Provider-ko-KR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\PhoneNumber\u003A\u003AlocalAreaPhoneNumber\u0028\u0029", + "name": "localAreaPhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-PhoneNumber.html#method_localAreaPhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\PhoneNumber\u003A\u003AcellPhoneNumber\u0028\u0029", + "name": "cellPhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-PhoneNumber.html#method_cellPhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ko-KR-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "From\u0020ko.wikisource.org", + "url": "classes/Faker-Provider-ko-KR-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\Lorem", + "name": "Lorem", + "summary": "", + "url": "classes/Faker-Provider-Lorem.html" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Aword\u0028\u0029", + "name": "word", + "summary": "", + "url": "classes/Faker-Provider-Lorem.html#method_word" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Awords\u0028\u0029", + "name": "words", + "summary": "Generate\u0020an\u0020array\u0020of\u0020random\u0020words", + "url": "classes/Faker-Provider-Lorem.html#method_words" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Asentence\u0028\u0029", + "name": "sentence", + "summary": "Generate\u0020a\u0020random\u0020sentence", + "url": "classes/Faker-Provider-Lorem.html#method_sentence" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Asentences\u0028\u0029", + "name": "sentences", + "summary": "Generate\u0020an\u0020array\u0020of\u0020sentences", + "url": "classes/Faker-Provider-Lorem.html#method_sentences" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Aparagraph\u0028\u0029", + "name": "paragraph", + "summary": "Generate\u0020a\u0020single\u0020paragraph", + "url": "classes/Faker-Provider-Lorem.html#method_paragraph" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Aparagraphs\u0028\u0029", + "name": "paragraphs", + "summary": "Generate\u0020an\u0020array\u0020of\u0020paragraphs", + "url": "classes/Faker-Provider-Lorem.html#method_paragraphs" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003Atext\u0028\u0029", + "name": "text", + "summary": "Generate\u0020a\u0020text\u0020string.", + "url": "classes/Faker-Provider-Lorem.html#method_text" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003ArandomizeNbElements\u0028\u0029", + "name": "randomizeNbElements", + "summary": "", + "url": "classes/Faker-Provider-Lorem.html#method_randomizeNbElements" + }, { + "fqsen": "\\Faker\\Provider\\Lorem\u003A\u003A\u0024wordList", + "name": "wordList", + "summary": "", + "url": "classes/Faker-Provider-Lorem.html#property_wordList" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#method_address" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003AcitySuffix\u0028\u0029", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#method_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024municipality", + "name": "municipality", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_municipality" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-lt-LT-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003AdriverLicence\u0028\u0029", + "name": "driverLicence", + "summary": "Return\u0020driver\u0020license\u0020number", + "url": "classes/Faker-Provider-lt-LT-Person.html#method_driverLicence" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003ApassportNumber\u0028\u0029", + "name": "passportNumber", + "summary": "Return\u0020passport\u0020number", + "url": "classes/Faker-Provider-lt-LT-Person.html#method_passportNumber" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "National\u0020Personal\u0020Identity\u0020number\u0020\u0028asmens\u0020kodas\u0029", + "url": "classes/Faker-Provider-lt-LT-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003AcalculateSum\u0028\u0029", + "name": "calculateSum", + "summary": "Calculate\u0020the\u0020sum\u0020of\u0020personal\u0020code", + "url": "classes/Faker-Provider-lt-LT-Person.html#method_calculateSum" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-lt-LT-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#method_address" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-lv-LV-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person\u003A\u003AdriverLicence\u0028\u0029", + "name": "driverLicence", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Person.html#method_driverLicence" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person\u003A\u003ApassportNumber\u0028\u0029", + "name": "passportNumber", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-Person.html#method_passportNumber" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "National\u0020Personal\u0020Identity\u0020number\u0020\u0028personas\u0020kods\u0029", + "url": "classes/Faker-Provider-lv-LV-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/vardunozime.lv\/names\u002Dmale", + "url": "classes/Faker-Provider-lv-LV-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/vardunozime.lv\/names\u002Dfemale", + "url": "classes/Faker-Provider-lv-LV-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "\u007B\u0040link\u007D\u0020https\u003A\/\/lv.wikipedia.org\/wiki\/Kategorija\u003ALatvie\u0025C5\u0025A1u_uzv\u0025C4\u002581rdi", + "url": "classes/Faker-Provider-lv-LV-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-lv-LV-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "\u007B\u0040link\u007D\u0020https\u003A\/\/en.wikipedia.org\/wiki\/Telephone_numbers_in_Latvia", + "url": "classes/Faker-Provider-lv-LV-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003AlocalCoordinates\u0028\u0029", + "name": "localCoordinates", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#method_localCoordinates" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Company\u003A\u003AcompanyType\u0028\u0029", + "name": "companyType", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Company.html#method_companyType" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Company\u003A\u003AcompanyName\u0028\u0029", + "name": "companyName", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Company.html#method_companyName" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Company\u003A\u003A\u0024names", + "name": "names", + "summary": "Source\u003A\u0020extracted\u0020from\u0020http\u003A\/\/www.crps.me\/index.php\/predraga", + "url": "classes/Faker-Provider-me-ME-Company.html#property_names" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Company\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Company.html#property_types" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-me-ME-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-me-ME-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-me-ME-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\me_ME\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-me-ME-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\Medical", + "name": "Medical", + "summary": "", + "url": "classes/Faker-Provider-Medical.html" + }, { + "fqsen": "\\Faker\\Provider\\Medical\u003A\u003AbloodType\u0028\u0029", + "name": "bloodType", + "summary": "", + "url": "classes/Faker-Provider-Medical.html#method_bloodType" + }, { + "fqsen": "\\Faker\\Provider\\Medical\u003A\u003AbloodRh\u0028\u0029", + "name": "bloodRh", + "summary": "", + "url": "classes/Faker-Provider-Medical.html#method_bloodRh" + }, { + "fqsen": "\\Faker\\Provider\\Medical\u003A\u003AbloodGroup\u0028\u0029", + "name": "bloodGroup", + "summary": "", + "url": "classes/Faker-Provider-Medical.html#method_bloodGroup" + }, { + "fqsen": "\\Faker\\Provider\\Medical\u003A\u003A\u0024bloodTypes", + "name": "bloodTypes", + "summary": "", + "url": "classes/Faker-Provider-Medical.html#property_bloodTypes" + }, { + "fqsen": "\\Faker\\Provider\\Medical\u003A\u003A\u0024bloodRhFactors", + "name": "bloodRhFactors", + "summary": "", + "url": "classes/Faker-Provider-Medical.html#property_bloodRhFactors" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous", + "name": "Miscellaneous", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003Aboolean\u0028\u0029", + "name": "boolean", + "summary": "Return\u0020a\u0020boolean,\u0020true\u0020or\u0020false.", + "url": "classes/Faker-Provider-Miscellaneous.html#method_boolean" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003Amd5\u0028\u0029", + "name": "md5", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#method_md5" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003Asha1\u0028\u0029", + "name": "sha1", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#method_sha1" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003Asha256\u0028\u0029", + "name": "sha256", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#method_sha256" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003Alocale\u0028\u0029", + "name": "locale", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#method_locale" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003A\u0024countryCode", + "name": "countryCode", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#property_countryCode" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003A\u0024countryISOAlpha3", + "name": "countryISOAlpha3", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#property_countryISOAlpha3" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003A\u0024languageCode", + "name": "languageCode", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#property_languageCode" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003A\u0024currencyCode", + "name": "currencyCode", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#property_currencyCode" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003A\u0024emoji", + "name": "emoji", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#property_emoji" + }, { + "fqsen": "\\Faker\\Provider\\Miscellaneous\u003A\u003A\u0024localeData", + "name": "localeData", + "summary": "", + "url": "classes/Faker-Provider-Miscellaneous.html#property_localeData" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003AidNumber\u0028\u0029", + "name": "idNumber", + "summary": "Generate\u0020an\u0020identification\u0020number.", + "url": "classes/Faker-Provider-mn-MN-Person.html#method_idNumber" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024alphabet", + "name": "alphabet", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_alphabet" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024namePrefix", + "name": "namePrefix", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_namePrefix" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\Person\u003A\u003A\u0024idNumberFormat", + "name": "idNumberFormat", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-Person.html#property_idNumberFormat" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-mn-MN-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024buildingPrefix", + "name": "buildingPrefix", + "summary": "Most\u0020of\u0020the\u0020time\u0020\u0027No.\u0027\u0020is\u0020not\u0020needed,\u0020and\u0020\u0027Lot\u0027\u0020is\u0020less\u0020used.", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_buildingPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "\u0027Jalan\u0027\u0020\u0026\u0020\u0027Jln\u0027\u0020are\u0020more\u0020frequently\u0020used\u0020than\u0020\u0027Lorong\u0027", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "Return\u0020a\u0020complete\u0020streename", + "url": "classes/Faker-Provider-ms-MY-Address.html#method_streetName" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003Atownship\u0028\u0029", + "name": "township", + "summary": "Return\u0020a\u0020randown\u0020township", + "url": "classes/Faker-Provider-ms-MY-Address.html#method_township" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024townshipPrefixAbbr", + "name": "townshipPrefixAbbr", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_townshipPrefixAbbr" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024townshipPrefix", + "name": "townshipPrefix", + "summary": "\u0027Bandar\u0027\u0020and\u0020\u0027Taman\u0027\u0020are\u0020the\u0020most\u0020common\u0020township\u0020prefix", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_townshipPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024townshipSuffix", + "name": "townshipSuffix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_townshipSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003Apostcode\u0028\u0029", + "name": "postcode", + "summary": "Return\u0020a\u0020postcode\u0020based\u0020on\u0020state", + "url": "classes/Faker-Provider-ms-MY-Address.html#method_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003AtownState\u0028\u0029", + "name": "townState", + "summary": "Return\u0020the\u0020complete\u0020town\u0020address\u0020with\u0020matching\u0020postcode\u0020and\u0020state", + "url": "classes/Faker-Provider-ms-MY-Address.html#method_townState" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "Return\u0020a\u0020random\u0020city\u0020\u0028town\u0029", + "url": "classes/Faker-Provider-ms-MY-Address.html#method_city" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003Astate\u0028\u0029", + "name": "state", + "summary": "Return\u0020a\u0020random\u0020state", + "url": "classes/Faker-Provider-ms-MY-Address.html#method_state" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024townshipFormats", + "name": "townshipFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_townshipFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024towns", + "name": "towns", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_towns" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024states", + "name": "states", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_states" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Company\u003A\u003AcompanyName\u0028\u0029", + "name": "companyName", + "summary": "Return\u0020a\u0020random\u0020company\u0020name", + "url": "classes/Faker-Provider-ms-MY-Company.html#method_companyName" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Company\u003A\u003A\u0024industry", + "name": "industry", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Company.html#property_industry" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "There\u0020are\u0020more\u0020Private\u0020Limited\u0020Companies\u0028Sdn\u0020Bhd\u0029\u0020than\u0020Public\u0020Listed\u0020Companies\u0028Berhad\u0029", + "url": "classes/Faker-Provider-ms-MY-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Company\u003A\u003A\u0024companies", + "name": "companies", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Company.html#property_companies" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous", + "name": "Miscellaneous", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003AjpjNumberPlate\u0028\u0029", + "name": "jpjNumberPlate", + "summary": "Return\u0020a\u0020valid\u0020Malaysia\u0020JPJ\u0028Road\u0020Transport\u0020Department\u0029\u0020vehicle\u0020licence\u0020plate\u0020number", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#method_jpjNumberPlate" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003A\u0024peninsularPrefix", + "name": "peninsularPrefix", + "summary": "Some\u0020alphabet\u0020has\u0020higher\u0020frequency\u0020that\u0020coincides\u0020with\u0020the\u0020current\u0020number\nof\u0020registrations.\u0020E.g.\u0020W\u0020\u003D\u0020Wilayah\u0020Persekutuan", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#property_peninsularPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003A\u0024sarawakPrefix", + "name": "sarawakPrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#property_sarawakPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003A\u0024sabahPrefix", + "name": "sabahPrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#property_sabahPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003A\u0024specialPrefix", + "name": "specialPrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#property_specialPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003AvalidAlphabet\u0028\u0029", + "name": "validAlphabet", + "summary": "Return\u0020a\u0020valid\u0020license\u0020plate\u0020alphabet", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#method_validAlphabet" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003AnumberSequence\u0028\u0029", + "name": "numberSequence", + "summary": "Return\u0020a\u0020valid\u0020number\u0020sequence\u0020between\u00201\u0020and\u00209999", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#method_numberSequence" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003A\u0024jpjNumberPlateFormats", + "name": "jpjNumberPlateFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#property_jpjNumberPlateFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Miscellaneous\u003A\u003A\u0024validAlphabets", + "name": "validAlphabets", + "summary": "Chances\u0020of\u0020having\u0020an\u0020empty\u0020alphabet\u0020will\u0020be\u00201\/24", + "url": "classes/Faker-Provider-ms-MY-Miscellaneous.html#property_validAlphabets" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "Return\u0020a\u0020Malaysian\u0020Bank", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "Return\u0020a\u0020Malaysian\u0020Bank\u0020account\u0020number", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003AlocalBank\u0028\u0029", + "name": "localBank", + "summary": "Return\u0020a\u0020Malaysian\u0020Local\u0020Bank", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_localBank" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003AforeignBank\u0028\u0029", + "name": "foreignBank", + "summary": "Return\u0020a\u0020Malaysian\u0020Foreign\u0020Bank", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_foreignBank" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003AgovernmentBank\u0028\u0029", + "name": "governmentBank", + "summary": "Return\u0020a\u0020Malaysian\u0020Government\u0020Bank", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_governmentBank" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003Ainsurance\u0028\u0029", + "name": "insurance", + "summary": "Return\u0020a\u0020Malaysian\u0020insurance\u0020company", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_insurance" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003AswiftCode\u0028\u0029", + "name": "swiftCode", + "summary": "Return\u0020a\u0020Malaysian\u0020Bank\u0020SWIFT\u0020Code", + "url": "classes/Faker-Provider-ms-MY-Payment.html#method_swiftCode" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024currencySymbol", + "name": "currencySymbol", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_currencySymbol" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024bankFormats", + "name": "bankFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_bankFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024bankAccountNumberFormats", + "name": "bankAccountNumberFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_bankAccountNumberFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024localBanks", + "name": "localBanks", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_localBanks" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024foreignBanks", + "name": "foreignBanks", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_foreignBanks" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024governmentBanks", + "name": "governmentBanks", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_governmentBanks" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024insuranceCompanies", + "name": "insuranceCompanies", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_insuranceCompanies" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Payment\u003A\u003A\u0024swiftCodes", + "name": "swiftCodes", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Payment.html#property_swiftCodes" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameMaleMalay", + "name": "firstNameMaleMalay", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameMaleMalay" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameFemaleMalay", + "name": "firstNameFemaleMalay", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameFemaleMalay" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024lastNameMalay", + "name": "lastNameMalay", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_lastNameMalay" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024muhammadName", + "name": "muhammadName", + "summary": "Note\u003A\u0020The\u0020empty\u0020elements\u0020are\u0020for\u0020names\u0020without\u0020the\u0020title,\u0020chances\u0020increase\u0020by\u0020number\u0020of\u0020empty\u0020elements.", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_muhammadName" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024nurName", + "name": "nurName", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_nurName" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024haji", + "name": "haji", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_haji" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024hajjah", + "name": "hajjah", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_hajjah" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024titleMaleMalay", + "name": "titleMaleMalay", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_titleMaleMalay" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024lastNameChinese", + "name": "lastNameChinese", + "summary": "Chinese\u0020family\u0020name\u0020or\u0020surname", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_lastNameChinese" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameMaleChinese", + "name": "firstNameMaleChinese", + "summary": "Chinese\u0020male\u0020third\u0020character", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameMaleChinese" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameFemaleChinese", + "name": "firstNameFemaleChinese", + "summary": "Chinese\u0020female\u0020third\u0020character", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameFemaleChinese" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameMaleChristian", + "name": "firstNameMaleChristian", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameMaleChristian" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameFemaleChristian", + "name": "firstNameFemaleChristian", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameFemaleChristian" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024initialIndian", + "name": "initialIndian", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_initialIndian" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameMaleIndian", + "name": "firstNameMaleIndian", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameMaleIndian" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameFemaleIndian", + "name": "firstNameFemaleIndian", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameFemaleIndian" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024lastNameIndian", + "name": "lastNameIndian", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_lastNameIndian" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "Return\u0020a\u0020random\u0020last\u0020name", + "url": "classes/Faker-Provider-ms-MY-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003AmyKadNumber\u0028\u0029", + "name": "myKadNumber", + "summary": "Return\u0020a\u0020Malaysian\u0020I.C.\u0020No.", + "url": "classes/Faker-Provider-ms-MY-Person.html#method_myKadNumber" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameFormat", + "name": "firstNameFormat", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024firstNameChinese", + "name": "firstNameChinese", + "summary": "Chinese\u0020second\u0020character", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_firstNameChinese" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Return\u0020a\u0020Malaysian\u0020Mobile\u0020Phone\u0020Number.", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024zeroOneOnePrefix", + "name": "zeroOneOnePrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_zeroOneOnePrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024zeroOneFourPrefix", + "name": "zeroOneFourPrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_zeroOneFourPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024zeroOneFivePrefix", + "name": "zeroOneFivePrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_zeroOneFivePrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003AfixedLineNumber\u0028\u0029", + "name": "fixedLineNumber", + "summary": "Return\u0020a\u0020Malaysian\u0020Fixed\u0020Line\u0020Phone\u0020Number.", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#method_fixedLineNumber" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024voipNumber", + "name": "voipNumber", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_voipNumber" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024countryCodePrefix", + "name": "countryCodePrefix", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_countryCodePrefix" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024plusSymbol", + "name": "plusSymbol", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_plusSymbol" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024mobileNumberFormatsWithFormatting", + "name": "mobileNumberFormatsWithFormatting", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_mobileNumberFormatsWithFormatting" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024mobileNumberFormats", + "name": "mobileNumberFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_mobileNumberFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024fixedLineNumberFormatsWithFormatting", + "name": "fixedLineNumberFormatsWithFormatting", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_fixedLineNumberFormatsWithFormatting" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024fixedLineNumberFormats", + "name": "fixedLineNumberFormats", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_fixedLineNumberFormats" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY\\PhoneNumber\u003A\u003A\u0024voipNumberWithFormatting", + "name": "voipNumberWithFormatting", + "summary": "", + "url": "classes/Faker-Provider-ms-MY-PhoneNumber.html#property_voipNumberWithFormatting" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020city\u0020name", + "url": "classes/Faker-Provider-nb-NO-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024streetSuffixWord", + "name": "streetSuffixWord", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_streetSuffixWord" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024kommuneNames", + "name": "kommuneNames", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_kommuneNames" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024countyNames", + "name": "countyNames", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_countyNames" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "Common\u0020suffixes", + "url": "classes/Faker-Provider-nb-NO-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "1500\u0020random\u0020job\u0020titles\u0020from\u0020Statistisk\u0020Sentralbyr\u00E5", + "url": "classes/Faker-Provider-nb-NO-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-nb-NO-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "National\u0020Personal\u0020Identity\u0020number\u0020\u0028personnummer\u0029", + "url": "classes/Faker-Provider-nb-NO-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Person\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Person.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-nb-NO-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024wardNumber", + "name": "wardNumber", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_wardNumber" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024district", + "name": "district", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_district" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Internet\u003A\u003A\u0024emailFormats", + "name": "emailFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Internet.html#property_emailFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Internet\u003A\u003A\u0024urlFormats", + "name": "urlFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Internet.html#property_urlFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AcommercialBank\u0028\u0029", + "name": "commercialBank", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_commercialBank" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AdevelopmentBank\u0028\u0029", + "name": "developmentBank", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_developmentBank" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AfinanceCompany\u0028\u0029", + "name": "financeCompany", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_financeCompany" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AmicroFinance\u0028\u0029", + "name": "microFinance", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_microFinance" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AdigitalWallet\u0028\u0029", + "name": "digitalWallet", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_digitalWallet" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AswiftCode\u0028\u0029", + "name": "swiftCode", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_swiftCode" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003A\u0024commercialBanks", + "name": "commercialBanks", + "summary": "List\u0020of\u0020commercial\u0020banks\u0020sorted\u0020in\u0020alphabetical\u0020order.", + "url": "classes/Faker-Provider-ne-NP-Payment.html#property_commercialBanks" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003A\u0024developmentBanks", + "name": "developmentBanks", + "summary": "List\u0020of\u0020development\u0020banks\u0020sorted\u0020in\u0020alphabetical\u0020order.", + "url": "classes/Faker-Provider-ne-NP-Payment.html#property_developmentBanks" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003A\u0024financeCompanies", + "name": "financeCompanies", + "summary": "List\u0020of\u0020finance\u0020companies\u0020sorted\u0020in\u0020alphabetical\u0020order.", + "url": "classes/Faker-Provider-ne-NP-Payment.html#property_financeCompanies" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003A\u0024microFinances", + "name": "microFinances", + "summary": "List\u0020of\u0020microfinance\u0020companies\u0020sorted\u0020in\u0020alphabetical\u0020order.", + "url": "classes/Faker-Provider-ne-NP-Payment.html#property_microFinances" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003A\u0024digitalWallets", + "name": "digitalWallets", + "summary": "List\u0020of\u0020digital\u0020wallets\u0020sorted\u0020in\u0020alphabetical\u0020order.", + "url": "classes/Faker-Provider-ne-NP-Payment.html#property_digitalWallets" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Payment\u003A\u003A\u0024swiftCodes", + "name": "swiftCodes", + "summary": "List\u0020of\u0020Swift\u0020Codes\u0020in\u0020alphabetical\u0020order.", + "url": "classes/Faker-Provider-ne-NP-Payment.html#property_swiftCodes" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024middleNameMale", + "name": "middleNameMale", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_middleNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024middleNameFemale", + "name": "middleNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_middleNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ne-NP-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003Apostcode\u0028\u0029", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#method_postcode" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024postcodes", + "name": "postcodes", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_postcodes" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "Export\u0020of\u0020BAG\u0020\u0028http\u003A\/\/bag.vrom.nl\/\u0029\nlast\u0020updated\u00202012\/11\/09", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029.", + "url": "classes/Faker-Provider-nl-BE-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Payment\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Value\u0020Added\u0020Tax\u0020\u0028VAT\u0029.", + "url": "classes/Faker-Provider-nl-BE-Payment.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Person\u003A\u003Arrn\u0028\u0029", + "name": "rrn", + "summary": "Belgian\u0020Rijksregister\u0020numbers\u0020are\u0020used\u0020to\u0020identify\u0020each\u0020citizen,\nit\u0020consists\u0020of\u0020three\u0020parts,\u0020the\u0020person\u0027s\u0020day\u0020of\u0020birth,\u0020in\u0020the\nformat\u0020\u0027ymd\u0027,\u0020followed\u0020by\u0020a\u0020number\u0020between\u00201\u0020and\u0020997,\u0020odd\u0020for\nmales,\u0020even\u0020for\u0020females.\u0020The\u0020last\u0020part\u0020is\u0020used\u0020to\u0020check\u0020if\u0020it\u0027s\na\u0020valid\u0020number.", + "url": "classes/Faker-Provider-nl-BE-Person.html#method_rrn" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-nl-BE-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020De\u0020legende\u0020en\u0020de\u0020heldhaftige,\u0020vroolijke\u0020en\nroemrijke\u0020daden\u0020van\u0020Uilenspiegel\u0020en\u0020Lamme\u0020Goedzak\u0020in\u0020Vlaanderenland\u0020en\u0020elders,\u0020by\u0020Charles\u0020de\u0020Coster", + "url": "classes/Faker-Provider-nl-BE-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003Apostcode\u0028\u0029", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#method_postcode" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024postcodes", + "name": "postcodes", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_postcodes" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "Export\u0020of\u0020BAG\u0020\u0028http\u003A\/\/bag.vrom.nl\/\u0029\nlast\u0020updated\u00202012\/11\/09", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003Acompany\u0028\u0029", + "name": "company", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html#method_company" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003Avat\u0028\u0029", + "name": "vat", + "summary": "Belasting\u0020Toegevoegde\u0020Waarde\u0020\u0028BTW\u0029\u0020\u003D\u0020VAT", + "url": "classes/Faker-Provider-nl-NL-Company.html#method_vat" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003Abtw\u0028\u0029", + "name": "btw", + "summary": "Alias\u0020dutch\u0020vat\u0020number\u0020format", + "url": "classes/Faker-Provider-nl-NL-Company.html#method_btw" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003A\u0024product", + "name": "product", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html#property_product" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html#property_type" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Company\u003A\u003A\u0024store", + "name": "store", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Company.html#property_store" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-nl-NL-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003AtitleMale\u0028\u0029", + "name": "titleMale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020dutch\u0020title", + "url": "classes/Faker-Provider-nl-NL-Person.html#method_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003AtitleFemale\u0028\u0029", + "name": "titleFemale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020dutch\u0020title", + "url": "classes/Faker-Provider-nl-NL-Person.html#method_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_prefix" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003AidNumber\u0028\u0029", + "name": "idNumber", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#method_idNumber" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024commonDutchLastNames", + "name": "commonDutchLastNames", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_commonDutchLastNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024dutchLastNames", + "name": "dutchLastNames", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_dutchLastNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024commonForeignLastNames", + "name": "commonForeignLastNames", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_commonForeignLastNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024longLastNames", + "name": "longLastNames", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_longLastNames" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-nl-NL-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Project\u0020Gutenberg\u0027s\u0020Dichtertje\u0020\u002D\u0020De\u0020Uitvreter\u0020\u002D\u0020Titaantjes,\u0020by\u0020Nescio", + "url": "classes/Faker-Provider-nl-NL-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003AcreditCardType\u0028\u0029", + "name": "creditCardType", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#method_creditCardType" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003AcreditCardNumber\u0028\u0029", + "name": "creditCardNumber", + "summary": "Returns\u0020the\u0020String\u0020of\u0020a\u0020credit\u0020card\u0020number.", + "url": "classes/Faker-Provider-Payment.html#method_creditCardNumber" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003AcreditCardExpirationDate\u0028\u0029", + "name": "creditCardExpirationDate", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#method_creditCardExpirationDate" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003AcreditCardExpirationDateString\u0028\u0029", + "name": "creditCardExpirationDateString", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#method_creditCardExpirationDateString" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003AcreditCardDetails\u0028\u0029", + "name": "creditCardDetails", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#method_creditCardDetails" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003Aiban\u0028\u0029", + "name": "iban", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-Payment.html#method_iban" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003AswiftBicNumber\u0028\u0029", + "name": "swiftBicNumber", + "summary": "Return\u0020the\u0020String\u0020of\u0020a\u0020SWIFT\/BIC\u0020number", + "url": "classes/Faker-Provider-Payment.html#method_swiftBicNumber" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003A\u0024expirationDateFormat", + "name": "expirationDateFormat", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#property_expirationDateFormat" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003A\u0024cardVendors", + "name": "cardVendors", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#property_cardVendors" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003A\u0024cardParams", + "name": "cardParams", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#property_cardParams" + }, { + "fqsen": "\\Faker\\Provider\\Payment\u003A\u003A\u0024ibanFormats", + "name": "ibanFormats", + "summary": "", + "url": "classes/Faker-Provider-Payment.html#property_ibanFormats" + }, { + "fqsen": "\\Faker\\Provider\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "", + "url": "classes/Faker-Provider-Person.html#method_name" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003AfirstName\u0028\u0029", + "name": "firstName", + "summary": "", + "url": "classes/Faker-Provider-Person.html#method_firstName" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-Person.html#method_title" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003AGENDER_MALE", + "name": "GENDER_MALE", + "summary": "", + "url": "classes/Faker-Provider-Person.html#constant_GENDER_MALE" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003AGENDER_FEMALE", + "name": "GENDER_FEMALE", + "summary": "", + "url": "classes/Faker-Provider-Person.html#constant_GENDER_FEMALE" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024titleFormat", + "name": "titleFormat", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_titleFormat" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024firstNameFormat", + "name": "firstNameFormat", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_firstNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Provider-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\PhoneNumber\u003A\u003Ae164PhoneNumber\u0028\u0029", + "name": "e164PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-PhoneNumber.html#method_e164PhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\PhoneNumber\u003A\u003Aimei\u0028\u0029", + "name": "imei", + "summary": "International\u0020Mobile\u0020Equipment\u0020Identity\u0020\u0028IMEI\u0029", + "url": "classes/Faker-Provider-PhoneNumber.html#method_imei" + }, { + "fqsen": "\\Faker\\Provider\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#method_streetName" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Company\u003A\u003Aregon\u0028\u0029", + "name": "regon", + "summary": "Register\u0020of\u0020the\u0020National\u0020Economy", + "url": "classes/Faker-Provider-pl-PL-Company.html#method_regon" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Company\u003A\u003AregonLocal\u0028\u0029", + "name": "regonLocal", + "summary": "Register\u0020of\u0020the\u0020National\u0020Economy,\u0020local\u0020entity\u0020number", + "url": "classes/Faker-Provider-pl-PL-Company.html#method_regonLocal" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate", + "name": "LicensePlate", + "summary": "Generator\u0020of\u0020Polish\u0020vehicle\u0020registration\u0020numbers.", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003AlicensePlate\u0028\u0029", + "name": "licensePlate", + "summary": "Generates\u0020random\u0020license\u0020plate.", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#method_licensePlate" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003AselectRandomArea\u0028\u0029", + "name": "selectRandomArea", + "summary": "Selects\u0020random\u0020area\u0020from\u0020the\u0020list\u0020of\u0020available\u0020and\u0020requested.", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#method_selectRandomArea" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003A\u0024voivodeships", + "name": "voivodeships", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#property_voivodeships" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003A\u0024specials", + "name": "specials", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#property_specials" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003A\u0024counties", + "name": "counties", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#property_counties" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003A\u0024plateSuffixesGroup1", + "name": "plateSuffixesGroup1", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#property_plateSuffixesGroup1" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\LicensePlate\u003A\u003A\u0024plateSuffixesGroup2", + "name": "plateSuffixesGroup2", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-LicensePlate.html#property_plateSuffixesGroup2" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-pl-PL-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Payment\u003A\u003AaddBankCodeChecksum\u0028\u0029", + "name": "addBankCodeChecksum", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Payment.html#method_addBankCodeChecksum" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person", + "name": "Person", + "summary": "Most\u0020popular\u0020first\u0020and\u0020last\u0020names\u0020published\u0020by\u0020Ministry\u0020of\u0020the\u0020Interior\u003A", + "url": "classes/Faker-Provider-pl-PL-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "Unisex\u0020academic\u0020degree", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003AtitleMale\u0028\u0029", + "name": "titleMale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020Polish\u0020title", + "url": "classes/Faker-Provider-pl-PL-Person.html#method_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003AtitleFemale\u0028\u0029", + "name": "titleFemale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020Polish\u0020title", + "url": "classes/Faker-Provider-pl-PL-Person.html#method_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003Apesel\u0028\u0029", + "name": "pesel", + "summary": "PESEL\u0020\u002D\u0020Universal\u0020Electronic\u0020System\u0020for\u0020Registration\u0020of\u0020the\u0020Population", + "url": "classes/Faker-Provider-pl-PL-Person.html#method_pesel" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "National\u0020Identity\u0020Card\u0020number", + "url": "classes/Faker-Provider-pl-PL-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003AtaxpayerIdentificationNumber\u0028\u0029", + "name": "taxpayerIdentificationNumber", + "summary": "Taxpayer\u0020Identification\u0020Number\u0020\u0028NIP\u0020in\u0020Polish\u0029", + "url": "classes/Faker-Provider-pl-PL-Person.html#method_taxpayerIdentificationNumber" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-pl-PL-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020Sklepy\u0020cynamonowe,\u0020by\u0020Bruno\u0020Schulz", + "url": "classes/Faker-Provider-pl-PL-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024regionAbbr", + "name": "regionAbbr", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_regionAbbr" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\check_digit\u0028\u0029", + "name": "check_digit", + "summary": "Calculates\u0020one\u0020MOD\u002011\u0020check\u0020digit\u0020based\u0020on\u0020customary\u0020Brazilian\u0020algorithms.", + "url": "namespaces/faker-provider-pt-br.html#function_check_digit" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Company\u003A\u003Acnpj\u0028\u0029", + "name": "cnpj", + "summary": "A\u0020random\u0020CNPJ\u0020number.", + "url": "classes/Faker-Provider-pt-BR-Company.html#method_cnpj" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-pt-BR-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Payment\u003A\u003A\u0024cardVendors", + "name": "cardVendors", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Payment.html#property_cardVendors" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Payment\u003A\u003A\u0024cardParams", + "name": "cardParams", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Payment.html#property_cardParams" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003Acpf\u0028\u0029", + "name": "cpf", + "summary": "A\u0020random\u0020CPF\u0020number.", + "url": "classes/Faker-Provider-pt-BR-Person.html#method_cpf" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003Arg\u0028\u0029", + "name": "rg", + "summary": "A\u0020random\u0020RG\u0020number,\u0020following\u0020Sao\u0020Paulo\u0020state\u0027s\u0020rules.", + "url": "classes/Faker-Provider-pt-BR-Person.html#method_rg" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003AareaCode\u0028\u0029", + "name": "areaCode", + "summary": "Generates\u0020a\u00202\u002Ddigit\u0020area\u0020code\u0020not\u0020composed\u0020by\u0020zeroes.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_areaCode" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003Acellphone\u0028\u0029", + "name": "cellphone", + "summary": "Generates\u0020a\u00209\u002Ddigit\u0020cellphone\u0020number\u0020without\u0020formatting\u0020characters.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_cellphone" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003Alandline\u0028\u0029", + "name": "landline", + "summary": "Generates\u0020an\u00209\u002Ddigit\u0020landline\u0020number\u0020without\u0020formatting\u0020characters.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_landline" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003Aphone\u0028\u0029", + "name": "phone", + "summary": "Randomizes\u0020between\u0020cellphone\u0020and\u0020landline\u0020numbers.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_phone" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003AanyPhoneNumber\u0028\u0029", + "name": "anyPhoneNumber", + "summary": "Generates\u0020a\u0020complete\u0020phone\u0020number.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_anyPhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003AcellphoneNumber\u0028\u0029", + "name": "cellphoneNumber", + "summary": "Concatenates\u0020\u007B\u0040link\u0020areaCode\u007D\u0020and\u0020\u007B\u0040link\u0020cellphone\u007D\u0020into\u0020a\u0020national\u0020cellphone\u0020number.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_cellphoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003AlandlineNumber\u0028\u0029", + "name": "landlineNumber", + "summary": "Concatenates\u0020\u007B\u0040link\u0020areaCode\u007D\u0020and\u0020\u007B\u0040link\u0020landline\u007D\u0020into\u0020a\u0020national\u0020landline\u0020number.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_landlineNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "Randomizes\u0020between\u0020complete\u0020cellphone\u0020and\u0020landline\u0020numbers.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003AphoneNumberCleared\u0028\u0029", + "name": "phoneNumberCleared", + "summary": "Randomizes\u0020between\u0020complete\u0020cellphone\u0020and\u0020landline\u0020numbers,\u0020cleared\u0020from\u0020formatting\u0020symbols.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#method_phoneNumberCleared" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003A\u0024landlineFormats", + "name": "landlineFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#property_landlineFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\PhoneNumber\u003A\u003A\u0024cellphoneFormats", + "name": "cellphoneFormats", + "summary": "Since\u0020december\u00202016\u0020all\u0020mobile\u0020phone\u0020numbers\u0020in\u0020brazil\u0020begin\u0020with\u00209\u0020and\u0020landlines\u00202,\u00203\u0020or\u00204.", + "url": "classes/Faker-Provider-pt-BR-PhoneNumber.html#property_cellphoneFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-pt-BR-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "The\u0020Project\u0020Gutenberg\u0020EBook\u0020of\u0020Dom\u0020Casmurro,\u0020by\u0020Machado\u0020de\u0020Assis", + "url": "classes/Faker-Provider-pt-BR-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#method_city" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024cities", + "name": "cities", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_cities" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024secondaryAddressFormats", + "name": "secondaryAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_secondaryAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-pt-PT-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003AtaxpayerIdentificationNumber\u0028\u0029", + "name": "taxpayerIdentificationNumber", + "summary": "Taxpayer\u0020Identification\u0020Number\u0020\u0028NIF\u0020in\u0020Portugal\u0029", + "url": "classes/Faker-Provider-pt-PT-Person.html#method_taxpayerIdentificationNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003AdvCalcMod11\u0028\u0029", + "name": "dvCalcMod11", + "summary": "Generate\u0020module", + "url": "classes/Faker-Provider-pt-PT-Person.html#method_dvCalcMod11" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024firstEightDigitsFormat", + "name": "firstEightDigitsFormat", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_firstEightDigitsFormat" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT\\PhoneNumber\u003A\u003A\u0024mobileNumberPrefixes", + "name": "mobileNumberPrefixes", + "summary": "", + "url": "classes/Faker-Provider-pt-PT-PhoneNumber.html#property_mobileNumberPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024block", + "name": "block", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_block" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024blockSegment", + "name": "blockSegment", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_blockSegment" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024floor", + "name": "floor", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_floor" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024apartmentNumber", + "name": "apartmentNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_apartmentNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024streetPlainName", + "name": "streetPlainName", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_streetPlainName" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-ro-MD-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ro-MD-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "From\u0020ro.wikisource.org", + "url": "classes/Faker-Provider-ro-MD-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024block", + "name": "block", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_block" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024blockSegment", + "name": "blockSegment", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_blockSegment" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024floor", + "name": "floor", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_floor" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024apartmentNumber", + "name": "apartmentNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_apartmentNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024streetPlainName", + "name": "streetPlainName", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_streetPlainName" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003Acounty\u0028\u0029", + "name": "county", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#method_county" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024counties", + "name": "counties", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_counties" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-ro-RO-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003Acnp\u0028\u0029", + "name": "cnp", + "summary": "Personal\u0020Numerical\u0020Code\u0020\u0028CNP\u0029", + "url": "classes/Faker-Provider-ro-RO-Person.html#method_cnp" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003AgetDateOfBirth\u0028\u0029", + "name": "getDateOfBirth", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#method_getDateOfBirth" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003AgetGenderDigit\u0028\u0029", + "name": "getGenderDigit", + "summary": "https\u003A\/\/ro.wikipedia.org\/wiki\/Cod_numeric_personal\u0023S", + "url": "classes/Faker-Provider-ro-RO-Person.html#method_getGenderDigit" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003AgetChecksumDigit\u0028\u0029", + "name": "getChecksumDigit", + "summary": "Calculates\u0020a\u0020checksum\u0020for\u0020the\u0020Personal\u0020Numerical\u0020Code\u0020\u0028CNP\u0029.", + "url": "classes/Faker-Provider-ro-RO-Person.html#method_getChecksumDigit" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Person\u003A\u003A\u0024cnpCountyCodes", + "name": "cnpCountyCodes", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Person.html#property_cnpCountyCodes" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\PhoneNumber\u003A\u003AtollFreePhoneNumber\u0028\u0029", + "name": "tollFreePhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-PhoneNumber.html#method_tollFreePhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\PhoneNumber\u003A\u003ApremiumRatePhoneNumber\u0028\u0029", + "name": "premiumRatePhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-PhoneNumber.html#method_premiumRatePhoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\PhoneNumber\u003A\u003A\u0024normalFormats", + "name": "normalFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-PhoneNumber.html#property_normalFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\PhoneNumber\u003A\u003A\u0024specialFormats", + "name": "specialFormats", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-PhoneNumber.html#property_specialFormats" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ro-RO-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Title\u003A\u0020Neghini\u0163\u0103\nAuthor\u003A\u0020Barbu\u0020\u015Etef\u0103nescu\u0020Delavrancea", + "url": "classes/Faker-Provider-ro-RO-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#method_address" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003Acompany\u0028\u0029", + "name": "company", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_company" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003AcompanyPrefix\u0028\u0029", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003AcompanyNameElement\u0028\u0029", + "name": "companyNameElement", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_companyNameElement" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003AcompanyNameSuffix\u0028\u0029", + "name": "companyNameSuffix", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_companyNameSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003Ainn\u0028\u0029", + "name": "inn", + "summary": "Generates\u0020a\u0020Russian\u0020Taxpayer\u0020Personal\u0020Identification\u0020Number", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_inn" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003Ainn10\u0028\u0029", + "name": "inn10", + "summary": "Generates\u0020a\u0020Russian\u0020Taxpayer\u0020Personal\u0020Identification\u0020Number", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_inn10" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003Akpp\u0028\u0029", + "name": "kpp", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_kpp" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003Ainn10Checksum\u0028\u0029", + "name": "inn10Checksum", + "summary": "Generates\u0020INN\u0020Checksum", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_inn10Checksum" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003Ainn10IsValid\u0028\u0029", + "name": "inn10IsValid", + "summary": "Checks\u0020whether\u0020an\u0020INN\u0020has\u0020a\u0020valid\u0020checksum", + "url": "classes/Faker-Provider-ru-RU-Company.html#method_inn10IsValid" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003A\u0024companyNameFormats", + "name": "companyNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#property_companyNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003A\u0024companyPrefixes", + "name": "companyPrefixes", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#property_companyPrefixes" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003A\u0024companyNameSuffixes", + "name": "companyNameSuffixes", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#property_companyNameSuffixes" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003A\u0024companyElements", + "name": "companyElements", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#property_companyElements" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024middleNameMale", + "name": "middleNameMale", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_middleNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024middleNameFemale", + "name": "middleNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_middleNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003AmiddleName\u0028\u0029", + "name": "middleName", + "summary": "Return\u0020middle\u0020name\u0020for\u0020the\u0020specified\u0020gender.", + "url": "classes/Faker-Provider-ru-RU-Person.html#method_middleName" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/ru.wikipedia.org\/wiki\/\u0025D0\u0025A1\u0025D0\u0025BF\u0025D0\u0025B8\u0025D1\u002581\u0025D0\u0025BE\u0025D0\u0025BA_\u0025D0\u0025BE\u0025D0\u0025B1\u0025D1\u002589\u0025D0\u0025B5\u0025D1\u002580\u0025D1\u002583\u0025D1\u002581\u0025D1\u002581\u0025D0\u0025BA\u0025D0\u0025B8\u0025D1\u002585_\u0025D1\u002584\u0025D0\u0025B0\u0025D0\u0025BC\u0025D0\u0025B8\u0025D0\u0025BB\u0025D0\u0025B8\u0025D0\u0025B9", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003AlastNameMale\u0028\u0029", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html#method_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003AlastNameFemale\u0028\u0029", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html#method_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "This\u0020provider\u0020uses\u0020wikipedia\u0027s\u0020250\u0020top\u0020russian\u0020last\u0020names\nThat\u0020list\u0020of\u0020MALE\u0020last\u0020names\u0020could\u0020be\u0020safely\u0020extended\u0020to\u0020FEMALE\u0020list\u0020just\u0020by\u0020adding\u0020\u0027a\u0027\u0020letter\u0020at\u0020the\u0020end", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/ru.wikipedia.org\/wiki\/\u0025D0\u0025A0\u0025D1\u002583\u0025D1\u002581\u0025D1\u002581\u0025D0\u0025BA\u0025D0\u0025BE\u0025D0\u0025B5_\u0025D0\u0025BB\u0025D0\u0025B8\u0025D1\u002587\u0025D0\u0025BD\u0025D0\u0025BE\u0025D0\u0025B5_\u0025D0\u0025B8\u0025D0\u0025BC\u0025D1\u00258F\n\u007B\u0040link\u007D\u0020http\u003A\/\/masterrussian.com\/aa031701a.shtml", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "\u007B\u0040link\u007D\u0020http\u003A\/\/masterrussian.com\/aa031001a.shtml", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Person\u003A\u003A\u0024lastNameSuffix", + "name": "lastNameSuffix", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Person.html#property_lastNameSuffix" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-ru-RU-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Text\u003A\u003ArealText\u0028\u0029", + "name": "realText", + "summary": "Generate\u0020a\u0020text\u0020string\u0020by\u0020the\u0020Markov\u0020chain\u0020algorithm.", + "url": "classes/Faker-Provider-ru-RU-Text.html#method_realText" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "From\u0020ru.wikisource.org", + "url": "classes/Faker-Provider-ru-RU-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024cityName", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_cityName" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company\u003A\u003AcatchPhrase\u0028\u0029", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html#method_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company\u003A\u003A\u0024catchPhraseWords", + "name": "catchPhraseWords", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html#property_catchPhraseWords" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-sk-SK-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003AtitleMale\u0028\u0029", + "name": "titleMale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020slovakian\u0020title", + "url": "classes/Faker-Provider-sk-SK-Person.html#method_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003AtitleFemale\u0028\u0029", + "name": "titleFemale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020slovakian\u0020title", + "url": "classes/Faker-Provider-sk-SK-Person.html#method_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003AlastName\u0028\u0029", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#method_lastName" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024lastNameMale", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024lastNameFemale", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024lastNameFormat", + "name": "lastNameFormat", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_lastNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sk-SK-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#method_streetName" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "Most\u0020common\u0020street\u0020names\u0020in\u0020Slovenia", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-sl-SI-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003AlastNameMale\u0028\u0029", + "name": "lastNameMale", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#method_lastNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003AlastNameFemale\u0028\u0029", + "name": "lastNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#method_lastNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sl-SI-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-sr-Cyrl-RS-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-sr-Latn-RS-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-sr-Latn-RS-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-sr-RS-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-sr-RS-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "Randomly\u0020return\u0020a\u0020real\u0020city\u0020name", + "url": "classes/Faker-Provider-sv-SE-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024streetSuffixWord", + "name": "streetSuffixWord", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_streetSuffixWord" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024state", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_state" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Company\u003A\u003AjobTitle\u0028\u0029", + "name": "jobTitle", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Company.html#method_jobTitle" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Company\u003A\u003A\u0024jobTitles", + "name": "jobTitles", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Company.html#property_jobTitles" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Municipality", + "name": "Municipality", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Municipality.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Municipality\u003A\u003Amunicipality\u0028\u0029", + "name": "municipality", + "summary": "Swedish\u0020municipality", + "url": "classes/Faker-Provider-sv-SE-Municipality.html#method_municipality" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Municipality\u003A\u003A\u0024municipalities", + "name": "municipalities", + "summary": "This\u0020provider\u0020uses\u0020wikipedia\u0027s\u0020\u201DList\u0020of\u0020municipalities\u0020of\u0020Sweden\u201D", + "url": "classes/Faker-Provider-sv-SE-Municipality.html#property_municipalities" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-sv-SE-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "National\u0020Personal\u0020Identity\u0020number\u0020\u0028personnummer\u0029", + "url": "classes/Faker-Provider-sv-SE-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person\u003A\u003AgetBirthNumber\u0028\u0029", + "name": "getBirthNumber", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Person.html#method_getBirthNumber" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Person.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-sv-SE-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003ArealText\u0028\u0029", + "name": "realText", + "summary": "Generate\u0020a\u0020text\u0020string\u0020by\u0020the\u0020Markov\u0020chain\u0020algorithm.", + "url": "classes/Faker-Provider-Text.html#method_realText" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003ArealTextBetween\u0028\u0029", + "name": "realTextBetween", + "summary": "Generate\u0020a\u0020text\u0020string\u0020by\u0020the\u0020Markov\u0020chain\u0020algorithm.", + "url": "classes/Faker-Provider-Text.html#method_realTextBetween" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003AgenerateText\u0028\u0029", + "name": "generateText", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_generateText" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003AgetConsecutiveWords\u0028\u0029", + "name": "getConsecutiveWords", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_getConsecutiveWords" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003AgetExplodedText\u0028\u0029", + "name": "getExplodedText", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_getExplodedText" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003Aexplode\u0028\u0029", + "name": "explode", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_explode" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003Aimplode\u0028\u0029", + "name": "implode", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_implode" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003Astrlen\u0028\u0029", + "name": "strlen", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_strlen" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003AvalidStart\u0028\u0029", + "name": "validStart", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_validStart" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003AappendEnd\u0028\u0029", + "name": "appendEnd", + "summary": "", + "url": "classes/Faker-Provider-Text.html#method_appendEnd" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "", + "url": "classes/Faker-Provider-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003A\u0024separator", + "name": "separator", + "summary": "", + "url": "classes/Faker-Provider-Text.html#property_separator" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003A\u0024separatorLen", + "name": "separatorLen", + "summary": "", + "url": "classes/Faker-Provider-Text.html#property_separatorLen" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003A\u0024explodedText", + "name": "explodedText", + "summary": "", + "url": "classes/Faker-Provider-Text.html#property_explodedText" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003A\u0024consecutiveWords", + "name": "consecutiveWords", + "summary": "", + "url": "classes/Faker-Provider-Text.html#property_consecutiveWords" + }, { + "fqsen": "\\Faker\\Provider\\Text\u003A\u003A\u0024textStartsWithUppercase", + "name": "textStartsWithUppercase", + "summary": "", + "url": "classes/Faker-Provider-Text.html#property_textStartsWithUppercase" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024citySuffix", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Company\u003A\u003Aslogan\u0028\u0029", + "name": "slogan", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Company.html#method_slogan" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Company\u003A\u003A\u0024slogans", + "name": "slogans", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Company.html#property_slogans" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003A\u0024suffix", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#property_suffix" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003Assn\u0028\u0029", + "name": "ssn", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#method_ssn" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-th-TH-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-th-TH-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\PhoneNumber\u003A\u003AmobileNumber\u0028\u0029", + "name": "mobileNumber", + "summary": "Returns\u0020a\u0020Thai\u0020mobile\u0020phone\u0020number", + "url": "classes/Faker-Provider-th-TH-PhoneNumber.html#method_mobileNumber" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\th_TH\\PhoneNumber\u003A\u003A\u0024mobileFormats", + "name": "mobileFormats", + "summary": "", + "url": "classes/Faker-Provider-th-TH-PhoneNumber.html#property_mobileFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003AcityName\u0028\u0029", + "name": "cityName", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#method_cityName" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024cityNames", + "name": "cityNames", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_cityNames" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024cityFormats", + "name": "cityFormats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_cityFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Company\u003A\u003A\u0024companyField", + "name": "companyField", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Company.html#property_companyField" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\DateTime", + "name": "DateTime", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-DateTime.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\DateTime\u003A\u003AamPm\u0028\u0029", + "name": "amPm", + "summary": "Get\u0020a\u0020string\u0020containing\u0020either\u0020\u0022am\u0022\u0020or\u0020\u0022pm\u0022.", + "url": "classes/Faker-Provider-tr-TR-DateTime.html#method_amPm" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Payment\u003A\u003AbankAccountNumber\u0028\u0029", + "name": "bankAccountNumber", + "summary": "International\u0020Bank\u0020Account\u0020Number\u0020\u0028IBAN\u0029", + "url": "classes/Faker-Provider-tr-TR-Payment.html#method_bankAccountNumber" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003A\u0024title", + "name": "title", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html#property_title" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003AtitleMale\u0028\u0029", + "name": "titleMale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020Turkish\u0020title", + "url": "classes/Faker-Provider-tr-TR-Person.html#method_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003AtitleFemale\u0028\u0029", + "name": "titleFemale", + "summary": "replaced\u0020by\u0020specific\u0020unisex\u0020Turkish\u0020title", + "url": "classes/Faker-Provider-tr-TR-Person.html#method_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003AtcNo\u0028\u0029", + "name": "tcNo", + "summary": "National\u0020Personal\u0020Identity\u0020number\u0020\u0028tc\u0020kimlik\u0020no\u0029", + "url": "classes/Faker-Provider-tr-TR-Person.html#method_tcNo" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003AtcNoChecksum\u0028\u0029", + "name": "tcNoChecksum", + "summary": "Generates\u0020Turkish\u0020Identity\u0020Number\u0020Checksum\nGets\u0020first\u00209\u0020digit\u0020as\u0020prefix\u0020and\u0020calculates\u0020checksum", + "url": "classes/Faker-Provider-tr-TR-Person.html#method_tcNoChecksum" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003AtcNoIsValid\u0028\u0029", + "name": "tcNoIsValid", + "summary": "Checks\u0020whether\u0020a\u0020TCNo\u0020has\u0020a\u0020valid\u0020checksum", + "url": "classes/Faker-Provider-tr-TR-Person.html#method_tcNoIsValid" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-tr-TR-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "Mixed\u0020landline\u0020and\u0020mobile\u0020phone\u0020numbers\u0020valid\u0020for\u0020Turkey", + "url": "classes/Faker-Provider-tr-TR-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "Mixed\u0020landline\u0020and\u0020mobile\u0020phone\u0020numbers\u0020in\u0020E164\u0020format\u0020valid\u0020for\u0020Turkey", + "url": "classes/Faker-Provider-tr-TR-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003AcitySuffix\u0028\u0029", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#method_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003AstreetSuffix\u0028\u0029", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#method_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003AstreetName\u0028\u0029", + "name": "streetName", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#method_streetName" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024regionSuffix", + "name": "regionSuffix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_regionSuffix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_region" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024cityPrefix", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003AcityAndRegion\u0028\u0029", + "name": "cityAndRegion", + "summary": "Get\u0020city\u0020and\u0020region\u0020together\nWe\u0020need\u0020it\u0020because\u0020city\u0020and\u0020region\u0020must\u0020comply\u0020each\u0020other\u0020in\u0020Ukraine", + "url": "classes/Faker-Provider-uk-UA-Address.html#method_cityAndRegion" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024streetPrefix", + "name": "streetPrefix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_streetPrefix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003AcompanyUrl\u0028\u0029", + "name": "companyUrl", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#method_companyUrl" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003A\u0024companyName", + "name": "companyName", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#property_companyName" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003A\u0024urlFormats", + "name": "urlFormats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#property_urlFormats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Company\u003A\u003A\u0024jobTitleFormat", + "name": "jobTitleFormat", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Company.html#property_jobTitleFormat" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024middleNameMale", + "name": "middleNameMale", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_middleNameMale" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024middleNameFemale", + "name": "middleNameFemale", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_middleNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003AmiddleName\u0028\u0029", + "name": "middleName", + "summary": "Return\u0020middle\u0020name\u0020for\u0020the\u0020specified\u0020gender.", + "url": "classes/Faker-Provider-uk-UA-Person.html#method_middleName" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\PhoneNumber\u003A\u003A\u0024e164Formats", + "name": "e164Formats", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-PhoneNumber.html#property_e164Formats" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-uk-UA-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "From\u0020uk.wikisource.org", + "url": "classes/Faker-Provider-uk-UA-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent", + "name": "UserAgent", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003A\u0024macProcessor", + "name": "macProcessor", + "summary": "Mac\u0020processors\u0020\u0028it\u0020also\u0020added\u0020U\u003B\u0029", + "url": "classes/Faker-Provider-UserAgent.html#property_macProcessor" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003A\u0024linuxProcessor", + "name": "linuxProcessor", + "summary": "Possible\u0020processors\u0020on\u0020Linux", + "url": "classes/Faker-Provider-UserAgent.html#property_linuxProcessor" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003AuserAgent\u0028\u0029", + "name": "userAgent", + "summary": "Generate\u0020a\u0020random\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_userAgent" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003Achrome\u0028\u0029", + "name": "chrome", + "summary": "Generate\u0020Chrome\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_chrome" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003Amsedge\u0028\u0029", + "name": "msedge", + "summary": "Generate\u0020Edge\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_msedge" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003Afirefox\u0028\u0029", + "name": "firefox", + "summary": "Generate\u0020Firefox\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_firefox" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003Asafari\u0028\u0029", + "name": "safari", + "summary": "Generate\u0020Safari\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_safari" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003Aopera\u0028\u0029", + "name": "opera", + "summary": "Generate\u0020Opera\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_opera" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003AinternetExplorer\u0028\u0029", + "name": "internetExplorer", + "summary": "Generate\u0020Internet\u0020Explorer\u0020user\u0020agent", + "url": "classes/Faker-Provider-UserAgent.html#method_internetExplorer" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003AwindowsPlatformToken\u0028\u0029", + "name": "windowsPlatformToken", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html#method_windowsPlatformToken" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003AmacPlatformToken\u0028\u0029", + "name": "macPlatformToken", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html#method_macPlatformToken" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003AiosMobileToken\u0028\u0029", + "name": "iosMobileToken", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html#method_iosMobileToken" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003AlinuxPlatformToken\u0028\u0029", + "name": "linuxPlatformToken", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html#method_linuxPlatformToken" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003A\u0024userAgents", + "name": "userAgents", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html#property_userAgents" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003A\u0024windowsPlatformTokens", + "name": "windowsPlatformTokens", + "summary": "", + "url": "classes/Faker-Provider-UserAgent.html#property_windowsPlatformTokens" + }, { + "fqsen": "\\Faker\\Provider\\UserAgent\u003A\u003A\u0024lang", + "name": "lang", + "summary": "Add\u0020as\u0020many\u0020languages\u0020as\u0020you\u0020like.", + "url": "classes/Faker-Provider-UserAgent.html#property_lang" + }, { + "fqsen": "\\Faker\\Provider\\Uuid", + "name": "Uuid", + "summary": "", + "url": "classes/Faker-Provider-Uuid.html" + }, { + "fqsen": "\\Faker\\Provider\\Uuid\u003A\u003Auuid\u0028\u0029", + "name": "uuid", + "summary": "Generate\u0020name\u0020based\u0020md5\u0020UUID\u0020\u0028version\u00203\u0029.", + "url": "classes/Faker-Provider-Uuid.html#method_uuid" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003AhamletName\u0028\u0029", + "name": "hamletName", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#method_hamletName" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024hamletPrefix", + "name": "hamletPrefix", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_hamletPrefix" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003AwardName\u0028\u0029", + "name": "wardName", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#method_wardName" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024wardPrefix", + "name": "wardPrefix", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_wardPrefix" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003AdistrictName\u0028\u0029", + "name": "districtName", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#method_districtName" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024districtPrefix", + "name": "districtPrefix", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_districtPrefix" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024province", + "name": "province", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_province" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024buildingNumber", + "name": "buildingNumber", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_buildingNumber" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024hamletNameFormats", + "name": "hamletNameFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_hamletNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024wardNameFormats", + "name": "wardNameFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_wardNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024districtNameFormats", + "name": "districtNameFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_districtNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003AmiddleName\u0028\u0029", + "name": "middleName", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#method_middleName" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024middleNameMale", + "name": "middleNameMale", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_middleNameMale" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024middleNameFemale", + "name": "middleNameFemale", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_middleNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024middleNameFormat", + "name": "middleNameFormat", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_middleNameFormat" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\PhoneNumber\u003A\u003A\u0024areaCodes", + "name": "areaCodes", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-PhoneNumber.html#property_areaCodes" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-vi-VN-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003Acity\u0028\u0029", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#method_city" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003Astate\u0028\u0029", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#method_state" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003A\u0024stateAbbr", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#property_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003Aarea\u0028\u0029", + "name": "area", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#method_area" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003Aaddress\u0028\u0029", + "name": "address", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#method_address" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003Apostcode\u0028\u0029", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#method_postcode" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003A\u0024cites", + "name": "cites", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#property_cites" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003A\u0024states", + "name": "states", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#property_states" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Address\u003A\u003A\u0024areas", + "name": "areas", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Address.html#property_areas" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Company\u003A\u003A\u0024catchPhrase", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Company.html#property_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\DateTime", + "name": "DateTime", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-DateTime.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\DateTime\u003A\u003AamPm\u0028\u0029", + "name": "amPm", + "summary": "Get\u0020a\u0020string\u0020containing\u0020either\u0020\u0022am\u0022\u0020or\u0020\u0022pm\u0022.", + "url": "classes/Faker-Provider-zh-CN-DateTime.html#method_amPm" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Internet\u003A\u003A\u0024freeEmailDomain", + "name": "freeEmailDomain", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Internet.html#property_freeEmailDomain" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Internet\u003A\u003A\u0024tld", + "name": "tld", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Internet.html#property_tld" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Internet\u003A\u003A\u0024userNameFormats", + "name": "userNameFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Internet.html#property_userNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Internet\u003A\u003A\u0024emailFormats", + "name": "emailFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Internet.html#property_emailFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Payment\u003A\u003Abank\u0028\u0029", + "name": "bank", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Payment.html#method_bank" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Payment\u003A\u003A\u0024banks", + "name": "banks", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Payment.html#property_banks" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "According\u0020to\u0020http\u003A\/\/baike.baidu.com\/view\/6109935.htm,\nthese\u0020are\u0020the\u0020top\u0020300\u0020lastnames\u0020from\u0020the\u00206th\u0020Chinese\u0020national\u0020census\u0020of\u0020population,\ncontaining\u0020299\u0020single\u002Dcharacter\u0020surname\u0020and\u00201\u0020double\u002Dcharacter\u0020surname\u0020\u0027\u6B27\u9633\u0027,\nso\u0020you\u0020can\u0020get\u0020random\u0020names\u0020including\u0020double\u002Dcharacter\u0020surname\u0020but\u0020not\u0020too\u0020many.", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024firstNameMale", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\Person\u003A\u003A\u0024firstNameFemale", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-Person.html#property_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\PhoneNumber\u003A\u003AphoneNumber\u0028\u0029", + "name": "phoneNumber", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-PhoneNumber.html#method_phoneNumber" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\PhoneNumber\u003A\u003A\u0024operators", + "name": "operators", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-PhoneNumber.html#property_operators" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-zh-CN-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address", + "name": "Address", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024street", + "name": "street", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_street" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003ArandomChineseNumber\u0028\u0029", + "name": "randomChineseNumber", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_randomChineseNumber" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003ArandomNumber2\u0028\u0029", + "name": "randomNumber2", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_randomNumber2" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003ArandomNumber3\u0028\u0029", + "name": "randomNumber3", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_randomNumber3" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003AlocalLatitude\u0028\u0029", + "name": "localLatitude", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_localLatitude" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003AlocalLongitude\u0028\u0029", + "name": "localLongitude", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_localLongitude" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024city", + "name": "city", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_city" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003Astate\u0028\u0029", + "name": "state", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_state" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003AstateAbbr\u0028\u0029", + "name": "stateAbbr", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_stateAbbr" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003AcityPrefix\u0028\u0029", + "name": "cityPrefix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_cityPrefix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003AcitySuffix\u0028\u0029", + "name": "citySuffix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_citySuffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003AsecondaryAddress\u0028\u0029", + "name": "secondaryAddress", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#method_secondaryAddress" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024streetNameFormats", + "name": "streetNameFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_streetNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024streetAddressFormats", + "name": "streetAddressFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_streetAddressFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024secondaryAddressSuffix", + "name": "secondaryAddressSuffix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_secondaryAddressSuffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024addressFormats", + "name": "addressFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_addressFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024streetSuffix", + "name": "streetSuffix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_streetSuffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024country", + "name": "country", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_country" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Address\u003A\u003A\u0024postcode", + "name": "postcode", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Address.html#property_postcode" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Color", + "name": "Color", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Color.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Color\u003A\u003A\u0024safeColorNames", + "name": "safeColorNames", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Color.html#property_safeColorNames" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Color\u003A\u003A\u0024allColorNames", + "name": "allColorNames", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Color.html#property_allColorNames" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company", + "name": "Company", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024companyEnSuffix", + "name": "companyEnSuffix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_companyEnSuffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003AcompanyEn\u0028\u0029", + "name": "companyEn", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#method_companyEn" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024companyModifier", + "name": "companyModifier", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_companyModifier" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024companyPrefix", + "name": "companyPrefix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_companyPrefix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024catchPhrase", + "name": "catchPhrase", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_catchPhrase" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003Abs\u0028\u0029", + "name": "bs", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#method_bs" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003AVAT\u0028\u0029", + "name": "VAT", + "summary": "return\u0020standard\u0020VAT\u0020\/\u0020Tax\u0020ID\u0020\/\u0020Uniform\u0020Serial\u0020Number", + "url": "classes/Faker-Provider-zh-TW-Company.html#method_VAT" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024companyEnFormats", + "name": "companyEnFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_companyEnFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024companySuffix", + "name": "companySuffix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_companySuffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Company\u003A\u003A\u0024bsWords", + "name": "bsWords", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Company.html#property_bsWords" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\DateTime", + "name": "DateTime", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-DateTime.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\DateTime\u003A\u003AamPm\u0028\u0029", + "name": "amPm", + "summary": "Get\u0020a\u0020string\u0020containing\u0020either\u0020\u0022am\u0022\u0020or\u0020\u0022pm\u0022.", + "url": "classes/Faker-Provider-zh-TW-DateTime.html#method_amPm" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\DateTime\u003A\u003AdayOfWeek\u0028\u0029", + "name": "dayOfWeek", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-DateTime.html#method_dayOfWeek" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\DateTime\u003A\u003AmonthName\u0028\u0029", + "name": "monthName", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-DateTime.html#method_monthName" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Internet", + "name": "Internet", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Internet.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Internet\u003A\u003AuserName\u0028\u0029", + "name": "userName", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Internet.html#method_userName" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Internet\u003A\u003AdomainWord\u0028\u0029", + "name": "domainWord", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Internet.html#method_domainWord" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Payment", + "name": "Payment", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Payment.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Payment\u003A\u003AcreditCardDetails\u0028\u0029", + "name": "creditCardDetails", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Payment.html#method_creditCardDetails" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person", + "name": "Person", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003ArandomName\u0028\u0029", + "name": "randomName", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#method_randomName" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003AfirstNameMale\u0028\u0029", + "name": "firstNameMale", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#method_firstNameMale" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003AfirstNameFemale\u0028\u0029", + "name": "firstNameFemale", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#method_firstNameFemale" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003Asuffix\u0028\u0029", + "name": "suffix", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#method_suffix" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003ApersonalIdentityNumber\u0028\u0029", + "name": "personalIdentityNumber", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#method_personalIdentityNumber" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024idBirthplaceCode", + "name": "idBirthplaceCode", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_idBirthplaceCode" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024idDigitValidator", + "name": "idDigitValidator", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_idDigitValidator" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024maleNameFormats", + "name": "maleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_maleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024femaleNameFormats", + "name": "femaleNameFormats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_femaleNameFormats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024titleMale", + "name": "titleMale", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_titleMale" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024titleFemale", + "name": "titleFemale", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_titleFemale" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024lastName", + "name": "lastName", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_lastName" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024characterMale", + "name": "characterMale", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_characterMale" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Person\u003A\u003A\u0024characterFemale", + "name": "characterFemale", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Person.html#property_characterFemale" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\PhoneNumber", + "name": "PhoneNumber", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-PhoneNumber.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\PhoneNumber\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-PhoneNumber.html#property_formats" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text", + "name": "Text", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003Aexplode\u0028\u0029", + "name": "explode", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#method_explode" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003Astrlen\u0028\u0029", + "name": "strlen", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#method_strlen" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003AvalidStart\u0028\u0029", + "name": "validStart", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#method_validStart" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003AappendEnd\u0028\u0029", + "name": "appendEnd", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#method_appendEnd" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003Autf8Encoding\u0028\u0029", + "name": "utf8Encoding", + "summary": "Convert\u0020original\u0020string\u0020to\u0020utf\u002D8\u0020encoding.", + "url": "classes/Faker-Provider-zh-TW-Text.html#method_utf8Encoding" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024separator", + "name": "separator", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_separator" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024separatorLen", + "name": "separatorLen", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_separatorLen" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024notEndPunct", + "name": "notEndPunct", + "summary": "All\u0020punctuation\u0020in\u0020\u0024baseText\u003A\u0020\u3001\u0020\u3002\u0020\u300C\u0020\u300D\u0020\u300E\u0020\u300F\u0020\uFF01\u0020\uFF1F\u0020\u30FC\u0020\uFF0C\u0020\uFF1A\u0020\uFF1B", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_notEndPunct" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024endPunct", + "name": "endPunct", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_endPunct" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024notBeginPunct", + "name": "notBeginPunct", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_notBeginPunct" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024baseText", + "name": "baseText", + "summary": "Title\u003A\u0020\u5436\u558A\u0020Call\u0020to\u0020Arms\u0020\u00281922\u0029\nAuthor\u003A\u0020\u9B6F\u8FC5\u0020Lu\u0020Xun\nLanguage\u003A\u0020Traditional\u0020Chinese", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_baseText" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW\\Text\u003A\u003A\u0024encoding", + "name": "encoding", + "summary": "", + "url": "classes/Faker-Provider-zh-TW-Text.html#property_encoding" + }, { + "fqsen": "\\Faker\\UniqueGenerator", + "name": "UniqueGenerator", + "summary": "Proxy\u0020for\u0020other\u0020generators\u0020that\u0020returns\u0020only\u0020unique\u0020values.", + "url": "classes/Faker-UniqueGenerator.html" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-UniqueGenerator.html#method___construct" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003Aext\u0028\u0029", + "name": "ext", + "summary": "", + "url": "classes/Faker-UniqueGenerator.html#method_ext" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Catch\u0020and\u0020proxy\u0020all\u0020generator\u0020calls\u0020but\u0020return\u0020only\u0020unique\u0020values", + "url": "classes/Faker-UniqueGenerator.html#method___get" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Catch\u0020and\u0020proxy\u0020all\u0020generator\u0020calls\u0020with\u0020arguments\u0020but\u0020return\u0020only\u0020unique\u0020values", + "url": "classes/Faker-UniqueGenerator.html#method___call" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-UniqueGenerator.html#property_generator" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003A\u0024maxRetries", + "name": "maxRetries", + "summary": "", + "url": "classes/Faker-UniqueGenerator.html#property_maxRetries" + }, { + "fqsen": "\\Faker\\UniqueGenerator\u003A\u003A\u0024uniques", + "name": "uniques", + "summary": "Maps\u0020from\u0020method\u0020names\u0020to\u0020a\u0020map\u0020with\u0020serialized\u0020result\u0020keys.", + "url": "classes/Faker-UniqueGenerator.html#property_uniques" + }, { + "fqsen": "\\Faker\\ValidGenerator", + "name": "ValidGenerator", + "summary": "Proxy\u0020for\u0020other\u0020generators,\u0020to\u0020return\u0020only\u0020valid\u0020values.\u0020Works\u0020with\nFaker\\Generator\\Base\u002D\u003Evalid\u0028\u0029", + "url": "classes/Faker-ValidGenerator.html" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Faker-ValidGenerator.html#method___construct" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003Aext\u0028\u0029", + "name": "ext", + "summary": "", + "url": "classes/Faker-ValidGenerator.html#method_ext" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Catch\u0020and\u0020proxy\u0020all\u0020generator\u0020calls\u0020but\u0020return\u0020only\u0020valid\u0020values", + "url": "classes/Faker-ValidGenerator.html#method___get" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Catch\u0020and\u0020proxy\u0020all\u0020generator\u0020calls\u0020with\u0020arguments\u0020but\u0020return\u0020only\u0020valid\u0020values", + "url": "classes/Faker-ValidGenerator.html#method___call" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "", + "url": "classes/Faker-ValidGenerator.html#property_generator" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003A\u0024validator", + "name": "validator", + "summary": "", + "url": "classes/Faker-ValidGenerator.html#property_validator" + }, { + "fqsen": "\\Faker\\ValidGenerator\u003A\u003A\u0024maxRetries", + "name": "maxRetries", + "summary": "", + "url": "classes/Faker-ValidGenerator.html#property_maxRetries" + }, { + "fqsen": "\\Firebase\\JWT\\BeforeValidException", + "name": "BeforeValidException", + "summary": "", + "url": "classes/Firebase-JWT-BeforeValidException.html" + }, { + "fqsen": "\\Firebase\\JWT\\BeforeValidException\u003A\u003AsetPayload\u0028\u0029", + "name": "setPayload", + "summary": "Get\u0020the\u0020payload\u0020that\u0020caused\u0020this\u0020exception.", + "url": "classes/Firebase-JWT-BeforeValidException.html#method_setPayload" + }, { + "fqsen": "\\Firebase\\JWT\\BeforeValidException\u003A\u003AgetPayload\u0028\u0029", + "name": "getPayload", + "summary": "Get\u0020the\u0020payload\u0020that\u0020caused\u0020this\u0020exception.", + "url": "classes/Firebase-JWT-BeforeValidException.html#method_getPayload" + }, { + "fqsen": "\\Firebase\\JWT\\BeforeValidException\u003A\u003A\u0024payload", + "name": "payload", + "summary": "", + "url": "classes/Firebase-JWT-BeforeValidException.html#property_payload" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet", + "name": "CachedKeySet", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method___construct" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_offsetGet" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_offsetExists" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_offsetSet" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_offsetUnset" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AformatJwksForCache\u0028\u0029", + "name": "formatJwksForCache", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_formatJwksForCache" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AkeyIdExists\u0028\u0029", + "name": "keyIdExists", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_keyIdExists" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003ArateLimitExceeded\u0028\u0029", + "name": "rateLimitExceeded", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_rateLimitExceeded" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AgetCacheItem\u0028\u0029", + "name": "getCacheItem", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_getCacheItem" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003AsetCacheKeys\u0028\u0029", + "name": "setCacheKeys", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#method_setCacheKeys" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024jwksUri", + "name": "jwksUri", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_jwksUri" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024httpClient", + "name": "httpClient", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_httpClient" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024httpFactory", + "name": "httpFactory", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_httpFactory" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_cache" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024expiresAfter", + "name": "expiresAfter", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_expiresAfter" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024cacheItem", + "name": "cacheItem", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_cacheItem" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024keySet", + "name": "keySet", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_keySet" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024cacheKey", + "name": "cacheKey", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_cacheKey" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024cacheKeyPrefix", + "name": "cacheKeyPrefix", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_cacheKeyPrefix" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024maxKeyLength", + "name": "maxKeyLength", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_maxKeyLength" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024rateLimit", + "name": "rateLimit", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_rateLimit" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024rateLimitCacheKey", + "name": "rateLimitCacheKey", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_rateLimitCacheKey" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024maxCallsPerMinute", + "name": "maxCallsPerMinute", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_maxCallsPerMinute" + }, { + "fqsen": "\\Firebase\\JWT\\CachedKeySet\u003A\u003A\u0024defaultAlg", + "name": "defaultAlg", + "summary": "", + "url": "classes/Firebase-JWT-CachedKeySet.html#property_defaultAlg" + }, { + "fqsen": "\\Firebase\\JWT\\ExpiredException", + "name": "ExpiredException", + "summary": "", + "url": "classes/Firebase-JWT-ExpiredException.html" + }, { + "fqsen": "\\Firebase\\JWT\\ExpiredException\u003A\u003AsetPayload\u0028\u0029", + "name": "setPayload", + "summary": "Get\u0020the\u0020payload\u0020that\u0020caused\u0020this\u0020exception.", + "url": "classes/Firebase-JWT-ExpiredException.html#method_setPayload" + }, { + "fqsen": "\\Firebase\\JWT\\ExpiredException\u003A\u003AgetPayload\u0028\u0029", + "name": "getPayload", + "summary": "Get\u0020the\u0020payload\u0020that\u0020caused\u0020this\u0020exception.", + "url": "classes/Firebase-JWT-ExpiredException.html#method_getPayload" + }, { + "fqsen": "\\Firebase\\JWT\\ExpiredException\u003A\u003A\u0024payload", + "name": "payload", + "summary": "", + "url": "classes/Firebase-JWT-ExpiredException.html#property_payload" + }, { + "fqsen": "\\Firebase\\JWT\\JWK", + "name": "JWK", + "summary": "JSON\u0020Web\u0020Key\u0020implementation,\u0020based\u0020on\u0020this\u0020spec\u003A\nhttps\u003A\/\/tools.ietf.org\/html\/draft\u002Dietf\u002Djose\u002Djson\u002Dweb\u002Dkey\u002D41", + "url": "classes/Firebase-JWT-JWK.html" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AparseKeySet\u0028\u0029", + "name": "parseKeySet", + "summary": "Parse\u0020a\u0020set\u0020of\u0020JWK\u0020keys", + "url": "classes/Firebase-JWT-JWK.html#method_parseKeySet" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AparseKey\u0028\u0029", + "name": "parseKey", + "summary": "Parse\u0020a\u0020JWK\u0020key", + "url": "classes/Firebase-JWT-JWK.html#method_parseKey" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AcreatePemFromCrvAndXYCoordinates\u0028\u0029", + "name": "createPemFromCrvAndXYCoordinates", + "summary": "Converts\u0020the\u0020EC\u0020JWK\u0020values\u0020to\u0020pem\u0020format.", + "url": "classes/Firebase-JWT-JWK.html#method_createPemFromCrvAndXYCoordinates" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AcreatePemFromModulusAndExponent\u0028\u0029", + "name": "createPemFromModulusAndExponent", + "summary": "Create\u0020a\u0020public\u0020key\u0020represented\u0020in\u0020PEM\u0020format\u0020from\u0020RSA\u0020modulus\u0020and\u0020exponent\u0020information", + "url": "classes/Firebase-JWT-JWK.html#method_createPemFromModulusAndExponent" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AencodeLength\u0028\u0029", + "name": "encodeLength", + "summary": "DER\u002Dencode\u0020the\u0020length", + "url": "classes/Firebase-JWT-JWK.html#method_encodeLength" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AencodeDER\u0028\u0029", + "name": "encodeDER", + "summary": "Encodes\u0020a\u0020value\u0020into\u0020a\u0020DER\u0020object.", + "url": "classes/Firebase-JWT-JWK.html#method_encodeDER" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AencodeOID\u0028\u0029", + "name": "encodeOID", + "summary": "Encodes\u0020a\u0020string\u0020into\u0020a\u0020DER\u002Dencoded\u0020OID.", + "url": "classes/Firebase-JWT-JWK.html#method_encodeOID" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AOID", + "name": "OID", + "summary": "", + "url": "classes/Firebase-JWT-JWK.html#constant_OID" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AASN1_OBJECT_IDENTIFIER", + "name": "ASN1_OBJECT_IDENTIFIER", + "summary": "", + "url": "classes/Firebase-JWT-JWK.html#constant_ASN1_OBJECT_IDENTIFIER" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AASN1_SEQUENCE", + "name": "ASN1_SEQUENCE", + "summary": "", + "url": "classes/Firebase-JWT-JWK.html#constant_ASN1_SEQUENCE" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AASN1_BIT_STRING", + "name": "ASN1_BIT_STRING", + "summary": "", + "url": "classes/Firebase-JWT-JWK.html#constant_ASN1_BIT_STRING" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AEC_CURVES", + "name": "EC_CURVES", + "summary": "", + "url": "classes/Firebase-JWT-JWK.html#constant_EC_CURVES" + }, { + "fqsen": "\\Firebase\\JWT\\JWK\u003A\u003AOKP_SUBTYPES", + "name": "OKP_SUBTYPES", + "summary": "", + "url": "classes/Firebase-JWT-JWK.html#constant_OKP_SUBTYPES" + }, { + "fqsen": "\\Firebase\\JWT\\JWT", + "name": "JWT", + "summary": "JSON\u0020Web\u0020Token\u0020implementation,\u0020based\u0020on\u0020this\u0020spec\u003A\nhttps\u003A\/\/tools.ietf.org\/html\/rfc7519", + "url": "classes/Firebase-JWT-JWT.html" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003Adecode\u0028\u0029", + "name": "decode", + "summary": "Decodes\u0020a\u0020JWT\u0020string\u0020into\u0020a\u0020PHP\u0020object.", + "url": "classes/Firebase-JWT-JWT.html#method_decode" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003Aencode\u0028\u0029", + "name": "encode", + "summary": "Converts\u0020and\u0020signs\u0020a\u0020PHP\u0020array\u0020into\u0020a\u0020JWT\u0020string.", + "url": "classes/Firebase-JWT-JWT.html#method_encode" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003Asign\u0028\u0029", + "name": "sign", + "summary": "Sign\u0020a\u0020string\u0020with\u0020a\u0020given\u0020key\u0020and\u0020algorithm.", + "url": "classes/Firebase-JWT-JWT.html#method_sign" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "Verify\u0020a\u0020signature\u0020with\u0020the\u0020message,\u0020key\u0020and\u0020method.\u0020Not\u0020all\u0020methods\nare\u0020symmetric,\u0020so\u0020we\u0020must\u0020have\u0020a\u0020separate\u0020verify\u0020and\u0020sign\u0020method.", + "url": "classes/Firebase-JWT-JWT.html#method_verify" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AjsonDecode\u0028\u0029", + "name": "jsonDecode", + "summary": "Decode\u0020a\u0020JSON\u0020string\u0020into\u0020a\u0020PHP\u0020object.", + "url": "classes/Firebase-JWT-JWT.html#method_jsonDecode" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AjsonEncode\u0028\u0029", + "name": "jsonEncode", + "summary": "Encode\u0020a\u0020PHP\u0020array\u0020into\u0020a\u0020JSON\u0020string.", + "url": "classes/Firebase-JWT-JWT.html#method_jsonEncode" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AurlsafeB64Decode\u0028\u0029", + "name": "urlsafeB64Decode", + "summary": "Decode\u0020a\u0020string\u0020with\u0020URL\u002Dsafe\u0020Base64.", + "url": "classes/Firebase-JWT-JWT.html#method_urlsafeB64Decode" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AconvertBase64UrlToBase64\u0028\u0029", + "name": "convertBase64UrlToBase64", + "summary": "Convert\u0020a\u0020string\u0020in\u0020the\u0020base64url\u0020\u0028URL\u002Dsafe\u0020Base64\u0029\u0020encoding\u0020to\u0020standard\u0020base64.", + "url": "classes/Firebase-JWT-JWT.html#method_convertBase64UrlToBase64" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AurlsafeB64Encode\u0028\u0029", + "name": "urlsafeB64Encode", + "summary": "Encode\u0020a\u0020string\u0020with\u0020URL\u002Dsafe\u0020Base64.", + "url": "classes/Firebase-JWT-JWT.html#method_urlsafeB64Encode" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AgetKey\u0028\u0029", + "name": "getKey", + "summary": "Determine\u0020if\u0020an\u0020algorithm\u0020has\u0020been\u0020provided\u0020for\u0020each\u0020Key", + "url": "classes/Firebase-JWT-JWT.html#method_getKey" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AconstantTimeEquals\u0028\u0029", + "name": "constantTimeEquals", + "summary": "", + "url": "classes/Firebase-JWT-JWT.html#method_constantTimeEquals" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AhandleJsonError\u0028\u0029", + "name": "handleJsonError", + "summary": "Helper\u0020method\u0020to\u0020create\u0020a\u0020JSON\u0020error.", + "url": "classes/Firebase-JWT-JWT.html#method_handleJsonError" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AsafeStrlen\u0028\u0029", + "name": "safeStrlen", + "summary": "Get\u0020the\u0020number\u0020of\u0020bytes\u0020in\u0020cryptographic\u0020strings.", + "url": "classes/Firebase-JWT-JWT.html#method_safeStrlen" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AsignatureToDER\u0028\u0029", + "name": "signatureToDER", + "summary": "Convert\u0020an\u0020ECDSA\u0020signature\u0020to\u0020an\u0020ASN.1\u0020DER\u0020sequence", + "url": "classes/Firebase-JWT-JWT.html#method_signatureToDER" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AencodeDER\u0028\u0029", + "name": "encodeDER", + "summary": "Encodes\u0020a\u0020value\u0020into\u0020a\u0020DER\u0020object.", + "url": "classes/Firebase-JWT-JWT.html#method_encodeDER" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AsignatureFromDER\u0028\u0029", + "name": "signatureFromDER", + "summary": "Encodes\u0020signature\u0020from\u0020a\u0020DER\u0020object.", + "url": "classes/Firebase-JWT-JWT.html#method_signatureFromDER" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AreadDER\u0028\u0029", + "name": "readDER", + "summary": "Reads\u0020binary\u0020DER\u002Dencoded\u0020data\u0020and\u0020decodes\u0020into\u0020a\u0020single\u0020object", + "url": "classes/Firebase-JWT-JWT.html#method_readDER" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AASN1_INTEGER", + "name": "ASN1_INTEGER", + "summary": "", + "url": "classes/Firebase-JWT-JWT.html#constant_ASN1_INTEGER" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AASN1_SEQUENCE", + "name": "ASN1_SEQUENCE", + "summary": "", + "url": "classes/Firebase-JWT-JWT.html#constant_ASN1_SEQUENCE" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003AASN1_BIT_STRING", + "name": "ASN1_BIT_STRING", + "summary": "", + "url": "classes/Firebase-JWT-JWT.html#constant_ASN1_BIT_STRING" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003A\u0024leeway", + "name": "leeway", + "summary": "When\u0020checking\u0020nbf,\u0020iat\u0020or\u0020expiration\u0020times,\nwe\u0020want\u0020to\u0020provide\u0020some\u0020extra\u0020leeway\u0020time\u0020to\naccount\u0020for\u0020clock\u0020skew.", + "url": "classes/Firebase-JWT-JWT.html#property_leeway" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003A\u0024timestamp", + "name": "timestamp", + "summary": "Allow\u0020the\u0020current\u0020timestamp\u0020to\u0020be\u0020specified.", + "url": "classes/Firebase-JWT-JWT.html#property_timestamp" + }, { + "fqsen": "\\Firebase\\JWT\\JWT\u003A\u003A\u0024supported_algs", + "name": "supported_algs", + "summary": "", + "url": "classes/Firebase-JWT-JWT.html#property_supported_algs" + }, { + "fqsen": "\\Firebase\\JWT\\JWTExceptionWithPayloadInterface", + "name": "JWTExceptionWithPayloadInterface", + "summary": "", + "url": "classes/Firebase-JWT-JWTExceptionWithPayloadInterface.html" + }, { + "fqsen": "\\Firebase\\JWT\\JWTExceptionWithPayloadInterface\u003A\u003AgetPayload\u0028\u0029", + "name": "getPayload", + "summary": "Get\u0020the\u0020payload\u0020that\u0020caused\u0020this\u0020exception.", + "url": "classes/Firebase-JWT-JWTExceptionWithPayloadInterface.html#method_getPayload" + }, { + "fqsen": "\\Firebase\\JWT\\JWTExceptionWithPayloadInterface\u003A\u003AsetPayload\u0028\u0029", + "name": "setPayload", + "summary": "Get\u0020the\u0020payload\u0020that\u0020caused\u0020this\u0020exception.", + "url": "classes/Firebase-JWT-JWTExceptionWithPayloadInterface.html#method_setPayload" + }, { + "fqsen": "\\Firebase\\JWT\\Key", + "name": "Key", + "summary": "", + "url": "classes/Firebase-JWT-Key.html" + }, { + "fqsen": "\\Firebase\\JWT\\Key\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Firebase-JWT-Key.html#method___construct" + }, { + "fqsen": "\\Firebase\\JWT\\Key\u003A\u003AgetAlgorithm\u0028\u0029", + "name": "getAlgorithm", + "summary": "Return\u0020the\u0020algorithm\u0020valid\u0020for\u0020this\u0020key", + "url": "classes/Firebase-JWT-Key.html#method_getAlgorithm" + }, { + "fqsen": "\\Firebase\\JWT\\Key\u003A\u003AgetKeyMaterial\u0028\u0029", + "name": "getKeyMaterial", + "summary": "", + "url": "classes/Firebase-JWT-Key.html#method_getKeyMaterial" + }, { + "fqsen": "\\Firebase\\JWT\\Key\u003A\u003A\u0024keyMaterial", + "name": "keyMaterial", + "summary": "", + "url": "classes/Firebase-JWT-Key.html#property_keyMaterial" + }, { + "fqsen": "\\Firebase\\JWT\\Key\u003A\u003A\u0024algorithm", + "name": "algorithm", + "summary": "", + "url": "classes/Firebase-JWT-Key.html#property_algorithm" + }, { + "fqsen": "\\Firebase\\JWT\\SignatureInvalidException", + "name": "SignatureInvalidException", + "summary": "", + "url": "classes/Firebase-JWT-SignatureInvalidException.html" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error", + "name": "Error", + "summary": "", + "url": "classes/GrahamCampbell-ResultType-Error.html" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Internal\u0020constructor\u0020for\u0020an\u0020error\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method___construct" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020error\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method_create" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003Asuccess\u0028\u0029", + "name": "success", + "summary": "Get\u0020the\u0020success\u0020option\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method_success" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020over\u0020the\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method_map" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Flat\u0020map\u0020over\u0020the\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method_flatMap" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Get\u0020the\u0020error\u0020option\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method_error" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003AmapError\u0028\u0029", + "name": "mapError", + "summary": "Map\u0020over\u0020the\u0020error\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Error.html#method_mapError" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Error\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/GrahamCampbell-ResultType-Error.html#property_value" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Result", + "name": "Result", + "summary": "", + "url": "classes/GrahamCampbell-ResultType-Result.html" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Result\u003A\u003Asuccess\u0028\u0029", + "name": "success", + "summary": "Get\u0020the\u0020success\u0020option\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Result.html#method_success" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Result\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020over\u0020the\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Result.html#method_map" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Result\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Flat\u0020map\u0020over\u0020the\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Result.html#method_flatMap" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Result\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Get\u0020the\u0020error\u0020option\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Result.html#method_error" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Result\u003A\u003AmapError\u0028\u0029", + "name": "mapError", + "summary": "Map\u0020over\u0020the\u0020error\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Result.html#method_mapError" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success", + "name": "Success", + "summary": "", + "url": "classes/GrahamCampbell-ResultType-Success.html" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Internal\u0020constructor\u0020for\u0020a\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method___construct" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020error\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method_create" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003Asuccess\u0028\u0029", + "name": "success", + "summary": "Get\u0020the\u0020success\u0020option\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method_success" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020over\u0020the\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method_map" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Flat\u0020map\u0020over\u0020the\u0020success\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method_flatMap" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Get\u0020the\u0020error\u0020option\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method_error" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003AmapError\u0028\u0029", + "name": "mapError", + "summary": "Map\u0020over\u0020the\u0020error\u0020value.", + "url": "classes/GrahamCampbell-ResultType-Success.html#method_mapError" + }, { + "fqsen": "\\GrahamCampbell\\ResultType\\Success\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/GrahamCampbell-ResultType-Success.html#property_value" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch", + "name": "Batch", + "summary": "", + "url": "classes/Illuminate-Bus-Batch.html" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020batch\u0020instance.", + "url": "classes/Illuminate-Bus-Batch.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Afresh\u0028\u0029", + "name": "fresh", + "summary": "Get\u0020a\u0020fresh\u0020instance\u0020of\u0020the\u0020batch\u0020represented\u0020by\u0020this\u0020ID.", + "url": "classes/Illuminate-Bus-Batch.html#method_fresh" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020additional\u0020jobs\u0020to\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-Batch.html#method_add" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AprepareBatchedChain\u0028\u0029", + "name": "prepareBatchedChain", + "summary": "Prepare\u0020a\u0020chain\u0020that\u0020exists\u0020within\u0020the\u0020jobs\u0020being\u0020added.", + "url": "classes/Illuminate-Bus-Batch.html#method_prepareBatchedChain" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AprocessedJobs\u0028\u0029", + "name": "processedJobs", + "summary": "Get\u0020the\u0020total\u0020number\u0020of\u0020jobs\u0020that\u0020have\u0020been\u0020processed\u0020by\u0020the\u0020batch\u0020thus\u0020far.", + "url": "classes/Illuminate-Bus-Batch.html#method_processedJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Aprogress\u0028\u0029", + "name": "progress", + "summary": "Get\u0020the\u0020percentage\u0020of\u0020jobs\u0020that\u0020have\u0020been\u0020processed\u0020\u0028between\u00200\u002D100\u0029.", + "url": "classes/Illuminate-Bus-Batch.html#method_progress" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003ArecordSuccessfulJob\u0028\u0029", + "name": "recordSuccessfulJob", + "summary": "Record\u0020that\u0020a\u0020job\u0020within\u0020the\u0020batch\u0020finished\u0020successfully,\u0020executing\u0020any\u0020callbacks\u0020if\u0020necessary.", + "url": "classes/Illuminate-Bus-Batch.html#method_recordSuccessfulJob" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AdecrementPendingJobs\u0028\u0029", + "name": "decrementPendingJobs", + "summary": "Decrement\u0020the\u0020pending\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-Batch.html#method_decrementPendingJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Afinished\u0028\u0029", + "name": "finished", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020finished\u0020executing.", + "url": "classes/Illuminate-Bus-Batch.html#method_finished" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AhasThenCallbacks\u0028\u0029", + "name": "hasThenCallbacks", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020\u0022success\u0022\u0020callbacks.", + "url": "classes/Illuminate-Bus-Batch.html#method_hasThenCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AallowsFailures\u0028\u0029", + "name": "allowsFailures", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020allows\u0020jobs\u0020to\u0020fail\u0020without\u0020cancelling\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-Batch.html#method_allowsFailures" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AhasFailures\u0028\u0029", + "name": "hasFailures", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020job\u0020failures.", + "url": "classes/Illuminate-Bus-Batch.html#method_hasFailures" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003ArecordFailedJob\u0028\u0029", + "name": "recordFailedJob", + "summary": "Record\u0020that\u0020a\u0020job\u0020within\u0020the\u0020batch\u0020failed\u0020to\u0020finish\u0020successfully,\u0020executing\u0020any\u0020callbacks\u0020if\u0020necessary.", + "url": "classes/Illuminate-Bus-Batch.html#method_recordFailedJob" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AincrementFailedJobs\u0028\u0029", + "name": "incrementFailedJobs", + "summary": "Increment\u0020the\u0020failed\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-Batch.html#method_incrementFailedJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AhasCatchCallbacks\u0028\u0029", + "name": "hasCatchCallbacks", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020\u0022catch\u0022\u0020callbacks.", + "url": "classes/Illuminate-Bus-Batch.html#method_hasCatchCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AhasFinallyCallbacks\u0028\u0029", + "name": "hasFinallyCallbacks", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020\u0022finally\u0022\u0020callbacks.", + "url": "classes/Illuminate-Bus-Batch.html#method_hasFinallyCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Acancel\u0028\u0029", + "name": "cancel", + "summary": "Cancel\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-Batch.html#method_cancel" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Acanceled\u0028\u0029", + "name": "canceled", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020been\u0020cancelled.", + "url": "classes/Illuminate-Bus-Batch.html#method_canceled" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Acancelled\u0028\u0029", + "name": "cancelled", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020has\u0020been\u0020cancelled.", + "url": "classes/Illuminate-Bus-Batch.html#method_cancelled" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020batch\u0020from\u0020storage.", + "url": "classes/Illuminate-Bus-Batch.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AinvokeHandlerCallback\u0028\u0029", + "name": "invokeHandlerCallback", + "summary": "Invoke\u0020a\u0020batch\u0020callback\u0020handler.", + "url": "classes/Illuminate-Bus-Batch.html#method_invokeHandlerCallback" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Convert\u0020the\u0020batch\u0020to\u0020an\u0020array.", + "url": "classes/Illuminate-Bus-Batch.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Get\u0020the\u0020JSON\u0020serializable\u0020representation\u0020of\u0020the\u0020object.", + "url": "classes/Illuminate-Bus-Batch.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020the\u0020batch\u0027s\u0020\u0022options\u0022\u0020via\u0020properties.", + "url": "classes/Illuminate-Bus-Batch.html#method___get" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024queue", + "name": "queue", + "summary": "The\u0020queue\u0020factory\u0020implementation.", + "url": "classes/Illuminate-Bus-Batch.html#property_queue" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020repository\u0020implementation.", + "url": "classes/Illuminate-Bus-Batch.html#property_repository" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024id", + "name": "id", + "summary": "The\u0020batch\u0020ID.", + "url": "classes/Illuminate-Bus-Batch.html#property_id" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020batch\u0020name.", + "url": "classes/Illuminate-Bus-Batch.html#property_name" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024totalJobs", + "name": "totalJobs", + "summary": "The\u0020total\u0020number\u0020of\u0020jobs\u0020that\u0020belong\u0020to\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-Batch.html#property_totalJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024pendingJobs", + "name": "pendingJobs", + "summary": "The\u0020total\u0020number\u0020of\u0020jobs\u0020that\u0020are\u0020still\u0020pending.", + "url": "classes/Illuminate-Bus-Batch.html#property_pendingJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024failedJobs", + "name": "failedJobs", + "summary": "The\u0020total\u0020number\u0020of\u0020jobs\u0020that\u0020have\u0020failed.", + "url": "classes/Illuminate-Bus-Batch.html#property_failedJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024failedJobIds", + "name": "failedJobIds", + "summary": "The\u0020IDs\u0020of\u0020the\u0020jobs\u0020that\u0020have\u0020failed.", + "url": "classes/Illuminate-Bus-Batch.html#property_failedJobIds" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024options", + "name": "options", + "summary": "The\u0020batch\u0020options.", + "url": "classes/Illuminate-Bus-Batch.html#property_options" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024createdAt", + "name": "createdAt", + "summary": "The\u0020date\u0020indicating\u0020when\u0020the\u0020batch\u0020was\u0020created.", + "url": "classes/Illuminate-Bus-Batch.html#property_createdAt" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024cancelledAt", + "name": "cancelledAt", + "summary": "The\u0020date\u0020indicating\u0020when\u0020the\u0020batch\u0020was\u0020cancelled.", + "url": "classes/Illuminate-Bus-Batch.html#property_cancelledAt" + }, { + "fqsen": "\\Illuminate\\Bus\\Batch\u003A\u003A\u0024finishedAt", + "name": "finishedAt", + "summary": "The\u0020date\u0020indicating\u0020when\u0020the\u0020batch\u0020was\u0020finished.", + "url": "classes/Illuminate-Bus-Batch.html#property_finishedAt" + }, { + "fqsen": "\\Illuminate\\Bus\\Batchable", + "name": "Batchable", + "summary": "", + "url": "classes/Illuminate-Bus-Batchable.html" + }, { + "fqsen": "\\Illuminate\\Bus\\Batchable\u003A\u003Abatch\u0028\u0029", + "name": "batch", + "summary": "Get\u0020the\u0020batch\u0020instance\u0020for\u0020the\u0020job,\u0020if\u0020applicable.", + "url": "classes/Illuminate-Bus-Batchable.html#method_batch" + }, { + "fqsen": "\\Illuminate\\Bus\\Batchable\u003A\u003Abatching\u0028\u0029", + "name": "batching", + "summary": "Determine\u0020if\u0020the\u0020batch\u0020is\u0020still\u0020active\u0020and\u0020processing.", + "url": "classes/Illuminate-Bus-Batchable.html#method_batching" + }, { + "fqsen": "\\Illuminate\\Bus\\Batchable\u003A\u003AwithBatchId\u0028\u0029", + "name": "withBatchId", + "summary": "Set\u0020the\u0020batch\u0020ID\u0020on\u0020the\u0020job.", + "url": "classes/Illuminate-Bus-Batchable.html#method_withBatchId" + }, { + "fqsen": "\\Illuminate\\Bus\\Batchable\u003A\u003A\u0024batchId", + "name": "batchId", + "summary": "The\u0020batch\u0020ID\u0020\u0028if\u0020applicable\u0029.", + "url": "classes/Illuminate-Bus-Batchable.html#property_batchId" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchFactory", + "name": "BatchFactory", + "summary": "", + "url": "classes/Illuminate-Bus-BatchFactory.html" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchFactory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020batch\u0020factory\u0020instance.", + "url": "classes/Illuminate-Bus-BatchFactory.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchFactory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020batch\u0020instance.", + "url": "classes/Illuminate-Bus-BatchFactory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchFactory\u003A\u003A\u0024queue", + "name": "queue", + "summary": "The\u0020queue\u0020factory\u0020implementation.", + "url": "classes/Illuminate-Bus-BatchFactory.html#property_queue" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository", + "name": "BatchRepository", + "summary": "", + "url": "classes/Illuminate-Bus-BatchRepository.html" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieve\u0020a\u0020list\u0020of\u0020batches.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_get" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Retrieve\u0020information\u0020about\u0020an\u0020existing\u0020batch.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_find" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "Store\u0020a\u0020new\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_store" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003AincrementTotalJobs\u0028\u0029", + "name": "incrementTotalJobs", + "summary": "Increment\u0020the\u0020total\u0020number\u0020of\u0020jobs\u0020within\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_incrementTotalJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003AdecrementPendingJobs\u0028\u0029", + "name": "decrementPendingJobs", + "summary": "Decrement\u0020the\u0020total\u0020number\u0020of\u0020pending\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_decrementPendingJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003AincrementFailedJobs\u0028\u0029", + "name": "incrementFailedJobs", + "summary": "Increment\u0020the\u0020total\u0020number\u0020of\u0020failed\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_incrementFailedJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003AmarkAsFinished\u0028\u0029", + "name": "markAsFinished", + "summary": "Mark\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID\u0020as\u0020finished.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_markAsFinished" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003Acancel\u0028\u0029", + "name": "cancel", + "summary": "Cancel\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_cancel" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Bus\\BatchRepository\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Execute\u0020the\u0020given\u0020Closure\u0020within\u0020a\u0020storage\u0020specific\u0020transaction.", + "url": "classes/Illuminate-Bus-BatchRepository.html#method_transaction" + }, { + "fqsen": "\\Illuminate\\Bus\\BusServiceProvider", + "name": "BusServiceProvider", + "summary": "", + "url": "classes/Illuminate-Bus-BusServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Bus\\BusServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Bus-BusServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Bus\\BusServiceProvider\u003A\u003AregisterBatchServices\u0028\u0029", + "name": "registerBatchServices", + "summary": "Register\u0020the\u0020batch\u0020handling\u0020services.", + "url": "classes/Illuminate-Bus-BusServiceProvider.html#method_registerBatchServices" + }, { + "fqsen": "\\Illuminate\\Bus\\BusServiceProvider\u003A\u003Aprovides\u0028\u0029", + "name": "provides", + "summary": "Get\u0020the\u0020services\u0020provided\u0020by\u0020the\u0020provider.", + "url": "classes/Illuminate-Bus-BusServiceProvider.html#method_provides" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository", + "name": "DatabaseBatchRepository", + "summary": "", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020batch\u0020repository\u0020instance.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieve\u0020a\u0020list\u0020of\u0020batches.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_get" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Retrieve\u0020information\u0020about\u0020an\u0020existing\u0020batch.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_find" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "Store\u0020a\u0020new\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_store" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003AincrementTotalJobs\u0028\u0029", + "name": "incrementTotalJobs", + "summary": "Increment\u0020the\u0020total\u0020number\u0020of\u0020jobs\u0020within\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_incrementTotalJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003AdecrementPendingJobs\u0028\u0029", + "name": "decrementPendingJobs", + "summary": "Decrement\u0020the\u0020total\u0020number\u0020of\u0020pending\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_decrementPendingJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003AincrementFailedJobs\u0028\u0029", + "name": "incrementFailedJobs", + "summary": "Increment\u0020the\u0020total\u0020number\u0020of\u0020failed\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_incrementFailedJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003AupdateAtomicValues\u0028\u0029", + "name": "updateAtomicValues", + "summary": "Update\u0020an\u0020atomic\u0020value\u0020within\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_updateAtomicValues" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003AmarkAsFinished\u0028\u0029", + "name": "markAsFinished", + "summary": "Mark\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID\u0020as\u0020finished.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_markAsFinished" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Acancel\u0028\u0029", + "name": "cancel", + "summary": "Cancel\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_cancel" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Aprune\u0028\u0029", + "name": "prune", + "summary": "Prune\u0020all\u0020of\u0020the\u0020entries\u0020older\u0020than\u0020the\u0020given\u0020date.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_prune" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003ApruneUnfinished\u0028\u0029", + "name": "pruneUnfinished", + "summary": "Prune\u0020all\u0020of\u0020the\u0020unfinished\u0020entries\u0020older\u0020than\u0020the\u0020given\u0020date.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_pruneUnfinished" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Execute\u0020the\u0020given\u0020Closure\u0020within\u0020a\u0020storage\u0020specific\u0020transaction.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_transaction" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Aserialize\u0028\u0029", + "name": "serialize", + "summary": "Serialize\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_serialize" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003Aunserialize\u0028\u0029", + "name": "unserialize", + "summary": "Unserialize\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_unserialize" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003AtoBatch\u0028\u0029", + "name": "toBatch", + "summary": "Convert\u0020the\u0020given\u0020raw\u0020batch\u0020to\u0020a\u0020Batch\u0020object.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#method_toBatch" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020batch\u0020factory\u0020instance.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#property_factory" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Bus\\DatabaseBatchRepository\u003A\u003A\u0024table", + "name": "table", + "summary": "The\u0020database\u0020table\u0020to\u0020use\u0020to\u0020store\u0020batch\u0020information.", + "url": "classes/Illuminate-Bus-DatabaseBatchRepository.html#property_table" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher", + "name": "Dispatcher", + "summary": "", + "url": "classes/Illuminate-Bus-Dispatcher.html" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020command\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AdispatchSync\u0028\u0029", + "name": "dispatchSync", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020in\u0020the\u0020current\u0020process.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_dispatchSync" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AdispatchNow\u0028\u0029", + "name": "dispatchNow", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020in\u0020the\u0020current\u0020process\u0020without\u0020using\u0020the\u0020synchronous\u0020queue.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_dispatchNow" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AfindBatch\u0028\u0029", + "name": "findBatch", + "summary": "Attempt\u0020to\u0020find\u0020the\u0020batch\u0020with\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_findBatch" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003Abatch\u0028\u0029", + "name": "batch", + "summary": "Create\u0020a\u0020new\u0020batch\u0020of\u0020queueable\u0020jobs.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_batch" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003Achain\u0028\u0029", + "name": "chain", + "summary": "Create\u0020a\u0020new\u0020chain\u0020of\u0020queueable\u0020jobs.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_chain" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AhasCommandHandler\u0028\u0029", + "name": "hasCommandHandler", + "summary": "Determine\u0020if\u0020the\u0020given\u0020command\u0020has\u0020a\u0020handler.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_hasCommandHandler" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AgetCommandHandler\u0028\u0029", + "name": "getCommandHandler", + "summary": "Retrieve\u0020the\u0020handler\u0020for\u0020a\u0020command.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_getCommandHandler" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AcommandShouldBeQueued\u0028\u0029", + "name": "commandShouldBeQueued", + "summary": "Determine\u0020if\u0020the\u0020given\u0020command\u0020should\u0020be\u0020queued.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_commandShouldBeQueued" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AdispatchToQueue\u0028\u0029", + "name": "dispatchToQueue", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020behind\u0020a\u0020queue.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_dispatchToQueue" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003ApushCommandToQueue\u0028\u0029", + "name": "pushCommandToQueue", + "summary": "Push\u0020the\u0020command\u0020onto\u0020the\u0020given\u0020queue\u0020instance.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_pushCommandToQueue" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003AdispatchAfterResponse\u0028\u0029", + "name": "dispatchAfterResponse", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020after\u0020the\u0020current\u0020process.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_dispatchAfterResponse" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003ApipeThrough\u0028\u0029", + "name": "pipeThrough", + "summary": "Set\u0020the\u0020pipes\u0020through\u0020which\u0020commands\u0020should\u0020be\u0020piped\u0020before\u0020dispatching.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_pipeThrough" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020a\u0020command\u0020to\u0020a\u0020handler.", + "url": "classes/Illuminate-Bus-Dispatcher.html#method_map" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020container\u0020implementation.", + "url": "classes/Illuminate-Bus-Dispatcher.html#property_container" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003A\u0024pipeline", + "name": "pipeline", + "summary": "The\u0020pipeline\u0020instance\u0020for\u0020the\u0020bus.", + "url": "classes/Illuminate-Bus-Dispatcher.html#property_pipeline" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003A\u0024pipes", + "name": "pipes", + "summary": "The\u0020pipes\u0020to\u0020send\u0020commands\u0020through\u0020before\u0020dispatching.", + "url": "classes/Illuminate-Bus-Dispatcher.html#property_pipes" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003A\u0024handlers", + "name": "handlers", + "summary": "The\u0020command\u0020to\u0020handler\u0020mapping\u0020for\u0020non\u002Dself\u002Dhandling\u0020events.", + "url": "classes/Illuminate-Bus-Dispatcher.html#property_handlers" + }, { + "fqsen": "\\Illuminate\\Bus\\Dispatcher\u003A\u003A\u0024queueResolver", + "name": "queueResolver", + "summary": "The\u0020queue\u0020resolver\u0020callback.", + "url": "classes/Illuminate-Bus-Dispatcher.html#property_queueResolver" + }, { + "fqsen": "\\Illuminate\\Bus\\Events\\BatchDispatched", + "name": "BatchDispatched", + "summary": "", + "url": "classes/Illuminate-Bus-Events-BatchDispatched.html" + }, { + "fqsen": "\\Illuminate\\Bus\\Events\\BatchDispatched\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Bus-Events-BatchDispatched.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\Events\\BatchDispatched\u003A\u003A\u0024batch", + "name": "batch", + "summary": "The\u0020batch\u0020instance.", + "url": "classes/Illuminate-Bus-Events-BatchDispatched.html#property_batch" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch", + "name": "PendingBatch", + "summary": "", + "url": "classes/Illuminate-Bus-PendingBatch.html" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020pending\u0020batch\u0020instance.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020jobs\u0020to\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_add" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Athen\u0028\u0029", + "name": "then", + "summary": "Add\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020after\u0020all\u0020jobs\u0020in\u0020the\u0020batch\u0020have\u0020executed\u0020successfully.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_then" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AthenCallbacks\u0028\u0029", + "name": "thenCallbacks", + "summary": "Get\u0020the\u0020\u0022then\u0022\u0020callbacks\u0020that\u0020have\u0020been\u0020registered\u0020with\u0020the\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_thenCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Acatch\u0028\u0029", + "name": "catch", + "summary": "Add\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020after\u0020the\u0020first\u0020failing\u0020job\u0020in\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_catch" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AcatchCallbacks\u0028\u0029", + "name": "catchCallbacks", + "summary": "Get\u0020the\u0020\u0022catch\u0022\u0020callbacks\u0020that\u0020have\u0020been\u0020registered\u0020with\u0020the\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_catchCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Afinally\u0028\u0029", + "name": "finally", + "summary": "Add\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020after\u0020the\u0020batch\u0020has\u0020finished\u0020executing.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_finally" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AfinallyCallbacks\u0028\u0029", + "name": "finallyCallbacks", + "summary": "Get\u0020the\u0020\u0022finally\u0022\u0020callbacks\u0020that\u0020have\u0020been\u0020registered\u0020with\u0020the\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_finallyCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AallowFailures\u0028\u0029", + "name": "allowFailures", + "summary": "Indicate\u0020that\u0020the\u0020batch\u0020should\u0020not\u0020be\u0020cancelled\u0020when\u0020a\u0020job\u0020within\u0020the\u0020batch\u0020fails.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_allowFailures" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AallowsFailures\u0028\u0029", + "name": "allowsFailures", + "summary": "Determine\u0020if\u0020the\u0020pending\u0020batch\u0020allows\u0020jobs\u0020to\u0020fail\u0020without\u0020cancelling\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_allowsFailures" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020batch\u0020name.", + "url": "classes/Illuminate-Bus-PendingBatch.html#property_name" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AonConnection\u0028\u0029", + "name": "onConnection", + "summary": "Specify\u0020the\u0020queue\u0020connection\u0020that\u0020the\u0020batched\u0020jobs\u0020should\u0020run\u0020on.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_onConnection" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020the\u0020connection\u0020used\u0020by\u0020the\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AonQueue\u0028\u0029", + "name": "onQueue", + "summary": "Specify\u0020the\u0020queue\u0020that\u0020the\u0020batched\u0020jobs\u0020should\u0020run\u0020on.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_onQueue" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Get\u0020the\u0020queue\u0020used\u0020by\u0020the\u0020pending\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003AwithOption\u0028\u0029", + "name": "withOption", + "summary": "Add\u0020additional\u0020data\u0020into\u0020the\u0020batch\u0027s\u0020options\u0020array.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_withOption" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Bus-PendingBatch.html#property_container" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003A\u0024jobs", + "name": "jobs", + "summary": "The\u0020jobs\u0020that\u0020belong\u0020to\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-PendingBatch.html#property_jobs" + }, { + "fqsen": "\\Illuminate\\Bus\\PendingBatch\u003A\u003A\u0024options", + "name": "options", + "summary": "The\u0020batch\u0020options.", + "url": "classes/Illuminate-Bus-PendingBatch.html#property_options" + }, { + "fqsen": "\\Illuminate\\Bus\\PrunableBatchRepository", + "name": "PrunableBatchRepository", + "summary": "", + "url": "classes/Illuminate-Bus-PrunableBatchRepository.html" + }, { + "fqsen": "\\Illuminate\\Bus\\PrunableBatchRepository\u003A\u003Aprune\u0028\u0029", + "name": "prune", + "summary": "Prune\u0020all\u0020of\u0020the\u0020entries\u0020older\u0020than\u0020the\u0020given\u0020date.", + "url": "classes/Illuminate-Bus-PrunableBatchRepository.html#method_prune" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable", + "name": "Queueable", + "summary": "", + "url": "classes/Illuminate-Bus-Queueable.html" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AonConnection\u0028\u0029", + "name": "onConnection", + "summary": "Set\u0020the\u0020desired\u0020connection\u0020for\u0020the\u0020job.", + "url": "classes/Illuminate-Bus-Queueable.html#method_onConnection" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AonQueue\u0028\u0029", + "name": "onQueue", + "summary": "Set\u0020the\u0020desired\u0020queue\u0020for\u0020the\u0020job.", + "url": "classes/Illuminate-Bus-Queueable.html#method_onQueue" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AallOnConnection\u0028\u0029", + "name": "allOnConnection", + "summary": "Set\u0020the\u0020desired\u0020connection\u0020for\u0020the\u0020chain.", + "url": "classes/Illuminate-Bus-Queueable.html#method_allOnConnection" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AallOnQueue\u0028\u0029", + "name": "allOnQueue", + "summary": "Set\u0020the\u0020desired\u0020queue\u0020for\u0020the\u0020chain.", + "url": "classes/Illuminate-Bus-Queueable.html#method_allOnQueue" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024delay", + "name": "delay", + "summary": "The\u0020number\u0020of\u0020seconds\u0020before\u0020the\u0020job\u0020should\u0020be\u0020made\u0020available.", + "url": "classes/Illuminate-Bus-Queueable.html#property_delay" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024afterCommit", + "name": "afterCommit", + "summary": "Indicates\u0020whether\u0020the\u0020job\u0020should\u0020be\u0020dispatched\u0020after\u0020all\u0020database\u0020transactions\u0020have\u0020committed.", + "url": "classes/Illuminate-Bus-Queueable.html#property_afterCommit" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AbeforeCommit\u0028\u0029", + "name": "beforeCommit", + "summary": "Indicate\u0020that\u0020the\u0020job\u0020should\u0020not\u0020wait\u0020until\u0020database\u0020transactions\u0020have\u0020been\u0020committed\u0020before\u0020dispatching.", + "url": "classes/Illuminate-Bus-Queueable.html#method_beforeCommit" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003Athrough\u0028\u0029", + "name": "through", + "summary": "Specify\u0020the\u0020middleware\u0020the\u0020job\u0020should\u0020be\u0020dispatched\u0020through.", + "url": "classes/Illuminate-Bus-Queueable.html#method_through" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003Achain\u0028\u0029", + "name": "chain", + "summary": "Set\u0020the\u0020jobs\u0020that\u0020should\u0020run\u0020if\u0020this\u0020job\u0020is\u0020successful.", + "url": "classes/Illuminate-Bus-Queueable.html#method_chain" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AserializeJob\u0028\u0029", + "name": "serializeJob", + "summary": "Serialize\u0020a\u0020job\u0020for\u0020queuing.", + "url": "classes/Illuminate-Bus-Queueable.html#method_serializeJob" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AdispatchNextJobInChain\u0028\u0029", + "name": "dispatchNextJobInChain", + "summary": "Dispatch\u0020the\u0020next\u0020job\u0020on\u0020the\u0020chain.", + "url": "classes/Illuminate-Bus-Queueable.html#method_dispatchNextJobInChain" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003AinvokeChainCatchCallbacks\u0028\u0029", + "name": "invokeChainCatchCallbacks", + "summary": "Invoke\u0020all\u0020of\u0020the\u0020chain\u0027s\u0020failed\u0020job\u0020callbacks.", + "url": "classes/Illuminate-Bus-Queueable.html#method_invokeChainCatchCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020connection\u0020the\u0020job\u0020should\u0020be\u0020sent\u0020to.", + "url": "classes/Illuminate-Bus-Queueable.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024queue", + "name": "queue", + "summary": "The\u0020name\u0020of\u0020the\u0020queue\u0020the\u0020job\u0020should\u0020be\u0020sent\u0020to.", + "url": "classes/Illuminate-Bus-Queueable.html#property_queue" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024chainConnection", + "name": "chainConnection", + "summary": "The\u0020name\u0020of\u0020the\u0020connection\u0020the\u0020chain\u0020should\u0020be\u0020sent\u0020to.", + "url": "classes/Illuminate-Bus-Queueable.html#property_chainConnection" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024chainQueue", + "name": "chainQueue", + "summary": "The\u0020name\u0020of\u0020the\u0020queue\u0020the\u0020chain\u0020should\u0020be\u0020sent\u0020to.", + "url": "classes/Illuminate-Bus-Queueable.html#property_chainQueue" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024chainCatchCallbacks", + "name": "chainCatchCallbacks", + "summary": "The\u0020callbacks\u0020to\u0020be\u0020executed\u0020on\u0020chain\u0020failure.", + "url": "classes/Illuminate-Bus-Queueable.html#property_chainCatchCallbacks" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024middleware", + "name": "middleware", + "summary": "The\u0020middleware\u0020the\u0020job\u0020should\u0020be\u0020dispatched\u0020through.", + "url": "classes/Illuminate-Bus-Queueable.html#property_middleware" + }, { + "fqsen": "\\Illuminate\\Bus\\Queueable\u003A\u003A\u0024chained", + "name": "chained", + "summary": "The\u0020jobs\u0020that\u0020should\u0020run\u0020if\u0020this\u0020job\u0020is\u0020successful.", + "url": "classes/Illuminate-Bus-Queueable.html#property_chained" + }, { + "fqsen": "\\Illuminate\\Bus\\UniqueLock", + "name": "UniqueLock", + "summary": "", + "url": "classes/Illuminate-Bus-UniqueLock.html" + }, { + "fqsen": "\\Illuminate\\Bus\\UniqueLock\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020unique\u0020lock\u0020manager\u0020instance.", + "url": "classes/Illuminate-Bus-UniqueLock.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\UniqueLock\u003A\u003Aacquire\u0028\u0029", + "name": "acquire", + "summary": "Attempt\u0020to\u0020acquire\u0020a\u0020lock\u0020for\u0020the\u0020given\u0020job.", + "url": "classes/Illuminate-Bus-UniqueLock.html#method_acquire" + }, { + "fqsen": "\\Illuminate\\Bus\\UniqueLock\u003A\u003A\u0024cache", + "name": "cache", + "summary": "The\u0020cache\u0020repository\u0020implementation.", + "url": "classes/Illuminate-Bus-UniqueLock.html#property_cache" + }, { + "fqsen": "\\Illuminate\\Bus\\UpdatedBatchJobCounts", + "name": "UpdatedBatchJobCounts", + "summary": "", + "url": "classes/Illuminate-Bus-UpdatedBatchJobCounts.html" + }, { + "fqsen": "\\Illuminate\\Bus\\UpdatedBatchJobCounts\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020batch\u0020job\u0020counts\u0020object.", + "url": "classes/Illuminate-Bus-UpdatedBatchJobCounts.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Bus\\UpdatedBatchJobCounts\u003A\u003AallJobsHaveRanExactlyOnce\u0028\u0029", + "name": "allJobsHaveRanExactlyOnce", + "summary": "Determine\u0020if\u0020all\u0020jobs\u0020have\u0020run\u0020exactly\u0020once.", + "url": "classes/Illuminate-Bus-UpdatedBatchJobCounts.html#method_allJobsHaveRanExactlyOnce" + }, { + "fqsen": "\\Illuminate\\Bus\\UpdatedBatchJobCounts\u003A\u003A\u0024pendingJobs", + "name": "pendingJobs", + "summary": "The\u0020number\u0020of\u0020pending\u0020jobs\u0020remaining\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-UpdatedBatchJobCounts.html#property_pendingJobs" + }, { + "fqsen": "\\Illuminate\\Bus\\UpdatedBatchJobCounts\u003A\u003A\u0024failedJobs", + "name": "failedJobs", + "summary": "The\u0020number\u0020of\u0020failed\u0020jobs\u0020that\u0020belong\u0020to\u0020the\u0020batch.", + "url": "classes/Illuminate-Bus-UpdatedBatchJobCounts.html#property_failedJobs" + }, { + "fqsen": "\\Illuminate\\Support\\Arr", + "name": "Arr", + "summary": "", + "url": "classes/Illuminate-Support-Arr.html" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aaccessible\u0028\u0029", + "name": "accessible", + "summary": "Determine\u0020whether\u0020the\u0020given\u0020value\u0020is\u0020array\u0020accessible.", + "url": "classes/Illuminate-Support-Arr.html#method_accessible" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020an\u0020element\u0020to\u0020an\u0020array\u0020using\u0020\u0022dot\u0022\u0020notation\u0020if\u0020it\u0020doesn\u0027t\u0020exist.", + "url": "classes/Illuminate-Support-Arr.html#method_add" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Acollapse\u0028\u0029", + "name": "collapse", + "summary": "Collapse\u0020an\u0020array\u0020of\u0020arrays\u0020into\u0020a\u0020single\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_collapse" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AcrossJoin\u0028\u0029", + "name": "crossJoin", + "summary": "Cross\u0020join\u0020the\u0020given\u0020arrays,\u0020returning\u0020all\u0020possible\u0020permutations.", + "url": "classes/Illuminate-Support-Arr.html#method_crossJoin" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Adivide\u0028\u0029", + "name": "divide", + "summary": "Divide\u0020an\u0020array\u0020into\u0020two\u0020arrays.\u0020One\u0020with\u0020keys\u0020and\u0020the\u0020other\u0020with\u0020values.", + "url": "classes/Illuminate-Support-Arr.html#method_divide" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Adot\u0028\u0029", + "name": "dot", + "summary": "Flatten\u0020a\u0020multi\u002Ddimensional\u0020associative\u0020array\u0020with\u0020dots.", + "url": "classes/Illuminate-Support-Arr.html#method_dot" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aundot\u0028\u0029", + "name": "undot", + "summary": "Convert\u0020a\u0020flatten\u0020\u0022dot\u0022\u0020notation\u0020array\u0020into\u0020an\u0020expanded\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_undot" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Get\u0020all\u0020of\u0020the\u0020given\u0020array\u0020except\u0020for\u0020a\u0020specified\u0020array\u0020of\u0020keys.", + "url": "classes/Illuminate-Support-Arr.html#method_except" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020the\u0020given\u0020key\u0020exists\u0020in\u0020the\u0020provided\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Return\u0020the\u0020first\u0020element\u0020in\u0020an\u0020array\u0020passing\u0020a\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Arr.html#method_first" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Alast\u0028\u0029", + "name": "last", + "summary": "Return\u0020the\u0020last\u0020element\u0020in\u0020an\u0020array\u0020passing\u0020a\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Arr.html#method_last" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Flatten\u0020a\u0020multi\u002Ddimensional\u0020array\u0020into\u0020a\u0020single\u0020level.", + "url": "classes/Illuminate-Support-Arr.html#method_flatten" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020one\u0020or\u0020many\u0020array\u0020items\u0020from\u0020a\u0020given\u0020array\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "classes/Illuminate-Support-Arr.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020item\u0020from\u0020an\u0020array\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "classes/Illuminate-Support-Arr.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Check\u0020if\u0020an\u0020item\u0020or\u0020items\u0020exist\u0020in\u0020an\u0020array\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "classes/Illuminate-Support-Arr.html#method_has" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AhasAny\u0028\u0029", + "name": "hasAny", + "summary": "Determine\u0020if\u0020any\u0020of\u0020the\u0020keys\u0020exist\u0020in\u0020an\u0020array\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "classes/Illuminate-Support-Arr.html#method_hasAny" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AisAssoc\u0028\u0029", + "name": "isAssoc", + "summary": "Determines\u0020if\u0020an\u0020array\u0020is\u0020associative.", + "url": "classes/Illuminate-Support-Arr.html#method_isAssoc" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AisList\u0028\u0029", + "name": "isList", + "summary": "Determines\u0020if\u0020an\u0020array\u0020is\u0020a\u0020list.", + "url": "classes/Illuminate-Support-Arr.html#method_isList" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Get\u0020a\u0020subset\u0020of\u0020the\u0020items\u0020from\u0020the\u0020given\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_only" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Pluck\u0020an\u0020array\u0020of\u0020values\u0020from\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AexplodePluckParameters\u0028\u0029", + "name": "explodePluckParameters", + "summary": "Explode\u0020the\u0020\u0022value\u0022\u0020and\u0020\u0022key\u0022\u0020arguments\u0020passed\u0020to\u0020\u0022pluck\u0022.", + "url": "classes/Illuminate-Support-Arr.html#method_explodePluckParameters" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Push\u0020an\u0020item\u0020onto\u0020the\u0020beginning\u0020of\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Apull\u0028\u0029", + "name": "pull", + "summary": "Get\u0020a\u0020value\u0020from\u0020the\u0020array,\u0020and\u0020remove\u0020it.", + "url": "classes/Illuminate-Support-Arr.html#method_pull" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Convert\u0020the\u0020array\u0020into\u0020a\u0020query\u0020string.", + "url": "classes/Illuminate-Support-Arr.html#method_query" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Arandom\u0028\u0029", + "name": "random", + "summary": "Get\u0020one\u0020or\u0020a\u0020specified\u0020number\u0020of\u0020random\u0020values\u0020from\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Arr.html#method_random" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020an\u0020array\u0020item\u0020to\u0020a\u0020given\u0020value\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "classes/Illuminate-Support-Arr.html#method_set" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Ashuffle\u0028\u0029", + "name": "shuffle", + "summary": "Shuffle\u0020the\u0020given\u0020array\u0020and\u0020return\u0020the\u0020result.", + "url": "classes/Illuminate-Support-Arr.html#method_shuffle" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Asort\u0028\u0029", + "name": "sort", + "summary": "Sort\u0020the\u0020array\u0020using\u0020the\u0020given\u0020callback\u0020or\u0020\u0022dot\u0022\u0020notation.", + "url": "classes/Illuminate-Support-Arr.html#method_sort" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AsortRecursive\u0028\u0029", + "name": "sortRecursive", + "summary": "Recursively\u0020sort\u0020an\u0020array\u0020by\u0020keys\u0020and\u0020values.", + "url": "classes/Illuminate-Support-Arr.html#method_sortRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AtoCssClasses\u0028\u0029", + "name": "toCssClasses", + "summary": "Conditionally\u0020compile\u0020classes\u0020from\u0020an\u0020array\u0020into\u0020a\u0020CSS\u0020class\u0020list.", + "url": "classes/Illuminate-Support-Arr.html#method_toCssClasses" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Filter\u0020the\u0020array\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-Arr.html#method_where" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003AwhereNotNull\u0028\u0029", + "name": "whereNotNull", + "summary": "Filter\u0020items\u0020where\u0020the\u0020value\u0020is\u0020not\u0020null.", + "url": "classes/Illuminate-Support-Arr.html#method_whereNotNull" + }, { + "fqsen": "\\Illuminate\\Support\\Arr\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "If\u0020the\u0020given\u0020value\u0020is\u0020not\u0020an\u0020array\u0020and\u0020not\u0020null,\u0020wrap\u0020it\u0020in\u0020one.", + "url": "classes/Illuminate-Support-Arr.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Support\\Collection", + "name": "Collection", + "summary": "", + "url": "classes/Illuminate-Support-Collection.html" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Arange\u0028\u0029", + "name": "range", + "summary": "Create\u0020a\u0020collection\u0020with\u0020the\u0020given\u0020range.", + "url": "classes/Illuminate-Support-Collection.html#method_range" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_all" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Alazy\u0028\u0029", + "name": "lazy", + "summary": "Get\u0020a\u0020lazy\u0020collection\u0020for\u0020the\u0020items\u0020in\u0020this\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_lazy" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aavg\u0028\u0029", + "name": "avg", + "summary": "Get\u0020the\u0020average\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_avg" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Amedian\u0028\u0029", + "name": "median", + "summary": "Get\u0020the\u0020median\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_median" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Amode\u0028\u0029", + "name": "mode", + "summary": "Get\u0020the\u0020mode\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_mode" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Acollapse\u0028\u0029", + "name": "collapse", + "summary": "Collapse\u0020the\u0020collection\u0020of\u0020items\u0020into\u0020a\u0020single\u0020array.", + "url": "classes/Illuminate-Support-Collection.html#method_collapse" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_contains" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AdoesntContain\u0028\u0029", + "name": "doesntContain", + "summary": "Determine\u0020if\u0020an\u0020item\u0020is\u0020not\u0020contained\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_doesntContain" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AcrossJoin\u0028\u0029", + "name": "crossJoin", + "summary": "Cross\u0020join\u0020with\u0020the\u0020given\u0020lists,\u0020returning\u0020all\u0020possible\u0020permutations.", + "url": "classes/Illuminate-Support-Collection.html#method_crossJoin" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Adiff\u0028\u0029", + "name": "diff", + "summary": "Get\u0020the\u0020items\u0020in\u0020the\u0020collection\u0020that\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_diff" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AdiffUsing\u0028\u0029", + "name": "diffUsing", + "summary": "Get\u0020the\u0020items\u0020in\u0020the\u0020collection\u0020that\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_diffUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AdiffAssoc\u0028\u0029", + "name": "diffAssoc", + "summary": "Get\u0020the\u0020items\u0020in\u0020the\u0020collection\u0020whose\u0020keys\u0020and\u0020values\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_diffAssoc" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AdiffAssocUsing\u0028\u0029", + "name": "diffAssocUsing", + "summary": "Get\u0020the\u0020items\u0020in\u0020the\u0020collection\u0020whose\u0020keys\u0020and\u0020values\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_diffAssocUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AdiffKeys\u0028\u0029", + "name": "diffKeys", + "summary": "Get\u0020the\u0020items\u0020in\u0020the\u0020collection\u0020whose\u0020keys\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_diffKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AdiffKeysUsing\u0028\u0029", + "name": "diffKeysUsing", + "summary": "Get\u0020the\u0020items\u0020in\u0020the\u0020collection\u0020whose\u0020keys\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_diffKeysUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aduplicates\u0028\u0029", + "name": "duplicates", + "summary": "Retrieve\u0020duplicate\u0020items\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_duplicates" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AduplicatesStrict\u0028\u0029", + "name": "duplicatesStrict", + "summary": "Retrieve\u0020duplicate\u0020items\u0020from\u0020the\u0020collection\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Collection.html#method_duplicatesStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AduplicateComparator\u0028\u0029", + "name": "duplicateComparator", + "summary": "Get\u0020the\u0020comparison\u0020function\u0020to\u0020detect\u0020duplicates.", + "url": "classes/Illuminate-Support-Collection.html#method_duplicateComparator" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Get\u0020all\u0020items\u0020except\u0020for\u0020those\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Support-Collection.html#method_except" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Run\u0020a\u0020filter\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_filter" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020item\u0020from\u0020the\u0020collection\u0020passing\u0020the\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Collection.html#method_first" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Get\u0020a\u0020flattened\u0020array\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_flatten" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aflip\u0028\u0029", + "name": "flip", + "summary": "Flip\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_flip" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020an\u0020item\u0020from\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AgetOrPut\u0028\u0029", + "name": "getOrPut", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020collection\u0020by\u0020key\u0020or\u0020add\u0020it\u0020to\u0020collection\u0020if\u0020it\u0020does\u0020not\u0020exist.", + "url": "classes/Illuminate-Support-Collection.html#method_getOrPut" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Group\u0020an\u0020associative\u0020array\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_groupBy" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AkeyBy\u0028\u0029", + "name": "keyBy", + "summary": "Key\u0020an\u0020associative\u0020array\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_keyBy" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020in\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_has" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AhasAny\u0028\u0029", + "name": "hasAny", + "summary": "Determine\u0020if\u0020any\u0020of\u0020the\u0020keys\u0020exist\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_hasAny" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aimplode\u0028\u0029", + "name": "implode", + "summary": "Concatenate\u0020values\u0020of\u0020a\u0020given\u0020key\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Collection.html#method_implode" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aintersect\u0028\u0029", + "name": "intersect", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_intersect" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AintersectByKeys\u0028\u0029", + "name": "intersectByKeys", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_intersectByKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020collection\u0020is\u0020empty\u0020or\u0020not.", + "url": "classes/Illuminate-Support-Collection.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AcontainsOneItem\u0028\u0029", + "name": "containsOneItem", + "summary": "Determine\u0020if\u0020the\u0020collection\u0020contains\u0020a\u0020single\u0020item.", + "url": "classes/Illuminate-Support-Collection.html#method_containsOneItem" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "Join\u0020all\u0020items\u0020from\u0020the\u0020collection\u0020using\u0020a\u0020string.\u0020The\u0020final\u0020items\u0020can\u0020use\u0020a\u0020separate\u0020glue\u0020string.", + "url": "classes/Illuminate-Support-Collection.html#method_join" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020the\u0020keys\u0020of\u0020the\u0020collection\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_keys" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Alast\u0028\u0029", + "name": "last", + "summary": "Get\u0020the\u0020last\u0020item\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_last" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Get\u0020the\u0020values\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_map" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AmapToDictionary\u0028\u0029", + "name": "mapToDictionary", + "summary": "Run\u0020a\u0020dictionary\u0020map\u0020over\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_mapToDictionary" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AmapWithKeys\u0028\u0029", + "name": "mapWithKeys", + "summary": "Run\u0020an\u0020associative\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_mapWithKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AmergeRecursive\u0028\u0029", + "name": "mergeRecursive", + "summary": "Recursively\u0020merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_mergeRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Acombine\u0028\u0029", + "name": "combine", + "summary": "Create\u0020a\u0020collection\u0020by\u0020using\u0020this\u0020collection\u0020for\u0020keys\u0020and\u0020another\u0020for\u0020its\u0020values.", + "url": "classes/Illuminate-Support-Collection.html#method_combine" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aunion\u0028\u0029", + "name": "union", + "summary": "Union\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_union" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Anth\u0028\u0029", + "name": "nth", + "summary": "Create\u0020a\u0020new\u0020collection\u0020consisting\u0020of\u0020every\u0020n\u002Dth\u0020element.", + "url": "classes/Illuminate-Support-Collection.html#method_nth" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Get\u0020the\u0020items\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Support-Collection.html#method_only" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Apop\u0028\u0029", + "name": "pop", + "summary": "Get\u0020and\u0020remove\u0020the\u0020last\u0020N\u0020items\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_pop" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Push\u0020an\u0020item\u0020onto\u0020the\u0020beginning\u0020of\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Push\u0020one\u0020or\u0020more\u0020items\u0020onto\u0020the\u0020end\u0020of\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_push" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aconcat\u0028\u0029", + "name": "concat", + "summary": "Push\u0020all\u0020of\u0020the\u0020given\u0020items\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_concat" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Apull\u0028\u0029", + "name": "pull", + "summary": "Get\u0020and\u0020remove\u0020an\u0020item\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_pull" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Put\u0020an\u0020item\u0020in\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Collection.html#method_put" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Arandom\u0028\u0029", + "name": "random", + "summary": "Get\u0020one\u0020or\u0020a\u0020specified\u0020number\u0020of\u0020items\u0020randomly\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_random" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Replace\u0020the\u0020collection\u0020items\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_replace" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AreplaceRecursive\u0028\u0029", + "name": "replaceRecursive", + "summary": "Recursively\u0020replace\u0020the\u0020collection\u0020items\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_replaceRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "Reverse\u0020items\u0020order.", + "url": "classes/Illuminate-Support-Collection.html#method_reverse" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Asearch\u0028\u0029", + "name": "search", + "summary": "Search\u0020the\u0020collection\u0020for\u0020a\u0020given\u0020value\u0020and\u0020return\u0020the\u0020corresponding\u0020key\u0020if\u0020successful.", + "url": "classes/Illuminate-Support-Collection.html#method_search" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Ashift\u0028\u0029", + "name": "shift", + "summary": "Get\u0020and\u0020remove\u0020the\u0020first\u0020N\u0020items\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_shift" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Ashuffle\u0028\u0029", + "name": "shuffle", + "summary": "Shuffle\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_shuffle" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Asliding\u0028\u0029", + "name": "sliding", + "summary": "Create\u0020chunks\u0020representing\u0020a\u0020\u0022sliding\u0020window\u0022\u0020view\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_sliding" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Askip\u0028\u0029", + "name": "skip", + "summary": "Skip\u0020the\u0020first\u0020\u007B\u0024count\u007D\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_skip" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AskipUntil\u0028\u0029", + "name": "skipUntil", + "summary": "Skip\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Collection.html#method_skipUntil" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AskipWhile\u0028\u0029", + "name": "skipWhile", + "summary": "Skip\u0020items\u0020in\u0020the\u0020collection\u0020while\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Collection.html#method_skipWhile" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "Slice\u0020the\u0020underlying\u0020collection\u0020array.", + "url": "classes/Illuminate-Support-Collection.html#method_slice" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "Split\u0020a\u0020collection\u0020into\u0020a\u0020certain\u0020number\u0020of\u0020groups.", + "url": "classes/Illuminate-Support-Collection.html#method_split" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsplitIn\u0028\u0029", + "name": "splitIn", + "summary": "Split\u0020a\u0020collection\u0020into\u0020a\u0020certain\u0020number\u0020of\u0020groups,\u0020and\u0020fill\u0020the\u0020first\u0020groups\u0020completely.", + "url": "classes/Illuminate-Support-Collection.html#method_splitIn" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Asole\u0028\u0029", + "name": "sole", + "summary": "Get\u0020the\u0020first\u0020item\u0020in\u0020the\u0020collection,\u0020but\u0020only\u0020if\u0020exactly\u0020one\u0020item\u0020exists.\u0020Otherwise,\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Support-Collection.html#method_sole" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AfirstOrFail\u0028\u0029", + "name": "firstOrFail", + "summary": "Get\u0020the\u0020first\u0020item\u0020in\u0020the\u0020collection\u0020but\u0020throw\u0020an\u0020exception\u0020if\u0020no\u0020matching\u0020items\u0020exist.", + "url": "classes/Illuminate-Support-Collection.html#method_firstOrFail" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Chunk\u0020the\u0020collection\u0020into\u0020chunks\u0020of\u0020the\u0020given\u0020size.", + "url": "classes/Illuminate-Support-Collection.html#method_chunk" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AchunkWhile\u0028\u0029", + "name": "chunkWhile", + "summary": "Chunk\u0020the\u0020collection\u0020into\u0020chunks\u0020with\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_chunkWhile" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Asort\u0028\u0029", + "name": "sort", + "summary": "Sort\u0020through\u0020each\u0020item\u0020with\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_sort" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortDesc\u0028\u0029", + "name": "sortDesc", + "summary": "Sort\u0020items\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Support-Collection.html#method_sortDesc" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortBy\u0028\u0029", + "name": "sortBy", + "summary": "Sort\u0020the\u0020collection\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_sortBy" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortByMany\u0028\u0029", + "name": "sortByMany", + "summary": "Sort\u0020the\u0020collection\u0020using\u0020multiple\u0020comparisons.", + "url": "classes/Illuminate-Support-Collection.html#method_sortByMany" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortByDesc\u0028\u0029", + "name": "sortByDesc", + "summary": "Sort\u0020the\u0020collection\u0020in\u0020descending\u0020order\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_sortByDesc" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortKeys\u0028\u0029", + "name": "sortKeys", + "summary": "Sort\u0020the\u0020collection\u0020keys.", + "url": "classes/Illuminate-Support-Collection.html#method_sortKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortKeysDesc\u0028\u0029", + "name": "sortKeysDesc", + "summary": "Sort\u0020the\u0020collection\u0020keys\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Support-Collection.html#method_sortKeysDesc" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AsortKeysUsing\u0028\u0029", + "name": "sortKeysUsing", + "summary": "Sort\u0020the\u0020collection\u0020keys\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_sortKeysUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Asplice\u0028\u0029", + "name": "splice", + "summary": "Splice\u0020a\u0020portion\u0020of\u0020the\u0020underlying\u0020collection\u0020array.", + "url": "classes/Illuminate-Support-Collection.html#method_splice" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Atake\u0028\u0029", + "name": "take", + "summary": "Take\u0020the\u0020first\u0020or\u0020last\u0020\u007B\u0024limit\u007D\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_take" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AtakeUntil\u0028\u0029", + "name": "takeUntil", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Collection.html#method_takeUntil" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AtakeWhile\u0028\u0029", + "name": "takeWhile", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020while\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Collection.html#method_takeWhile" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Atransform\u0028\u0029", + "name": "transform", + "summary": "Transform\u0020each\u0020item\u0020in\u0020the\u0020collection\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_transform" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aundot\u0028\u0029", + "name": "undot", + "summary": "Convert\u0020a\u0020flatten\u0020\u0022dot\u0022\u0020notation\u0020array\u0020into\u0020an\u0020expanded\u0020array.", + "url": "classes/Illuminate-Support-Collection.html#method_undot" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Return\u0020only\u0020unique\u0020items\u0020from\u0020the\u0020collection\u0020array.", + "url": "classes/Illuminate-Support-Collection.html#method_unique" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Avalues\u0028\u0029", + "name": "values", + "summary": "Reset\u0020the\u0020keys\u0020on\u0020the\u0020underlying\u0020array.", + "url": "classes/Illuminate-Support-Collection.html#method_values" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Azip\u0028\u0029", + "name": "zip", + "summary": "Zip\u0020the\u0020collection\u0020together\u0020with\u0020one\u0020or\u0020more\u0020arrays.", + "url": "classes/Illuminate-Support-Collection.html#method_zip" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Apad\u0028\u0029", + "name": "pad", + "summary": "Pad\u0020collection\u0020to\u0020the\u0020specified\u0020length\u0020with\u0020a\u0020value.", + "url": "classes/Illuminate-Support-Collection.html#method_pad" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020an\u0020iterator\u0020for\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Collection.html#method_getIterator" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Count\u0020the\u0020number\u0020of\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_count" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AcountBy\u0028\u0029", + "name": "countBy", + "summary": "Count\u0020the\u0020number\u0020of\u0020items\u0020in\u0020the\u0020collection\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Collection.html#method_countBy" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020an\u0020item\u0020to\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_add" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AtoBase\u0028\u0029", + "name": "toBase", + "summary": "Get\u0020a\u0020base\u0020Support\u0020collection\u0020instance\u0020from\u0020this\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#method_toBase" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020at\u0020an\u0020offset.", + "url": "classes/Illuminate-Support-Collection.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020an\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Collection.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Collection.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020the\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Collection.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\Support\\Collection\u003A\u003A\u0024items", + "name": "items", + "summary": "The\u0020items\u0020contained\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Collection.html#property_items" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable", + "name": "Enumerable", + "summary": "", + "url": "classes/Illuminate-Support-Enumerable.html" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020collection\u0020instance\u0020if\u0020the\u0020value\u0020isn\u0027t\u0020one\u0020already.", + "url": "classes/Illuminate-Support-Enumerable.html#method_make" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Atimes\u0028\u0029", + "name": "times", + "summary": "Create\u0020a\u0020new\u0020instance\u0020by\u0020invoking\u0020the\u0020callback\u0020a\u0020given\u0020amount\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Enumerable.html#method_times" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Arange\u0028\u0029", + "name": "range", + "summary": "Create\u0020a\u0020collection\u0020with\u0020the\u0020given\u0020range.", + "url": "classes/Illuminate-Support-Enumerable.html#method_range" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wrap\u0020the\u0020given\u0020value\u0020in\u0020a\u0020collection\u0020if\u0020applicable.", + "url": "classes/Illuminate-Support-Enumerable.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aunwrap\u0028\u0029", + "name": "unwrap", + "summary": "Get\u0020the\u0020underlying\u0020items\u0020from\u0020the\u0020given\u0020collection\u0020if\u0020applicable.", + "url": "classes/Illuminate-Support-Enumerable.html#method_unwrap" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aempty\u0028\u0029", + "name": "empty", + "summary": "Create\u0020a\u0020new\u0020instance\u0020with\u0020no\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_empty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020items\u0020in\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-Enumerable.html#method_all" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aaverage\u0028\u0029", + "name": "average", + "summary": "Alias\u0020for\u0020the\u0020\u0022avg\u0022\u0020method.", + "url": "classes/Illuminate-Support-Enumerable.html#method_average" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amedian\u0028\u0029", + "name": "median", + "summary": "Get\u0020the\u0020median\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_median" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amode\u0028\u0029", + "name": "mode", + "summary": "Get\u0020the\u0020mode\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mode" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Acollapse\u0028\u0029", + "name": "collapse", + "summary": "Collapse\u0020the\u0020items\u0020into\u0020a\u0020single\u0020enumerable.", + "url": "classes/Illuminate-Support-Enumerable.html#method_collapse" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Asome\u0028\u0029", + "name": "some", + "summary": "Alias\u0020for\u0020the\u0020\u0022contains\u0022\u0020method.", + "url": "classes/Illuminate-Support-Enumerable.html#method_some" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AcontainsStrict\u0028\u0029", + "name": "containsStrict", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists,\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Enumerable.html#method_containsStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aavg\u0028\u0029", + "name": "avg", + "summary": "Get\u0020the\u0020average\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_avg" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020in\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-Enumerable.html#method_contains" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AcrossJoin\u0028\u0029", + "name": "crossJoin", + "summary": "Cross\u0020join\u0020with\u0020the\u0020given\u0020lists,\u0020returning\u0020all\u0020possible\u0020permutations.", + "url": "classes/Illuminate-Support-Enumerable.html#method_crossJoin" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Add\u0028\u0029", + "name": "dd", + "summary": "Dump\u0020the\u0020collection\u0020and\u0020end\u0020the\u0020script.", + "url": "classes/Illuminate-Support-Enumerable.html#method_dd" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Adiff\u0028\u0029", + "name": "diff", + "summary": "Get\u0020the\u0020items\u0020that\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_diff" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AdiffUsing\u0028\u0029", + "name": "diffUsing", + "summary": "Get\u0020the\u0020items\u0020that\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_diffUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AdiffAssoc\u0028\u0029", + "name": "diffAssoc", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020and\u0020values\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_diffAssoc" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AdiffAssocUsing\u0028\u0029", + "name": "diffAssocUsing", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020and\u0020values\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_diffAssocUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AdiffKeys\u0028\u0029", + "name": "diffKeys", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_diffKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AdiffKeysUsing\u0028\u0029", + "name": "diffKeysUsing", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_diffKeysUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aduplicates\u0028\u0029", + "name": "duplicates", + "summary": "Retrieve\u0020duplicate\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_duplicates" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AduplicatesStrict\u0028\u0029", + "name": "duplicatesStrict", + "summary": "Retrieve\u0020duplicate\u0020items\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Enumerable.html#method_duplicatesStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aeach\u0028\u0029", + "name": "each", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020item.", + "url": "classes/Illuminate-Support-Enumerable.html#method_each" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AeachSpread\u0028\u0029", + "name": "eachSpread", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020nested\u0020chunk\u0020of\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_eachSpread" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aevery\u0028\u0029", + "name": "every", + "summary": "Determine\u0020if\u0020all\u0020items\u0020pass\u0020the\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Enumerable.html#method_every" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Get\u0020all\u0020items\u0020except\u0020for\u0020those\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Support-Enumerable.html#method_except" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Run\u0020a\u0020filter\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_filter" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Awhen\u0028\u0029", + "name": "when", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020value\u0020is\u0020truthy.", + "url": "classes/Illuminate-Support-Enumerable.html#method_when" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhenEmpty\u0028\u0029", + "name": "whenEmpty", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020collection\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whenEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhenNotEmpty\u0028\u0029", + "name": "whenNotEmpty", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020collection\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whenNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aunless\u0028\u0029", + "name": "unless", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020value\u0020is\u0020falsy.", + "url": "classes/Illuminate-Support-Enumerable.html#method_unless" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AunlessEmpty\u0028\u0029", + "name": "unlessEmpty", + "summary": "Apply\u0020the\u0020callback\u0020unless\u0020the\u0020collection\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-Enumerable.html#method_unlessEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AunlessNotEmpty\u0028\u0029", + "name": "unlessNotEmpty", + "summary": "Apply\u0020the\u0020callback\u0020unless\u0020the\u0020collection\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Enumerable.html#method_unlessNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Enumerable.html#method_where" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereNull\u0028\u0029", + "name": "whereNull", + "summary": "Filter\u0020items\u0020where\u0020the\u0020value\u0020for\u0020the\u0020given\u0020key\u0020is\u0020null.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereNull" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereNotNull\u0028\u0029", + "name": "whereNotNull", + "summary": "Filter\u0020items\u0020where\u0020the\u0020value\u0020for\u0020the\u0020given\u0020key\u0020is\u0020not\u0020null.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereNotNull" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereStrict\u0028\u0029", + "name": "whereStrict", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereIn\u0028\u0029", + "name": "whereIn", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereIn" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereInStrict\u0028\u0029", + "name": "whereInStrict", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereInStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereBetween\u0028\u0029", + "name": "whereBetween", + "summary": "Filter\u0020items\u0020such\u0020that\u0020the\u0020value\u0020of\u0020the\u0020given\u0020key\u0020is\u0020between\u0020the\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereBetween" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereNotBetween\u0028\u0029", + "name": "whereNotBetween", + "summary": "Filter\u0020items\u0020such\u0020that\u0020the\u0020value\u0020of\u0020the\u0020given\u0020key\u0020is\u0020not\u0020between\u0020the\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereNotBetween" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereNotIn\u0028\u0029", + "name": "whereNotIn", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereNotIn" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereNotInStrict\u0028\u0029", + "name": "whereNotInStrict", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereNotInStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AwhereInstanceOf\u0028\u0029", + "name": "whereInstanceOf", + "summary": "Filter\u0020the\u0020items,\u0020removing\u0020any\u0020items\u0020that\u0020don\u0027t\u0020match\u0020the\u0020given\u0020type\u0028s\u0029.", + "url": "classes/Illuminate-Support-Enumerable.html#method_whereInstanceOf" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020item\u0020from\u0020the\u0020enumerable\u0020passing\u0020the\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Enumerable.html#method_first" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AfirstWhere\u0028\u0029", + "name": "firstWhere", + "summary": "Get\u0020the\u0020first\u0020item\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Enumerable.html#method_firstWhere" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Get\u0020a\u0020flattened\u0020array\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_flatten" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aflip\u0028\u0029", + "name": "flip", + "summary": "Flip\u0020the\u0020values\u0020with\u0020their\u0020keys.", + "url": "classes/Illuminate-Support-Enumerable.html#method_flip" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Group\u0020an\u0020associative\u0020array\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_groupBy" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AkeyBy\u0028\u0029", + "name": "keyBy", + "summary": "Key\u0020an\u0020associative\u0020array\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_keyBy" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020in\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_has" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aimplode\u0028\u0029", + "name": "implode", + "summary": "Concatenate\u0020values\u0020of\u0020a\u0020given\u0020key\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Enumerable.html#method_implode" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aintersect\u0028\u0029", + "name": "intersect", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_intersect" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AintersectByKeys\u0028\u0029", + "name": "intersectByKeys", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items\u0020by\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_intersectByKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020collection\u0020is\u0020empty\u0020or\u0020not.", + "url": "classes/Illuminate-Support-Enumerable.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020collection\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Enumerable.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "Join\u0020all\u0020items\u0020from\u0020the\u0020collection\u0020using\u0020a\u0020string.\u0020The\u0020final\u0020items\u0020can\u0020use\u0020a\u0020separate\u0020glue\u0020string.", + "url": "classes/Illuminate-Support-Enumerable.html#method_join" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020the\u0020keys\u0020of\u0020the\u0020collection\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_keys" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Alast\u0028\u0029", + "name": "last", + "summary": "Get\u0020the\u0020last\u0020item\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_last" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_map" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AmapSpread\u0028\u0029", + "name": "mapSpread", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020nested\u0020chunk\u0020of\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mapSpread" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AmapToDictionary\u0028\u0029", + "name": "mapToDictionary", + "summary": "Run\u0020a\u0020dictionary\u0020map\u0020over\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mapToDictionary" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AmapToGroups\u0028\u0029", + "name": "mapToGroups", + "summary": "Run\u0020a\u0020grouping\u0020map\u0020over\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mapToGroups" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AmapWithKeys\u0028\u0029", + "name": "mapWithKeys", + "summary": "Run\u0020an\u0020associative\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mapWithKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Map\u0020a\u0020collection\u0020and\u0020flatten\u0020the\u0020result\u0020by\u0020a\u0020single\u0020level.", + "url": "classes/Illuminate-Support-Enumerable.html#method_flatMap" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AmapInto\u0028\u0029", + "name": "mapInto", + "summary": "Map\u0020the\u0020values\u0020into\u0020a\u0020new\u0020class.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mapInto" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AmergeRecursive\u0028\u0029", + "name": "mergeRecursive", + "summary": "Recursively\u0020merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_mergeRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Acombine\u0028\u0029", + "name": "combine", + "summary": "Create\u0020a\u0020collection\u0020by\u0020using\u0020this\u0020collection\u0020for\u0020keys\u0020and\u0020another\u0020for\u0020its\u0020values.", + "url": "classes/Illuminate-Support-Enumerable.html#method_combine" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aunion\u0028\u0029", + "name": "union", + "summary": "Union\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_union" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amin\u0028\u0029", + "name": "min", + "summary": "Get\u0020the\u0020min\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_min" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Amax\u0028\u0029", + "name": "max", + "summary": "Get\u0020the\u0020max\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_max" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Anth\u0028\u0029", + "name": "nth", + "summary": "Create\u0020a\u0020new\u0020collection\u0020consisting\u0020of\u0020every\u0020n\u002Dth\u0020element.", + "url": "classes/Illuminate-Support-Enumerable.html#method_nth" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Get\u0020the\u0020items\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Support-Enumerable.html#method_only" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AforPage\u0028\u0029", + "name": "forPage", + "summary": "\u0022Paginate\u0022\u0020the\u0020collection\u0020by\u0020slicing\u0020it\u0020into\u0020a\u0020smaller\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_forPage" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Apartition\u0028\u0029", + "name": "partition", + "summary": "Partition\u0020the\u0020collection\u0020into\u0020two\u0020arrays\u0020using\u0020the\u0020given\u0020callback\u0020or\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_partition" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aconcat\u0028\u0029", + "name": "concat", + "summary": "Push\u0020all\u0020of\u0020the\u0020given\u0020items\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_concat" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Arandom\u0028\u0029", + "name": "random", + "summary": "Get\u0020one\u0020or\u0020a\u0020specified\u0020number\u0020of\u0020items\u0020randomly\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_random" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Areduce\u0028\u0029", + "name": "reduce", + "summary": "Reduce\u0020the\u0020collection\u0020to\u0020a\u0020single\u0020value.", + "url": "classes/Illuminate-Support-Enumerable.html#method_reduce" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Replace\u0020the\u0020collection\u0020items\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_replace" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AreplaceRecursive\u0028\u0029", + "name": "replaceRecursive", + "summary": "Recursively\u0020replace\u0020the\u0020collection\u0020items\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_replaceRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "Reverse\u0020items\u0020order.", + "url": "classes/Illuminate-Support-Enumerable.html#method_reverse" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Asearch\u0028\u0029", + "name": "search", + "summary": "Search\u0020the\u0020collection\u0020for\u0020a\u0020given\u0020value\u0020and\u0020return\u0020the\u0020corresponding\u0020key\u0020if\u0020successful.", + "url": "classes/Illuminate-Support-Enumerable.html#method_search" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Ashuffle\u0028\u0029", + "name": "shuffle", + "summary": "Shuffle\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_shuffle" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Askip\u0028\u0029", + "name": "skip", + "summary": "Skip\u0020the\u0020first\u0020\u007B\u0024count\u007D\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_skip" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AskipUntil\u0028\u0029", + "name": "skipUntil", + "summary": "Skip\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Enumerable.html#method_skipUntil" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AskipWhile\u0028\u0029", + "name": "skipWhile", + "summary": "Skip\u0020items\u0020in\u0020the\u0020collection\u0020while\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Enumerable.html#method_skipWhile" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "Get\u0020a\u0020slice\u0020of\u0020items\u0020from\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-Enumerable.html#method_slice" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "Split\u0020a\u0020collection\u0020into\u0020a\u0020certain\u0020number\u0020of\u0020groups.", + "url": "classes/Illuminate-Support-Enumerable.html#method_split" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Chunk\u0020the\u0020collection\u0020into\u0020chunks\u0020of\u0020the\u0020given\u0020size.", + "url": "classes/Illuminate-Support-Enumerable.html#method_chunk" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AchunkWhile\u0028\u0029", + "name": "chunkWhile", + "summary": "Chunk\u0020the\u0020collection\u0020into\u0020chunks\u0020with\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_chunkWhile" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Asort\u0028\u0029", + "name": "sort", + "summary": "Sort\u0020through\u0020each\u0020item\u0020with\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sort" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AsortDesc\u0028\u0029", + "name": "sortDesc", + "summary": "Sort\u0020items\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sortDesc" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AsortBy\u0028\u0029", + "name": "sortBy", + "summary": "Sort\u0020the\u0020collection\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sortBy" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AsortByDesc\u0028\u0029", + "name": "sortByDesc", + "summary": "Sort\u0020the\u0020collection\u0020in\u0020descending\u0020order\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sortByDesc" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AsortKeys\u0028\u0029", + "name": "sortKeys", + "summary": "Sort\u0020the\u0020collection\u0020keys.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sortKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AsortKeysDesc\u0028\u0029", + "name": "sortKeysDesc", + "summary": "Sort\u0020the\u0020collection\u0020keys\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sortKeysDesc" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Asum\u0028\u0029", + "name": "sum", + "summary": "Get\u0020the\u0020sum\u0020of\u0020the\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Enumerable.html#method_sum" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Atake\u0028\u0029", + "name": "take", + "summary": "Take\u0020the\u0020first\u0020or\u0020last\u0020\u007B\u0024limit\u007D\u0020items.", + "url": "classes/Illuminate-Support-Enumerable.html#method_take" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AtakeUntil\u0028\u0029", + "name": "takeUntil", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Enumerable.html#method_takeUntil" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AtakeWhile\u0028\u0029", + "name": "takeWhile", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020while\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-Enumerable.html#method_takeWhile" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Atap\u0028\u0029", + "name": "tap", + "summary": "Pass\u0020the\u0020collection\u0020to\u0020the\u0020given\u0020callback\u0020and\u0020then\u0020return\u0020it.", + "url": "classes/Illuminate-Support-Enumerable.html#method_tap" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Apipe\u0028\u0029", + "name": "pipe", + "summary": "Pass\u0020the\u0020enumerable\u0020to\u0020the\u0020given\u0020callback\u0020and\u0020return\u0020the\u0020result.", + "url": "classes/Illuminate-Support-Enumerable.html#method_pipe" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Get\u0020the\u0020values\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Enumerable.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Areject\u0028\u0029", + "name": "reject", + "summary": "Create\u0020a\u0020collection\u0020of\u0020all\u0020elements\u0020that\u0020do\u0020not\u0020pass\u0020a\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Enumerable.html#method_reject" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Return\u0020only\u0020unique\u0020items\u0020from\u0020the\u0020collection\u0020array.", + "url": "classes/Illuminate-Support-Enumerable.html#method_unique" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AuniqueStrict\u0028\u0029", + "name": "uniqueStrict", + "summary": "Return\u0020only\u0020unique\u0020items\u0020from\u0020the\u0020collection\u0020array\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Enumerable.html#method_uniqueStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Avalues\u0028\u0029", + "name": "values", + "summary": "Reset\u0020the\u0020keys\u0020on\u0020the\u0020underlying\u0020array.", + "url": "classes/Illuminate-Support-Enumerable.html#method_values" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Apad\u0028\u0029", + "name": "pad", + "summary": "Pad\u0020collection\u0020to\u0020the\u0020specified\u0020length\u0020with\u0020a\u0020value.", + "url": "classes/Illuminate-Support-Enumerable.html#method_pad" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003AcountBy\u0028\u0029", + "name": "countBy", + "summary": "Count\u0020the\u0020number\u0020of\u0020items\u0020in\u0020the\u0020collection\u0020using\u0020a\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Enumerable.html#method_countBy" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Azip\u0028\u0029", + "name": "zip", + "summary": "Zip\u0020the\u0020collection\u0020together\u0020with\u0020one\u0020or\u0020more\u0020arrays.", + "url": "classes/Illuminate-Support-Enumerable.html#method_zip" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "Collect\u0020the\u0020values\u0020into\u0020a\u0020collection.", + "url": "classes/Illuminate-Support-Enumerable.html#method_collect" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Convert\u0020the\u0020collection\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Illuminate-Support-Enumerable.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003Aproxy\u0028\u0029", + "name": "proxy", + "summary": "Add\u0020a\u0020method\u0020to\u0020the\u0020list\u0020of\u0020proxied\u0020methods.", + "url": "classes/Illuminate-Support-Enumerable.html#method_proxy" + }, { + "fqsen": "\\Illuminate\\Support\\Enumerable\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020collection\u0020proxies.", + "url": "classes/Illuminate-Support-Enumerable.html#method___get" + }, { + "fqsen": "\\collect\u0028\u0029", + "name": "collect", + "summary": "Create\u0020a\u0020collection\u0020from\u0020the\u0020given\u0020value.", + "url": "namespaces/default.html#function_collect" + }, { + "fqsen": "\\data_fill\u0028\u0029", + "name": "data_fill", + "summary": "Fill\u0020in\u0020data\u0020where\u0020it\u0027s\u0020missing.", + "url": "namespaces/default.html#function_data_fill" + }, { + "fqsen": "\\data_get\u0028\u0029", + "name": "data_get", + "summary": "Get\u0020an\u0020item\u0020from\u0020an\u0020array\u0020or\u0020object\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "namespaces/default.html#function_data_get" + }, { + "fqsen": "\\data_set\u0028\u0029", + "name": "data_set", + "summary": "Set\u0020an\u0020item\u0020on\u0020an\u0020array\u0020or\u0020object\u0020using\u0020dot\u0020notation.", + "url": "namespaces/default.html#function_data_set" + }, { + "fqsen": "\\head\u0028\u0029", + "name": "head", + "summary": "Get\u0020the\u0020first\u0020element\u0020of\u0020an\u0020array.\u0020Useful\u0020for\u0020method\u0020chaining.", + "url": "namespaces/default.html#function_head" + }, { + "fqsen": "\\last\u0028\u0029", + "name": "last", + "summary": "Get\u0020the\u0020last\u0020element\u0020from\u0020an\u0020array.", + "url": "namespaces/default.html#function_last" + }, { + "fqsen": "\\value\u0028\u0029", + "name": "value", + "summary": "Return\u0020the\u0020default\u0020value\u0020of\u0020the\u0020given\u0020value.", + "url": "namespaces/default.html#function_value" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderCollectionProxy", + "name": "HigherOrderCollectionProxy", + "summary": "", + "url": "classes/Illuminate-Support-HigherOrderCollectionProxy.html" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderCollectionProxy\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020proxy\u0020instance.", + "url": "classes/Illuminate-Support-HigherOrderCollectionProxy.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderCollectionProxy\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Proxy\u0020accessing\u0020an\u0020attribute\u0020onto\u0020the\u0020collection\u0020items.", + "url": "classes/Illuminate-Support-HigherOrderCollectionProxy.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderCollectionProxy\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Proxy\u0020a\u0020method\u0020call\u0020onto\u0020the\u0020collection\u0020items.", + "url": "classes/Illuminate-Support-HigherOrderCollectionProxy.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderCollectionProxy\u003A\u003A\u0024collection", + "name": "collection", + "summary": "The\u0020collection\u0020being\u0020operated\u0020on.", + "url": "classes/Illuminate-Support-HigherOrderCollectionProxy.html#property_collection" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderCollectionProxy\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020method\u0020being\u0020proxied.", + "url": "classes/Illuminate-Support-HigherOrderCollectionProxy.html#property_method" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderWhenProxy", + "name": "HigherOrderWhenProxy", + "summary": "", + "url": "classes/Illuminate-Support-HigherOrderWhenProxy.html" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderWhenProxy\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020proxy\u0020instance.", + "url": "classes/Illuminate-Support-HigherOrderWhenProxy.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderWhenProxy\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Proxy\u0020accessing\u0020an\u0020attribute\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-HigherOrderWhenProxy.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderWhenProxy\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Proxy\u0020a\u0020method\u0020call\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-HigherOrderWhenProxy.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderWhenProxy\u003A\u003A\u0024collection", + "name": "collection", + "summary": "The\u0020collection\u0020being\u0020operated\u0020on.", + "url": "classes/Illuminate-Support-HigherOrderWhenProxy.html#property_collection" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderWhenProxy\u003A\u003A\u0024condition", + "name": "condition", + "summary": "The\u0020condition\u0020for\u0020proxying.", + "url": "classes/Illuminate-Support-HigherOrderWhenProxy.html#property_condition" + }, { + "fqsen": "\\Illuminate\\Support\\ItemNotFoundException", + "name": "ItemNotFoundException", + "summary": "", + "url": "classes/Illuminate-Support-ItemNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection", + "name": "LazyCollection", + "summary": "", + "url": "classes/Illuminate-Support-LazyCollection.html" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020lazy\u0020collection\u0020instance.", + "url": "classes/Illuminate-Support-LazyCollection.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Arange\u0028\u0029", + "name": "range", + "summary": "Create\u0020a\u0020collection\u0020with\u0020the\u0020given\u0020range.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_range" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020items\u0020in\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_all" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aeager\u0028\u0029", + "name": "eager", + "summary": "Eager\u0020load\u0020all\u0020items\u0020into\u0020a\u0020new\u0020lazy\u0020collection\u0020backed\u0020by\u0020an\u0020array.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_eager" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aremember\u0028\u0029", + "name": "remember", + "summary": "Cache\u0020values\u0020as\u0020they\u0027re\u0020enumerated.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_remember" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aavg\u0028\u0029", + "name": "avg", + "summary": "Get\u0020the\u0020average\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_avg" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Amedian\u0028\u0029", + "name": "median", + "summary": "Get\u0020the\u0020median\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_median" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Amode\u0028\u0029", + "name": "mode", + "summary": "Get\u0020the\u0020mode\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_mode" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Acollapse\u0028\u0029", + "name": "collapse", + "summary": "Collapse\u0020the\u0020collection\u0020of\u0020items\u0020into\u0020a\u0020single\u0020array.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_collapse" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020in\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_contains" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AdoesntContain\u0028\u0029", + "name": "doesntContain", + "summary": "Determine\u0020if\u0020an\u0020item\u0020is\u0020not\u0020contained\u0020in\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_doesntContain" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AcrossJoin\u0028\u0029", + "name": "crossJoin", + "summary": "Cross\u0020join\u0020the\u0020given\u0020iterables,\u0020returning\u0020all\u0020possible\u0020permutations.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_crossJoin" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AcountBy\u0028\u0029", + "name": "countBy", + "summary": "Count\u0020the\u0020number\u0020of\u0020items\u0020in\u0020the\u0020collection\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_countBy" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Adiff\u0028\u0029", + "name": "diff", + "summary": "Get\u0020the\u0020items\u0020that\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_diff" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AdiffUsing\u0028\u0029", + "name": "diffUsing", + "summary": "Get\u0020the\u0020items\u0020that\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_diffUsing" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AdiffAssoc\u0028\u0029", + "name": "diffAssoc", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020and\u0020values\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_diffAssoc" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AdiffAssocUsing\u0028\u0029", + "name": "diffAssocUsing", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020and\u0020values\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_diffAssocUsing" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AdiffKeys\u0028\u0029", + "name": "diffKeys", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_diffKeys" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AdiffKeysUsing\u0028\u0029", + "name": "diffKeysUsing", + "summary": "Get\u0020the\u0020items\u0020whose\u0020keys\u0020are\u0020not\u0020present\u0020in\u0020the\u0020given\u0020items,\u0020using\u0020the\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_diffKeysUsing" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aduplicates\u0028\u0029", + "name": "duplicates", + "summary": "Retrieve\u0020duplicate\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_duplicates" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AduplicatesStrict\u0028\u0029", + "name": "duplicatesStrict", + "summary": "Retrieve\u0020duplicate\u0020items\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_duplicatesStrict" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Get\u0020all\u0020items\u0020except\u0020for\u0020those\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_except" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Run\u0020a\u0020filter\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_filter" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020item\u0020from\u0020the\u0020enumerable\u0020passing\u0020the\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_first" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Get\u0020a\u0020flattened\u0020list\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_flatten" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aflip\u0028\u0029", + "name": "flip", + "summary": "Flip\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_flip" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020item\u0020by\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Group\u0020an\u0020associative\u0020array\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_groupBy" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AkeyBy\u0028\u0029", + "name": "keyBy", + "summary": "Key\u0020an\u0020associative\u0020array\u0020by\u0020a\u0020field\u0020or\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_keyBy" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020in\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_has" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AhasAny\u0028\u0029", + "name": "hasAny", + "summary": "Determine\u0020if\u0020any\u0020of\u0020the\u0020keys\u0020exist\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_hasAny" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aimplode\u0028\u0029", + "name": "implode", + "summary": "Concatenate\u0020values\u0020of\u0020a\u0020given\u0020key\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_implode" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aintersect\u0028\u0029", + "name": "intersect", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_intersect" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AintersectByKeys\u0028\u0029", + "name": "intersectByKeys", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items\u0020by\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_intersectByKeys" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020items\u0020are\u0020empty\u0020or\u0020not.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AcontainsOneItem\u0028\u0029", + "name": "containsOneItem", + "summary": "Determine\u0020if\u0020the\u0020collection\u0020contains\u0020a\u0020single\u0020item.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_containsOneItem" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "Join\u0020all\u0020items\u0020from\u0020the\u0020collection\u0020using\u0020a\u0020string.\u0020The\u0020final\u0020items\u0020can\u0020use\u0020a\u0020separate\u0020glue\u0020string.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_join" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020the\u0020keys\u0020of\u0020the\u0020collection\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_keys" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Alast\u0028\u0029", + "name": "last", + "summary": "Get\u0020the\u0020last\u0020item\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_last" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Get\u0020the\u0020values\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_map" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AmapToDictionary\u0028\u0029", + "name": "mapToDictionary", + "summary": "Run\u0020a\u0020dictionary\u0020map\u0020over\u0020the\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_mapToDictionary" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AmapWithKeys\u0028\u0029", + "name": "mapWithKeys", + "summary": "Run\u0020an\u0020associative\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_mapWithKeys" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AmergeRecursive\u0028\u0029", + "name": "mergeRecursive", + "summary": "Recursively\u0020merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_mergeRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Acombine\u0028\u0029", + "name": "combine", + "summary": "Create\u0020a\u0020collection\u0020by\u0020using\u0020this\u0020collection\u0020for\u0020keys\u0020and\u0020another\u0020for\u0020its\u0020values.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_combine" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aunion\u0028\u0029", + "name": "union", + "summary": "Union\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_union" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Anth\u0028\u0029", + "name": "nth", + "summary": "Create\u0020a\u0020new\u0020collection\u0020consisting\u0020of\u0020every\u0020n\u002Dth\u0020element.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_nth" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Get\u0020the\u0020items\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_only" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aconcat\u0028\u0029", + "name": "concat", + "summary": "Push\u0020all\u0020of\u0020the\u0020given\u0020items\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_concat" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Arandom\u0028\u0029", + "name": "random", + "summary": "Get\u0020one\u0020or\u0020a\u0020specified\u0020number\u0020of\u0020items\u0020randomly\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_random" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Replace\u0020the\u0020collection\u0020items\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_replace" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AreplaceRecursive\u0028\u0029", + "name": "replaceRecursive", + "summary": "Recursively\u0020replace\u0020the\u0020collection\u0020items\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_replaceRecursive" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "Reverse\u0020items\u0020order.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_reverse" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Asearch\u0028\u0029", + "name": "search", + "summary": "Search\u0020the\u0020collection\u0020for\u0020a\u0020given\u0020value\u0020and\u0020return\u0020the\u0020corresponding\u0020key\u0020if\u0020successful.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_search" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Ashuffle\u0028\u0029", + "name": "shuffle", + "summary": "Shuffle\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_shuffle" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Asliding\u0028\u0029", + "name": "sliding", + "summary": "Create\u0020chunks\u0020representing\u0020a\u0020\u0022sliding\u0020window\u0022\u0020view\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sliding" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Askip\u0028\u0029", + "name": "skip", + "summary": "Skip\u0020the\u0020first\u0020\u007B\u0024count\u007D\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_skip" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AskipUntil\u0028\u0029", + "name": "skipUntil", + "summary": "Skip\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_skipUntil" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AskipWhile\u0028\u0029", + "name": "skipWhile", + "summary": "Skip\u0020items\u0020in\u0020the\u0020collection\u0020while\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_skipWhile" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "Get\u0020a\u0020slice\u0020of\u0020items\u0020from\u0020the\u0020enumerable.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_slice" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "Split\u0020a\u0020collection\u0020into\u0020a\u0020certain\u0020number\u0020of\u0020groups.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_split" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Asole\u0028\u0029", + "name": "sole", + "summary": "Get\u0020the\u0020first\u0020item\u0020in\u0020the\u0020collection,\u0020but\u0020only\u0020if\u0020exactly\u0020one\u0020item\u0020exists.\u0020Otherwise,\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sole" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AfirstOrFail\u0028\u0029", + "name": "firstOrFail", + "summary": "Get\u0020the\u0020first\u0020item\u0020in\u0020the\u0020collection\u0020but\u0020throw\u0020an\u0020exception\u0020if\u0020no\u0020matching\u0020items\u0020exist.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_firstOrFail" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Chunk\u0020the\u0020collection\u0020into\u0020chunks\u0020of\u0020the\u0020given\u0020size.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_chunk" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsplitIn\u0028\u0029", + "name": "splitIn", + "summary": "Split\u0020a\u0020collection\u0020into\u0020a\u0020certain\u0020number\u0020of\u0020groups,\u0020and\u0020fill\u0020the\u0020first\u0020groups\u0020completely.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_splitIn" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AchunkWhile\u0028\u0029", + "name": "chunkWhile", + "summary": "Chunk\u0020the\u0020collection\u0020into\u0020chunks\u0020with\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_chunkWhile" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Asort\u0028\u0029", + "name": "sort", + "summary": "Sort\u0020through\u0020each\u0020item\u0020with\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sort" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsortDesc\u0028\u0029", + "name": "sortDesc", + "summary": "Sort\u0020items\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sortDesc" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsortBy\u0028\u0029", + "name": "sortBy", + "summary": "Sort\u0020the\u0020collection\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sortBy" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsortByDesc\u0028\u0029", + "name": "sortByDesc", + "summary": "Sort\u0020the\u0020collection\u0020in\u0020descending\u0020order\u0020using\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sortByDesc" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsortKeys\u0028\u0029", + "name": "sortKeys", + "summary": "Sort\u0020the\u0020collection\u0020keys.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sortKeys" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsortKeysDesc\u0028\u0029", + "name": "sortKeysDesc", + "summary": "Sort\u0020the\u0020collection\u0020keys\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sortKeysDesc" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AsortKeysUsing\u0028\u0029", + "name": "sortKeysUsing", + "summary": "Sort\u0020the\u0020collection\u0020keys\u0020using\u0020a\u0020callback.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_sortKeysUsing" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Atake\u0028\u0029", + "name": "take", + "summary": "Take\u0020the\u0020first\u0020or\u0020last\u0020\u007B\u0024limit\u007D\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_take" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AtakeUntil\u0028\u0029", + "name": "takeUntil", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_takeUntil" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AtakeUntilTimeout\u0028\u0029", + "name": "takeUntilTimeout", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020until\u0020a\u0020given\u0020point\u0020in\u0020time.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_takeUntilTimeout" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AtakeWhile\u0028\u0029", + "name": "takeWhile", + "summary": "Take\u0020items\u0020in\u0020the\u0020collection\u0020while\u0020the\u0020given\u0020condition\u0020is\u0020met.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_takeWhile" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AtapEach\u0028\u0029", + "name": "tapEach", + "summary": "Pass\u0020each\u0020item\u0020in\u0020the\u0020collection\u0020to\u0020the\u0020given\u0020callback,\u0020lazily.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_tapEach" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aundot\u0028\u0029", + "name": "undot", + "summary": "Convert\u0020a\u0020flatten\u0020\u0022dot\u0022\u0020notation\u0020array\u0020into\u0020an\u0020expanded\u0020array.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_undot" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Return\u0020only\u0020unique\u0020items\u0020from\u0020the\u0020collection\u0020array.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_unique" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Avalues\u0028\u0029", + "name": "values", + "summary": "Reset\u0020the\u0020keys\u0020on\u0020the\u0020underlying\u0020array.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_values" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Azip\u0028\u0029", + "name": "zip", + "summary": "Zip\u0020the\u0020collection\u0020together\u0020with\u0020one\u0020or\u0020more\u0020arrays.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_zip" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Apad\u0028\u0029", + "name": "pad", + "summary": "Pad\u0020collection\u0020to\u0020the\u0020specified\u0020length\u0020with\u0020a\u0020value.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_pad" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020the\u0020values\u0020iterator.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_getIterator" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Count\u0020the\u0020number\u0020of\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_count" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AmakeIterator\u0028\u0029", + "name": "makeIterator", + "summary": "Make\u0020an\u0020iterator\u0020from\u0020the\u0020given\u0020source.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_makeIterator" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003AexplodePluckParameters\u0028\u0029", + "name": "explodePluckParameters", + "summary": "Explode\u0020the\u0020\u0022value\u0022\u0020and\u0020\u0022key\u0022\u0020arguments\u0020passed\u0020to\u0020\u0022pluck\u0022.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_explodePluckParameters" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Apassthru\u0028\u0029", + "name": "passthru", + "summary": "Pass\u0020this\u0020lazy\u0020collection\u0020through\u0020a\u0020method\u0020on\u0020the\u0020collection\u0020class.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_passthru" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003Anow\u0028\u0029", + "name": "now", + "summary": "Get\u0020the\u0020current\u0020time.", + "url": "classes/Illuminate-Support-LazyCollection.html#method_now" + }, { + "fqsen": "\\Illuminate\\Support\\LazyCollection\u003A\u003A\u0024source", + "name": "source", + "summary": "The\u0020source\u0020from\u0020which\u0020to\u0020generate\u0020items.", + "url": "classes/Illuminate-Support-LazyCollection.html#property_source" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleItemsFoundException", + "name": "MultipleItemsFoundException", + "summary": "", + "url": "classes/Illuminate-Support-MultipleItemsFoundException.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues", + "name": "EnumeratesValues", + "summary": "", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020collection\u0020instance\u0020if\u0020the\u0020value\u0020isn\u0027t\u0020one\u0020already.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_make" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wrap\u0020the\u0020given\u0020value\u0020in\u0020a\u0020collection\u0020if\u0020applicable.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aunwrap\u0028\u0029", + "name": "unwrap", + "summary": "Get\u0020the\u0020underlying\u0020items\u0020from\u0020the\u0020given\u0020collection\u0020if\u0020applicable.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_unwrap" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aempty\u0028\u0029", + "name": "empty", + "summary": "Create\u0020a\u0020new\u0020instance\u0020with\u0020no\u0020items.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_empty" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Atimes\u0028\u0029", + "name": "times", + "summary": "Create\u0020a\u0020new\u0020collection\u0020by\u0020invoking\u0020the\u0020callback\u0020a\u0020given\u0020amount\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_times" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aaverage\u0028\u0029", + "name": "average", + "summary": "Alias\u0020for\u0020the\u0020\u0022avg\u0022\u0020method.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_average" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Asome\u0028\u0029", + "name": "some", + "summary": "Alias\u0020for\u0020the\u0020\u0022contains\u0022\u0020method.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_some" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AcontainsStrict\u0028\u0029", + "name": "containsStrict", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists,\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_containsStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Add\u0028\u0029", + "name": "dd", + "summary": "Dump\u0020the\u0020items\u0020and\u0020end\u0020the\u0020script.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_dd" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aeach\u0028\u0029", + "name": "each", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020item.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_each" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AeachSpread\u0028\u0029", + "name": "eachSpread", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020nested\u0020chunk\u0020of\u0020items.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_eachSpread" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aevery\u0028\u0029", + "name": "every", + "summary": "Determine\u0020if\u0020all\u0020items\u0020pass\u0020the\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_every" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AfirstWhere\u0028\u0029", + "name": "firstWhere", + "summary": "Get\u0020the\u0020first\u0020item\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_firstWhere" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020collection\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AmapSpread\u0028\u0029", + "name": "mapSpread", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020nested\u0020chunk\u0020of\u0020items.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_mapSpread" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AmapToGroups\u0028\u0029", + "name": "mapToGroups", + "summary": "Run\u0020a\u0020grouping\u0020map\u0020over\u0020the\u0020items.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_mapToGroups" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Map\u0020a\u0020collection\u0020and\u0020flatten\u0020the\u0020result\u0020by\u0020a\u0020single\u0020level.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_flatMap" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AmapInto\u0028\u0029", + "name": "mapInto", + "summary": "Map\u0020the\u0020values\u0020into\u0020a\u0020new\u0020class.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_mapInto" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Amin\u0028\u0029", + "name": "min", + "summary": "Get\u0020the\u0020min\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_min" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Amax\u0028\u0029", + "name": "max", + "summary": "Get\u0020the\u0020max\u0020value\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_max" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AforPage\u0028\u0029", + "name": "forPage", + "summary": "\u0022Paginate\u0022\u0020the\u0020collection\u0020by\u0020slicing\u0020it\u0020into\u0020a\u0020smaller\u0020collection.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_forPage" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Apartition\u0028\u0029", + "name": "partition", + "summary": "Partition\u0020the\u0020collection\u0020into\u0020two\u0020arrays\u0020using\u0020the\u0020given\u0020callback\u0020or\u0020key.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_partition" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Asum\u0028\u0029", + "name": "sum", + "summary": "Get\u0020the\u0020sum\u0020of\u0020the\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_sum" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Awhen\u0028\u0029", + "name": "when", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020value\u0020is\u0020truthy.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_when" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhenEmpty\u0028\u0029", + "name": "whenEmpty", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020collection\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whenEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhenNotEmpty\u0028\u0029", + "name": "whenNotEmpty", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020collection\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whenNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aunless\u0028\u0029", + "name": "unless", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020value\u0020is\u0020falsy.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_unless" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AunlessEmpty\u0028\u0029", + "name": "unlessEmpty", + "summary": "Apply\u0020the\u0020callback\u0020unless\u0020the\u0020collection\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_unlessEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AunlessNotEmpty\u0028\u0029", + "name": "unlessNotEmpty", + "summary": "Apply\u0020the\u0020callback\u0020unless\u0020the\u0020collection\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_unlessNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_where" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereNull\u0028\u0029", + "name": "whereNull", + "summary": "Filter\u0020items\u0020where\u0020the\u0020value\u0020for\u0020the\u0020given\u0020key\u0020is\u0020null.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereNull" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereNotNull\u0028\u0029", + "name": "whereNotNull", + "summary": "Filter\u0020items\u0020where\u0020the\u0020value\u0020for\u0020the\u0020given\u0020key\u0020is\u0020not\u0020null.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereNotNull" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereStrict\u0028\u0029", + "name": "whereStrict", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereIn\u0028\u0029", + "name": "whereIn", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereIn" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereInStrict\u0028\u0029", + "name": "whereInStrict", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereInStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereBetween\u0028\u0029", + "name": "whereBetween", + "summary": "Filter\u0020items\u0020such\u0020that\u0020the\u0020value\u0020of\u0020the\u0020given\u0020key\u0020is\u0020between\u0020the\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereBetween" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereNotBetween\u0028\u0029", + "name": "whereNotBetween", + "summary": "Filter\u0020items\u0020such\u0020that\u0020the\u0020value\u0020of\u0020the\u0020given\u0020key\u0020is\u0020not\u0020between\u0020the\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereNotBetween" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereNotIn\u0028\u0029", + "name": "whereNotIn", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereNotIn" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereNotInStrict\u0028\u0029", + "name": "whereNotInStrict", + "summary": "Filter\u0020items\u0020by\u0020the\u0020given\u0020key\u0020value\u0020pair\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereNotInStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AwhereInstanceOf\u0028\u0029", + "name": "whereInstanceOf", + "summary": "Filter\u0020the\u0020items,\u0020removing\u0020any\u0020items\u0020that\u0020don\u0027t\u0020match\u0020the\u0020given\u0020type\u0028s\u0029.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_whereInstanceOf" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Apipe\u0028\u0029", + "name": "pipe", + "summary": "Pass\u0020the\u0020collection\u0020to\u0020the\u0020given\u0020callback\u0020and\u0020return\u0020the\u0020result.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_pipe" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003ApipeInto\u0028\u0029", + "name": "pipeInto", + "summary": "Pass\u0020the\u0020collection\u0020into\u0020a\u0020new\u0020class.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_pipeInto" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003ApipeThrough\u0028\u0029", + "name": "pipeThrough", + "summary": "Pass\u0020the\u0020collection\u0020through\u0020a\u0020series\u0020of\u0020callable\u0020pipes\u0020and\u0020return\u0020the\u0020result.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_pipeThrough" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Atap\u0028\u0029", + "name": "tap", + "summary": "Pass\u0020the\u0020collection\u0020to\u0020the\u0020given\u0020callback\u0020and\u0020then\u0020return\u0020it.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_tap" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Areduce\u0028\u0029", + "name": "reduce", + "summary": "Reduce\u0020the\u0020collection\u0020to\u0020a\u0020single\u0020value.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_reduce" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AreduceMany\u0028\u0029", + "name": "reduceMany", + "summary": "Reduce\u0020the\u0020collection\u0020to\u0020multiple\u0020aggregate\u0020values.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_reduceMany" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AreduceSpread\u0028\u0029", + "name": "reduceSpread", + "summary": "Reduce\u0020the\u0020collection\u0020to\u0020multiple\u0020aggregate\u0020values.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_reduceSpread" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AreduceWithKeys\u0028\u0029", + "name": "reduceWithKeys", + "summary": "Reduce\u0020an\u0020associative\u0020collection\u0020to\u0020a\u0020single\u0020value.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_reduceWithKeys" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Areject\u0028\u0029", + "name": "reject", + "summary": "Create\u0020a\u0020collection\u0020of\u0020all\u0020elements\u0020that\u0020do\u0020not\u0020pass\u0020a\u0020given\u0020truth\u0020test.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_reject" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AuniqueStrict\u0028\u0029", + "name": "uniqueStrict", + "summary": "Return\u0020only\u0020unique\u0020items\u0020from\u0020the\u0020collection\u0020array\u0020using\u0020strict\u0020comparison.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_uniqueStrict" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "Collect\u0020the\u0020values\u0020into\u0020a\u0020collection.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_collect" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020the\u0020collection\u0020of\u0020items\u0020as\u0020a\u0020plain\u0020array.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Convert\u0020the\u0020object\u0020into\u0020something\u0020JSON\u0020serializable.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AtoJson\u0028\u0029", + "name": "toJson", + "summary": "Get\u0020the\u0020collection\u0020of\u0020items\u0020as\u0020JSON.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_toJson" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AgetCachingIterator\u0028\u0029", + "name": "getCachingIterator", + "summary": "Get\u0020a\u0020CachingIterator\u0020instance.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_getCachingIterator" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Convert\u0020the\u0020collection\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003A\u0024escapeWhenCastingToString", + "name": "escapeWhenCastingToString", + "summary": "Indicates\u0020that\u0020the\u0020object\u0027s\u0020string\u0020representation\u0020should\u0020be\u0020escaped\u0020when\u0020__toString\u0020is\u0020invoked.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#property_escapeWhenCastingToString" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aproxy\u0028\u0029", + "name": "proxy", + "summary": "Add\u0020a\u0020method\u0020to\u0020the\u0020list\u0020of\u0020proxied\u0020methods.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_proxy" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020collection\u0020proxies.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AgetArrayableItems\u0028\u0029", + "name": "getArrayableItems", + "summary": "Results\u0020array\u0020of\u0020items\u0020from\u0020Collection\u0020or\u0020Arrayable.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_getArrayableItems" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AoperatorForWhere\u0028\u0029", + "name": "operatorForWhere", + "summary": "Get\u0020an\u0020operator\u0020checker\u0020callback.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_operatorForWhere" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AuseAsCallable\u0028\u0029", + "name": "useAsCallable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020value\u0020is\u0020callable,\u0020but\u0020not\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_useAsCallable" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003AvalueRetriever\u0028\u0029", + "name": "valueRetriever", + "summary": "Get\u0020a\u0020value\u0020retrieving\u0020callback.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_valueRetriever" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aequality\u0028\u0029", + "name": "equality", + "summary": "Make\u0020a\u0020function\u0020to\u0020check\u0020an\u0020item\u0027s\u0020equality.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_equality" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Anegate\u0028\u0029", + "name": "negate", + "summary": "Make\u0020a\u0020function\u0020using\u0020another\u0020function,\u0020by\u0020negating\u0020its\u0020result.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_negate" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003Aidentity\u0028\u0029", + "name": "identity", + "summary": "Make\u0020a\u0020function\u0020that\u0020returns\u0020what\u0027s\u0020passed\u0020to\u0020it.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#method_identity" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\EnumeratesValues\u003A\u003A\u0024proxies", + "name": "proxies", + "summary": "The\u0020methods\u0020that\u0020can\u0020be\u0020proxied.", + "url": "classes/Illuminate-Support-Traits-EnumeratesValues.html#property_proxies" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod", + "name": "BoundMethod", + "summary": "", + "url": "classes/Illuminate-Container-BoundMethod.html" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Call\u0020the\u0020given\u0020Closure\u0020\/\u0020class\u0040method\u0020and\u0020inject\u0020its\u0020dependencies.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_call" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AcallClass\u0028\u0029", + "name": "callClass", + "summary": "Call\u0020a\u0020string\u0020reference\u0020to\u0020a\u0020class\u0020using\u0020Class\u0040method\u0020syntax.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_callClass" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AcallBoundMethod\u0028\u0029", + "name": "callBoundMethod", + "summary": "Call\u0020a\u0020method\u0020that\u0020has\u0020been\u0020bound\u0020to\u0020the\u0020container.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_callBoundMethod" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AnormalizeMethod\u0028\u0029", + "name": "normalizeMethod", + "summary": "Normalize\u0020the\u0020given\u0020callback\u0020into\u0020a\u0020Class\u0040method\u0020string.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_normalizeMethod" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AgetMethodDependencies\u0028\u0029", + "name": "getMethodDependencies", + "summary": "Get\u0020all\u0020dependencies\u0020for\u0020a\u0020given\u0020method.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_getMethodDependencies" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AgetCallReflector\u0028\u0029", + "name": "getCallReflector", + "summary": "Get\u0020the\u0020proper\u0020reflection\u0020instance\u0020for\u0020the\u0020given\u0020callback.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_getCallReflector" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AaddDependencyForCallParameter\u0028\u0029", + "name": "addDependencyForCallParameter", + "summary": "Get\u0020the\u0020dependency\u0020for\u0020the\u0020given\u0020call\u0020parameter.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_addDependencyForCallParameter" + }, { + "fqsen": "\\Illuminate\\Container\\BoundMethod\u003A\u003AisCallableWithAtSign\u0028\u0029", + "name": "isCallableWithAtSign", + "summary": "Determine\u0020if\u0020the\u0020given\u0020string\u0020is\u0020in\u0020Class\u0040method\u0020syntax.", + "url": "classes/Illuminate-Container-BoundMethod.html#method_isCallableWithAtSign" + }, { + "fqsen": "\\Illuminate\\Container\\Container", + "name": "Container", + "summary": "", + "url": "classes/Illuminate-Container-Container.html" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Awhen\u0028\u0029", + "name": "when", + "summary": "Define\u0020a\u0020contextual\u0020binding.", + "url": "classes/Illuminate-Container-Container.html#method_when" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Abound\u0028\u0029", + "name": "bound", + "summary": "Determine\u0020if\u0020the\u0020given\u0020abstract\u0020type\u0020has\u0020been\u0020bound.", + "url": "classes/Illuminate-Container-Container.html#method_bound" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Returns\u0020true\u0020if\u0020the\u0020container\u0020can\u0020return\u0020an\u0020entry\u0020for\u0020the\u0020given\u0020identifier.", + "url": "classes/Illuminate-Container-Container.html#method_has" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024resolved", + "name": "resolved", + "summary": "An\u0020array\u0020of\u0020the\u0020types\u0020that\u0020have\u0020been\u0020resolved.", + "url": "classes/Illuminate-Container-Container.html#property_resolved" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AisShared\u0028\u0029", + "name": "isShared", + "summary": "Determine\u0020if\u0020a\u0020given\u0020type\u0020is\u0020shared.", + "url": "classes/Illuminate-Container-Container.html#method_isShared" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AisAlias\u0028\u0029", + "name": "isAlias", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020is\u0020an\u0020alias.", + "url": "classes/Illuminate-Container-Container.html#method_isAlias" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Register\u0020a\u0020binding\u0020with\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_bind" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetClosure\u0028\u0029", + "name": "getClosure", + "summary": "Get\u0020the\u0020Closure\u0020to\u0020be\u0020used\u0020when\u0020building\u0020a\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_getClosure" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AhasMethodBinding\u0028\u0029", + "name": "hasMethodBinding", + "summary": "Determine\u0020if\u0020the\u0020container\u0020has\u0020a\u0020method\u0020binding.", + "url": "classes/Illuminate-Container-Container.html#method_hasMethodBinding" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AbindMethod\u0028\u0029", + "name": "bindMethod", + "summary": "Bind\u0020a\u0020callback\u0020to\u0020resolve\u0020with\u0020Container\u003A\u003Acall.", + "url": "classes/Illuminate-Container-Container.html#method_bindMethod" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AparseBindMethod\u0028\u0029", + "name": "parseBindMethod", + "summary": "Get\u0020the\u0020method\u0020to\u0020be\u0020bound\u0020in\u0020class\u0040method\u0020format.", + "url": "classes/Illuminate-Container-Container.html#method_parseBindMethod" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AcallMethodBinding\u0028\u0029", + "name": "callMethodBinding", + "summary": "Get\u0020the\u0020method\u0020binding\u0020for\u0020the\u0020given\u0020method.", + "url": "classes/Illuminate-Container-Container.html#method_callMethodBinding" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AaddContextualBinding\u0028\u0029", + "name": "addContextualBinding", + "summary": "Add\u0020a\u0020contextual\u0020binding\u0020to\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_addContextualBinding" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AbindIf\u0028\u0029", + "name": "bindIf", + "summary": "Register\u0020a\u0020binding\u0020if\u0020it\u0020hasn\u0027t\u0020already\u0020been\u0020registered.", + "url": "classes/Illuminate-Container-Container.html#method_bindIf" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Asingleton\u0028\u0029", + "name": "singleton", + "summary": "Register\u0020a\u0020shared\u0020binding\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_singleton" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AsingletonIf\u0028\u0029", + "name": "singletonIf", + "summary": "Register\u0020a\u0020shared\u0020binding\u0020if\u0020it\u0020hasn\u0027t\u0020already\u0020been\u0020registered.", + "url": "classes/Illuminate-Container-Container.html#method_singletonIf" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Ascoped\u0028\u0029", + "name": "scoped", + "summary": "Register\u0020a\u0020scoped\u0020binding\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_scoped" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AscopedIf\u0028\u0029", + "name": "scopedIf", + "summary": "Register\u0020a\u0020scoped\u0020binding\u0020if\u0020it\u0020hasn\u0027t\u0020already\u0020been\u0020registered.", + "url": "classes/Illuminate-Container-Container.html#method_scopedIf" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "\u0022Extend\u0022\u0020an\u0020abstract\u0020type\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024instance", + "name": "instance", + "summary": "The\u0020current\u0020globally\u0020available\u0020container\u0020\u0028if\u0020any\u0029.", + "url": "classes/Illuminate-Container-Container.html#property_instance" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AremoveAbstractAlias\u0028\u0029", + "name": "removeAbstractAlias", + "summary": "Remove\u0020an\u0020alias\u0020from\u0020the\u0020contextual\u0020binding\u0020alias\u0020cache.", + "url": "classes/Illuminate-Container-Container.html#method_removeAbstractAlias" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Atag\u0028\u0029", + "name": "tag", + "summary": "Assign\u0020a\u0020set\u0020of\u0020tags\u0020to\u0020a\u0020given\u0020binding.", + "url": "classes/Illuminate-Container-Container.html#method_tag" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Atagged\u0028\u0029", + "name": "tagged", + "summary": "Resolve\u0020all\u0020of\u0020the\u0020bindings\u0020for\u0020a\u0020given\u0020tag.", + "url": "classes/Illuminate-Container-Container.html#method_tagged" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Aalias\u0028\u0029", + "name": "alias", + "summary": "Alias\u0020a\u0020type\u0020to\u0020a\u0020different\u0020name.", + "url": "classes/Illuminate-Container-Container.html#method_alias" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Arebinding\u0028\u0029", + "name": "rebinding", + "summary": "Bind\u0020a\u0020new\u0020callback\u0020to\u0020an\u0020abstract\u0027s\u0020rebind\u0020event.", + "url": "classes/Illuminate-Container-Container.html#method_rebinding" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Arefresh\u0028\u0029", + "name": "refresh", + "summary": "Refresh\u0020an\u0020instance\u0020on\u0020the\u0020given\u0020target\u0020and\u0020method.", + "url": "classes/Illuminate-Container-Container.html#method_refresh" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Arebound\u0028\u0029", + "name": "rebound", + "summary": "Fire\u0020the\u0020\u0022rebound\u0022\u0020callbacks\u0020for\u0020the\u0020given\u0020abstract\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_rebound" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetReboundCallbacks\u0028\u0029", + "name": "getReboundCallbacks", + "summary": "Get\u0020the\u0020rebound\u0020callbacks\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_getReboundCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wrap\u0020the\u0020given\u0020closure\u0020such\u0020that\u0020its\u0020dependencies\u0020will\u0020be\u0020injected\u0020when\u0020executed.", + "url": "classes/Illuminate-Container-Container.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Call\u0020the\u0020given\u0020Closure\u0020\/\u0020class\u0040method\u0020and\u0020inject\u0020its\u0020dependencies.", + "url": "classes/Illuminate-Container-Container.html#method_call" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Afactory\u0028\u0029", + "name": "factory", + "summary": "Get\u0020a\u0020closure\u0020to\u0020resolve\u0020the\u0020given\u0020type\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_factory" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AmakeWith\u0028\u0029", + "name": "makeWith", + "summary": "An\u0020alias\u0020function\u0020name\u0020for\u0020make\u0028\u0029.", + "url": "classes/Illuminate-Container-Container.html#method_makeWith" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Resolve\u0020the\u0020given\u0020type\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_make" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Finds\u0020an\u0020entry\u0020of\u0020the\u0020container\u0020by\u0020its\u0020identifier\u0020and\u0020returns\u0020it.", + "url": "classes/Illuminate-Container-Container.html#method_get" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020given\u0020type\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetConcrete\u0028\u0029", + "name": "getConcrete", + "summary": "Get\u0020the\u0020concrete\u0020type\u0020for\u0020a\u0020given\u0020abstract.", + "url": "classes/Illuminate-Container-Container.html#method_getConcrete" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetContextualConcrete\u0028\u0029", + "name": "getContextualConcrete", + "summary": "Get\u0020the\u0020contextual\u0020concrete\u0020binding\u0020for\u0020the\u0020given\u0020abstract.", + "url": "classes/Illuminate-Container-Container.html#method_getContextualConcrete" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AfindInContextualBindings\u0028\u0029", + "name": "findInContextualBindings", + "summary": "Find\u0020the\u0020concrete\u0020binding\u0020for\u0020the\u0020given\u0020abstract\u0020in\u0020the\u0020contextual\u0020binding\u0020array.", + "url": "classes/Illuminate-Container-Container.html#method_findInContextualBindings" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AisBuildable\u0028\u0029", + "name": "isBuildable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020concrete\u0020is\u0020buildable.", + "url": "classes/Illuminate-Container-Container.html#method_isBuildable" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Instantiate\u0020a\u0020concrete\u0020instance\u0020of\u0020the\u0020given\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_build" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AresolveDependencies\u0028\u0029", + "name": "resolveDependencies", + "summary": "Resolve\u0020all\u0020of\u0020the\u0020dependencies\u0020from\u0020the\u0020ReflectionParameters.", + "url": "classes/Illuminate-Container-Container.html#method_resolveDependencies" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AhasParameterOverride\u0028\u0029", + "name": "hasParameterOverride", + "summary": "Determine\u0020if\u0020the\u0020given\u0020dependency\u0020has\u0020a\u0020parameter\u0020override.", + "url": "classes/Illuminate-Container-Container.html#method_hasParameterOverride" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetParameterOverride\u0028\u0029", + "name": "getParameterOverride", + "summary": "Get\u0020a\u0020parameter\u0020override\u0020for\u0020a\u0020dependency.", + "url": "classes/Illuminate-Container-Container.html#method_getParameterOverride" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetLastParameterOverride\u0028\u0029", + "name": "getLastParameterOverride", + "summary": "Get\u0020the\u0020last\u0020parameter\u0020override.", + "url": "classes/Illuminate-Container-Container.html#method_getLastParameterOverride" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AresolvePrimitive\u0028\u0029", + "name": "resolvePrimitive", + "summary": "Resolve\u0020a\u0020non\u002Dclass\u0020hinted\u0020primitive\u0020dependency.", + "url": "classes/Illuminate-Container-Container.html#method_resolvePrimitive" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AresolveClass\u0028\u0029", + "name": "resolveClass", + "summary": "Resolve\u0020a\u0020class\u0020based\u0020dependency\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_resolveClass" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AresolveVariadicClass\u0028\u0029", + "name": "resolveVariadicClass", + "summary": "Resolve\u0020a\u0020class\u0020based\u0020variadic\u0020dependency\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_resolveVariadicClass" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AnotInstantiable\u0028\u0029", + "name": "notInstantiable", + "summary": "Throw\u0020an\u0020exception\u0020that\u0020the\u0020concrete\u0020is\u0020not\u0020instantiable.", + "url": "classes/Illuminate-Container-Container.html#method_notInstantiable" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AunresolvablePrimitive\u0028\u0029", + "name": "unresolvablePrimitive", + "summary": "Throw\u0020an\u0020exception\u0020for\u0020an\u0020unresolvable\u0020primitive.", + "url": "classes/Illuminate-Container-Container.html#method_unresolvablePrimitive" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AbeforeResolving\u0028\u0029", + "name": "beforeResolving", + "summary": "Register\u0020a\u0020new\u0020before\u0020resolving\u0020callback\u0020for\u0020all\u0020types.", + "url": "classes/Illuminate-Container-Container.html#method_beforeResolving" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Aresolving\u0028\u0029", + "name": "resolving", + "summary": "Register\u0020a\u0020new\u0020resolving\u0020callback.", + "url": "classes/Illuminate-Container-Container.html#method_resolving" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AafterResolving\u0028\u0029", + "name": "afterResolving", + "summary": "Register\u0020a\u0020new\u0020after\u0020resolving\u0020callback\u0020for\u0020all\u0020types.", + "url": "classes/Illuminate-Container-Container.html#method_afterResolving" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AfireBeforeResolvingCallbacks\u0028\u0029", + "name": "fireBeforeResolvingCallbacks", + "summary": "Fire\u0020all\u0020of\u0020the\u0020before\u0020resolving\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#method_fireBeforeResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AfireBeforeCallbackArray\u0028\u0029", + "name": "fireBeforeCallbackArray", + "summary": "Fire\u0020an\u0020array\u0020of\u0020callbacks\u0020with\u0020an\u0020object.", + "url": "classes/Illuminate-Container-Container.html#method_fireBeforeCallbackArray" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AfireResolvingCallbacks\u0028\u0029", + "name": "fireResolvingCallbacks", + "summary": "Fire\u0020all\u0020of\u0020the\u0020resolving\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#method_fireResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AfireAfterResolvingCallbacks\u0028\u0029", + "name": "fireAfterResolvingCallbacks", + "summary": "Fire\u0020all\u0020of\u0020the\u0020after\u0020resolving\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#method_fireAfterResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetCallbacksForType\u0028\u0029", + "name": "getCallbacksForType", + "summary": "Get\u0020all\u0020callbacks\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_getCallbacksForType" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AfireCallbackArray\u0028\u0029", + "name": "fireCallbackArray", + "summary": "Fire\u0020an\u0020array\u0020of\u0020callbacks\u0020with\u0020an\u0020object.", + "url": "classes/Illuminate-Container-Container.html#method_fireCallbackArray" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetBindings\u0028\u0029", + "name": "getBindings", + "summary": "Get\u0020the\u0020container\u0027s\u0020bindings.", + "url": "classes/Illuminate-Container-Container.html#method_getBindings" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetAlias\u0028\u0029", + "name": "getAlias", + "summary": "Get\u0020the\u0020alias\u0020for\u0020an\u0020abstract\u0020if\u0020available.", + "url": "classes/Illuminate-Container-Container.html#method_getAlias" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetExtenders\u0028\u0029", + "name": "getExtenders", + "summary": "Get\u0020the\u0020extender\u0020callbacks\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_getExtenders" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AforgetExtenders\u0028\u0029", + "name": "forgetExtenders", + "summary": "Remove\u0020all\u0020of\u0020the\u0020extender\u0020callbacks\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Container-Container.html#method_forgetExtenders" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AdropStaleInstances\u0028\u0029", + "name": "dropStaleInstances", + "summary": "Drop\u0020all\u0020of\u0020the\u0020stale\u0020instances\u0020and\u0020aliases.", + "url": "classes/Illuminate-Container-Container.html#method_dropStaleInstances" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AforgetInstance\u0028\u0029", + "name": "forgetInstance", + "summary": "Remove\u0020a\u0020resolved\u0020instance\u0020from\u0020the\u0020instance\u0020cache.", + "url": "classes/Illuminate-Container-Container.html#method_forgetInstance" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AforgetInstances\u0028\u0029", + "name": "forgetInstances", + "summary": "Clear\u0020all\u0020of\u0020the\u0020instances\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_forgetInstances" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AforgetScopedInstances\u0028\u0029", + "name": "forgetScopedInstances", + "summary": "Clear\u0020all\u0020of\u0020the\u0020scoped\u0020instances\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_forgetScopedInstances" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020the\u0020container\u0020of\u0020all\u0020bindings\u0020and\u0020resolved\u0020instances.", + "url": "classes/Illuminate-Container-Container.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AgetInstance\u0028\u0029", + "name": "getInstance", + "summary": "Get\u0020the\u0020globally\u0020available\u0020instance\u0020of\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_getInstance" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AsetInstance\u0028\u0029", + "name": "setInstance", + "summary": "Set\u0020the\u0020shared\u0020instance\u0020of\u0020the\u0020container.", + "url": "classes/Illuminate-Container-Container.html#method_setInstance" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020a\u0020given\u0020offset\u0020exists.", + "url": "classes/Illuminate-Container-Container.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020the\u0020value\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Container-Container.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020value\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Container-Container.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020the\u0020value\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Container-Container.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020container\u0020services.", + "url": "classes/Illuminate-Container-Container.html#method___get" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Dynamically\u0020set\u0020container\u0020services.", + "url": "classes/Illuminate-Container-Container.html#method___set" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024bindings", + "name": "bindings", + "summary": "The\u0020container\u0027s\u0020bindings.", + "url": "classes/Illuminate-Container-Container.html#property_bindings" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024methodBindings", + "name": "methodBindings", + "summary": "The\u0020container\u0027s\u0020method\u0020bindings.", + "url": "classes/Illuminate-Container-Container.html#property_methodBindings" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024instances", + "name": "instances", + "summary": "The\u0020container\u0027s\u0020shared\u0020instances.", + "url": "classes/Illuminate-Container-Container.html#property_instances" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024scopedInstances", + "name": "scopedInstances", + "summary": "The\u0020container\u0027s\u0020scoped\u0020instances.", + "url": "classes/Illuminate-Container-Container.html#property_scopedInstances" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "The\u0020registered\u0020type\u0020aliases.", + "url": "classes/Illuminate-Container-Container.html#property_aliases" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024abstractAliases", + "name": "abstractAliases", + "summary": "The\u0020registered\u0020aliases\u0020keyed\u0020by\u0020the\u0020abstract\u0020name.", + "url": "classes/Illuminate-Container-Container.html#property_abstractAliases" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024extenders", + "name": "extenders", + "summary": "The\u0020extension\u0020closures\u0020for\u0020services.", + "url": "classes/Illuminate-Container-Container.html#property_extenders" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024tags", + "name": "tags", + "summary": "All\u0020of\u0020the\u0020registered\u0020tags.", + "url": "classes/Illuminate-Container-Container.html#property_tags" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024buildStack", + "name": "buildStack", + "summary": "The\u0020stack\u0020of\u0020concretions\u0020currently\u0020being\u0020built.", + "url": "classes/Illuminate-Container-Container.html#property_buildStack" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024with", + "name": "with", + "summary": "The\u0020parameter\u0020override\u0020stack.", + "url": "classes/Illuminate-Container-Container.html#property_with" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024contextual", + "name": "contextual", + "summary": "The\u0020contextual\u0020binding\u0020map.", + "url": "classes/Illuminate-Container-Container.html#property_contextual" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024reboundCallbacks", + "name": "reboundCallbacks", + "summary": "All\u0020of\u0020the\u0020registered\u0020rebound\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#property_reboundCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024globalBeforeResolvingCallbacks", + "name": "globalBeforeResolvingCallbacks", + "summary": "All\u0020of\u0020the\u0020global\u0020before\u0020resolving\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#property_globalBeforeResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024globalResolvingCallbacks", + "name": "globalResolvingCallbacks", + "summary": "All\u0020of\u0020the\u0020global\u0020resolving\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#property_globalResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024globalAfterResolvingCallbacks", + "name": "globalAfterResolvingCallbacks", + "summary": "All\u0020of\u0020the\u0020global\u0020after\u0020resolving\u0020callbacks.", + "url": "classes/Illuminate-Container-Container.html#property_globalAfterResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024beforeResolvingCallbacks", + "name": "beforeResolvingCallbacks", + "summary": "All\u0020of\u0020the\u0020before\u0020resolving\u0020callbacks\u0020by\u0020class\u0020type.", + "url": "classes/Illuminate-Container-Container.html#property_beforeResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024resolvingCallbacks", + "name": "resolvingCallbacks", + "summary": "All\u0020of\u0020the\u0020resolving\u0020callbacks\u0020by\u0020class\u0020type.", + "url": "classes/Illuminate-Container-Container.html#property_resolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\Container\u003A\u003A\u0024afterResolvingCallbacks", + "name": "afterResolvingCallbacks", + "summary": "All\u0020of\u0020the\u0020after\u0020resolving\u0020callbacks\u0020by\u0020class\u0020type.", + "url": "classes/Illuminate-Container-Container.html#property_afterResolvingCallbacks" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder", + "name": "ContextualBindingBuilder", + "summary": "", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020contextual\u0020binding\u0020builder.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003A\u0024needs", + "name": "needs", + "summary": "The\u0020abstract\u0020target.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#property_needs" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003Agive\u0028\u0029", + "name": "give", + "summary": "Define\u0020the\u0020implementation\u0020for\u0020the\u0020contextual\u0020binding.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#method_give" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003AgiveTagged\u0028\u0029", + "name": "giveTagged", + "summary": "Define\u0020tagged\u0020services\u0020to\u0020be\u0020used\u0020as\u0020the\u0020implementation\u0020for\u0020the\u0020contextual\u0020binding.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#method_giveTagged" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003AgiveConfig\u0028\u0029", + "name": "giveConfig", + "summary": "Specify\u0020the\u0020configuration\u0020item\u0020to\u0020bind\u0020as\u0020a\u0020primitive.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#method_giveConfig" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020underlying\u0020container\u0020instance.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#property_container" + }, { + "fqsen": "\\Illuminate\\Container\\ContextualBindingBuilder\u003A\u003A\u0024concrete", + "name": "concrete", + "summary": "The\u0020concrete\u0020instance.", + "url": "classes/Illuminate-Container-ContextualBindingBuilder.html#property_concrete" + }, { + "fqsen": "\\Illuminate\\Container\\EntryNotFoundException", + "name": "EntryNotFoundException", + "summary": "", + "url": "classes/Illuminate-Container-EntryNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Container\\RewindableGenerator", + "name": "RewindableGenerator", + "summary": "", + "url": "classes/Illuminate-Container-RewindableGenerator.html" + }, { + "fqsen": "\\Illuminate\\Container\\RewindableGenerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020generator\u0020instance.", + "url": "classes/Illuminate-Container-RewindableGenerator.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Container\\RewindableGenerator\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020an\u0020iterator\u0020from\u0020the\u0020generator.", + "url": "classes/Illuminate-Container-RewindableGenerator.html#method_getIterator" + }, { + "fqsen": "\\Illuminate\\Container\\RewindableGenerator\u003A\u003A\u0024count", + "name": "count", + "summary": "The\u0020number\u0020of\u0020tagged\u0020services.", + "url": "classes/Illuminate-Container-RewindableGenerator.html#property_count" + }, { + "fqsen": "\\Illuminate\\Container\\RewindableGenerator\u003A\u003A\u0024generator", + "name": "generator", + "summary": "The\u0020generator\u0020callback.", + "url": "classes/Illuminate-Container-RewindableGenerator.html#property_generator" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Authorizable", + "name": "Authorizable", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-Access-Authorizable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Authorizable\u003A\u003Acan\u0028\u0029", + "name": "can", + "summary": "Determine\u0020if\u0020the\u0020entity\u0020has\u0020a\u0020given\u0020ability.", + "url": "classes/Illuminate-Contracts-Auth-Access-Authorizable.html#method_can" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate", + "name": "Gate", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020a\u0020given\u0020ability\u0020has\u0020been\u0020defined.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_has" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Adefine\u0028\u0029", + "name": "define", + "summary": "Define\u0020a\u0020new\u0020ability.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_define" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Aresource\u0028\u0029", + "name": "resource", + "summary": "Define\u0020abilities\u0020for\u0020a\u0020resource.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_resource" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Apolicy\u0028\u0029", + "name": "policy", + "summary": "Define\u0020a\u0020policy\u0020class\u0020for\u0020a\u0020given\u0020class\u0020type.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_policy" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Abefore\u0028\u0029", + "name": "before", + "summary": "Register\u0020a\u0020callback\u0020to\u0020run\u0020before\u0020all\u0020Gate\u0020checks.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_before" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Aafter\u0028\u0029", + "name": "after", + "summary": "Register\u0020a\u0020callback\u0020to\u0020run\u0020after\u0020all\u0020Gate\u0020checks.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_after" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Aallows\u0028\u0029", + "name": "allows", + "summary": "Determine\u0020if\u0020the\u0020given\u0020ability\u0020should\u0020be\u0020granted\u0020for\u0020the\u0020current\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_allows" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Adenies\u0028\u0029", + "name": "denies", + "summary": "Determine\u0020if\u0020the\u0020given\u0020ability\u0020should\u0020be\u0020denied\u0020for\u0020the\u0020current\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_denies" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Acheck\u0028\u0029", + "name": "check", + "summary": "Determine\u0020if\u0020all\u0020of\u0020the\u0020given\u0020abilities\u0020should\u0020be\u0020granted\u0020for\u0020the\u0020current\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_check" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Aany\u0028\u0029", + "name": "any", + "summary": "Determine\u0020if\u0020any\u0020one\u0020of\u0020the\u0020given\u0020abilities\u0020should\u0020be\u0020granted\u0020for\u0020the\u0020current\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_any" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Aauthorize\u0028\u0029", + "name": "authorize", + "summary": "Determine\u0020if\u0020the\u0020given\u0020ability\u0020should\u0020be\u0020granted\u0020for\u0020the\u0020current\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_authorize" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Ainspect\u0028\u0029", + "name": "inspect", + "summary": "Inspect\u0020the\u0020user\u0020for\u0020the\u0020given\u0020ability.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_inspect" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Get\u0020the\u0020raw\u0020result\u0020from\u0020the\u0020authorization\u0020callback.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003AgetPolicyFor\u0028\u0029", + "name": "getPolicyFor", + "summary": "Get\u0020a\u0020policy\u0020instance\u0020for\u0020a\u0020given\u0020class.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_getPolicyFor" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003AforUser\u0028\u0029", + "name": "forUser", + "summary": "Get\u0020a\u0020guard\u0020instance\u0020for\u0020the\u0020given\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_forUser" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access\\Gate\u003A\u003Aabilities\u0028\u0029", + "name": "abilities", + "summary": "Get\u0020all\u0020of\u0020the\u0020defined\u0020abilities.", + "url": "classes/Illuminate-Contracts-Auth-Access-Gate.html#method_abilities" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable", + "name": "Authenticatable", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable\u003A\u003AgetAuthIdentifierName\u0028\u0029", + "name": "getAuthIdentifierName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020unique\u0020identifier\u0020for\u0020the\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html#method_getAuthIdentifierName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable\u003A\u003AgetAuthIdentifier\u0028\u0029", + "name": "getAuthIdentifier", + "summary": "Get\u0020the\u0020unique\u0020identifier\u0020for\u0020the\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html#method_getAuthIdentifier" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable\u003A\u003AgetAuthPassword\u0028\u0029", + "name": "getAuthPassword", + "summary": "Get\u0020the\u0020password\u0020for\u0020the\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html#method_getAuthPassword" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable\u003A\u003AgetRememberToken\u0028\u0029", + "name": "getRememberToken", + "summary": "Get\u0020the\u0020token\u0020value\u0020for\u0020the\u0020\u0022remember\u0020me\u0022\u0020session.", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html#method_getRememberToken" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable\u003A\u003AsetRememberToken\u0028\u0029", + "name": "setRememberToken", + "summary": "Set\u0020the\u0020token\u0020value\u0020for\u0020the\u0020\u0022remember\u0020me\u0022\u0020session.", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html#method_setRememberToken" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Authenticatable\u003A\u003AgetRememberTokenName\u0028\u0029", + "name": "getRememberTokenName", + "summary": "Get\u0020the\u0020column\u0020name\u0020for\u0020the\u0020\u0022remember\u0020me\u0022\u0020token.", + "url": "classes/Illuminate-Contracts-Auth-Authenticatable.html#method_getRememberTokenName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\CanResetPassword", + "name": "CanResetPassword", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-CanResetPassword.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\CanResetPassword\u003A\u003AgetEmailForPasswordReset\u0028\u0029", + "name": "getEmailForPasswordReset", + "summary": "Get\u0020the\u0020e\u002Dmail\u0020address\u0020where\u0020password\u0020reset\u0020links\u0020are\u0020sent.", + "url": "classes/Illuminate-Contracts-Auth-CanResetPassword.html#method_getEmailForPasswordReset" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\CanResetPassword\u003A\u003AsendPasswordResetNotification\u0028\u0029", + "name": "sendPasswordResetNotification", + "summary": "Send\u0020the\u0020password\u0020reset\u0020notification.", + "url": "classes/Illuminate-Contracts-Auth-CanResetPassword.html#method_sendPasswordResetNotification" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Factory\u003A\u003Aguard\u0028\u0029", + "name": "guard", + "summary": "Get\u0020a\u0020guard\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Auth-Factory.html#method_guard" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Factory\u003A\u003AshouldUse\u0028\u0029", + "name": "shouldUse", + "summary": "Set\u0020the\u0020default\u0020guard\u0020the\u0020factory\u0020should\u0020serve.", + "url": "classes/Illuminate-Contracts-Auth-Factory.html#method_shouldUse" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard", + "name": "Guard", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-Guard.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard\u003A\u003Acheck\u0028\u0029", + "name": "check", + "summary": "Determine\u0020if\u0020the\u0020current\u0020user\u0020is\u0020authenticated.", + "url": "classes/Illuminate-Contracts-Auth-Guard.html#method_check" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard\u003A\u003Aguest\u0028\u0029", + "name": "guest", + "summary": "Determine\u0020if\u0020the\u0020current\u0020user\u0020is\u0020a\u0020guest.", + "url": "classes/Illuminate-Contracts-Auth-Guard.html#method_guest" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard\u003A\u003Auser\u0028\u0029", + "name": "user", + "summary": "Get\u0020the\u0020currently\u0020authenticated\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Guard.html#method_user" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "Get\u0020the\u0020ID\u0020for\u0020the\u0020currently\u0020authenticated\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Guard.html#method_id" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validate\u0020a\u0020user\u0027s\u0020credentials.", + "url": "classes/Illuminate-Contracts-Auth-Guard.html#method_validate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Guard\u003A\u003AsetUser\u0028\u0029", + "name": "setUser", + "summary": "Set\u0020the\u0020current\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-Guard.html#method_setUser" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Middleware\\AuthenticatesRequests", + "name": "AuthenticatesRequests", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-Middleware-AuthenticatesRequests.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\MustVerifyEmail", + "name": "MustVerifyEmail", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-MustVerifyEmail.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\MustVerifyEmail\u003A\u003AhasVerifiedEmail\u0028\u0029", + "name": "hasVerifiedEmail", + "summary": "Determine\u0020if\u0020the\u0020user\u0020has\u0020verified\u0020their\u0020email\u0020address.", + "url": "classes/Illuminate-Contracts-Auth-MustVerifyEmail.html#method_hasVerifiedEmail" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\MustVerifyEmail\u003A\u003AmarkEmailAsVerified\u0028\u0029", + "name": "markEmailAsVerified", + "summary": "Mark\u0020the\u0020given\u0020user\u0027s\u0020email\u0020as\u0020verified.", + "url": "classes/Illuminate-Contracts-Auth-MustVerifyEmail.html#method_markEmailAsVerified" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\MustVerifyEmail\u003A\u003AsendEmailVerificationNotification\u0028\u0029", + "name": "sendEmailVerificationNotification", + "summary": "Send\u0020the\u0020email\u0020verification\u0020notification.", + "url": "classes/Illuminate-Contracts-Auth-MustVerifyEmail.html#method_sendEmailVerificationNotification" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\MustVerifyEmail\u003A\u003AgetEmailForVerification\u0028\u0029", + "name": "getEmailForVerification", + "summary": "Get\u0020the\u0020email\u0020address\u0020that\u0020should\u0020be\u0020used\u0020for\u0020verification.", + "url": "classes/Illuminate-Contracts-Auth-MustVerifyEmail.html#method_getEmailForVerification" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker", + "name": "PasswordBroker", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003AsendResetLink\u0028\u0029", + "name": "sendResetLink", + "summary": "Send\u0020a\u0020password\u0020reset\u0020link\u0020to\u0020a\u0020user.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#method_sendResetLink" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Reset\u0020the\u0020password\u0020for\u0020the\u0020given\u0020token.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#method_reset" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003ARESET_LINK_SENT", + "name": "RESET_LINK_SENT", + "summary": "Constant\u0020representing\u0020a\u0020successfully\u0020sent\u0020reminder.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#constant_RESET_LINK_SENT" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003APASSWORD_RESET", + "name": "PASSWORD_RESET", + "summary": "Constant\u0020representing\u0020a\u0020successfully\u0020reset\u0020password.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#constant_PASSWORD_RESET" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003AINVALID_USER", + "name": "INVALID_USER", + "summary": "Constant\u0020representing\u0020the\u0020user\u0020not\u0020found\u0020response.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#constant_INVALID_USER" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003AINVALID_TOKEN", + "name": "INVALID_TOKEN", + "summary": "Constant\u0020representing\u0020an\u0020invalid\u0020token.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#constant_INVALID_TOKEN" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBroker\u003A\u003ARESET_THROTTLED", + "name": "RESET_THROTTLED", + "summary": "Constant\u0020representing\u0020a\u0020throttled\u0020reset\u0020attempt.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBroker.html#constant_RESET_THROTTLED" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBrokerFactory", + "name": "PasswordBrokerFactory", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-PasswordBrokerFactory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\PasswordBrokerFactory\u003A\u003Abroker\u0028\u0029", + "name": "broker", + "summary": "Get\u0020a\u0020password\u0020broker\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Auth-PasswordBrokerFactory.html#method_broker" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard", + "name": "StatefulGuard", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003Aattempt\u0028\u0029", + "name": "attempt", + "summary": "Attempt\u0020to\u0020authenticate\u0020a\u0020user\u0020using\u0020the\u0020given\u0020credentials.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_attempt" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003Aonce\u0028\u0029", + "name": "once", + "summary": "Log\u0020a\u0020user\u0020into\u0020the\u0020application\u0020without\u0020sessions\u0020or\u0020cookies.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_once" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003Alogin\u0028\u0029", + "name": "login", + "summary": "Log\u0020a\u0020user\u0020into\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_login" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003AloginUsingId\u0028\u0029", + "name": "loginUsingId", + "summary": "Log\u0020the\u0020given\u0020user\u0020ID\u0020into\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_loginUsingId" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003AonceUsingId\u0028\u0029", + "name": "onceUsingId", + "summary": "Log\u0020the\u0020given\u0020user\u0020ID\u0020into\u0020the\u0020application\u0020without\u0020sessions\u0020or\u0020cookies.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_onceUsingId" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003AviaRemember\u0028\u0029", + "name": "viaRemember", + "summary": "Determine\u0020if\u0020the\u0020user\u0020was\u0020authenticated\u0020via\u0020\u0022remember\u0020me\u0022\u0020cookie.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_viaRemember" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\StatefulGuard\u003A\u003Alogout\u0028\u0029", + "name": "logout", + "summary": "Log\u0020the\u0020user\u0020out\u0020of\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Auth-StatefulGuard.html#method_logout" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\SupportsBasicAuth", + "name": "SupportsBasicAuth", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-SupportsBasicAuth.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\SupportsBasicAuth\u003A\u003Abasic\u0028\u0029", + "name": "basic", + "summary": "Attempt\u0020to\u0020authenticate\u0020using\u0020HTTP\u0020Basic\u0020Auth.", + "url": "classes/Illuminate-Contracts-Auth-SupportsBasicAuth.html#method_basic" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\SupportsBasicAuth\u003A\u003AonceBasic\u0028\u0029", + "name": "onceBasic", + "summary": "Perform\u0020a\u0020stateless\u0020HTTP\u0020Basic\u0020login\u0020attempt.", + "url": "classes/Illuminate-Contracts-Auth-SupportsBasicAuth.html#method_onceBasic" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\UserProvider", + "name": "UserProvider", + "summary": "", + "url": "classes/Illuminate-Contracts-Auth-UserProvider.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\UserProvider\u003A\u003AretrieveById\u0028\u0029", + "name": "retrieveById", + "summary": "Retrieve\u0020a\u0020user\u0020by\u0020their\u0020unique\u0020identifier.", + "url": "classes/Illuminate-Contracts-Auth-UserProvider.html#method_retrieveById" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\UserProvider\u003A\u003AretrieveByToken\u0028\u0029", + "name": "retrieveByToken", + "summary": "Retrieve\u0020a\u0020user\u0020by\u0020their\u0020unique\u0020identifier\u0020and\u0020\u0022remember\u0020me\u0022\u0020token.", + "url": "classes/Illuminate-Contracts-Auth-UserProvider.html#method_retrieveByToken" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\UserProvider\u003A\u003AupdateRememberToken\u0028\u0029", + "name": "updateRememberToken", + "summary": "Update\u0020the\u0020\u0022remember\u0020me\u0022\u0020token\u0020for\u0020the\u0020given\u0020user\u0020in\u0020storage.", + "url": "classes/Illuminate-Contracts-Auth-UserProvider.html#method_updateRememberToken" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\UserProvider\u003A\u003AretrieveByCredentials\u0028\u0029", + "name": "retrieveByCredentials", + "summary": "Retrieve\u0020a\u0020user\u0020by\u0020the\u0020given\u0020credentials.", + "url": "classes/Illuminate-Contracts-Auth-UserProvider.html#method_retrieveByCredentials" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\UserProvider\u003A\u003AvalidateCredentials\u0028\u0029", + "name": "validateCredentials", + "summary": "Validate\u0020a\u0020user\u0020against\u0020the\u0020given\u0020credentials.", + "url": "classes/Illuminate-Contracts-Auth-UserProvider.html#method_validateCredentials" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\Broadcaster", + "name": "Broadcaster", + "summary": "", + "url": "classes/Illuminate-Contracts-Broadcasting-Broadcaster.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\Broadcaster\u003A\u003Aauth\u0028\u0029", + "name": "auth", + "summary": "Authenticate\u0020the\u0020incoming\u0020request\u0020for\u0020a\u0020given\u0020channel.", + "url": "classes/Illuminate-Contracts-Broadcasting-Broadcaster.html#method_auth" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\Broadcaster\u003A\u003AvalidAuthenticationResponse\u0028\u0029", + "name": "validAuthenticationResponse", + "summary": "Return\u0020the\u0020valid\u0020authentication\u0020response.", + "url": "classes/Illuminate-Contracts-Broadcasting-Broadcaster.html#method_validAuthenticationResponse" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\Broadcaster\u003A\u003Abroadcast\u0028\u0029", + "name": "broadcast", + "summary": "Broadcast\u0020the\u0020given\u0020event.", + "url": "classes/Illuminate-Contracts-Broadcasting-Broadcaster.html#method_broadcast" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Broadcasting-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\Factory\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020broadcaster\u0020implementation\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Broadcasting-Factory.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\HasBroadcastChannel", + "name": "HasBroadcastChannel", + "summary": "", + "url": "classes/Illuminate-Contracts-Broadcasting-HasBroadcastChannel.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\HasBroadcastChannel\u003A\u003AbroadcastChannelRoute\u0028\u0029", + "name": "broadcastChannelRoute", + "summary": "Get\u0020the\u0020broadcast\u0020channel\u0020route\u0020definition\u0020that\u0020is\u0020associated\u0020with\u0020the\u0020given\u0020entity.", + "url": "classes/Illuminate-Contracts-Broadcasting-HasBroadcastChannel.html#method_broadcastChannelRoute" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\HasBroadcastChannel\u003A\u003AbroadcastChannel\u0028\u0029", + "name": "broadcastChannel", + "summary": "Get\u0020the\u0020broadcast\u0020channel\u0020name\u0020that\u0020is\u0020associated\u0020with\u0020the\u0020given\u0020entity.", + "url": "classes/Illuminate-Contracts-Broadcasting-HasBroadcastChannel.html#method_broadcastChannel" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast", + "name": "ShouldBroadcast", + "summary": "", + "url": "classes/Illuminate-Contracts-Broadcasting-ShouldBroadcast.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast\u003A\u003AbroadcastOn\u0028\u0029", + "name": "broadcastOn", + "summary": "Get\u0020the\u0020channels\u0020the\u0020event\u0020should\u0020broadcast\u0020on.", + "url": "classes/Illuminate-Contracts-Broadcasting-ShouldBroadcast.html#method_broadcastOn" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow", + "name": "ShouldBroadcastNow", + "summary": "", + "url": "classes/Illuminate-Contracts-Broadcasting-ShouldBroadcastNow.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher", + "name": "Dispatcher", + "summary": "", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003AdispatchSync\u0028\u0029", + "name": "dispatchSync", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020in\u0020the\u0020current\u0020process.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_dispatchSync" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003AdispatchNow\u0028\u0029", + "name": "dispatchNow", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020in\u0020the\u0020current\u0020process.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_dispatchNow" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003AhasCommandHandler\u0028\u0029", + "name": "hasCommandHandler", + "summary": "Determine\u0020if\u0020the\u0020given\u0020command\u0020has\u0020a\u0020handler.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_hasCommandHandler" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003AgetCommandHandler\u0028\u0029", + "name": "getCommandHandler", + "summary": "Retrieve\u0020the\u0020handler\u0020for\u0020a\u0020command.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_getCommandHandler" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003ApipeThrough\u0028\u0029", + "name": "pipeThrough", + "summary": "Set\u0020the\u0020pipes\u0020commands\u0020should\u0020be\u0020piped\u0020through\u0020before\u0020dispatching.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_pipeThrough" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\Dispatcher\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020a\u0020command\u0020to\u0020a\u0020handler.", + "url": "classes/Illuminate-Contracts-Bus-Dispatcher.html#method_map" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\QueueingDispatcher", + "name": "QueueingDispatcher", + "summary": "", + "url": "classes/Illuminate-Contracts-Bus-QueueingDispatcher.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\QueueingDispatcher\u003A\u003AfindBatch\u0028\u0029", + "name": "findBatch", + "summary": "Attempt\u0020to\u0020find\u0020the\u0020batch\u0020with\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Contracts-Bus-QueueingDispatcher.html#method_findBatch" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\QueueingDispatcher\u003A\u003Abatch\u0028\u0029", + "name": "batch", + "summary": "Create\u0020a\u0020new\u0020batch\u0020of\u0020queueable\u0020jobs.", + "url": "classes/Illuminate-Contracts-Bus-QueueingDispatcher.html#method_batch" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus\\QueueingDispatcher\u003A\u003AdispatchToQueue\u0028\u0029", + "name": "dispatchToQueue", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020behind\u0020a\u0020queue.", + "url": "classes/Illuminate-Contracts-Bus-QueueingDispatcher.html#method_dispatchToQueue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Cache-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Factory\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "Get\u0020a\u0020cache\u0020store\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Cache-Factory.html#method_store" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Lock", + "name": "Lock", + "summary": "", + "url": "classes/Illuminate-Contracts-Cache-Lock.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Lock\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Attempt\u0020to\u0020acquire\u0020the\u0020lock.", + "url": "classes/Illuminate-Contracts-Cache-Lock.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Lock\u003A\u003Ablock\u0028\u0029", + "name": "block", + "summary": "Attempt\u0020to\u0020acquire\u0020the\u0020lock\u0020for\u0020the\u0020given\u0020number\u0020of\u0020seconds.", + "url": "classes/Illuminate-Contracts-Cache-Lock.html#method_block" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Lock\u003A\u003Arelease\u0028\u0029", + "name": "release", + "summary": "Release\u0020the\u0020lock.", + "url": "classes/Illuminate-Contracts-Cache-Lock.html#method_release" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Lock\u003A\u003Aowner\u0028\u0029", + "name": "owner", + "summary": "Returns\u0020the\u0020current\u0020owner\u0020of\u0020the\u0020lock.", + "url": "classes/Illuminate-Contracts-Cache-Lock.html#method_owner" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Lock\u003A\u003AforceRelease\u0028\u0029", + "name": "forceRelease", + "summary": "Releases\u0020this\u0020lock\u0020in\u0020disregard\u0020of\u0020ownership.", + "url": "classes/Illuminate-Contracts-Cache-Lock.html#method_forceRelease" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\LockProvider", + "name": "LockProvider", + "summary": "", + "url": "classes/Illuminate-Contracts-Cache-LockProvider.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\LockProvider\u003A\u003Alock\u0028\u0029", + "name": "lock", + "summary": "Get\u0020a\u0020lock\u0020instance.", + "url": "classes/Illuminate-Contracts-Cache-LockProvider.html#method_lock" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\LockProvider\u003A\u003ArestoreLock\u0028\u0029", + "name": "restoreLock", + "summary": "Restore\u0020a\u0020lock\u0020instance\u0020using\u0020the\u0020owner\u0020identifier.", + "url": "classes/Illuminate-Contracts-Cache-LockProvider.html#method_restoreLock" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\LockTimeoutException", + "name": "LockTimeoutException", + "summary": "", + "url": "classes/Illuminate-Contracts-Cache-LockTimeoutException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository", + "name": "Repository", + "summary": "", + "url": "classes/Illuminate-Contracts-Cache-Repository.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Apull\u0028\u0029", + "name": "pull", + "summary": "Retrieve\u0020an\u0020item\u0020from\u0020the\u0020cache\u0020and\u0020delete\u0020it.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_pull" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Store\u0020an\u0020item\u0020in\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_put" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Store\u0020an\u0020item\u0020in\u0020the\u0020cache\u0020if\u0020the\u0020key\u0020does\u0020not\u0020exist.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_add" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Aincrement\u0028\u0029", + "name": "increment", + "summary": "Increment\u0020the\u0020value\u0020of\u0020an\u0020item\u0020in\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_increment" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Adecrement\u0028\u0029", + "name": "decrement", + "summary": "Decrement\u0020the\u0020value\u0020of\u0020an\u0020item\u0020in\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_decrement" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Aforever\u0028\u0029", + "name": "forever", + "summary": "Store\u0020an\u0020item\u0020in\u0020the\u0020cache\u0020indefinitely.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_forever" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Aremember\u0028\u0029", + "name": "remember", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020cache,\u0020or\u0020execute\u0020the\u0020given\u0020Closure\u0020and\u0020store\u0020the\u0020result.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_remember" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Asear\u0028\u0029", + "name": "sear", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020cache,\u0020or\u0020execute\u0020the\u0020given\u0020Closure\u0020and\u0020store\u0020the\u0020result\u0020forever.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_sear" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003ArememberForever\u0028\u0029", + "name": "rememberForever", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020cache,\u0020or\u0020execute\u0020the\u0020given\u0020Closure\u0020and\u0020store\u0020the\u0020result\u0020forever.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_rememberForever" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020an\u0020item\u0020from\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Repository\u003A\u003AgetStore\u0028\u0029", + "name": "getStore", + "summary": "Get\u0020the\u0020cache\u0020store\u0020implementation.", + "url": "classes/Illuminate-Contracts-Cache-Repository.html#method_getStore" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store", + "name": "Store", + "summary": "", + "url": "classes/Illuminate-Contracts-Cache-Store.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieve\u0020an\u0020item\u0020from\u0020the\u0020cache\u0020by\u0020key.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Amany\u0028\u0029", + "name": "many", + "summary": "Retrieve\u0020multiple\u0020items\u0020from\u0020the\u0020cache\u0020by\u0020key.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_many" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Store\u0020an\u0020item\u0020in\u0020the\u0020cache\u0020for\u0020a\u0020given\u0020number\u0020of\u0020seconds.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_put" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003AputMany\u0028\u0029", + "name": "putMany", + "summary": "Store\u0020multiple\u0020items\u0020in\u0020the\u0020cache\u0020for\u0020a\u0020given\u0020number\u0020of\u0020seconds.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_putMany" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Aincrement\u0028\u0029", + "name": "increment", + "summary": "Increment\u0020the\u0020value\u0020of\u0020an\u0020item\u0020in\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_increment" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Adecrement\u0028\u0029", + "name": "decrement", + "summary": "Decrement\u0020the\u0020value\u0020of\u0020an\u0020item\u0020in\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_decrement" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Aforever\u0028\u0029", + "name": "forever", + "summary": "Store\u0020an\u0020item\u0020in\u0020the\u0020cache\u0020indefinitely.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_forever" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020an\u0020item\u0020from\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Remove\u0020all\u0020items\u0020from\u0020the\u0020cache.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache\\Store\u003A\u003AgetPrefix\u0028\u0029", + "name": "getPrefix", + "summary": "Get\u0020the\u0020cache\u0020key\u0020prefix.", + "url": "classes/Illuminate-Contracts-Cache-Store.html#method_getPrefix" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository", + "name": "Repository", + "summary": "", + "url": "classes/Illuminate-Contracts-Config-Repository.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020the\u0020given\u0020configuration\u0020value\u0020exists.", + "url": "classes/Illuminate-Contracts-Config-Repository.html#method_has" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020specified\u0020configuration\u0020value.", + "url": "classes/Illuminate-Contracts-Config-Repository.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020configuration\u0020items\u0020for\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Config-Repository.html#method_all" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020given\u0020configuration\u0020value.", + "url": "classes/Illuminate-Contracts-Config-Repository.html#method_set" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Prepend\u0020a\u0020value\u0020onto\u0020an\u0020array\u0020configuration\u0020value.", + "url": "classes/Illuminate-Contracts-Config-Repository.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config\\Repository\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Push\u0020a\u0020value\u0020onto\u0020an\u0020array\u0020configuration\u0020value.", + "url": "classes/Illuminate-Contracts-Config-Repository.html#method_push" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Application", + "name": "Application", + "summary": "", + "url": "classes/Illuminate-Contracts-Console-Application.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Application\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Run\u0020an\u0020Artisan\u0020console\u0020command\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Console-Application.html#method_call" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Application\u003A\u003Aoutput\u0028\u0029", + "name": "output", + "summary": "Get\u0020the\u0020output\u0020from\u0020the\u0020last\u0020command.", + "url": "classes/Illuminate-Contracts-Console-Application.html#method_output" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel", + "name": "Kernel", + "summary": "", + "url": "classes/Illuminate-Contracts-Console-Kernel.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Abootstrap\u0028\u0029", + "name": "bootstrap", + "summary": "Bootstrap\u0020the\u0020application\u0020for\u0020artisan\u0020commands.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_bootstrap" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Handle\u0020an\u0020incoming\u0020console\u0020command.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Run\u0020an\u0020Artisan\u0020console\u0020command\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_call" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Queue\u0020an\u0020Artisan\u0020console\u0020command\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020commands\u0020registered\u0020with\u0020the\u0020console.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_all" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Aoutput\u0028\u0029", + "name": "output", + "summary": "Get\u0020the\u0020output\u0020for\u0020the\u0020last\u0020run\u0020command.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_output" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console\\Kernel\u003A\u003Aterminate\u0028\u0029", + "name": "terminate", + "summary": "Terminate\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Console-Kernel.html#method_terminate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\BindingResolutionException", + "name": "BindingResolutionException", + "summary": "", + "url": "classes/Illuminate-Contracts-Container-BindingResolutionException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\CircularDependencyException", + "name": "CircularDependencyException", + "summary": "", + "url": "classes/Illuminate-Contracts-Container-CircularDependencyException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container", + "name": "Container", + "summary": "Describes\u0020the\u0020interface\u0020of\u0020a\u0020container\u0020that\u0020exposes\u0020methods\u0020to\u0020read\u0020its\u0020entries.", + "url": "classes/Illuminate-Contracts-Container-Container.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Abound\u0028\u0029", + "name": "bound", + "summary": "Determine\u0020if\u0020the\u0020given\u0020abstract\u0020type\u0020has\u0020been\u0020bound.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_bound" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Aalias\u0028\u0029", + "name": "alias", + "summary": "Alias\u0020a\u0020type\u0020to\u0020a\u0020different\u0020name.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_alias" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Atag\u0028\u0029", + "name": "tag", + "summary": "Assign\u0020a\u0020set\u0020of\u0020tags\u0020to\u0020a\u0020given\u0020binding.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_tag" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Atagged\u0028\u0029", + "name": "tagged", + "summary": "Resolve\u0020all\u0020of\u0020the\u0020bindings\u0020for\u0020a\u0020given\u0020tag.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_tagged" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Register\u0020a\u0020binding\u0020with\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_bind" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003AbindIf\u0028\u0029", + "name": "bindIf", + "summary": "Register\u0020a\u0020binding\u0020if\u0020it\u0020hasn\u0027t\u0020already\u0020been\u0020registered.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_bindIf" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Asingleton\u0028\u0029", + "name": "singleton", + "summary": "Register\u0020a\u0020shared\u0020binding\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_singleton" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003AsingletonIf\u0028\u0029", + "name": "singletonIf", + "summary": "Register\u0020a\u0020shared\u0020binding\u0020if\u0020it\u0020hasn\u0027t\u0020already\u0020been\u0020registered.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_singletonIf" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "\u0022Extend\u0022\u0020an\u0020abstract\u0020type\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Register\u0020an\u0020existing\u0020instance\u0020as\u0020shared\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_instance" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003AaddContextualBinding\u0028\u0029", + "name": "addContextualBinding", + "summary": "Add\u0020a\u0020contextual\u0020binding\u0020to\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_addContextualBinding" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Awhen\u0028\u0029", + "name": "when", + "summary": "Define\u0020a\u0020contextual\u0020binding.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_when" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Afactory\u0028\u0029", + "name": "factory", + "summary": "Get\u0020a\u0020closure\u0020to\u0020resolve\u0020the\u0020given\u0020type\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_factory" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020the\u0020container\u0020of\u0020all\u0020bindings\u0020and\u0020resolved\u0020instances.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Resolve\u0020the\u0020given\u0020type\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_make" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Call\u0020the\u0020given\u0020Closure\u0020\/\u0020class\u0040method\u0020and\u0020inject\u0020its\u0020dependencies.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_call" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Aresolved\u0028\u0029", + "name": "resolved", + "summary": "Determine\u0020if\u0020the\u0020given\u0020abstract\u0020type\u0020has\u0020been\u0020resolved.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_resolved" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003Aresolving\u0028\u0029", + "name": "resolving", + "summary": "Register\u0020a\u0020new\u0020resolving\u0020callback.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_resolving" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\Container\u003A\u003AafterResolving\u0028\u0029", + "name": "afterResolving", + "summary": "Register\u0020a\u0020new\u0020after\u0020resolving\u0020callback.", + "url": "classes/Illuminate-Contracts-Container-Container.html#method_afterResolving" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\ContextualBindingBuilder", + "name": "ContextualBindingBuilder", + "summary": "", + "url": "classes/Illuminate-Contracts-Container-ContextualBindingBuilder.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\ContextualBindingBuilder\u003A\u003Aneeds\u0028\u0029", + "name": "needs", + "summary": "Define\u0020the\u0020abstract\u0020target\u0020that\u0020depends\u0020on\u0020the\u0020context.", + "url": "classes/Illuminate-Contracts-Container-ContextualBindingBuilder.html#method_needs" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\ContextualBindingBuilder\u003A\u003Agive\u0028\u0029", + "name": "give", + "summary": "Define\u0020the\u0020implementation\u0020for\u0020the\u0020contextual\u0020binding.", + "url": "classes/Illuminate-Contracts-Container-ContextualBindingBuilder.html#method_give" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container\\ContextualBindingBuilder\u003A\u003AgiveTagged\u0028\u0029", + "name": "giveTagged", + "summary": "Define\u0020tagged\u0020services\u0020to\u0020be\u0020used\u0020as\u0020the\u0020implementation\u0020for\u0020the\u0020contextual\u0020binding.", + "url": "classes/Illuminate-Contracts-Container-ContextualBindingBuilder.html#method_giveTagged" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Cookie-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\Factory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020cookie\u0020instance.", + "url": "classes/Illuminate-Contracts-Cookie-Factory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\Factory\u003A\u003Aforever\u0028\u0029", + "name": "forever", + "summary": "Create\u0020a\u0020cookie\u0020that\u0020lasts\u0020\u0022forever\u0022\u0020\u0028five\u0020years\u0029.", + "url": "classes/Illuminate-Contracts-Cookie-Factory.html#method_forever" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\Factory\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Expire\u0020the\u0020given\u0020cookie.", + "url": "classes/Illuminate-Contracts-Cookie-Factory.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\QueueingFactory", + "name": "QueueingFactory", + "summary": "", + "url": "classes/Illuminate-Contracts-Cookie-QueueingFactory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\QueueingFactory\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Queue\u0020a\u0020cookie\u0020to\u0020send\u0020with\u0020the\u0020next\u0020response.", + "url": "classes/Illuminate-Contracts-Cookie-QueueingFactory.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\QueueingFactory\u003A\u003Aunqueue\u0028\u0029", + "name": "unqueue", + "summary": "Remove\u0020a\u0020cookie\u0020from\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Cookie-QueueingFactory.html#method_unqueue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie\\QueueingFactory\u003A\u003AgetQueuedCookies\u0028\u0029", + "name": "getQueuedCookies", + "summary": "Get\u0020the\u0020cookies\u0020which\u0020have\u0020been\u0020queued\u0020for\u0020the\u0020next\u0020request.", + "url": "classes/Illuminate-Contracts-Cookie-QueueingFactory.html#method_getQueuedCookies" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\Castable", + "name": "Castable", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Eloquent-Castable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\Castable\u003A\u003AcastUsing\u0028\u0029", + "name": "castUsing", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020caster\u0020class\u0020to\u0020use\u0020when\u0020casting\u0020from\u0020\/\u0020to\u0020this\u0020cast\u0020target.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-Castable.html#method_castUsing" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\CastsAttributes", + "name": "CastsAttributes", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Eloquent-CastsAttributes.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\CastsAttributes\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Transform\u0020the\u0020attribute\u0020from\u0020the\u0020underlying\u0020model\u0020values.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-CastsAttributes.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\CastsAttributes\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Transform\u0020the\u0020attribute\u0020to\u0020its\u0020underlying\u0020model\u0020values.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-CastsAttributes.html#method_set" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\CastsInboundAttributes", + "name": "CastsInboundAttributes", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Eloquent-CastsInboundAttributes.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\CastsInboundAttributes\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Transform\u0020the\u0020attribute\u0020to\u0020its\u0020underlying\u0020model\u0020values.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-CastsInboundAttributes.html#method_set" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\DeviatesCastableAttributes", + "name": "DeviatesCastableAttributes", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Eloquent-DeviatesCastableAttributes.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\DeviatesCastableAttributes\u003A\u003Aincrement\u0028\u0029", + "name": "increment", + "summary": "Increment\u0020the\u0020attribute.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-DeviatesCastableAttributes.html#method_increment" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\DeviatesCastableAttributes\u003A\u003Adecrement\u0028\u0029", + "name": "decrement", + "summary": "Decrement\u0020the\u0020attribute.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-DeviatesCastableAttributes.html#method_decrement" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\SerializesCastableAttributes", + "name": "SerializesCastableAttributes", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Eloquent-SerializesCastableAttributes.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\SerializesCastableAttributes\u003A\u003Aserialize\u0028\u0029", + "name": "serialize", + "summary": "Serialize\u0020the\u0020attribute\u0020when\u0020converting\u0020the\u0020model\u0020to\u0020an\u0020array.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-SerializesCastableAttributes.html#method_serialize" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\SupportsPartialRelations", + "name": "SupportsPartialRelations", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Eloquent-SupportsPartialRelations.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\SupportsPartialRelations\u003A\u003AofMany\u0028\u0029", + "name": "ofMany", + "summary": "Indicate\u0020that\u0020the\u0020relation\u0020is\u0020a\u0020single\u0020result\u0020of\u0020a\u0020larger\u0020one\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-SupportsPartialRelations.html#method_ofMany" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\SupportsPartialRelations\u003A\u003AisOneOfMany\u0028\u0029", + "name": "isOneOfMany", + "summary": "Determine\u0020whether\u0020the\u0020relationship\u0020is\u0020a\u0020one\u002Dof\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-SupportsPartialRelations.html#method_isOneOfMany" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent\\SupportsPartialRelations\u003A\u003AgetOneOfManySubQuery\u0028\u0029", + "name": "getOneOfManySubQuery", + "summary": "Get\u0020the\u0020one\u0020of\u0020many\u0020inner\u0020join\u0020subselect\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Contracts-Database-Eloquent-SupportsPartialRelations.html#method_getOneOfManySubQuery" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Events\\MigrationEvent", + "name": "MigrationEvent", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-Events-MigrationEvent.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\ModelIdentifier", + "name": "ModelIdentifier", + "summary": "", + "url": "classes/Illuminate-Contracts-Database-ModelIdentifier.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\ModelIdentifier\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020model\u0020identifier.", + "url": "classes/Illuminate-Contracts-Database-ModelIdentifier.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\ModelIdentifier\u003A\u003A\u0024class", + "name": "class", + "summary": "The\u0020class\u0020name\u0020of\u0020the\u0020model.", + "url": "classes/Illuminate-Contracts-Database-ModelIdentifier.html#property_class" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\ModelIdentifier\u003A\u003A\u0024id", + "name": "id", + "summary": "The\u0020unique\u0020identifier\u0020of\u0020the\u0020model.", + "url": "classes/Illuminate-Contracts-Database-ModelIdentifier.html#property_id" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\ModelIdentifier\u003A\u003A\u0024relations", + "name": "relations", + "summary": "The\u0020relationships\u0020loaded\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Contracts-Database-ModelIdentifier.html#property_relations" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\ModelIdentifier\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020connection\u0020name\u0020of\u0020the\u0020model.", + "url": "classes/Illuminate-Contracts-Database-ModelIdentifier.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Contracts\\Debug\\ExceptionHandler", + "name": "ExceptionHandler", + "summary": "", + "url": "classes/Illuminate-Contracts-Debug-ExceptionHandler.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Debug\\ExceptionHandler\u003A\u003Areport\u0028\u0029", + "name": "report", + "summary": "Report\u0020or\u0020log\u0020an\u0020exception.", + "url": "classes/Illuminate-Contracts-Debug-ExceptionHandler.html#method_report" + }, { + "fqsen": "\\Illuminate\\Contracts\\Debug\\ExceptionHandler\u003A\u003AshouldReport\u0028\u0029", + "name": "shouldReport", + "summary": "Determine\u0020if\u0020the\u0020exception\u0020should\u0020be\u0020reported.", + "url": "classes/Illuminate-Contracts-Debug-ExceptionHandler.html#method_shouldReport" + }, { + "fqsen": "\\Illuminate\\Contracts\\Debug\\ExceptionHandler\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020an\u0020exception\u0020into\u0020an\u0020HTTP\u0020response.", + "url": "classes/Illuminate-Contracts-Debug-ExceptionHandler.html#method_render" + }, { + "fqsen": "\\Illuminate\\Contracts\\Debug\\ExceptionHandler\u003A\u003ArenderForConsole\u0028\u0029", + "name": "renderForConsole", + "summary": "Render\u0020an\u0020exception\u0020to\u0020the\u0020console.", + "url": "classes/Illuminate-Contracts-Debug-ExceptionHandler.html#method_renderForConsole" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\DecryptException", + "name": "DecryptException", + "summary": "", + "url": "classes/Illuminate-Contracts-Encryption-DecryptException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\Encrypter", + "name": "Encrypter", + "summary": "", + "url": "classes/Illuminate-Contracts-Encryption-Encrypter.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\Encrypter\u003A\u003Aencrypt\u0028\u0029", + "name": "encrypt", + "summary": "Encrypt\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Contracts-Encryption-Encrypter.html#method_encrypt" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\Encrypter\u003A\u003Adecrypt\u0028\u0029", + "name": "decrypt", + "summary": "Decrypt\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Contracts-Encryption-Encrypter.html#method_decrypt" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\EncryptException", + "name": "EncryptException", + "summary": "", + "url": "classes/Illuminate-Contracts-Encryption-EncryptException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\StringEncrypter", + "name": "StringEncrypter", + "summary": "", + "url": "classes/Illuminate-Contracts-Encryption-StringEncrypter.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\StringEncrypter\u003A\u003AencryptString\u0028\u0029", + "name": "encryptString", + "summary": "Encrypt\u0020a\u0020string\u0020without\u0020serialization.", + "url": "classes/Illuminate-Contracts-Encryption-StringEncrypter.html#method_encryptString" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption\\StringEncrypter\u003A\u003AdecryptString\u0028\u0029", + "name": "decryptString", + "summary": "Decrypt\u0020the\u0020given\u0020string\u0020without\u0020unserialization.", + "url": "classes/Illuminate-Contracts-Encryption-StringEncrypter.html#method_decryptString" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher", + "name": "Dispatcher", + "summary": "", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Alisten\u0028\u0029", + "name": "listen", + "summary": "Register\u0020an\u0020event\u0020listener\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_listen" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003AhasListeners\u0028\u0029", + "name": "hasListeners", + "summary": "Determine\u0020if\u0020a\u0020given\u0020event\u0020has\u0020listeners.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_hasListeners" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Asubscribe\u0028\u0029", + "name": "subscribe", + "summary": "Register\u0020an\u0020event\u0020subscriber\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_subscribe" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Auntil\u0028\u0029", + "name": "until", + "summary": "Dispatch\u0020an\u0020event\u0020until\u0020the\u0020first\u0020non\u002Dnull\u0020response\u0020is\u0020returned.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_until" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020an\u0020event\u0020and\u0020call\u0020the\u0020listeners.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Register\u0020an\u0020event\u0020and\u0020payload\u0020to\u0020be\u0020fired\u0020later.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_push" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020a\u0020set\u0020of\u0020pushed\u0020events.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020a\u0020set\u0020of\u0020listeners\u0020from\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events\\Dispatcher\u003A\u003AforgetPushed\u0028\u0029", + "name": "forgetPushed", + "summary": "Forget\u0020all\u0020of\u0020the\u0020queued\u0020listeners.", + "url": "classes/Illuminate-Contracts-Events-Dispatcher.html#method_forgetPushed" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Cloud", + "name": "Cloud", + "summary": "", + "url": "classes/Illuminate-Contracts-Filesystem-Cloud.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Cloud\u003A\u003Aurl\u0028\u0029", + "name": "url", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Filesystem-Cloud.html#method_url" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Filesystem-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Factory\u003A\u003Adisk\u0028\u0029", + "name": "disk", + "summary": "Get\u0020a\u0020filesystem\u0020implementation.", + "url": "classes/Illuminate-Contracts-Filesystem-Factory.html#method_disk" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\FileExistsException", + "name": "FileExistsException", + "summary": "", + "url": "classes/Illuminate-Contracts-Filesystem-FileExistsException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\FileNotFoundException", + "name": "FileNotFoundException", + "summary": "", + "url": "classes/Illuminate-Contracts-Filesystem-FileNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem", + "name": "Filesystem", + "summary": "", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020a\u0020file\u0020exists.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020contents\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AreadStream\u0028\u0029", + "name": "readStream", + "summary": "Get\u0020a\u0020resource\u0020to\u0020read\u0020the\u0020file.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_readStream" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Write\u0020the\u0020contents\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_put" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AwriteStream\u0028\u0029", + "name": "writeStream", + "summary": "Write\u0020a\u0020new\u0020file\u0020using\u0020a\u0020stream.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_writeStream" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AgetVisibility\u0028\u0029", + "name": "getVisibility", + "summary": "Get\u0020the\u0020visibility\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_getVisibility" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AsetVisibility\u0028\u0029", + "name": "setVisibility", + "summary": "Set\u0020the\u0020visibility\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_setVisibility" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Prepend\u0020to\u0020a\u0020file.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Append\u0020to\u0020a\u0020file.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_append" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020file\u0020at\u0020a\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020a\u0020file\u0020to\u0020a\u0020new\u0020location.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_copy" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file\u0020to\u0020a\u0020new\u0020location.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_move" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020file\u0020size\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_size" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AlastModified\u0028\u0029", + "name": "lastModified", + "summary": "Get\u0020the\u0020file\u0027s\u0020last\u0020modification\u0020time.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_lastModified" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020files\u0020in\u0020a\u0020directory.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_files" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AallFiles\u0028\u0029", + "name": "allFiles", + "summary": "Get\u0020all\u0020of\u0020the\u0020files\u0020from\u0020the\u0020given\u0020directory\u0020\u0028recursive\u0029.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_allFiles" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003Adirectories\u0028\u0029", + "name": "directories", + "summary": "Get\u0020all\u0020of\u0020the\u0020directories\u0020within\u0020a\u0020given\u0020directory.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_directories" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AallDirectories\u0028\u0029", + "name": "allDirectories", + "summary": "Get\u0020all\u0020\u0028recursive\u0029\u0020of\u0020the\u0020directories\u0020within\u0020a\u0020given\u0020directory.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_allDirectories" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AmakeDirectory\u0028\u0029", + "name": "makeDirectory", + "summary": "Create\u0020a\u0020directory.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_makeDirectory" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AdeleteDirectory\u0028\u0029", + "name": "deleteDirectory", + "summary": "Recursively\u0020delete\u0020a\u0020directory.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#method_deleteDirectory" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AVISIBILITY_PUBLIC", + "name": "VISIBILITY_PUBLIC", + "summary": "The\u0020public\u0020visibility\u0020setting.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#constant_VISIBILITY_PUBLIC" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\Filesystem\u003A\u003AVISIBILITY_PRIVATE", + "name": "VISIBILITY_PRIVATE", + "summary": "The\u0020private\u0020visibility\u0020setting.", + "url": "classes/Illuminate-Contracts-Filesystem-Filesystem.html#constant_VISIBILITY_PRIVATE" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem\\LockTimeoutException", + "name": "LockTimeoutException", + "summary": "", + "url": "classes/Illuminate-Contracts-Filesystem-LockTimeoutException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application", + "name": "Application", + "summary": "Describes\u0020the\u0020interface\u0020of\u0020a\u0020container\u0020that\u0020exposes\u0020methods\u0020to\u0020read\u0020its\u0020entries.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Aversion\u0028\u0029", + "name": "version", + "summary": "Get\u0020the\u0020version\u0020number\u0020of\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_version" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AbasePath\u0028\u0029", + "name": "basePath", + "summary": "Get\u0020the\u0020base\u0020path\u0020of\u0020the\u0020Laravel\u0020installation.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_basePath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AbootstrapPath\u0028\u0029", + "name": "bootstrapPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020bootstrap\u0020directory.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_bootstrapPath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AconfigPath\u0028\u0029", + "name": "configPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020application\u0020configuration\u0020files.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_configPath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AdatabasePath\u0028\u0029", + "name": "databasePath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020database\u0020directory.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_databasePath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AresourcePath\u0028\u0029", + "name": "resourcePath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020resources\u0020directory.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_resourcePath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AstoragePath\u0028\u0029", + "name": "storagePath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020storage\u0020directory.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_storagePath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Aenvironment\u0028\u0029", + "name": "environment", + "summary": "Get\u0020or\u0020check\u0020the\u0020current\u0020application\u0020environment.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_environment" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003ArunningInConsole\u0028\u0029", + "name": "runningInConsole", + "summary": "Determine\u0020if\u0020the\u0020application\u0020is\u0020running\u0020in\u0020the\u0020console.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_runningInConsole" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003ArunningUnitTests\u0028\u0029", + "name": "runningUnitTests", + "summary": "Determine\u0020if\u0020the\u0020application\u0020is\u0020running\u0020unit\u0020tests.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_runningUnitTests" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AisDownForMaintenance\u0028\u0029", + "name": "isDownForMaintenance", + "summary": "Determine\u0020if\u0020the\u0020application\u0020is\u0020currently\u0020down\u0020for\u0020maintenance.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_isDownForMaintenance" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AregisterConfiguredProviders\u0028\u0029", + "name": "registerConfiguredProviders", + "summary": "Register\u0020all\u0020of\u0020the\u0020configured\u0020providers.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_registerConfiguredProviders" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020a\u0020service\u0020provider\u0020with\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_register" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AregisterDeferredProvider\u0028\u0029", + "name": "registerDeferredProvider", + "summary": "Register\u0020a\u0020deferred\u0020provider\u0020and\u0020service.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_registerDeferredProvider" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AresolveProvider\u0028\u0029", + "name": "resolveProvider", + "summary": "Resolve\u0020a\u0020service\u0020provider\u0020instance\u0020from\u0020the\u0020class\u0020name.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_resolveProvider" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Aboot\u0028\u0029", + "name": "boot", + "summary": "Boot\u0020the\u0020application\u0027s\u0020service\u0020providers.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_boot" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Abooting\u0028\u0029", + "name": "booting", + "summary": "Register\u0020a\u0020new\u0020boot\u0020listener.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_booting" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Abooted\u0028\u0029", + "name": "booted", + "summary": "Register\u0020a\u0020new\u0020\u0022booted\u0022\u0020listener.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_booted" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AbootstrapWith\u0028\u0029", + "name": "bootstrapWith", + "summary": "Run\u0020the\u0020given\u0020array\u0020of\u0020bootstrap\u0020classes.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_bootstrapWith" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Get\u0020the\u0020current\u0020application\u0020locale.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_getLocale" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "Get\u0020the\u0020application\u0020namespace.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_getNamespace" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AgetProviders\u0028\u0029", + "name": "getProviders", + "summary": "Get\u0020the\u0020registered\u0020service\u0020provider\u0020instances\u0020if\u0020any\u0020exist.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_getProviders" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AhasBeenBootstrapped\u0028\u0029", + "name": "hasBeenBootstrapped", + "summary": "Determine\u0020if\u0020the\u0020application\u0020has\u0020been\u0020bootstrapped\u0020before.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_hasBeenBootstrapped" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AloadDeferredProviders\u0028\u0029", + "name": "loadDeferredProviders", + "summary": "Load\u0020and\u0020boot\u0020all\u0020of\u0020the\u0020remaining\u0020deferred\u0020providers.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_loadDeferredProviders" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Set\u0020the\u0020current\u0020application\u0020locale.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_setLocale" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003AshouldSkipMiddleware\u0028\u0029", + "name": "shouldSkipMiddleware", + "summary": "Determine\u0020if\u0020middleware\u0020has\u0020been\u0020disabled\u0020for\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_shouldSkipMiddleware" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\Application\u003A\u003Aterminate\u0028\u0029", + "name": "terminate", + "summary": "Terminate\u0020the\u0020application.", + "url": "classes/Illuminate-Contracts-Foundation-Application.html#method_terminate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesConfiguration", + "name": "CachesConfiguration", + "summary": "", + "url": "classes/Illuminate-Contracts-Foundation-CachesConfiguration.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesConfiguration\u003A\u003AconfigurationIsCached\u0028\u0029", + "name": "configurationIsCached", + "summary": "Determine\u0020if\u0020the\u0020application\u0020configuration\u0020is\u0020cached.", + "url": "classes/Illuminate-Contracts-Foundation-CachesConfiguration.html#method_configurationIsCached" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesConfiguration\u003A\u003AgetCachedConfigPath\u0028\u0029", + "name": "getCachedConfigPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020configuration\u0020cache\u0020file.", + "url": "classes/Illuminate-Contracts-Foundation-CachesConfiguration.html#method_getCachedConfigPath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesConfiguration\u003A\u003AgetCachedServicesPath\u0028\u0029", + "name": "getCachedServicesPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020cached\u0020services.php\u0020file.", + "url": "classes/Illuminate-Contracts-Foundation-CachesConfiguration.html#method_getCachedServicesPath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesRoutes", + "name": "CachesRoutes", + "summary": "", + "url": "classes/Illuminate-Contracts-Foundation-CachesRoutes.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesRoutes\u003A\u003AroutesAreCached\u0028\u0029", + "name": "routesAreCached", + "summary": "Determine\u0020if\u0020the\u0020application\u0020routes\u0020are\u0020cached.", + "url": "classes/Illuminate-Contracts-Foundation-CachesRoutes.html#method_routesAreCached" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation\\CachesRoutes\u003A\u003AgetCachedRoutesPath\u0028\u0029", + "name": "getCachedRoutesPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020routes\u0020cache\u0020file.", + "url": "classes/Illuminate-Contracts-Foundation-CachesRoutes.html#method_getCachedRoutesPath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Hashing\\Hasher", + "name": "Hasher", + "summary": "", + "url": "classes/Illuminate-Contracts-Hashing-Hasher.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Hashing\\Hasher\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Get\u0020information\u0020about\u0020the\u0020given\u0020hashed\u0020value.", + "url": "classes/Illuminate-Contracts-Hashing-Hasher.html#method_info" + }, { + "fqsen": "\\Illuminate\\Contracts\\Hashing\\Hasher\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Hash\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Contracts-Hashing-Hasher.html#method_make" + }, { + "fqsen": "\\Illuminate\\Contracts\\Hashing\\Hasher\u003A\u003Acheck\u0028\u0029", + "name": "check", + "summary": "Check\u0020the\u0020given\u0020plain\u0020value\u0020against\u0020a\u0020hash.", + "url": "classes/Illuminate-Contracts-Hashing-Hasher.html#method_check" + }, { + "fqsen": "\\Illuminate\\Contracts\\Hashing\\Hasher\u003A\u003AneedsRehash\u0028\u0029", + "name": "needsRehash", + "summary": "Check\u0020if\u0020the\u0020given\u0020hash\u0020has\u0020been\u0020hashed\u0020using\u0020the\u0020given\u0020options.", + "url": "classes/Illuminate-Contracts-Hashing-Hasher.html#method_needsRehash" + }, { + "fqsen": "\\Illuminate\\Contracts\\Http\\Kernel", + "name": "Kernel", + "summary": "", + "url": "classes/Illuminate-Contracts-Http-Kernel.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Http\\Kernel\u003A\u003Abootstrap\u0028\u0029", + "name": "bootstrap", + "summary": "Bootstrap\u0020the\u0020application\u0020for\u0020HTTP\u0020requests.", + "url": "classes/Illuminate-Contracts-Http-Kernel.html#method_bootstrap" + }, { + "fqsen": "\\Illuminate\\Contracts\\Http\\Kernel\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Handle\u0020an\u0020incoming\u0020HTTP\u0020request.", + "url": "classes/Illuminate-Contracts-Http-Kernel.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Contracts\\Http\\Kernel\u003A\u003Aterminate\u0028\u0029", + "name": "terminate", + "summary": "Perform\u0020any\u0020final\u0020actions\u0020for\u0020the\u0020request\u0020lifecycle.", + "url": "classes/Illuminate-Contracts-Http-Kernel.html#method_terminate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Http\\Kernel\u003A\u003AgetApplication\u0028\u0029", + "name": "getApplication", + "summary": "Get\u0020the\u0020Laravel\u0020application\u0020instance.", + "url": "classes/Illuminate-Contracts-Http-Kernel.html#method_getApplication" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Mail-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Factory\u003A\u003Amailer\u0028\u0029", + "name": "mailer", + "summary": "Get\u0020a\u0020mailer\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Mail-Factory.html#method_mailer" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable", + "name": "Mailable", + "summary": "", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020the\u0020message\u0020using\u0020the\u0020given\u0020mailer.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_send" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Queue\u0020the\u0020given\u0020message.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Alater\u0028\u0029", + "name": "later", + "summary": "Deliver\u0020the\u0020queued\u0020message\u0020after\u0020the\u0020given\u0020delay.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_later" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Acc\u0028\u0029", + "name": "cc", + "summary": "Set\u0020the\u0020recipients\u0020of\u0020the\u0020message.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_cc" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Abcc\u0028\u0029", + "name": "bcc", + "summary": "Set\u0020the\u0020recipients\u0020of\u0020the\u0020message.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_bcc" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Ato\u0028\u0029", + "name": "to", + "summary": "Set\u0020the\u0020recipients\u0020of\u0020the\u0020message.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_to" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Alocale\u0028\u0029", + "name": "locale", + "summary": "Set\u0020the\u0020locale\u0020of\u0020the\u0020message.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_locale" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailable\u003A\u003Amailer\u0028\u0029", + "name": "mailer", + "summary": "Set\u0020the\u0020name\u0020of\u0020the\u0020mailer\u0020that\u0020should\u0020be\u0020used\u0020to\u0020send\u0020the\u0020message.", + "url": "classes/Illuminate-Contracts-Mail-Mailable.html#method_mailer" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailer", + "name": "Mailer", + "summary": "", + "url": "classes/Illuminate-Contracts-Mail-Mailer.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailer\u003A\u003Ato\u0028\u0029", + "name": "to", + "summary": "Begin\u0020the\u0020process\u0020of\u0020mailing\u0020a\u0020mailable\u0020class\u0020instance.", + "url": "classes/Illuminate-Contracts-Mail-Mailer.html#method_to" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailer\u003A\u003Abcc\u0028\u0029", + "name": "bcc", + "summary": "Begin\u0020the\u0020process\u0020of\u0020mailing\u0020a\u0020mailable\u0020class\u0020instance.", + "url": "classes/Illuminate-Contracts-Mail-Mailer.html#method_bcc" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailer\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Send\u0020a\u0020new\u0020message\u0020with\u0020only\u0020a\u0020raw\u0020text\u0020part.", + "url": "classes/Illuminate-Contracts-Mail-Mailer.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailer\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020a\u0020new\u0020message\u0020using\u0020a\u0020view.", + "url": "classes/Illuminate-Contracts-Mail-Mailer.html#method_send" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\Mailer\u003A\u003Afailures\u0028\u0029", + "name": "failures", + "summary": "Get\u0020the\u0020array\u0020of\u0020failed\u0020recipients.", + "url": "classes/Illuminate-Contracts-Mail-Mailer.html#method_failures" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\MailQueue", + "name": "MailQueue", + "summary": "", + "url": "classes/Illuminate-Contracts-Mail-MailQueue.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\MailQueue\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Queue\u0020a\u0020new\u0020e\u002Dmail\u0020message\u0020for\u0020sending.", + "url": "classes/Illuminate-Contracts-Mail-MailQueue.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail\\MailQueue\u003A\u003Alater\u0028\u0029", + "name": "later", + "summary": "Queue\u0020a\u0020new\u0020e\u002Dmail\u0020message\u0020for\u0020sending\u0020after\u0020\u0028n\u0029\u0020seconds.", + "url": "classes/Illuminate-Contracts-Mail-MailQueue.html#method_later" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Dispatcher", + "name": "Dispatcher", + "summary": "", + "url": "classes/Illuminate-Contracts-Notifications-Dispatcher.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Dispatcher\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020the\u0020given\u0020notification\u0020to\u0020the\u0020given\u0020notifiable\u0020entities.", + "url": "classes/Illuminate-Contracts-Notifications-Dispatcher.html#method_send" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Dispatcher\u003A\u003AsendNow\u0028\u0029", + "name": "sendNow", + "summary": "Send\u0020the\u0020given\u0020notification\u0020immediately.", + "url": "classes/Illuminate-Contracts-Notifications-Dispatcher.html#method_sendNow" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Notifications-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Factory\u003A\u003Achannel\u0028\u0029", + "name": "channel", + "summary": "Get\u0020a\u0020channel\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Notifications-Factory.html#method_channel" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Factory\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020the\u0020given\u0020notification\u0020to\u0020the\u0020given\u0020notifiable\u0020entities.", + "url": "classes/Illuminate-Contracts-Notifications-Factory.html#method_send" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications\\Factory\u003A\u003AsendNow\u0028\u0029", + "name": "sendNow", + "summary": "Send\u0020the\u0020given\u0020notification\u0020immediately.", + "url": "classes/Illuminate-Contracts-Notifications-Factory.html#method_sendNow" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator", + "name": "CursorPaginator", + "summary": "", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Aurl\u0028\u0029", + "name": "url", + "summary": "Get\u0020the\u0020URL\u0020for\u0020a\u0020given\u0020cursor.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_url" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Aappends\u0028\u0029", + "name": "appends", + "summary": "Add\u0020a\u0020set\u0020of\u0020query\u0020string\u0020values\u0020to\u0020the\u0020paginator.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_appends" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Afragment\u0028\u0029", + "name": "fragment", + "summary": "Get\u0020\/\u0020set\u0020the\u0020URL\u0020fragment\u0020to\u0020be\u0020appended\u0020to\u0020URLs.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_fragment" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003ApreviousPageUrl\u0028\u0029", + "name": "previousPageUrl", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020previous\u0020page,\u0020or\u0020null.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_previousPageUrl" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003AnextPageUrl\u0028\u0029", + "name": "nextPageUrl", + "summary": "The\u0020URL\u0020for\u0020the\u0020next\u0020page,\u0020or\u0020null.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_nextPageUrl" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Aitems\u0028\u0029", + "name": "items", + "summary": "Get\u0020all\u0020of\u0020the\u0020items\u0020being\u0020paginated.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_items" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003ApreviousCursor\u0028\u0029", + "name": "previousCursor", + "summary": "Get\u0020the\u0020\u0022cursor\u0022\u0020of\u0020the\u0020previous\u0020set\u0020of\u0020items.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_previousCursor" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003AnextCursor\u0028\u0029", + "name": "nextCursor", + "summary": "Get\u0020the\u0020\u0022cursor\u0022\u0020of\u0020the\u0020next\u0020set\u0020of\u0020items.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_nextCursor" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003AperPage\u0028\u0029", + "name": "perPage", + "summary": "Determine\u0020how\u0020many\u0020items\u0020are\u0020being\u0020shown\u0020per\u0020page.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_perPage" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Get\u0020the\u0020current\u0020cursor\u0020being\u0020paginated.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003AhasPages\u0028\u0029", + "name": "hasPages", + "summary": "Determine\u0020if\u0020there\u0020are\u0020enough\u0020items\u0020to\u0020split\u0020into\u0020multiple\u0020pages.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_hasPages" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Apath\u0028\u0029", + "name": "path", + "summary": "Get\u0020the\u0020base\u0020path\u0020for\u0020paginator\u0020generated\u0020URLs.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_path" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020list\u0020of\u0020items\u0020is\u0020empty\u0020or\u0020not.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020list\u0020of\u0020items\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\CursorPaginator\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020the\u0020paginator\u0020using\u0020a\u0020given\u0020view.", + "url": "classes/Illuminate-Contracts-Pagination-CursorPaginator.html#method_render" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\LengthAwarePaginator", + "name": "LengthAwarePaginator", + "summary": "", + "url": "classes/Illuminate-Contracts-Pagination-LengthAwarePaginator.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\LengthAwarePaginator\u003A\u003AgetUrlRange\u0028\u0029", + "name": "getUrlRange", + "summary": "Create\u0020a\u0020range\u0020of\u0020pagination\u0020URLs.", + "url": "classes/Illuminate-Contracts-Pagination-LengthAwarePaginator.html#method_getUrlRange" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\LengthAwarePaginator\u003A\u003Atotal\u0028\u0029", + "name": "total", + "summary": "Determine\u0020the\u0020total\u0020number\u0020of\u0020items\u0020in\u0020the\u0020data\u0020store.", + "url": "classes/Illuminate-Contracts-Pagination-LengthAwarePaginator.html#method_total" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\LengthAwarePaginator\u003A\u003AlastPage\u0028\u0029", + "name": "lastPage", + "summary": "Get\u0020the\u0020page\u0020number\u0020of\u0020the\u0020last\u0020available\u0020page.", + "url": "classes/Illuminate-Contracts-Pagination-LengthAwarePaginator.html#method_lastPage" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator", + "name": "Paginator", + "summary": "", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003Aurl\u0028\u0029", + "name": "url", + "summary": "Get\u0020the\u0020URL\u0020for\u0020a\u0020given\u0020page.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_url" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003Aappends\u0028\u0029", + "name": "appends", + "summary": "Add\u0020a\u0020set\u0020of\u0020query\u0020string\u0020values\u0020to\u0020the\u0020paginator.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_appends" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003Afragment\u0028\u0029", + "name": "fragment", + "summary": "Get\u0020\/\u0020set\u0020the\u0020URL\u0020fragment\u0020to\u0020be\u0020appended\u0020to\u0020URLs.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_fragment" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AnextPageUrl\u0028\u0029", + "name": "nextPageUrl", + "summary": "The\u0020URL\u0020for\u0020the\u0020next\u0020page,\u0020or\u0020null.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_nextPageUrl" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003ApreviousPageUrl\u0028\u0029", + "name": "previousPageUrl", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020previous\u0020page,\u0020or\u0020null.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_previousPageUrl" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003Aitems\u0028\u0029", + "name": "items", + "summary": "Get\u0020all\u0020of\u0020the\u0020items\u0020being\u0020paginated.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_items" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AfirstItem\u0028\u0029", + "name": "firstItem", + "summary": "Get\u0020the\u0020\u0022index\u0022\u0020of\u0020the\u0020first\u0020item\u0020being\u0020paginated.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_firstItem" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AlastItem\u0028\u0029", + "name": "lastItem", + "summary": "Get\u0020the\u0020\u0022index\u0022\u0020of\u0020the\u0020last\u0020item\u0020being\u0020paginated.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_lastItem" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AperPage\u0028\u0029", + "name": "perPage", + "summary": "Determine\u0020how\u0020many\u0020items\u0020are\u0020being\u0020shown\u0020per\u0020page.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_perPage" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AcurrentPage\u0028\u0029", + "name": "currentPage", + "summary": "Determine\u0020the\u0020current\u0020page\u0020being\u0020paginated.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_currentPage" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AhasPages\u0028\u0029", + "name": "hasPages", + "summary": "Determine\u0020if\u0020there\u0020are\u0020enough\u0020items\u0020to\u0020split\u0020into\u0020multiple\u0020pages.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_hasPages" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AhasMorePages\u0028\u0029", + "name": "hasMorePages", + "summary": "Determine\u0020if\u0020there\u0020are\u0020more\u0020items\u0020in\u0020the\u0020data\u0020store.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_hasMorePages" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003Apath\u0028\u0029", + "name": "path", + "summary": "Get\u0020the\u0020base\u0020path\u0020for\u0020paginator\u0020generated\u0020URLs.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_path" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020list\u0020of\u0020items\u0020is\u0020empty\u0020or\u0020not.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020list\u0020of\u0020items\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination\\Paginator\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020the\u0020paginator\u0020using\u0020a\u0020given\u0020view.", + "url": "classes/Illuminate-Contracts-Pagination-Paginator.html#method_render" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Hub", + "name": "Hub", + "summary": "", + "url": "classes/Illuminate-Contracts-Pipeline-Hub.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Hub\u003A\u003Apipe\u0028\u0029", + "name": "pipe", + "summary": "Send\u0020an\u0020object\u0020through\u0020one\u0020of\u0020the\u0020available\u0020pipelines.", + "url": "classes/Illuminate-Contracts-Pipeline-Hub.html#method_pipe" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Pipeline", + "name": "Pipeline", + "summary": "", + "url": "classes/Illuminate-Contracts-Pipeline-Pipeline.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Pipeline\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Set\u0020the\u0020traveler\u0020object\u0020being\u0020sent\u0020on\u0020the\u0020pipeline.", + "url": "classes/Illuminate-Contracts-Pipeline-Pipeline.html#method_send" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Pipeline\u003A\u003Athrough\u0028\u0029", + "name": "through", + "summary": "Set\u0020the\u0020stops\u0020of\u0020the\u0020pipeline.", + "url": "classes/Illuminate-Contracts-Pipeline-Pipeline.html#method_through" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Pipeline\u003A\u003Avia\u0028\u0029", + "name": "via", + "summary": "Set\u0020the\u0020method\u0020to\u0020call\u0020on\u0020the\u0020stops.", + "url": "classes/Illuminate-Contracts-Pipeline-Pipeline.html#method_via" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline\\Pipeline\u003A\u003Athen\u0028\u0029", + "name": "then", + "summary": "Run\u0020the\u0020pipeline\u0020with\u0020a\u0020final\u0020destination\u0020callback.", + "url": "classes/Illuminate-Contracts-Pipeline-Pipeline.html#method_then" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\ClearableQueue", + "name": "ClearableQueue", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-ClearableQueue.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\ClearableQueue\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Delete\u0020all\u0020of\u0020the\u0020jobs\u0020from\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-ClearableQueue.html#method_clear" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\EntityNotFoundException", + "name": "EntityNotFoundException", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-EntityNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\EntityNotFoundException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020exception\u0020instance.", + "url": "classes/Illuminate-Contracts-Queue-EntityNotFoundException.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\EntityResolver", + "name": "EntityResolver", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-EntityResolver.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\EntityResolver\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020entity\u0020for\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Contracts-Queue-EntityResolver.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Factory\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Resolve\u0020a\u0020queue\u0020connection\u0020instance.", + "url": "classes/Illuminate-Contracts-Queue-Factory.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job", + "name": "Job", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-Job.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Auuid\u0028\u0029", + "name": "uuid", + "summary": "Get\u0020the\u0020UUID\u0020of\u0020the\u0020job.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_uuid" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AgetJobId\u0028\u0029", + "name": "getJobId", + "summary": "Get\u0020the\u0020job\u0020identifier.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_getJobId" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Apayload\u0028\u0029", + "name": "payload", + "summary": "Get\u0020the\u0020decoded\u0020body\u0020of\u0020the\u0020job.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_payload" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Afire\u0028\u0029", + "name": "fire", + "summary": "Fire\u0020the\u0020job.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_fire" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Arelease\u0028\u0029", + "name": "release", + "summary": "Release\u0020the\u0020job\u0020back\u0020into\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_release" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AisReleased\u0028\u0029", + "name": "isReleased", + "summary": "Determine\u0020if\u0020the\u0020job\u0020was\u0020released\u0020back\u0020into\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_isReleased" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020job\u0020from\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AisDeleted\u0028\u0029", + "name": "isDeleted", + "summary": "Determine\u0020if\u0020the\u0020job\u0020has\u0020been\u0020deleted.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_isDeleted" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AisDeletedOrReleased\u0028\u0029", + "name": "isDeletedOrReleased", + "summary": "Determine\u0020if\u0020the\u0020job\u0020has\u0020been\u0020deleted\u0020or\u0020released.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_isDeletedOrReleased" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Aattempts\u0028\u0029", + "name": "attempts", + "summary": "Get\u0020the\u0020number\u0020of\u0020times\u0020the\u0020job\u0020has\u0020been\u0020attempted.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_attempts" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AhasFailed\u0028\u0029", + "name": "hasFailed", + "summary": "Determine\u0020if\u0020the\u0020job\u0020has\u0020been\u0020marked\u0020as\u0020a\u0020failure.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_hasFailed" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AmarkAsFailed\u0028\u0029", + "name": "markAsFailed", + "summary": "Mark\u0020the\u0020job\u0020as\u0020\u0022failed\u0022.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_markAsFailed" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Afail\u0028\u0029", + "name": "fail", + "summary": "Delete\u0020the\u0020job,\u0020call\u0020the\u0020\u0022failed\u0022\u0020method,\u0020and\u0020raise\u0020the\u0020failed\u0020job\u0020event.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_fail" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AmaxTries\u0028\u0029", + "name": "maxTries", + "summary": "Get\u0020the\u0020number\u0020of\u0020times\u0020to\u0020attempt\u0020a\u0020job.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_maxTries" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AmaxExceptions\u0028\u0029", + "name": "maxExceptions", + "summary": "Get\u0020the\u0020maximum\u0020number\u0020of\u0020exceptions\u0020allowed,\u0020regardless\u0020of\u0020attempts.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_maxExceptions" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003Atimeout\u0028\u0029", + "name": "timeout", + "summary": "Get\u0020the\u0020number\u0020of\u0020seconds\u0020the\u0020job\u0020can\u0020run.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_timeout" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AretryUntil\u0028\u0029", + "name": "retryUntil", + "summary": "Get\u0020the\u0020timestamp\u0020indicating\u0020when\u0020the\u0020job\u0020should\u0020timeout.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_retryUntil" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020queued\u0020job\u0020class.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_getName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AresolveName\u0028\u0029", + "name": "resolveName", + "summary": "Get\u0020the\u0020resolved\u0020name\u0020of\u0020the\u0020queued\u0020job\u0020class.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_resolveName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AgetConnectionName\u0028\u0029", + "name": "getConnectionName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020connection\u0020the\u0020job\u0020belongs\u0020to.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_getConnectionName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AgetQueue\u0028\u0029", + "name": "getQueue", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020queue\u0020the\u0020job\u0020belongs\u0020to.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_getQueue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Job\u003A\u003AgetRawBody\u0028\u0029", + "name": "getRawBody", + "summary": "Get\u0020the\u0020raw\u0020body\u0020string\u0020for\u0020the\u0020job.", + "url": "classes/Illuminate-Contracts-Queue-Job.html#method_getRawBody" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Monitor", + "name": "Monitor", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-Monitor.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Monitor\u003A\u003Alooping\u0028\u0029", + "name": "looping", + "summary": "Register\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020on\u0020every\u0020iteration\u0020through\u0020the\u0020queue\u0020loop.", + "url": "classes/Illuminate-Contracts-Queue-Monitor.html#method_looping" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Monitor\u003A\u003Afailing\u0028\u0029", + "name": "failing", + "summary": "Register\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020when\u0020a\u0020job\u0020fails\u0020after\u0020the\u0020maximum\u0020amount\u0020of\u0020retries.", + "url": "classes/Illuminate-Contracts-Queue-Monitor.html#method_failing" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Monitor\u003A\u003Astopping\u0028\u0029", + "name": "stopping", + "summary": "Register\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020when\u0020a\u0020daemon\u0020queue\u0020is\u0020stopping.", + "url": "classes/Illuminate-Contracts-Queue-Monitor.html#method_stopping" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue", + "name": "Queue", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-Queue.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020size\u0020of\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_size" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_push" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003ApushOn\u0028\u0029", + "name": "pushOn", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_pushOn" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003ApushRaw\u0028\u0029", + "name": "pushRaw", + "summary": "Push\u0020a\u0020raw\u0020payload\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_pushRaw" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003Alater\u0028\u0029", + "name": "later", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue\u0020after\u0020a\u0020delay.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_later" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003AlaterOn\u0028\u0029", + "name": "laterOn", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue\u0020after\u0020a\u0020delay.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_laterOn" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003Abulk\u0028\u0029", + "name": "bulk", + "summary": "Push\u0020an\u0020array\u0020of\u0020jobs\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_bulk" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003Apop\u0028\u0029", + "name": "pop", + "summary": "Pop\u0020the\u0020next\u0020job\u0020off\u0020of\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_pop" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003AgetConnectionName\u0028\u0029", + "name": "getConnectionName", + "summary": "Get\u0020the\u0020connection\u0020name\u0020for\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_getConnectionName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\Queue\u003A\u003AsetConnectionName\u0028\u0029", + "name": "setConnectionName", + "summary": "Set\u0020the\u0020connection\u0020name\u0020for\u0020the\u0020queue.", + "url": "classes/Illuminate-Contracts-Queue-Queue.html#method_setConnectionName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableCollection", + "name": "QueueableCollection", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-QueueableCollection.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableCollection\u003A\u003AgetQueueableClass\u0028\u0029", + "name": "getQueueableClass", + "summary": "Get\u0020the\u0020type\u0020of\u0020the\u0020entities\u0020being\u0020queued.", + "url": "classes/Illuminate-Contracts-Queue-QueueableCollection.html#method_getQueueableClass" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableCollection\u003A\u003AgetQueueableIds\u0028\u0029", + "name": "getQueueableIds", + "summary": "Get\u0020the\u0020identifiers\u0020for\u0020all\u0020of\u0020the\u0020entities.", + "url": "classes/Illuminate-Contracts-Queue-QueueableCollection.html#method_getQueueableIds" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableCollection\u003A\u003AgetQueueableRelations\u0028\u0029", + "name": "getQueueableRelations", + "summary": "Get\u0020the\u0020relationships\u0020of\u0020the\u0020entities\u0020being\u0020queued.", + "url": "classes/Illuminate-Contracts-Queue-QueueableCollection.html#method_getQueueableRelations" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableCollection\u003A\u003AgetQueueableConnection\u0028\u0029", + "name": "getQueueableConnection", + "summary": "Get\u0020the\u0020connection\u0020of\u0020the\u0020entities\u0020being\u0020queued.", + "url": "classes/Illuminate-Contracts-Queue-QueueableCollection.html#method_getQueueableConnection" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableEntity", + "name": "QueueableEntity", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-QueueableEntity.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableEntity\u003A\u003AgetQueueableId\u0028\u0029", + "name": "getQueueableId", + "summary": "Get\u0020the\u0020queueable\u0020identity\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Contracts-Queue-QueueableEntity.html#method_getQueueableId" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableEntity\u003A\u003AgetQueueableRelations\u0028\u0029", + "name": "getQueueableRelations", + "summary": "Get\u0020the\u0020relationships\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Contracts-Queue-QueueableEntity.html#method_getQueueableRelations" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\QueueableEntity\u003A\u003AgetQueueableConnection\u0028\u0029", + "name": "getQueueableConnection", + "summary": "Get\u0020the\u0020connection\u0020of\u0020the\u0020entity.", + "url": "classes/Illuminate-Contracts-Queue-QueueableEntity.html#method_getQueueableConnection" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\ShouldBeEncrypted", + "name": "ShouldBeEncrypted", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-ShouldBeEncrypted.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\ShouldBeUnique", + "name": "ShouldBeUnique", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-ShouldBeUnique.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\ShouldBeUniqueUntilProcessing", + "name": "ShouldBeUniqueUntilProcessing", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-ShouldBeUniqueUntilProcessing.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue\\ShouldQueue", + "name": "ShouldQueue", + "summary": "", + "url": "classes/Illuminate-Contracts-Queue-ShouldQueue.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Illuminate-Contracts-Redis-Connection.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connection\u003A\u003Asubscribe\u0028\u0029", + "name": "subscribe", + "summary": "Subscribe\u0020to\u0020a\u0020set\u0020of\u0020given\u0020channels\u0020for\u0020messages.", + "url": "classes/Illuminate-Contracts-Redis-Connection.html#method_subscribe" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connection\u003A\u003Apsubscribe\u0028\u0029", + "name": "psubscribe", + "summary": "Subscribe\u0020to\u0020a\u0020set\u0020of\u0020given\u0020channels\u0020with\u0020wildcards.", + "url": "classes/Illuminate-Contracts-Redis-Connection.html#method_psubscribe" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connection\u003A\u003Acommand\u0028\u0029", + "name": "command", + "summary": "Run\u0020a\u0020command\u0020against\u0020the\u0020Redis\u0020database.", + "url": "classes/Illuminate-Contracts-Redis-Connection.html#method_command" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connector", + "name": "Connector", + "summary": "", + "url": "classes/Illuminate-Contracts-Redis-Connector.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connector\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Create\u0020a\u0020connection\u0020to\u0020a\u0020Redis\u0020cluster.", + "url": "classes/Illuminate-Contracts-Redis-Connector.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Connector\u003A\u003AconnectToCluster\u0028\u0029", + "name": "connectToCluster", + "summary": "Create\u0020a\u0020connection\u0020to\u0020a\u0020Redis\u0020instance.", + "url": "classes/Illuminate-Contracts-Redis-Connector.html#method_connectToCluster" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Redis-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\Factory\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020Redis\u0020connection\u0020by\u0020name.", + "url": "classes/Illuminate-Contracts-Redis-Factory.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis\\LimiterTimeoutException", + "name": "LimiterTimeoutException", + "summary": "", + "url": "classes/Illuminate-Contracts-Redis-LimiterTimeoutException.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\BindingRegistrar", + "name": "BindingRegistrar", + "summary": "", + "url": "classes/Illuminate-Contracts-Routing-BindingRegistrar.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\BindingRegistrar\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Add\u0020a\u0020new\u0020route\u0020parameter\u0020binder.", + "url": "classes/Illuminate-Contracts-Routing-BindingRegistrar.html#method_bind" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\BindingRegistrar\u003A\u003AgetBindingCallback\u0028\u0029", + "name": "getBindingCallback", + "summary": "Get\u0020the\u0020binding\u0020callback\u0020for\u0020a\u0020given\u0020binding.", + "url": "classes/Illuminate-Contracts-Routing-BindingRegistrar.html#method_getBindingCallback" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar", + "name": "Registrar", + "summary": "", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Register\u0020a\u0020new\u0020GET\u0020route\u0020with\u0020the\u0020router.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Apost\u0028\u0029", + "name": "post", + "summary": "Register\u0020a\u0020new\u0020POST\u0020route\u0020with\u0020the\u0020router.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_post" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Register\u0020a\u0020new\u0020PUT\u0020route\u0020with\u0020the\u0020router.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_put" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Register\u0020a\u0020new\u0020DELETE\u0020route\u0020with\u0020the\u0020router.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Apatch\u0028\u0029", + "name": "patch", + "summary": "Register\u0020a\u0020new\u0020PATCH\u0020route\u0020with\u0020the\u0020router.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_patch" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Aoptions\u0028\u0029", + "name": "options", + "summary": "Register\u0020a\u0020new\u0020OPTIONS\u0020route\u0020with\u0020the\u0020router.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_options" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Register\u0020a\u0020new\u0020route\u0020with\u0020the\u0020given\u0020verbs.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_match" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Aresource\u0028\u0029", + "name": "resource", + "summary": "Route\u0020a\u0020resource\u0020to\u0020a\u0020controller.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_resource" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003Agroup\u0028\u0029", + "name": "group", + "summary": "Create\u0020a\u0020route\u0020group\u0020with\u0020shared\u0020attributes.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_group" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003AsubstituteBindings\u0028\u0029", + "name": "substituteBindings", + "summary": "Substitute\u0020the\u0020route\u0020bindings\u0020onto\u0020the\u0020route.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_substituteBindings" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\Registrar\u003A\u003AsubstituteImplicitBindings\u0028\u0029", + "name": "substituteImplicitBindings", + "summary": "Substitute\u0020the\u0020implicit\u0020Eloquent\u0020model\u0020bindings\u0020for\u0020the\u0020route.", + "url": "classes/Illuminate-Contracts-Routing-Registrar.html#method_substituteImplicitBindings" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory", + "name": "ResponseFactory", + "summary": "", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020response\u0020instance.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AnoContent\u0028\u0029", + "name": "noContent", + "summary": "Create\u0020a\u0020new\u0020\u0022no\u0020content\u0022\u0020response.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_noContent" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Aview\u0028\u0029", + "name": "view", + "summary": "Create\u0020a\u0020new\u0020response\u0020for\u0020a\u0020given\u0020view.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_view" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Ajson\u0028\u0029", + "name": "json", + "summary": "Create\u0020a\u0020new\u0020JSON\u0020response\u0020instance.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_json" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Ajsonp\u0028\u0029", + "name": "jsonp", + "summary": "Create\u0020a\u0020new\u0020JSONP\u0020response\u0020instance.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_jsonp" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Astream\u0028\u0029", + "name": "stream", + "summary": "Create\u0020a\u0020new\u0020streamed\u0020response\u0020instance.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_stream" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AstreamDownload\u0028\u0029", + "name": "streamDownload", + "summary": "Create\u0020a\u0020new\u0020streamed\u0020response\u0020instance\u0020as\u0020a\u0020file\u0020download.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_streamDownload" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Adownload\u0028\u0029", + "name": "download", + "summary": "Create\u0020a\u0020new\u0020file\u0020download\u0020response.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_download" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003Afile\u0028\u0029", + "name": "file", + "summary": "Return\u0020the\u0020raw\u0020contents\u0020of\u0020a\u0020binary\u0020file.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_file" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AredirectTo\u0028\u0029", + "name": "redirectTo", + "summary": "Create\u0020a\u0020new\u0020redirect\u0020response\u0020to\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_redirectTo" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AredirectToRoute\u0028\u0029", + "name": "redirectToRoute", + "summary": "Create\u0020a\u0020new\u0020redirect\u0020response\u0020to\u0020a\u0020named\u0020route.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_redirectToRoute" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AredirectToAction\u0028\u0029", + "name": "redirectToAction", + "summary": "Create\u0020a\u0020new\u0020redirect\u0020response\u0020to\u0020a\u0020controller\u0020action.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_redirectToAction" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AredirectGuest\u0028\u0029", + "name": "redirectGuest", + "summary": "Create\u0020a\u0020new\u0020redirect\u0020response,\u0020while\u0020putting\u0020the\u0020current\u0020URL\u0020in\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_redirectGuest" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\ResponseFactory\u003A\u003AredirectToIntended\u0028\u0029", + "name": "redirectToIntended", + "summary": "Create\u0020a\u0020new\u0020redirect\u0020response\u0020to\u0020the\u0020previously\u0020intended\u0020location.", + "url": "classes/Illuminate-Contracts-Routing-ResponseFactory.html#method_redirectToIntended" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator", + "name": "UrlGenerator", + "summary": "", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Acurrent\u0028\u0029", + "name": "current", + "summary": "Get\u0020the\u0020current\u0020URL\u0020for\u0020the\u0020request.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_current" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Aprevious\u0028\u0029", + "name": "previous", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020previous\u0020request.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_previous" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Ato\u0028\u0029", + "name": "to", + "summary": "Generate\u0020an\u0020absolute\u0020URL\u0020to\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_to" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Asecure\u0028\u0029", + "name": "secure", + "summary": "Generate\u0020a\u0020secure,\u0020absolute\u0020URL\u0020to\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_secure" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Aasset\u0028\u0029", + "name": "asset", + "summary": "Generate\u0020the\u0020URL\u0020to\u0020an\u0020application\u0020asset.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_asset" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Aroute\u0028\u0029", + "name": "route", + "summary": "Get\u0020the\u0020URL\u0020to\u0020a\u0020named\u0020route.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_route" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003Aaction\u0028\u0029", + "name": "action", + "summary": "Get\u0020the\u0020URL\u0020to\u0020a\u0020controller\u0020action.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_action" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlGenerator\u003A\u003AsetRootControllerNamespace\u0028\u0029", + "name": "setRootControllerNamespace", + "summary": "Set\u0020the\u0020root\u0020controller\u0020namespace.", + "url": "classes/Illuminate-Contracts-Routing-UrlGenerator.html#method_setRootControllerNamespace" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlRoutable", + "name": "UrlRoutable", + "summary": "", + "url": "classes/Illuminate-Contracts-Routing-UrlRoutable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlRoutable\u003A\u003AgetRouteKey\u0028\u0029", + "name": "getRouteKey", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020route\u0020key.", + "url": "classes/Illuminate-Contracts-Routing-UrlRoutable.html#method_getRouteKey" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlRoutable\u003A\u003AgetRouteKeyName\u0028\u0029", + "name": "getRouteKeyName", + "summary": "Get\u0020the\u0020route\u0020key\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Contracts-Routing-UrlRoutable.html#method_getRouteKeyName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlRoutable\u003A\u003AresolveRouteBinding\u0028\u0029", + "name": "resolveRouteBinding", + "summary": "Retrieve\u0020the\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Contracts-Routing-UrlRoutable.html#method_resolveRouteBinding" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing\\UrlRoutable\u003A\u003AresolveChildRouteBinding\u0028\u0029", + "name": "resolveChildRouteBinding", + "summary": "Retrieve\u0020the\u0020child\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Contracts-Routing-UrlRoutable.html#method_resolveChildRouteBinding" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session", + "name": "Session", + "summary": "", + "url": "classes/Illuminate-Contracts-Session-Session.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_getName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AsetName\u0028\u0029", + "name": "setName", + "summary": "Set\u0020the\u0020name\u0020of\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_setName" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AgetId\u0028\u0029", + "name": "getId", + "summary": "Get\u0020the\u0020current\u0020session\u0020ID.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_getId" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AsetId\u0028\u0029", + "name": "setId", + "summary": "Set\u0020the\u0020session\u0020ID.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_setId" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Start\u0020the\u0020session,\u0020reading\u0020the\u0020data\u0020from\u0020a\u0020handler.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_start" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Save\u0020the\u0020session\u0020data\u0020to\u0020storage.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_save" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020session\u0020data.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_all" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Checks\u0020if\u0020a\u0020key\u0020exists.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020a\u0020key\u0020is\u0020present\u0020and\u0020not\u0020null.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_has" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Apull\u0028\u0029", + "name": "pull", + "summary": "Get\u0020the\u0020value\u0020of\u0020a\u0020given\u0020key\u0020and\u0020then\u0020forget\u0020it.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_pull" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Put\u0020a\u0020key\u0020\/\u0020value\u0020pair\u0020or\u0020array\u0020of\u0020key\u0020\/\u0020value\u0020pairs\u0020in\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_put" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Atoken\u0028\u0029", + "name": "token", + "summary": "Get\u0020the\u0020CSRF\u0020token\u0020value.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_token" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AregenerateToken\u0028\u0029", + "name": "regenerateToken", + "summary": "Regenerate\u0020the\u0020CSRF\u0020token\u0020value.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_regenerateToken" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Remove\u0020an\u0020item\u0020from\u0020the\u0020session,\u0020returning\u0020its\u0020value.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_remove" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020one\u0020or\u0020many\u0020items\u0020from\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Remove\u0020all\u0020of\u0020the\u0020items\u0020from\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Ainvalidate\u0028\u0029", + "name": "invalidate", + "summary": "Flush\u0020the\u0020session\u0020data\u0020and\u0020regenerate\u0020the\u0020ID.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_invalidate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Aregenerate\u0028\u0029", + "name": "regenerate", + "summary": "Generate\u0020a\u0020new\u0020session\u0020identifier.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_regenerate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003Amigrate\u0028\u0029", + "name": "migrate", + "summary": "Generate\u0020a\u0020new\u0020session\u0020ID\u0020for\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_migrate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AisStarted\u0028\u0029", + "name": "isStarted", + "summary": "Determine\u0020if\u0020the\u0020session\u0020has\u0020been\u0020started.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_isStarted" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003ApreviousUrl\u0028\u0029", + "name": "previousUrl", + "summary": "Get\u0020the\u0020previous\u0020URL\u0020from\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_previousUrl" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AsetPreviousUrl\u0028\u0029", + "name": "setPreviousUrl", + "summary": "Set\u0020the\u0020\u0022previous\u0022\u0020URL\u0020in\u0020the\u0020session.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_setPreviousUrl" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AgetHandler\u0028\u0029", + "name": "getHandler", + "summary": "Get\u0020the\u0020session\u0020handler\u0020instance.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_getHandler" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AhandlerNeedsRequest\u0028\u0029", + "name": "handlerNeedsRequest", + "summary": "Determine\u0020if\u0020the\u0020session\u0020handler\u0020needs\u0020a\u0020request.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_handlerNeedsRequest" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session\\Session\u003A\u003AsetRequestOnHandler\u0028\u0029", + "name": "setRequestOnHandler", + "summary": "Set\u0020the\u0020request\u0020on\u0020the\u0020handler\u0020instance.", + "url": "classes/Illuminate-Contracts-Session-Session.html#method_setRequestOnHandler" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Arrayable", + "name": "Arrayable", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-Arrayable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Arrayable\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020the\u0020instance\u0020as\u0020an\u0020array.", + "url": "classes/Illuminate-Contracts-Support-Arrayable.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\CanBeEscapedWhenCastToString", + "name": "CanBeEscapedWhenCastToString", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-CanBeEscapedWhenCastToString.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\CanBeEscapedWhenCastToString\u003A\u003AescapeWhenCastingToString\u0028\u0029", + "name": "escapeWhenCastingToString", + "summary": "Indicate\u0020that\u0020the\u0020object\u0027s\u0020string\u0020representation\u0020should\u0020be\u0020escaped\u0020when\u0020__toString\u0020is\u0020invoked.", + "url": "classes/Illuminate-Contracts-Support-CanBeEscapedWhenCastToString.html#method_escapeWhenCastingToString" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\DeferrableProvider", + "name": "DeferrableProvider", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-DeferrableProvider.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\DeferrableProvider\u003A\u003Aprovides\u0028\u0029", + "name": "provides", + "summary": "Get\u0020the\u0020services\u0020provided\u0020by\u0020the\u0020provider.", + "url": "classes/Illuminate-Contracts-Support-DeferrableProvider.html#method_provides" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\DeferringDisplayableValue", + "name": "DeferringDisplayableValue", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-DeferringDisplayableValue.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\DeferringDisplayableValue\u003A\u003AresolveDisplayableValue\u0028\u0029", + "name": "resolveDisplayableValue", + "summary": "Resolve\u0020the\u0020displayable\u0020value\u0020that\u0020the\u0020class\u0020is\u0020deferring.", + "url": "classes/Illuminate-Contracts-Support-DeferringDisplayableValue.html#method_resolveDisplayableValue" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Htmlable", + "name": "Htmlable", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-Htmlable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Htmlable\u003A\u003AtoHtml\u0028\u0029", + "name": "toHtml", + "summary": "Get\u0020content\u0020as\u0020a\u0020string\u0020of\u0020HTML.", + "url": "classes/Illuminate-Contracts-Support-Htmlable.html#method_toHtml" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Jsonable", + "name": "Jsonable", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-Jsonable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Jsonable\u003A\u003AtoJson\u0028\u0029", + "name": "toJson", + "summary": "Convert\u0020the\u0020object\u0020to\u0020its\u0020JSON\u0020representation.", + "url": "classes/Illuminate-Contracts-Support-Jsonable.html#method_toJson" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag", + "name": "MessageBag", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020the\u0020keys\u0020present\u0020in\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_keys" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020a\u0020message\u0020to\u0020the\u0020bag.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_add" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020a\u0020new\u0020array\u0020of\u0020messages\u0020into\u0020the\u0020bag.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020messages\u0020exist\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_has" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020message\u0020from\u0020the\u0020bag\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_first" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020all\u0020of\u0020the\u0020messages\u0020from\u0020the\u0020bag\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020messages\u0020for\u0020every\u0020key\u0020in\u0020the\u0020bag.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_all" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "Get\u0020the\u0020raw\u0020messages\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_getMessages" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003AgetFormat\u0028\u0029", + "name": "getFormat", + "summary": "Get\u0020the\u0020default\u0020message\u0020format.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_getFormat" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003AsetFormat\u0028\u0029", + "name": "setFormat", + "summary": "Set\u0020the\u0020default\u0020message\u0020format.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_setFormat" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020message\u0020bag\u0020has\u0020any\u0020messages.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageBag\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020message\u0020bag\u0020has\u0020any\u0020messages.", + "url": "classes/Illuminate-Contracts-Support-MessageBag.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageProvider", + "name": "MessageProvider", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-MessageProvider.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\MessageProvider\u003A\u003AgetMessageBag\u0028\u0029", + "name": "getMessageBag", + "summary": "Get\u0020the\u0020messages\u0020for\u0020the\u0020instance.", + "url": "classes/Illuminate-Contracts-Support-MessageProvider.html#method_getMessageBag" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Renderable", + "name": "Renderable", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-Renderable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Renderable\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020object.", + "url": "classes/Illuminate-Contracts-Support-Renderable.html#method_render" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Responsable", + "name": "Responsable", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-Responsable.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\Responsable\u003A\u003AtoResponse\u0028\u0029", + "name": "toResponse", + "summary": "Create\u0020an\u0020HTTP\u0020response\u0020that\u0020represents\u0020the\u0020object.", + "url": "classes/Illuminate-Contracts-Support-Responsable.html#method_toResponse" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support\\ValidatedData", + "name": "ValidatedData", + "summary": "", + "url": "classes/Illuminate-Contracts-Support-ValidatedData.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\HasLocalePreference", + "name": "HasLocalePreference", + "summary": "", + "url": "classes/Illuminate-Contracts-Translation-HasLocalePreference.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\HasLocalePreference\u003A\u003ApreferredLocale\u0028\u0029", + "name": "preferredLocale", + "summary": "Get\u0020the\u0020preferred\u0020locale\u0020of\u0020the\u0020entity.", + "url": "classes/Illuminate-Contracts-Translation-HasLocalePreference.html#method_preferredLocale" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Loader", + "name": "Loader", + "summary": "", + "url": "classes/Illuminate-Contracts-Translation-Loader.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Loader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020messages\u0020for\u0020the\u0020given\u0020locale.", + "url": "classes/Illuminate-Contracts-Translation-Loader.html#method_load" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Loader\u003A\u003AaddNamespace\u0028\u0029", + "name": "addNamespace", + "summary": "Add\u0020a\u0020new\u0020namespace\u0020to\u0020the\u0020loader.", + "url": "classes/Illuminate-Contracts-Translation-Loader.html#method_addNamespace" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Loader\u003A\u003AaddJsonPath\u0028\u0029", + "name": "addJsonPath", + "summary": "Add\u0020a\u0020new\u0020JSON\u0020path\u0020to\u0020the\u0020loader.", + "url": "classes/Illuminate-Contracts-Translation-Loader.html#method_addJsonPath" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Loader\u003A\u003Anamespaces\u0028\u0029", + "name": "namespaces", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020the\u0020registered\u0020namespaces.", + "url": "classes/Illuminate-Contracts-Translation-Loader.html#method_namespaces" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Translator", + "name": "Translator", + "summary": "", + "url": "classes/Illuminate-Contracts-Translation-Translator.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Translator\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020translation\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Contracts-Translation-Translator.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Translator\u003A\u003Achoice\u0028\u0029", + "name": "choice", + "summary": "Get\u0020a\u0020translation\u0020according\u0020to\u0020an\u0020integer\u0020value.", + "url": "classes/Illuminate-Contracts-Translation-Translator.html#method_choice" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Translator\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Get\u0020the\u0020default\u0020locale\u0020being\u0020used.", + "url": "classes/Illuminate-Contracts-Translation-Translator.html#method_getLocale" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation\\Translator\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Set\u0020the\u0020default\u0020locale.", + "url": "classes/Illuminate-Contracts-Translation-Translator.html#method_setLocale" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\DataAwareRule", + "name": "DataAwareRule", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-DataAwareRule.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\DataAwareRule\u003A\u003AsetData\u0028\u0029", + "name": "setData", + "summary": "Set\u0020the\u0020data\u0020under\u0020validation.", + "url": "classes/Illuminate-Contracts-Validation-DataAwareRule.html#method_setData" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Factory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020Validator\u0020instance.", + "url": "classes/Illuminate-Contracts-Validation-Factory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Factory\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Register\u0020a\u0020custom\u0020validator\u0020extension.", + "url": "classes/Illuminate-Contracts-Validation-Factory.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Factory\u003A\u003AextendImplicit\u0028\u0029", + "name": "extendImplicit", + "summary": "Register\u0020a\u0020custom\u0020implicit\u0020validator\u0020extension.", + "url": "classes/Illuminate-Contracts-Validation-Factory.html#method_extendImplicit" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Factory\u003A\u003Areplacer\u0028\u0029", + "name": "replacer", + "summary": "Register\u0020a\u0020custom\u0020implicit\u0020validator\u0020message\u0020replacer.", + "url": "classes/Illuminate-Contracts-Validation-Factory.html#method_replacer" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\ImplicitRule", + "name": "ImplicitRule", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-ImplicitRule.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Rule", + "name": "Rule", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-Rule.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Rule\u003A\u003Apasses\u0028\u0029", + "name": "passes", + "summary": "Determine\u0020if\u0020the\u0020validation\u0020rule\u0020passes.", + "url": "classes/Illuminate-Contracts-Validation-Rule.html#method_passes" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Rule\u003A\u003Amessage\u0028\u0029", + "name": "message", + "summary": "Get\u0020the\u0020validation\u0020error\u0020message.", + "url": "classes/Illuminate-Contracts-Validation-Rule.html#method_message" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\UncompromisedVerifier", + "name": "UncompromisedVerifier", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-UncompromisedVerifier.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\UncompromisedVerifier\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "Verify\u0020that\u0020the\u0020given\u0020data\u0020has\u0020not\u0020been\u0020compromised\u0020in\u0020data\u0020leaks.", + "url": "classes/Illuminate-Contracts-Validation-UncompromisedVerifier.html#method_verify" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\ValidatesWhenResolved", + "name": "ValidatesWhenResolved", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-ValidatesWhenResolved.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\ValidatesWhenResolved\u003A\u003AvalidateResolved\u0028\u0029", + "name": "validateResolved", + "summary": "Validate\u0020the\u0020given\u0020class\u0020instance.", + "url": "classes/Illuminate-Contracts-Validation-ValidatesWhenResolved.html#method_validateResolved" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator", + "name": "Validator", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-Validator.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Run\u0020the\u0020validator\u0027s\u0020rules\u0020against\u0020its\u0020data.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_validate" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Avalidated\u0028\u0029", + "name": "validated", + "summary": "Get\u0020the\u0020attributes\u0020and\u0020values\u0020that\u0020were\u0020validated.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_validated" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Afails\u0028\u0029", + "name": "fails", + "summary": "Determine\u0020if\u0020the\u0020data\u0020fails\u0020the\u0020validation\u0020rules.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_fails" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Afailed\u0028\u0029", + "name": "failed", + "summary": "Get\u0020the\u0020failed\u0020validation\u0020rules.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_failed" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Asometimes\u0028\u0029", + "name": "sometimes", + "summary": "Add\u0020conditions\u0020to\u0020a\u0020given\u0020field\u0020based\u0020on\u0020a\u0020Closure.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_sometimes" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Aafter\u0028\u0029", + "name": "after", + "summary": "Add\u0020an\u0020after\u0020validation\u0020callback.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_after" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\Validator\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Get\u0020all\u0020of\u0020the\u0020validation\u0020error\u0020messages.", + "url": "classes/Illuminate-Contracts-Validation-Validator.html#method_errors" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\ValidatorAwareRule", + "name": "ValidatorAwareRule", + "summary": "", + "url": "classes/Illuminate-Contracts-Validation-ValidatorAwareRule.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation\\ValidatorAwareRule\u003A\u003AsetValidator\u0028\u0029", + "name": "setValidator", + "summary": "Set\u0020the\u0020current\u0020validator.", + "url": "classes/Illuminate-Contracts-Validation-ValidatorAwareRule.html#method_setValidator" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Engine", + "name": "Engine", + "summary": "", + "url": "classes/Illuminate-Contracts-View-Engine.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Engine\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-Contracts-View-Engine.html#method_get" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Contracts-View-Factory.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020a\u0020given\u0020view\u0020exists.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003Afile\u0028\u0029", + "name": "file", + "summary": "Get\u0020the\u0020evaluated\u0020view\u0020contents\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_file" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Get\u0020the\u0020evaluated\u0020view\u0020contents\u0020for\u0020the\u0020given\u0020view.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003Ashare\u0028\u0029", + "name": "share", + "summary": "Add\u0020a\u0020piece\u0020of\u0020shared\u0020data\u0020to\u0020the\u0020environment.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_share" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003Acomposer\u0028\u0029", + "name": "composer", + "summary": "Register\u0020a\u0020view\u0020composer\u0020event.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_composer" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003Acreator\u0028\u0029", + "name": "creator", + "summary": "Register\u0020a\u0020view\u0020creator\u0020event.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_creator" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003AaddNamespace\u0028\u0029", + "name": "addNamespace", + "summary": "Add\u0020a\u0020new\u0020namespace\u0020to\u0020the\u0020loader.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_addNamespace" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\Factory\u003A\u003AreplaceNamespace\u0028\u0029", + "name": "replaceNamespace", + "summary": "Replace\u0020the\u0020namespace\u0020hints\u0020for\u0020the\u0020given\u0020namespace.", + "url": "classes/Illuminate-Contracts-View-Factory.html#method_replaceNamespace" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\View", + "name": "View", + "summary": "", + "url": "classes/Illuminate-Contracts-View-View.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\View\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-Contracts-View-View.html#method_name" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\View\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Add\u0020a\u0020piece\u0020of\u0020data\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-Contracts-View-View.html#method_with" + }, { + "fqsen": "\\Illuminate\\Contracts\\View\\View\u003A\u003AgetData\u0028\u0029", + "name": "getData", + "summary": "Get\u0020the\u0020array\u0020of\u0020view\u0020data.", + "url": "classes/Illuminate-Contracts-View-View.html#method_getData" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager", + "name": "Manager", + "summary": "", + "url": "classes/Illuminate-Database-Capsule-Manager.html" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020capsule\u0020manager.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AsetupDefaultConfiguration\u0028\u0029", + "name": "setupDefaultConfiguration", + "summary": "Setup\u0020the\u0020default\u0020database\u0020configuration\u0020options.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_setupDefaultConfiguration" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AsetupManager\u0028\u0029", + "name": "setupManager", + "summary": "Build\u0020the\u0020database\u0020manager\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_setupManager" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020connection\u0020instance\u0020from\u0020the\u0020global\u0020manager.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003Atable\u0028\u0029", + "name": "table", + "summary": "Get\u0020a\u0020fluent\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_table" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003Aschema\u0028\u0029", + "name": "schema", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_schema" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020a\u0020registered\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AaddConnection\u0028\u0029", + "name": "addConnection", + "summary": "Register\u0020a\u0020connection\u0020with\u0020the\u0020manager.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_addConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AbootEloquent\u0028\u0029", + "name": "bootEloquent", + "summary": "Bootstrap\u0020Eloquent\u0020so\u0020it\u0020is\u0020ready\u0020for\u0020usage.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_bootEloquent" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AsetFetchMode\u0028\u0029", + "name": "setFetchMode", + "summary": "Set\u0020the\u0020fetch\u0020mode\u0020for\u0020the\u0020database\u0020connections.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_setFetchMode" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AgetDatabaseManager\u0028\u0029", + "name": "getDatabaseManager", + "summary": "Get\u0020the\u0020database\u0020manager\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_getDatabaseManager" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AgetEventDispatcher\u0028\u0029", + "name": "getEventDispatcher", + "summary": "Get\u0020the\u0020current\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_getEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003AsetEventDispatcher\u0028\u0029", + "name": "setEventDispatcher", + "summary": "Set\u0020the\u0020event\u0020dispatcher\u0020instance\u0020to\u0020be\u0020used\u0020by\u0020connections.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method_setEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Dynamically\u0020pass\u0020methods\u0020to\u0020the\u0020default\u0020connection.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#method___callStatic" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule\\Manager\u003A\u003A\u0024manager", + "name": "manager", + "summary": "The\u0020database\u0020manager\u0020instance.", + "url": "classes/Illuminate-Database-Capsule-Manager.html#property_manager" + }, { + "fqsen": "\\Illuminate\\Database\\ClassMorphViolationException", + "name": "ClassMorphViolationException", + "summary": "", + "url": "classes/Illuminate-Database-ClassMorphViolationException.html" + }, { + "fqsen": "\\Illuminate\\Database\\ClassMorphViolationException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020exception\u0020instance.", + "url": "classes/Illuminate-Database-ClassMorphViolationException.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\ClassMorphViolationException\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020name\u0020of\u0020the\u0020affected\u0020Eloquent\u0020model.", + "url": "classes/Illuminate-Database-ClassMorphViolationException.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries", + "name": "BuildsQueries", + "summary": "", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Chunk\u0020the\u0020results\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_chunk" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AchunkMap\u0028\u0029", + "name": "chunkMap", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020item\u0020while\u0020chunking.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_chunkMap" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Aeach\u0028\u0029", + "name": "each", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020item\u0020while\u0020chunking.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_each" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AchunkById\u0028\u0029", + "name": "chunkById", + "summary": "Chunk\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020IDs.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_chunkById" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AeachById\u0028\u0029", + "name": "eachById", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020item\u0020while\u0020chunking\u0020by\u0020ID.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_eachById" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Alazy\u0028\u0029", + "name": "lazy", + "summary": "Query\u0020lazily,\u0020by\u0020chunks\u0020of\u0020the\u0020given\u0020size.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_lazy" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AlazyById\u0028\u0029", + "name": "lazyById", + "summary": "Query\u0020lazily,\u0020by\u0020chunking\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020IDs.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_lazyById" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AlazyByIdDesc\u0028\u0029", + "name": "lazyByIdDesc", + "summary": "Query\u0020lazily,\u0020by\u0020chunking\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020IDs\u0020in\u0020descending\u0020order.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_lazyByIdDesc" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AorderedLazyById\u0028\u0029", + "name": "orderedLazyById", + "summary": "Query\u0020lazily,\u0020by\u0020chunking\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020IDs\u0020in\u0020a\u0020given\u0020order.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_orderedLazyById" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_first" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Asole\u0028\u0029", + "name": "sole", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020if\u0020it\u0027s\u0020the\u0020sole\u0020matching\u0020record.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_sole" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003ApaginateUsingCursor\u0028\u0029", + "name": "paginateUsingCursor", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020using\u0020a\u0020cursor\u0020paginator.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_paginateUsingCursor" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AgetOriginalColumnNameForCursorPagination\u0028\u0029", + "name": "getOriginalColumnNameForCursorPagination", + "summary": "Get\u0020the\u0020original\u0020column\u0020name\u0020of\u0020the\u0020given\u0020column,\u0020without\u0020any\u0020aliasing.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_getOriginalColumnNameForCursorPagination" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Apaginator\u0028\u0029", + "name": "paginator", + "summary": "Create\u0020a\u0020new\u0020length\u002Daware\u0020paginator\u0020instance.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_paginator" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AsimplePaginator\u0028\u0029", + "name": "simplePaginator", + "summary": "Create\u0020a\u0020new\u0020simple\u0020paginator\u0020instance.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_simplePaginator" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003AcursorPaginator\u0028\u0029", + "name": "cursorPaginator", + "summary": "Create\u0020a\u0020new\u0020cursor\u0020paginator\u0020instance.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_cursorPaginator" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\BuildsQueries\u003A\u003Atap\u0028\u0029", + "name": "tap", + "summary": "Pass\u0020the\u0020query\u0020to\u0020a\u0020given\u0020callback.", + "url": "classes/Illuminate-Database-Concerns-BuildsQueries.html#method_tap" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ExplainsQueries", + "name": "ExplainsQueries", + "summary": "", + "url": "classes/Illuminate-Database-Concerns-ExplainsQueries.html" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ExplainsQueries\u003A\u003Aexplain\u0028\u0029", + "name": "explain", + "summary": "Explains\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Concerns-ExplainsQueries.html#method_explain" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions", + "name": "ManagesTransactions", + "summary": "", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Execute\u0020a\u0020Closure\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_transaction" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AhandleTransactionException\u0028\u0029", + "name": "handleTransactionException", + "summary": "Handle\u0020an\u0020exception\u0020encountered\u0020when\u0020running\u0020a\u0020transacted\u0020statement.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_handleTransactionException" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Start\u0020a\u0020new\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_beginTransaction" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AcreateTransaction\u0028\u0029", + "name": "createTransaction", + "summary": "Create\u0020a\u0020transaction\u0020within\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_createTransaction" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AcreateSavepoint\u0028\u0029", + "name": "createSavepoint", + "summary": "Create\u0020a\u0020save\u0020point\u0020within\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_createSavepoint" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AhandleBeginTransactionException\u0028\u0029", + "name": "handleBeginTransactionException", + "summary": "Handle\u0020an\u0020exception\u0020from\u0020a\u0020transaction\u0020beginning.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_handleBeginTransactionException" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commit\u0020the\u0020active\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_commit" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AhandleCommitTransactionException\u0028\u0029", + "name": "handleCommitTransactionException", + "summary": "Handle\u0020an\u0020exception\u0020encountered\u0020when\u0020committing\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_handleCommitTransactionException" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rollback\u0020the\u0020active\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_rollBack" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AperformRollBack\u0028\u0029", + "name": "performRollBack", + "summary": "Perform\u0020a\u0020rollback\u0020within\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_performRollBack" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AhandleRollBackException\u0028\u0029", + "name": "handleRollBackException", + "summary": "Handle\u0020an\u0020exception\u0020from\u0020a\u0020rollback.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_handleRollBackException" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AtransactionLevel\u0028\u0029", + "name": "transactionLevel", + "summary": "Get\u0020the\u0020number\u0020of\u0020active\u0020transactions.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_transactionLevel" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns\\ManagesTransactions\u003A\u003AafterCommit\u0028\u0029", + "name": "afterCommit", + "summary": "Execute\u0020the\u0020callback\u0020after\u0020a\u0020transaction\u0020commits.", + "url": "classes/Illuminate-Database-Concerns-ManagesTransactions.html#method_afterCommit" + }, { + "fqsen": "\\Illuminate\\Database\\ConfigurationUrlParser", + "name": "ConfigurationUrlParser", + "summary": "", + "url": "classes/Illuminate-Database-ConfigurationUrlParser.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Illuminate-Database-Connection.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AuseDefaultQueryGrammar\u0028\u0029", + "name": "useDefaultQueryGrammar", + "summary": "Set\u0020the\u0020query\u0020grammar\u0020to\u0020the\u0020default\u0020implementation.", + "url": "classes/Illuminate-Database-Connection.html#method_useDefaultQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDefaultQueryGrammar\u0028\u0029", + "name": "getDefaultQueryGrammar", + "summary": "Get\u0020the\u0020default\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method_getDefaultQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AuseDefaultSchemaGrammar\u0028\u0029", + "name": "useDefaultSchemaGrammar", + "summary": "Set\u0020the\u0020schema\u0020grammar\u0020to\u0020the\u0020default\u0020implementation.", + "url": "classes/Illuminate-Database-Connection.html#method_useDefaultSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDefaultSchemaGrammar\u0028\u0029", + "name": "getDefaultSchemaGrammar", + "summary": "Get\u0020the\u0020default\u0020schema\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method_getDefaultSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AuseDefaultPostProcessor\u0028\u0029", + "name": "useDefaultPostProcessor", + "summary": "Set\u0020the\u0020query\u0020post\u0020processor\u0020to\u0020the\u0020default\u0020implementation.", + "url": "classes/Illuminate-Database-Connection.html#method_useDefaultPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDefaultPostProcessor\u0028\u0029", + "name": "getDefaultPostProcessor", + "summary": "Get\u0020the\u0020default\u0020post\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method_getDefaultPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetSchemaBuilder\u0028\u0029", + "name": "getSchemaBuilder", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getSchemaBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Atable\u0028\u0029", + "name": "table", + "summary": "Begin\u0020a\u0020fluent\u0020query\u0020against\u0020a\u0020database\u0020table.", + "url": "classes/Illuminate-Database-Connection.html#method_table" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Get\u0020a\u0020new\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method_query" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AselectOne\u0028\u0029", + "name": "selectOne", + "summary": "Run\u0020a\u0020select\u0020statement\u0020and\u0020return\u0020a\u0020single\u0020result.", + "url": "classes/Illuminate-Database-Connection.html#method_selectOne" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AselectFromWriteConnection\u0028\u0029", + "name": "selectFromWriteConnection", + "summary": "Run\u0020a\u0020select\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_selectFromWriteConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "Run\u0020a\u0020select\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_select" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Run\u0020a\u0020select\u0020statement\u0020against\u0020the\u0020database\u0020and\u0020returns\u0020a\u0020generator.", + "url": "classes/Illuminate-Database-Connection.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Aprepared\u0028\u0029", + "name": "prepared", + "summary": "Configure\u0020the\u0020PDO\u0020prepared\u0020statement.", + "url": "classes/Illuminate-Database-Connection.html#method_prepared" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetPdoForSelect\u0028\u0029", + "name": "getPdoForSelect", + "summary": "Get\u0020the\u0020PDO\u0020connection\u0020to\u0020use\u0020for\u0020a\u0020select\u0020query.", + "url": "classes/Illuminate-Database-Connection.html#method_getPdoForSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "Run\u0020an\u0020insert\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_insert" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Run\u0020an\u0020update\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_update" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Run\u0020a\u0020delete\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Astatement\u0028\u0029", + "name": "statement", + "summary": "Execute\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020boolean\u0020result.", + "url": "classes/Illuminate-Database-Connection.html#method_statement" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AaffectingStatement\u0028\u0029", + "name": "affectingStatement", + "summary": "Run\u0020an\u0020SQL\u0020statement\u0020and\u0020get\u0020the\u0020number\u0020of\u0020rows\u0020affected.", + "url": "classes/Illuminate-Database-Connection.html#method_affectingStatement" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Aunprepared\u0028\u0029", + "name": "unprepared", + "summary": "Run\u0020a\u0020raw,\u0020unprepared\u0020query\u0020against\u0020the\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_unprepared" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Apretend\u0028\u0029", + "name": "pretend", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020in\u0020\u0022dry\u0020run\u0022\u0020mode.", + "url": "classes/Illuminate-Database-Connection.html#method_pretend" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AwithFreshQueryLog\u0028\u0029", + "name": "withFreshQueryLog", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020in\u0020\u0022dry\u0020run\u0022\u0020mode.", + "url": "classes/Illuminate-Database-Connection.html#method_withFreshQueryLog" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AbindValues\u0028\u0029", + "name": "bindValues", + "summary": "Bind\u0020values\u0020to\u0020their\u0020parameters\u0020in\u0020the\u0020given\u0020statement.", + "url": "classes/Illuminate-Database-Connection.html#method_bindValues" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AprepareBindings\u0028\u0029", + "name": "prepareBindings", + "summary": "Prepare\u0020the\u0020query\u0020bindings\u0020for\u0020execution.", + "url": "classes/Illuminate-Database-Connection.html#method_prepareBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Run\u0020a\u0020SQL\u0020statement\u0020and\u0020log\u0020its\u0020execution\u0020context.", + "url": "classes/Illuminate-Database-Connection.html#method_run" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003ArunQueryCallback\u0028\u0029", + "name": "runQueryCallback", + "summary": "Run\u0020a\u0020SQL\u0020statement.", + "url": "classes/Illuminate-Database-Connection.html#method_runQueryCallback" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AlogQuery\u0028\u0029", + "name": "logQuery", + "summary": "Log\u0020a\u0020query\u0020in\u0020the\u0020connection\u0027s\u0020query\u0020log.", + "url": "classes/Illuminate-Database-Connection.html#method_logQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetElapsedTime\u0028\u0029", + "name": "getElapsedTime", + "summary": "Get\u0020the\u0020elapsed\u0020time\u0020since\u0020a\u0020given\u0020starting\u0020point.", + "url": "classes/Illuminate-Database-Connection.html#method_getElapsedTime" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AhandleQueryException\u0028\u0029", + "name": "handleQueryException", + "summary": "Handle\u0020a\u0020query\u0020exception.", + "url": "classes/Illuminate-Database-Connection.html#method_handleQueryException" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AtryAgainIfCausedByLostConnection\u0028\u0029", + "name": "tryAgainIfCausedByLostConnection", + "summary": "Handle\u0020a\u0020query\u0020exception\u0020that\u0020occurred\u0020during\u0020query\u0020execution.", + "url": "classes/Illuminate-Database-Connection.html#method_tryAgainIfCausedByLostConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Areconnect\u0028\u0029", + "name": "reconnect", + "summary": "Reconnect\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_reconnect" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AreconnectIfMissingConnection\u0028\u0029", + "name": "reconnectIfMissingConnection", + "summary": "Reconnect\u0020to\u0020the\u0020database\u0020if\u0020a\u0020PDO\u0020connection\u0020is\u0020missing.", + "url": "classes/Illuminate-Database-Connection.html#method_reconnectIfMissingConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Adisconnect\u0028\u0029", + "name": "disconnect", + "summary": "Disconnect\u0020from\u0020the\u0020underlying\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_disconnect" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AbeforeExecuting\u0028\u0029", + "name": "beforeExecuting", + "summary": "Register\u0020a\u0020hook\u0020to\u0020be\u0020run\u0020just\u0020before\u0020a\u0020database\u0020query\u0020is\u0020executed.", + "url": "classes/Illuminate-Database-Connection.html#method_beforeExecuting" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Alisten\u0028\u0029", + "name": "listen", + "summary": "Register\u0020a\u0020database\u0020query\u0020listener\u0020with\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_listen" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AfireConnectionEvent\u0028\u0029", + "name": "fireConnectionEvent", + "summary": "Fire\u0020an\u0020event\u0020for\u0020this\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_fireConnectionEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Aevent\u0028\u0029", + "name": "event", + "summary": "Fire\u0020the\u0020given\u0020event\u0020if\u0020possible.", + "url": "classes/Illuminate-Database-Connection.html#method_event" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Get\u0020a\u0020new\u0020raw\u0020query\u0020expression.", + "url": "classes/Illuminate-Database-Connection.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AhasModifiedRecords\u0028\u0029", + "name": "hasModifiedRecords", + "summary": "Determine\u0020if\u0020the\u0020database\u0020connection\u0020has\u0020modified\u0020any\u0020database\u0020records.", + "url": "classes/Illuminate-Database-Connection.html#method_hasModifiedRecords" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003ArecordsHaveBeenModified\u0028\u0029", + "name": "recordsHaveBeenModified", + "summary": "Indicate\u0020if\u0020any\u0020records\u0020have\u0020been\u0020modified.", + "url": "classes/Illuminate-Database-Connection.html#method_recordsHaveBeenModified" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetRecordModificationState\u0028\u0029", + "name": "setRecordModificationState", + "summary": "Set\u0020the\u0020record\u0020modification\u0020state.", + "url": "classes/Illuminate-Database-Connection.html#method_setRecordModificationState" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AforgetRecordModificationState\u0028\u0029", + "name": "forgetRecordModificationState", + "summary": "Reset\u0020the\u0020record\u0020modification\u0020state.", + "url": "classes/Illuminate-Database-Connection.html#method_forgetRecordModificationState" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AuseWriteConnectionWhenReading\u0028\u0029", + "name": "useWriteConnectionWhenReading", + "summary": "Indicate\u0020that\u0020the\u0020connection\u0020should\u0020use\u0020the\u0020write\u0020PDO\u0020connection\u0020for\u0020reads.", + "url": "classes/Illuminate-Database-Connection.html#method_useWriteConnectionWhenReading" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AisDoctrineAvailable\u0028\u0029", + "name": "isDoctrineAvailable", + "summary": "Is\u0020Doctrine\u0020available\u003F", + "url": "classes/Illuminate-Database-Connection.html#method_isDoctrineAvailable" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDoctrineColumn\u0028\u0029", + "name": "getDoctrineColumn", + "summary": "Get\u0020a\u0020Doctrine\u0020Schema\u0020Column\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method_getDoctrineColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDoctrineSchemaManager\u0028\u0029", + "name": "getDoctrineSchemaManager", + "summary": "Get\u0020the\u0020Doctrine\u0020DBAL\u0020schema\u0020manager\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getDoctrineSchemaManager" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDoctrineConnection\u0028\u0029", + "name": "getDoctrineConnection", + "summary": "Get\u0020the\u0020Doctrine\u0020DBAL\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#method_getDoctrineConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AregisterDoctrineType\u0028\u0029", + "name": "registerDoctrineType", + "summary": "Register\u0020a\u0020custom\u0020Doctrine\u0020mapping\u0020type.", + "url": "classes/Illuminate-Database-Connection.html#method_registerDoctrineType" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetPdo\u0028\u0029", + "name": "getPdo", + "summary": "Get\u0020the\u0020current\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetRawPdo\u0028\u0029", + "name": "getRawPdo", + "summary": "Get\u0020the\u0020current\u0020PDO\u0020connection\u0020parameter\u0020without\u0020executing\u0020any\u0020reconnect\u0020logic.", + "url": "classes/Illuminate-Database-Connection.html#method_getRawPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetReadPdo\u0028\u0029", + "name": "getReadPdo", + "summary": "Get\u0020the\u0020current\u0020PDO\u0020connection\u0020used\u0020for\u0020reading.", + "url": "classes/Illuminate-Database-Connection.html#method_getReadPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetRawReadPdo\u0028\u0029", + "name": "getRawReadPdo", + "summary": "Get\u0020the\u0020current\u0020read\u0020PDO\u0020connection\u0020parameter\u0020without\u0020executing\u0020any\u0020reconnect\u0020logic.", + "url": "classes/Illuminate-Database-Connection.html#method_getRawReadPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetPdo\u0028\u0029", + "name": "setPdo", + "summary": "Set\u0020the\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetReadPdo\u0028\u0029", + "name": "setReadPdo", + "summary": "Set\u0020the\u0020PDO\u0020connection\u0020used\u0020for\u0020reading.", + "url": "classes/Illuminate-Database-Connection.html#method_setReadPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetReconnector\u0028\u0029", + "name": "setReconnector", + "summary": "Set\u0020the\u0020reconnect\u0020instance\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setReconnector" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020the\u0020database\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Connection.html#method_getName" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetNameWithReadWriteType\u0028\u0029", + "name": "getNameWithReadWriteType", + "summary": "Get\u0020the\u0020database\u0020connection\u0020full\u0020name.", + "url": "classes/Illuminate-Database-Connection.html#method_getNameWithReadWriteType" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetConfig\u0028\u0029", + "name": "getConfig", + "summary": "Get\u0020an\u0020option\u0020from\u0020the\u0020configuration\u0020options.", + "url": "classes/Illuminate-Database-Connection.html#method_getConfig" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDriverName\u0028\u0029", + "name": "getDriverName", + "summary": "Get\u0020the\u0020PDO\u0020driver\u0020name.", + "url": "classes/Illuminate-Database-Connection.html#method_getDriverName" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetQueryGrammar\u0028\u0029", + "name": "getQueryGrammar", + "summary": "Get\u0020the\u0020query\u0020grammar\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetQueryGrammar\u0028\u0029", + "name": "setQueryGrammar", + "summary": "Set\u0020the\u0020query\u0020grammar\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetSchemaGrammar\u0028\u0029", + "name": "getSchemaGrammar", + "summary": "Get\u0020the\u0020schema\u0020grammar\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetSchemaGrammar\u0028\u0029", + "name": "setSchemaGrammar", + "summary": "Set\u0020the\u0020schema\u0020grammar\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetPostProcessor\u0028\u0029", + "name": "getPostProcessor", + "summary": "Get\u0020the\u0020query\u0020post\u0020processor\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetPostProcessor\u0028\u0029", + "name": "setPostProcessor", + "summary": "Set\u0020the\u0020query\u0020post\u0020processor\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetEventDispatcher\u0028\u0029", + "name": "getEventDispatcher", + "summary": "Get\u0020the\u0020event\u0020dispatcher\u0020used\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetEventDispatcher\u0028\u0029", + "name": "setEventDispatcher", + "summary": "Set\u0020the\u0020event\u0020dispatcher\u0020instance\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AunsetEventDispatcher\u0028\u0029", + "name": "unsetEventDispatcher", + "summary": "Unset\u0020the\u0020event\u0020dispatcher\u0020for\u0020this\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_unsetEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetTransactionManager\u0028\u0029", + "name": "setTransactionManager", + "summary": "Set\u0020the\u0020transaction\u0020manager\u0020instance\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setTransactionManager" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AunsetTransactionManager\u0028\u0029", + "name": "unsetTransactionManager", + "summary": "Unset\u0020the\u0020transaction\u0020manager\u0020for\u0020this\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_unsetTransactionManager" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024pretending", + "name": "pretending", + "summary": "Indicates\u0020if\u0020the\u0020connection\u0020is\u0020in\u0020a\u0020\u0022dry\u0020run\u0022.", + "url": "classes/Illuminate-Database-Connection.html#property_pretending" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetQueryLog\u0028\u0029", + "name": "getQueryLog", + "summary": "Get\u0020the\u0020connection\u0020query\u0020log.", + "url": "classes/Illuminate-Database-Connection.html#method_getQueryLog" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AflushQueryLog\u0028\u0029", + "name": "flushQueryLog", + "summary": "Clear\u0020the\u0020query\u0020log.", + "url": "classes/Illuminate-Database-Connection.html#method_flushQueryLog" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AenableQueryLog\u0028\u0029", + "name": "enableQueryLog", + "summary": "Enable\u0020the\u0020query\u0020log\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_enableQueryLog" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AdisableQueryLog\u0028\u0029", + "name": "disableQueryLog", + "summary": "Disable\u0020the\u0020query\u0020log\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_disableQueryLog" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003Alogging\u0028\u0029", + "name": "logging", + "summary": "Determine\u0020whether\u0020we\u0027re\u0020logging\u0020queries.", + "url": "classes/Illuminate-Database-Connection.html#method_logging" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetDatabaseName\u0028\u0029", + "name": "getDatabaseName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020connected\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_getDatabaseName" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetDatabaseName\u0028\u0029", + "name": "setDatabaseName", + "summary": "Set\u0020the\u0020name\u0020of\u0020the\u0020connected\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#method_setDatabaseName" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetReadWriteType\u0028\u0029", + "name": "setReadWriteType", + "summary": "Set\u0020the\u0020read\u0020\/\u0020write\u0020type\u0020of\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setReadWriteType" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetTablePrefix\u0028\u0029", + "name": "getTablePrefix", + "summary": "Get\u0020the\u0020table\u0020prefix\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_getTablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AsetTablePrefix\u0028\u0029", + "name": "setTablePrefix", + "summary": "Set\u0020the\u0020table\u0020prefix\u0020in\u0020use\u0020by\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#method_setTablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AwithTablePrefix\u0028\u0029", + "name": "withTablePrefix", + "summary": "Set\u0020the\u0020table\u0020prefix\u0020and\u0020return\u0020the\u0020grammar.", + "url": "classes/Illuminate-Database-Connection.html#method_withTablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AresolverFor\u0028\u0029", + "name": "resolverFor", + "summary": "Register\u0020a\u0020connection\u0020resolver.", + "url": "classes/Illuminate-Database-Connection.html#method_resolverFor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003AgetResolver\u0028\u0029", + "name": "getResolver", + "summary": "Get\u0020the\u0020connection\u0020resolver\u0020for\u0020the\u0020given\u0020driver.", + "url": "classes/Illuminate-Database-Connection.html#method_getResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024pdo", + "name": "pdo", + "summary": "The\u0020active\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_pdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024readPdo", + "name": "readPdo", + "summary": "The\u0020active\u0020PDO\u0020connection\u0020used\u0020for\u0020reads.", + "url": "classes/Illuminate-Database-Connection.html#property_readPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024database", + "name": "database", + "summary": "The\u0020name\u0020of\u0020the\u0020connected\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#property_database" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024readWriteType", + "name": "readWriteType", + "summary": "The\u0020type\u0020of\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_readWriteType" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024tablePrefix", + "name": "tablePrefix", + "summary": "The\u0020table\u0020prefix\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_tablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024config", + "name": "config", + "summary": "The\u0020database\u0020connection\u0020configuration\u0020options.", + "url": "classes/Illuminate-Database-Connection.html#property_config" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024reconnector", + "name": "reconnector", + "summary": "The\u0020reconnector\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_reconnector" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024queryGrammar", + "name": "queryGrammar", + "summary": "The\u0020query\u0020grammar\u0020implementation.", + "url": "classes/Illuminate-Database-Connection.html#property_queryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024schemaGrammar", + "name": "schemaGrammar", + "summary": "The\u0020schema\u0020grammar\u0020implementation.", + "url": "classes/Illuminate-Database-Connection.html#property_schemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024postProcessor", + "name": "postProcessor", + "summary": "The\u0020query\u0020post\u0020processor\u0020implementation.", + "url": "classes/Illuminate-Database-Connection.html#property_postProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024events", + "name": "events", + "summary": "The\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#property_events" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024fetchMode", + "name": "fetchMode", + "summary": "The\u0020default\u0020fetch\u0020mode\u0020of\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_fetchMode" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024transactions", + "name": "transactions", + "summary": "The\u0020number\u0020of\u0020active\u0020transactions.", + "url": "classes/Illuminate-Database-Connection.html#property_transactions" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024transactionsManager", + "name": "transactionsManager", + "summary": "The\u0020transaction\u0020manager\u0020instance.", + "url": "classes/Illuminate-Database-Connection.html#property_transactionsManager" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024recordsModified", + "name": "recordsModified", + "summary": "Indicates\u0020if\u0020changes\u0020have\u0020been\u0020made\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Connection.html#property_recordsModified" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024readOnWriteConnection", + "name": "readOnWriteConnection", + "summary": "Indicates\u0020if\u0020the\u0020connection\u0020should\u0020use\u0020the\u0020\u0022write\u0022\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_readOnWriteConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024queryLog", + "name": "queryLog", + "summary": "All\u0020of\u0020the\u0020queries\u0020run\u0020against\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_queryLog" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024loggingQueries", + "name": "loggingQueries", + "summary": "Indicates\u0020whether\u0020queries\u0020are\u0020being\u0020logged.", + "url": "classes/Illuminate-Database-Connection.html#property_loggingQueries" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024beforeExecutingCallbacks", + "name": "beforeExecutingCallbacks", + "summary": "All\u0020of\u0020the\u0020callbacks\u0020that\u0020should\u0020be\u0020invoked\u0020before\u0020a\u0020query\u0020is\u0020executed.", + "url": "classes/Illuminate-Database-Connection.html#property_beforeExecutingCallbacks" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024doctrineConnection", + "name": "doctrineConnection", + "summary": "The\u0020instance\u0020of\u0020Doctrine\u0020connection.", + "url": "classes/Illuminate-Database-Connection.html#property_doctrineConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024doctrineTypeMappings", + "name": "doctrineTypeMappings", + "summary": "Type\u0020mappings\u0020that\u0020should\u0020be\u0020registered\u0020with\u0020new\u0020Doctrine\u0020connections.", + "url": "classes/Illuminate-Database-Connection.html#property_doctrineTypeMappings" + }, { + "fqsen": "\\Illuminate\\Database\\Connection\u003A\u003A\u0024resolvers", + "name": "resolvers", + "summary": "The\u0020connection\u0020resolvers.", + "url": "classes/Illuminate-Database-Connection.html#property_resolvers" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface", + "name": "ConnectionInterface", + "summary": "", + "url": "classes/Illuminate-Database-ConnectionInterface.html" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Atable\u0028\u0029", + "name": "table", + "summary": "Begin\u0020a\u0020fluent\u0020query\u0020against\u0020a\u0020database\u0020table.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_table" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Get\u0020a\u0020new\u0020raw\u0020query\u0020expression.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003AselectOne\u0028\u0029", + "name": "selectOne", + "summary": "Run\u0020a\u0020select\u0020statement\u0020and\u0020return\u0020a\u0020single\u0020result.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_selectOne" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "Run\u0020a\u0020select\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_select" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Run\u0020a\u0020select\u0020statement\u0020against\u0020the\u0020database\u0020and\u0020returns\u0020a\u0020generator.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "Run\u0020an\u0020insert\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_insert" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Run\u0020an\u0020update\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_update" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Run\u0020a\u0020delete\u0020statement\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Astatement\u0028\u0029", + "name": "statement", + "summary": "Execute\u0020an\u0020SQL\u0020statement\u0020and\u0020return\u0020the\u0020boolean\u0020result.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_statement" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003AaffectingStatement\u0028\u0029", + "name": "affectingStatement", + "summary": "Run\u0020an\u0020SQL\u0020statement\u0020and\u0020get\u0020the\u0020number\u0020of\u0020rows\u0020affected.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_affectingStatement" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Aunprepared\u0028\u0029", + "name": "unprepared", + "summary": "Run\u0020a\u0020raw,\u0020unprepared\u0020query\u0020against\u0020the\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_unprepared" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003AprepareBindings\u0028\u0029", + "name": "prepareBindings", + "summary": "Prepare\u0020the\u0020query\u0020bindings\u0020for\u0020execution.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_prepareBindings" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Execute\u0020a\u0020Closure\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_transaction" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Start\u0020a\u0020new\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_beginTransaction" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commit\u0020the\u0020active\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_commit" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rollback\u0020the\u0020active\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_rollBack" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003AtransactionLevel\u0028\u0029", + "name": "transactionLevel", + "summary": "Get\u0020the\u0020number\u0020of\u0020active\u0020transactions.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_transactionLevel" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003Apretend\u0028\u0029", + "name": "pretend", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020in\u0020\u0022dry\u0020run\u0022\u0020mode.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_pretend" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionInterface\u003A\u003AgetDatabaseName\u0028\u0029", + "name": "getDatabaseName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020connected\u0020database.", + "url": "classes/Illuminate-Database-ConnectionInterface.html#method_getDatabaseName" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver", + "name": "ConnectionResolver", + "summary": "", + "url": "classes/Illuminate-Database-ConnectionResolver.html" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003AaddConnection\u0028\u0029", + "name": "addConnection", + "summary": "Add\u0020a\u0020connection\u0020to\u0020the\u0020resolver.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#method_addConnection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003AhasConnection\u0028\u0029", + "name": "hasConnection", + "summary": "Check\u0020if\u0020a\u0020connection\u0020has\u0020been\u0020registered.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#method_hasConnection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003AgetDefaultConnection\u0028\u0029", + "name": "getDefaultConnection", + "summary": "Get\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#method_getDefaultConnection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003AsetDefaultConnection\u0028\u0029", + "name": "setDefaultConnection", + "summary": "Set\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#method_setDefaultConnection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003A\u0024connections", + "name": "connections", + "summary": "All\u0020of\u0020the\u0020registered\u0020connections.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#property_connections" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolver\u003A\u003A\u0024default", + "name": "default", + "summary": "The\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-ConnectionResolver.html#property_default" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolverInterface", + "name": "ConnectionResolverInterface", + "summary": "", + "url": "classes/Illuminate-Database-ConnectionResolverInterface.html" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolverInterface\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-ConnectionResolverInterface.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolverInterface\u003A\u003AgetDefaultConnection\u0028\u0029", + "name": "getDefaultConnection", + "summary": "Get\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-ConnectionResolverInterface.html#method_getDefaultConnection" + }, { + "fqsen": "\\Illuminate\\Database\\ConnectionResolverInterface\u003A\u003AsetDefaultConnection\u0028\u0029", + "name": "setDefaultConnection", + "summary": "Set\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-ConnectionResolverInterface.html#method_setDefaultConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory", + "name": "ConnectionFactory", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020connection\u0020factory\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Establish\u0020a\u0020PDO\u0020connection\u0020based\u0020on\u0020the\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AparseConfig\u0028\u0029", + "name": "parseConfig", + "summary": "Parse\u0020and\u0020prepare\u0020the\u0020database\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_parseConfig" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreateSingleConnection\u0028\u0029", + "name": "createSingleConnection", + "summary": "Create\u0020a\u0020single\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createSingleConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreateReadWriteConnection\u0028\u0029", + "name": "createReadWriteConnection", + "summary": "Create\u0020a\u0020read\u0020\/\u0020write\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createReadWriteConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreateReadPdo\u0028\u0029", + "name": "createReadPdo", + "summary": "Create\u0020a\u0020new\u0020PDO\u0020instance\u0020for\u0020reading.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createReadPdo" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AgetReadConfig\u0028\u0029", + "name": "getReadConfig", + "summary": "Get\u0020the\u0020read\u0020configuration\u0020for\u0020a\u0020read\u0020\/\u0020write\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_getReadConfig" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AgetWriteConfig\u0028\u0029", + "name": "getWriteConfig", + "summary": "Get\u0020the\u0020write\u0020configuration\u0020for\u0020a\u0020read\u0020\/\u0020write\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_getWriteConfig" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AgetReadWriteConfig\u0028\u0029", + "name": "getReadWriteConfig", + "summary": "Get\u0020a\u0020read\u0020\/\u0020write\u0020level\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_getReadWriteConfig" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AmergeReadWriteConfig\u0028\u0029", + "name": "mergeReadWriteConfig", + "summary": "Merge\u0020a\u0020configuration\u0020for\u0020a\u0020read\u0020\/\u0020write\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_mergeReadWriteConfig" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreatePdoResolver\u0028\u0029", + "name": "createPdoResolver", + "summary": "Create\u0020a\u0020new\u0020Closure\u0020that\u0020resolves\u0020to\u0020a\u0020PDO\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createPdoResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreatePdoResolverWithHosts\u0028\u0029", + "name": "createPdoResolverWithHosts", + "summary": "Create\u0020a\u0020new\u0020Closure\u0020that\u0020resolves\u0020to\u0020a\u0020PDO\u0020instance\u0020with\u0020a\u0020specific\u0020host\u0020or\u0020an\u0020array\u0020of\u0020hosts.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createPdoResolverWithHosts" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AparseHosts\u0028\u0029", + "name": "parseHosts", + "summary": "Parse\u0020the\u0020hosts\u0020configuration\u0020item\u0020into\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_parseHosts" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreatePdoResolverWithoutHosts\u0028\u0029", + "name": "createPdoResolverWithoutHosts", + "summary": "Create\u0020a\u0020new\u0020Closure\u0020that\u0020resolves\u0020to\u0020a\u0020PDO\u0020instance\u0020where\u0020there\u0020is\u0020no\u0020configured\u0020host.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createPdoResolverWithoutHosts" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreateConnector\u0028\u0029", + "name": "createConnector", + "summary": "Create\u0020a\u0020connector\u0020instance\u0020based\u0020on\u0020the\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createConnector" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003AcreateConnection\u0028\u0029", + "name": "createConnection", + "summary": "Create\u0020a\u0020new\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#method_createConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectionFactory\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-ConnectionFactory.html#property_container" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector", + "name": "Connector", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-Connector.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AcreateConnection\u0028\u0029", + "name": "createConnection", + "summary": "Create\u0020a\u0020new\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_createConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AcreatePdoConnection\u0028\u0029", + "name": "createPdoConnection", + "summary": "Create\u0020a\u0020new\u0020PDO\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_createPdoConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AisPersistentConnection\u0028\u0029", + "name": "isPersistentConnection", + "summary": "Determine\u0020if\u0020the\u0020connection\u0020is\u0020persistent.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_isPersistentConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AtryAgainIfCausedByLostConnection\u0028\u0029", + "name": "tryAgainIfCausedByLostConnection", + "summary": "Handle\u0020an\u0020exception\u0020that\u0020occurred\u0020during\u0020connect\u0020execution.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_tryAgainIfCausedByLostConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020PDO\u0020options\u0020based\u0020on\u0020the\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AgetDefaultOptions\u0028\u0029", + "name": "getDefaultOptions", + "summary": "Get\u0020the\u0020default\u0020PDO\u0020connection\u0020options.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_getDefaultOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003AsetDefaultOptions\u0028\u0029", + "name": "setDefaultOptions", + "summary": "Set\u0020the\u0020default\u0020PDO\u0020connection\u0020options.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#method_setDefaultOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\Connector\u003A\u003A\u0024options", + "name": "options", + "summary": "The\u0020default\u0020PDO\u0020connection\u0020options.", + "url": "classes/Illuminate-Database-Connectors-Connector.html#property_options" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectorInterface", + "name": "ConnectorInterface", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-ConnectorInterface.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\ConnectorInterface\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Establish\u0020a\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-ConnectorInterface.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector", + "name": "MySqlConnector", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Establish\u0020a\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AconfigureIsolationLevel\u0028\u0029", + "name": "configureIsolationLevel", + "summary": "Set\u0020the\u0020connection\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_configureIsolationLevel" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AconfigureEncoding\u0028\u0029", + "name": "configureEncoding", + "summary": "Set\u0020the\u0020connection\u0020character\u0020set\u0020and\u0020collation.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_configureEncoding" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AgetCollation\u0028\u0029", + "name": "getCollation", + "summary": "Get\u0020the\u0020collation\u0020for\u0020the\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_getCollation" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AconfigureTimezone\u0028\u0029", + "name": "configureTimezone", + "summary": "Set\u0020the\u0020timezone\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_configureTimezone" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AgetDsn\u0028\u0029", + "name": "getDsn", + "summary": "Create\u0020a\u0020DSN\u0020string\u0020from\u0020a\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_getDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AhasSocket\u0028\u0029", + "name": "hasSocket", + "summary": "Determine\u0020if\u0020the\u0020given\u0020configuration\u0020array\u0020has\u0020a\u0020UNIX\u0020socket\u0020value.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_hasSocket" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AgetSocketDsn\u0028\u0029", + "name": "getSocketDsn", + "summary": "Get\u0020the\u0020DSN\u0020string\u0020for\u0020a\u0020socket\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_getSocketDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AgetHostDsn\u0028\u0029", + "name": "getHostDsn", + "summary": "Get\u0020the\u0020DSN\u0020string\u0020for\u0020a\u0020host\u0020\/\u0020port\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_getHostDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AsetModes\u0028\u0029", + "name": "setModes", + "summary": "Set\u0020the\u0020modes\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_setModes" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AsetCustomModes\u0028\u0029", + "name": "setCustomModes", + "summary": "Set\u0020the\u0020custom\u0020modes\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_setCustomModes" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\MySqlConnector\u003A\u003AstrictMode\u0028\u0029", + "name": "strictMode", + "summary": "Get\u0020the\u0020query\u0020to\u0020enable\u0020strict\u0020mode.", + "url": "classes/Illuminate-Database-Connectors-MySqlConnector.html#method_strictMode" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector", + "name": "PostgresConnector", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Establish\u0020a\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AconfigureIsolationLevel\u0028\u0029", + "name": "configureIsolationLevel", + "summary": "Set\u0020the\u0020connection\u0020transaction\u0020isolation\u0020level.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_configureIsolationLevel" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AconfigureEncoding\u0028\u0029", + "name": "configureEncoding", + "summary": "Set\u0020the\u0020connection\u0020character\u0020set\u0020and\u0020collation.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_configureEncoding" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AconfigureTimezone\u0028\u0029", + "name": "configureTimezone", + "summary": "Set\u0020the\u0020timezone\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_configureTimezone" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AconfigureSchema\u0028\u0029", + "name": "configureSchema", + "summary": "Set\u0020the\u0020schema\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_configureSchema" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AformatSchema\u0028\u0029", + "name": "formatSchema", + "summary": "Format\u0020the\u0020schema\u0020for\u0020the\u0020DSN.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_formatSchema" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AconfigureApplicationName\u0028\u0029", + "name": "configureApplicationName", + "summary": "Set\u0020the\u0020schema\u0020on\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_configureApplicationName" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AgetDsn\u0028\u0029", + "name": "getDsn", + "summary": "Create\u0020a\u0020DSN\u0020string\u0020from\u0020a\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_getDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AaddSslOptions\u0028\u0029", + "name": "addSslOptions", + "summary": "Add\u0020the\u0020SSL\u0020options\u0020to\u0020the\u0020DSN.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_addSslOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003AconfigureSynchronousCommit\u0028\u0029", + "name": "configureSynchronousCommit", + "summary": "Configure\u0020the\u0020synchronous_commit\u0020setting.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#method_configureSynchronousCommit" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\PostgresConnector\u003A\u003A\u0024options", + "name": "options", + "summary": "The\u0020default\u0020PDO\u0020connection\u0020options.", + "url": "classes/Illuminate-Database-Connectors-PostgresConnector.html#property_options" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SQLiteConnector", + "name": "SQLiteConnector", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-SQLiteConnector.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SQLiteConnector\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Establish\u0020a\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-SQLiteConnector.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector", + "name": "SqlServerConnector", + "summary": "", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Establish\u0020a\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AgetDsn\u0028\u0029", + "name": "getDsn", + "summary": "Create\u0020a\u0020DSN\u0020string\u0020from\u0020a\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_getDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AprefersOdbc\u0028\u0029", + "name": "prefersOdbc", + "summary": "Determine\u0020if\u0020the\u0020database\u0020configuration\u0020prefers\u0020ODBC.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_prefersOdbc" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AgetDblibDsn\u0028\u0029", + "name": "getDblibDsn", + "summary": "Get\u0020the\u0020DSN\u0020string\u0020for\u0020a\u0020DbLib\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_getDblibDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AgetOdbcDsn\u0028\u0029", + "name": "getOdbcDsn", + "summary": "Get\u0020the\u0020DSN\u0020string\u0020for\u0020an\u0020ODBC\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_getOdbcDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AgetSqlSrvDsn\u0028\u0029", + "name": "getSqlSrvDsn", + "summary": "Get\u0020the\u0020DSN\u0020string\u0020for\u0020a\u0020SqlSrv\u0020connection.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_getSqlSrvDsn" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AbuildConnectString\u0028\u0029", + "name": "buildConnectString", + "summary": "Build\u0020a\u0020connection\u0020string\u0020from\u0020the\u0020given\u0020arguments.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_buildConnectString" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AbuildHostString\u0028\u0029", + "name": "buildHostString", + "summary": "Build\u0020a\u0020host\u0020string\u0020from\u0020the\u0020given\u0020configuration.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_buildHostString" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003AgetAvailableDrivers\u0028\u0029", + "name": "getAvailableDrivers", + "summary": "Get\u0020the\u0020available\u0020PDO\u0020drivers.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#method_getAvailableDrivers" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors\\SqlServerConnector\u003A\u003A\u0024options", + "name": "options", + "summary": "The\u0020PDO\u0020connection\u0020options.", + "url": "classes/Illuminate-Database-Connectors-SqlServerConnector.html#property_options" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand", + "name": "DbCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-DbCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020the\u0020database\u0020connection\u0020configuration.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AcommandArguments\u0028\u0029", + "name": "commandArguments", + "summary": "Get\u0020the\u0020arguments\u0020for\u0020the\u0020database\u0020client\u0020command.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_commandArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AcommandEnvironment\u0028\u0029", + "name": "commandEnvironment", + "summary": "Get\u0020the\u0020environment\u0020variables\u0020for\u0020the\u0020database\u0020client\u0020command.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_commandEnvironment" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "Get\u0020the\u0020database\u0020client\u0020command\u0020to\u0020run.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetMysqlArguments\u0028\u0029", + "name": "getMysqlArguments", + "summary": "Get\u0020the\u0020arguments\u0020for\u0020the\u0020MySQL\u0020CLI.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getMysqlArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetPgsqlArguments\u0028\u0029", + "name": "getPgsqlArguments", + "summary": "Get\u0020the\u0020arguments\u0020for\u0020the\u0020Postgres\u0020CLI.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getPgsqlArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetSqliteArguments\u0028\u0029", + "name": "getSqliteArguments", + "summary": "Get\u0020the\u0020arguments\u0020for\u0020the\u0020SQLite\u0020CLI.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getSqliteArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetSqlsrvArguments\u0028\u0029", + "name": "getSqlsrvArguments", + "summary": "Get\u0020the\u0020arguments\u0020for\u0020the\u0020SQL\u0020Server\u0020CLI.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getSqlsrvArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetPgsqlEnvironment\u0028\u0029", + "name": "getPgsqlEnvironment", + "summary": "Get\u0020the\u0020environment\u0020variables\u0020for\u0020the\u0020Postgres\u0020CLI.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getPgsqlEnvironment" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003AgetOptionalArguments\u0028\u0029", + "name": "getOptionalArguments", + "summary": "Get\u0020the\u0020optional\u0020arguments\u0020based\u0020on\u0020the\u0020connection\u0020configuration.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#method_getOptionalArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003A\u0024signature", + "name": "signature", + "summary": "The\u0020name\u0020and\u0020signature\u0020of\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#property_signature" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DbCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-DbCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DumpCommand", + "name": "DumpCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-DumpCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DumpCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-DumpCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DumpCommand\u003A\u003AschemaState\u0028\u0029", + "name": "schemaState", + "summary": "Create\u0020a\u0020schema\u0020state\u0020instance\u0020for\u0020the\u0020given\u0020connection.", + "url": "classes/Illuminate-Database-Console-DumpCommand.html#method_schemaState" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DumpCommand\u003A\u003Apath\u0028\u0029", + "name": "path", + "summary": "Get\u0020the\u0020path\u0020that\u0020the\u0020dump\u0020should\u0020be\u0020written\u0020to.", + "url": "classes/Illuminate-Database-Console-DumpCommand.html#method_path" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DumpCommand\u003A\u003A\u0024signature", + "name": "signature", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-DumpCommand.html#property_signature" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\DumpCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-DumpCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand", + "name": "FactoryMakeCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003AgetStub\u0028\u0029", + "name": "getStub", + "summary": "Get\u0020the\u0020stub\u0020file\u0020for\u0020the\u0020generator.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#method_getStub" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003AresolveStubPath\u0028\u0029", + "name": "resolveStubPath", + "summary": "Resolve\u0020the\u0020fully\u002Dqualified\u0020path\u0020to\u0020the\u0020stub.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#method_resolveStubPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003AbuildClass\u0028\u0029", + "name": "buildClass", + "summary": "Build\u0020the\u0020class\u0020with\u0020the\u0020given\u0020name.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#method_buildClass" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "Get\u0020the\u0020destination\u0020class\u0020path.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#method_getPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003AguessModelName\u0028\u0029", + "name": "guessModelName", + "summary": "Guess\u0020the\u0020model\u0020name\u0020from\u0020the\u0020Factory\u0020name\u0020or\u0020return\u0020a\u0020default\u0020model\u0020name.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#method_guessModelName" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories\\FactoryMakeCommand\u003A\u003A\u0024type", + "name": "type", + "summary": "The\u0020type\u0020of\u0020class\u0020being\u0020generated.", + "url": "classes/Illuminate-Database-Console-Factories-FactoryMakeCommand.html#property_type" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\BaseCommand", + "name": "BaseCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-BaseCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\BaseCommand\u003A\u003AgetMigrationPaths\u0028\u0029", + "name": "getMigrationPaths", + "summary": "Get\u0020all\u0020of\u0020the\u0020migration\u0020paths.", + "url": "classes/Illuminate-Database-Console-Migrations-BaseCommand.html#method_getMigrationPaths" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\BaseCommand\u003A\u003AusingRealPath\u0028\u0029", + "name": "usingRealPath", + "summary": "Determine\u0020if\u0020the\u0020given\u0020path\u0028s\u0029\u0020are\u0020pre\u002Dresolved\u0020\u0022real\u0022\u0020paths.", + "url": "classes/Illuminate-Database-Console-Migrations-BaseCommand.html#method_usingRealPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\BaseCommand\u003A\u003AgetMigrationPath\u0028\u0029", + "name": "getMigrationPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020migration\u0020directory.", + "url": "classes/Illuminate-Database-Console-Migrations-BaseCommand.html#method_getMigrationPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand", + "name": "FreshCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand\u003A\u003AneedsSeeding\u0028\u0029", + "name": "needsSeeding", + "summary": "Determine\u0020if\u0020the\u0020developer\u0020has\u0020requested\u0020database\u0020seeding.", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html#method_needsSeeding" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand\u003A\u003ArunSeeder\u0028\u0029", + "name": "runSeeder", + "summary": "Run\u0020the\u0020database\u0020seeder\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html#method_runSeeder" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\FreshCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-FreshCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand", + "name": "InstallCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020install\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\InstallCommand\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020repository\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-InstallCommand.html#property_repository" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand", + "name": "MigrateCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003AprepareDatabase\u0028\u0029", + "name": "prepareDatabase", + "summary": "Prepare\u0020the\u0020migration\u0020database\u0020for\u0020running.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#method_prepareDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003AloadSchemaState\u0028\u0029", + "name": "loadSchemaState", + "summary": "Load\u0020the\u0020schema\u0020state\u0020to\u0020seed\u0020the\u0020initial\u0020database\u0020schema\u0020structure.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#method_loadSchemaState" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003AschemaPath\u0028\u0029", + "name": "schemaPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020stored\u0020schema\u0020for\u0020the\u0020given\u0020connection.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#method_schemaPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003A\u0024signature", + "name": "signature", + "summary": "The\u0020name\u0020and\u0020signature\u0020of\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#property_signature" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003A\u0024migrator", + "name": "migrator", + "summary": "The\u0020migrator\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#property_migrator" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateCommand\u003A\u003A\u0024dispatcher", + "name": "dispatcher", + "summary": "The\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateCommand.html#property_dispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand", + "name": "MigrateMakeCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020install\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003AwriteMigration\u0028\u0029", + "name": "writeMigration", + "summary": "Write\u0020the\u0020migration\u0020file\u0020to\u0020disk.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#method_writeMigration" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003AgetMigrationPath\u0028\u0029", + "name": "getMigrationPath", + "summary": "Get\u0020migration\u0020path\u0020\u0028either\u0020specified\u0020by\u0020\u0027\u002D\u002Dpath\u0027\u0020option\u0020or\u0020default\u0020location\u0029.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#method_getMigrationPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003A\u0024signature", + "name": "signature", + "summary": "The\u0020console\u0020command\u0020signature.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#property_signature" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003A\u0024creator", + "name": "creator", + "summary": "The\u0020migration\u0020creator\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#property_creator" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\MigrateMakeCommand\u003A\u003A\u0024composer", + "name": "composer", + "summary": "The\u0020Composer\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-MigrateMakeCommand.html#property_composer" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand", + "name": "RefreshCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003ArunRollback\u0028\u0029", + "name": "runRollback", + "summary": "Run\u0020the\u0020rollback\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#method_runRollback" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003ArunReset\u0028\u0029", + "name": "runReset", + "summary": "Run\u0020the\u0020reset\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#method_runReset" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003AneedsSeeding\u0028\u0029", + "name": "needsSeeding", + "summary": "Determine\u0020if\u0020the\u0020developer\u0020has\u0020requested\u0020database\u0020seeding.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#method_needsSeeding" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003ArunSeeder\u0028\u0029", + "name": "runSeeder", + "summary": "Run\u0020the\u0020database\u0020seeder\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#method_runSeeder" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RefreshCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-RefreshCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand", + "name": "ResetCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020rollback\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\ResetCommand\u003A\u003A\u0024migrator", + "name": "migrator", + "summary": "The\u0020migrator\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-ResetCommand.html#property_migrator" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand", + "name": "RollbackCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020rollback\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\RollbackCommand\u003A\u003A\u0024migrator", + "name": "migrator", + "summary": "The\u0020migrator\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-RollbackCommand.html#property_migrator" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand", + "name": "StatusCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020rollback\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003AgetStatusFor\u0028\u0029", + "name": "getStatusFor", + "summary": "Get\u0020the\u0020status\u0020for\u0020the\u0020given\u0020ran\u0020migrations.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#method_getStatusFor" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003AgetAllMigrationFiles\u0028\u0029", + "name": "getAllMigrationFiles", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020of\u0020the\u0020migration\u0020files.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#method_getAllMigrationFiles" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\StatusCommand\u003A\u003A\u0024migrator", + "name": "migrator", + "summary": "The\u0020migrator\u0020instance.", + "url": "classes/Illuminate-Database-Console-Migrations-StatusCommand.html#property_migrator" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\TableGuesser", + "name": "TableGuesser", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-TableGuesser.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\TableGuesser\u003A\u003Aguess\u0028\u0029", + "name": "guess", + "summary": "Attempt\u0020to\u0020guess\u0020the\u0020table\u0020name\u0020and\u0020\u0022creation\u0022\u0020status\u0020of\u0020the\u0020given\u0020migration.", + "url": "classes/Illuminate-Database-Console-Migrations-TableGuesser.html#method_guess" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\TableGuesser\u003A\u003ACREATE_PATTERNS", + "name": "CREATE_PATTERNS", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-TableGuesser.html#constant_CREATE_PATTERNS" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations\\TableGuesser\u003A\u003ACHANGE_PATTERNS", + "name": "CHANGE_PATTERNS", + "summary": "", + "url": "classes/Illuminate-Database-Console-Migrations-TableGuesser.html#constant_CHANGE_PATTERNS" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand", + "name": "PruneCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-PruneCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003Amodels\u0028\u0029", + "name": "models", + "summary": "Determine\u0020the\u0020models\u0020that\u0020should\u0020be\u0020pruned.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#method_models" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003AgetDefaultPath\u0028\u0029", + "name": "getDefaultPath", + "summary": "Get\u0020the\u0020default\u0020path\u0020where\u0020models\u0020are\u0020located.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#method_getDefaultPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003AisPrunable\u0028\u0029", + "name": "isPrunable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020model\u0020class\u0020is\u0020prunable.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#method_isPrunable" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003ApretendToPrune\u0028\u0029", + "name": "pretendToPrune", + "summary": "Display\u0020how\u0020many\u0020models\u0020will\u0020be\u0020pruned.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#method_pretendToPrune" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003A\u0024signature", + "name": "signature", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#property_signature" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\PruneCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-PruneCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand", + "name": "SeedCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020seed\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003AgetSeeder\u0028\u0029", + "name": "getSeeder", + "summary": "Get\u0020a\u0020seeder\u0020instance\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#method_getSeeder" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003AgetDatabase\u0028\u0029", + "name": "getDatabase", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020database\u0020connection\u0020to\u0020use.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#method_getDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003AgetArguments\u0028\u0029", + "name": "getArguments", + "summary": "Get\u0020the\u0020console\u0020command\u0020arguments.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#method_getArguments" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeedCommand\u003A\u003A\u0024resolver", + "name": "resolver", + "summary": "The\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Console-Seeds-SeedCommand.html#property_resolver" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand", + "name": "SeederMakeCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003AgetStub\u0028\u0029", + "name": "getStub", + "summary": "Get\u0020the\u0020stub\u0020file\u0020for\u0020the\u0020generator.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#method_getStub" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003AresolveStubPath\u0028\u0029", + "name": "resolveStubPath", + "summary": "Resolve\u0020the\u0020fully\u002Dqualified\u0020path\u0020to\u0020the\u0020stub.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#method_resolveStubPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "Get\u0020the\u0020destination\u0020class\u0020path.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#method_getPath" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003AqualifyClass\u0028\u0029", + "name": "qualifyClass", + "summary": "Parse\u0020the\u0020class\u0020name\u0020and\u0020format\u0020according\u0020to\u0020the\u0020root\u0020namespace.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#method_qualifyClass" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds\\SeederMakeCommand\u003A\u003A\u0024type", + "name": "type", + "summary": "The\u0020type\u0020of\u0020class\u0020being\u0020generated.", + "url": "classes/Illuminate-Database-Console-Seeds-SeederMakeCommand.html#property_type" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand", + "name": "WipeCommand", + "summary": "", + "url": "classes/Illuminate-Database-Console-WipeCommand.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Execute\u0020the\u0020console\u0020command.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003AdropAllTables\u0028\u0029", + "name": "dropAllTables", + "summary": "Drop\u0020all\u0020of\u0020the\u0020database\u0020tables.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#method_dropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003AdropAllViews\u0028\u0029", + "name": "dropAllViews", + "summary": "Drop\u0020all\u0020of\u0020the\u0020database\u0020views.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#method_dropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003AdropAllTypes\u0028\u0029", + "name": "dropAllTypes", + "summary": "Drop\u0020all\u0020of\u0020the\u0020database\u0020types.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#method_dropAllTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020console\u0020command\u0020options.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#method_getOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020console\u0020command\u0020name.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#property_name" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\WipeCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "The\u0020console\u0020command\u0020description.", + "url": "classes/Illuminate-Database-Console-WipeCommand.html#property_description" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager", + "name": "DatabaseManager", + "summary": "", + "url": "classes/Illuminate-Database-DatabaseManager.html" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020manager\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AparseConnectionName\u0028\u0029", + "name": "parseConnectionName", + "summary": "Parse\u0020the\u0020connection\u0020into\u0020an\u0020array\u0020of\u0020the\u0020name\u0020and\u0020read\u0020\/\u0020write\u0020type.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_parseConnectionName" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AmakeConnection\u0028\u0029", + "name": "makeConnection", + "summary": "Make\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_makeConnection" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Aconfiguration\u0028\u0029", + "name": "configuration", + "summary": "Get\u0020the\u0020configuration\u0020for\u0020a\u0020connection.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_configuration" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Prepare\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_configure" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AsetPdoForType\u0028\u0029", + "name": "setPdoForType", + "summary": "Prepare\u0020the\u0020read\u0020\/\u0020write\u0020mode\u0020for\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_setPdoForType" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AregisterConfiguredDoctrineTypes\u0028\u0029", + "name": "registerConfiguredDoctrineTypes", + "summary": "Register\u0020custom\u0020Doctrine\u0020types\u0020with\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_registerConfiguredDoctrineTypes" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AregisterDoctrineType\u0028\u0029", + "name": "registerDoctrineType", + "summary": "Register\u0020a\u0020custom\u0020Doctrine\u0020type.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_registerDoctrineType" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Apurge\u0028\u0029", + "name": "purge", + "summary": "Disconnect\u0020from\u0020the\u0020given\u0020database\u0020and\u0020remove\u0020from\u0020local\u0020cache.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_purge" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Adisconnect\u0028\u0029", + "name": "disconnect", + "summary": "Disconnect\u0020from\u0020the\u0020given\u0020database.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_disconnect" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Areconnect\u0028\u0029", + "name": "reconnect", + "summary": "Reconnect\u0020to\u0020the\u0020given\u0020database.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_reconnect" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AusingConnection\u0028\u0029", + "name": "usingConnection", + "summary": "Set\u0020the\u0020default\u0020database\u0020connection\u0020for\u0020the\u0020callback\u0020execution.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_usingConnection" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003ArefreshPdoConnections\u0028\u0029", + "name": "refreshPdoConnections", + "summary": "Refresh\u0020the\u0020PDO\u0020connections\u0020on\u0020a\u0020given\u0020connection.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_refreshPdoConnections" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AgetDefaultConnection\u0028\u0029", + "name": "getDefaultConnection", + "summary": "Get\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_getDefaultConnection" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AsetDefaultConnection\u0028\u0029", + "name": "setDefaultConnection", + "summary": "Set\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_setDefaultConnection" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AsupportedDrivers\u0028\u0029", + "name": "supportedDrivers", + "summary": "Get\u0020all\u0020of\u0020the\u0020support\u0020drivers.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_supportedDrivers" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AavailableDrivers\u0028\u0029", + "name": "availableDrivers", + "summary": "Get\u0020all\u0020of\u0020the\u0020drivers\u0020that\u0020are\u0020actually\u0020available.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_availableDrivers" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Register\u0020an\u0020extension\u0020connection\u0020resolver.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AgetConnections\u0028\u0029", + "name": "getConnections", + "summary": "Return\u0020all\u0020of\u0020the\u0020created\u0020connections.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_getConnections" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AsetReconnector\u0028\u0029", + "name": "setReconnector", + "summary": "Set\u0020the\u0020database\u0020reconnector\u0020callback.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_setReconnector" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003AsetApplication\u0028\u0029", + "name": "setApplication", + "summary": "Set\u0020the\u0020application\u0020instance\u0020used\u0020by\u0020the\u0020manager.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method_setApplication" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020pass\u0020methods\u0020to\u0020the\u0020default\u0020connection.", + "url": "classes/Illuminate-Database-DatabaseManager.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A\u0024app", + "name": "app", + "summary": "The\u0020application\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#property_app" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020database\u0020connection\u0020factory\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseManager.html#property_factory" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A\u0024connections", + "name": "connections", + "summary": "The\u0020active\u0020connection\u0020instances.", + "url": "classes/Illuminate-Database-DatabaseManager.html#property_connections" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A\u0024extensions", + "name": "extensions", + "summary": "The\u0020custom\u0020connection\u0020resolvers.", + "url": "classes/Illuminate-Database-DatabaseManager.html#property_extensions" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A\u0024reconnector", + "name": "reconnector", + "summary": "The\u0020callback\u0020to\u0020be\u0020executed\u0020to\u0020reconnect\u0020to\u0020a\u0020database.", + "url": "classes/Illuminate-Database-DatabaseManager.html#property_reconnector" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseManager\u003A\u003A\u0024doctrineTypes", + "name": "doctrineTypes", + "summary": "The\u0020custom\u0020Doctrine\u0020column\u0020types.", + "url": "classes/Illuminate-Database-DatabaseManager.html#property_doctrineTypes" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider", + "name": "DatabaseServiceProvider", + "summary": "", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider\u003A\u003Aboot\u0028\u0029", + "name": "boot", + "summary": "Bootstrap\u0020the\u0020application\u0020events.", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html#method_boot" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider\u003A\u003AregisterConnectionServices\u0028\u0029", + "name": "registerConnectionServices", + "summary": "Register\u0020the\u0020primary\u0020database\u0020bindings.", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html#method_registerConnectionServices" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider\u003A\u003AregisterEloquentFactory\u0028\u0029", + "name": "registerEloquentFactory", + "summary": "Register\u0020the\u0020Eloquent\u0020factory\u0020instance\u0020in\u0020the\u0020container.", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html#method_registerEloquentFactory" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider\u003A\u003AregisterQueueableEntityResolver\u0028\u0029", + "name": "registerQueueableEntityResolver", + "summary": "Register\u0020the\u0020queueable\u0020entity\u0020resolver\u0020implementation.", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html#method_registerQueueableEntityResolver" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseServiceProvider\u003A\u003A\u0024fakers", + "name": "fakers", + "summary": "The\u0020array\u0020of\u0020resolved\u0020Faker\u0020instances.", + "url": "classes/Illuminate-Database-DatabaseServiceProvider.html#property_fakers" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord", + "name": "DatabaseTransactionRecord", + "summary": "", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020transaction\u0020record\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003AaddCallback\u0028\u0029", + "name": "addCallback", + "summary": "Register\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020after\u0020committing.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#method_addCallback" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003AexecuteCallbacks\u0028\u0029", + "name": "executeCallbacks", + "summary": "Execute\u0020all\u0020of\u0020the\u0020callbacks.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#method_executeCallbacks" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003AgetCallbacks\u0028\u0029", + "name": "getCallbacks", + "summary": "Get\u0020all\u0020of\u0020the\u0020callbacks.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#method_getCallbacks" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003A\u0024level", + "name": "level", + "summary": "The\u0020transaction\u0020level.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#property_level" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionRecord\u003A\u003A\u0024callbacks", + "name": "callbacks", + "summary": "The\u0020callbacks\u0020that\u0020should\u0020be\u0020executed\u0020after\u0020committing.", + "url": "classes/Illuminate-Database-DatabaseTransactionRecord.html#property_callbacks" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager", + "name": "DatabaseTransactionsManager", + "summary": "", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020transactions\u0020manager\u0020instance.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003Abegin\u0028\u0029", + "name": "begin", + "summary": "Start\u0020a\u0020new\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#method_begin" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003Arollback\u0028\u0029", + "name": "rollback", + "summary": "Rollback\u0020the\u0020active\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#method_rollback" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commit\u0020the\u0020active\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#method_commit" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003AaddCallback\u0028\u0029", + "name": "addCallback", + "summary": "Register\u0020a\u0020transaction\u0020callback.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#method_addCallback" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003AgetTransactions\u0028\u0029", + "name": "getTransactions", + "summary": "Get\u0020all\u0020the\u0020transactions.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#method_getTransactions" + }, { + "fqsen": "\\Illuminate\\Database\\DatabaseTransactionsManager\u003A\u003A\u0024transactions", + "name": "transactions", + "summary": "All\u0020of\u0020the\u0020recorded\u0020transactions.", + "url": "classes/Illuminate-Database-DatabaseTransactionsManager.html#property_transactions" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType", + "name": "TimestampType", + "summary": "The\u0020base\u0020class\u0020for\u0020so\u002Dcalled\u0020Doctrine\u0020mapping\u0020types.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType\u003A\u003AgetSQLDeclaration\u0028\u0029", + "name": "getSQLDeclaration", + "summary": "Gets\u0020the\u0020SQL\u0020declaration\u0020snippet\u0020for\u0020a\u0020column\u0020of\u0020this\u0020type.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html#method_getSQLDeclaration" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType\u003A\u003AgetMySqlPlatformSQLDeclaration\u0028\u0029", + "name": "getMySqlPlatformSQLDeclaration", + "summary": "Get\u0020the\u0020SQL\u0020declaration\u0020for\u0020MySQL.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html#method_getMySqlPlatformSQLDeclaration" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType\u003A\u003AgetPostgresPlatformSQLDeclaration\u0028\u0029", + "name": "getPostgresPlatformSQLDeclaration", + "summary": "Get\u0020the\u0020SQL\u0020declaration\u0020for\u0020PostgreSQL.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html#method_getPostgresPlatformSQLDeclaration" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType\u003A\u003AgetSqlServerPlatformSQLDeclaration\u0028\u0029", + "name": "getSqlServerPlatformSQLDeclaration", + "summary": "Get\u0020the\u0020SQL\u0020declaration\u0020for\u0020SQL\u0020Server.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html#method_getSqlServerPlatformSQLDeclaration" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType\u003A\u003AgetSQLitePlatformSQLDeclaration\u0028\u0029", + "name": "getSQLitePlatformSQLDeclaration", + "summary": "Get\u0020the\u0020SQL\u0020declaration\u0020for\u0020SQLite.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html#method_getSQLitePlatformSQLDeclaration" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL\\TimestampType\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020this\u0020type.", + "url": "classes/Illuminate-Database-DBAL-TimestampType.html#method_getName" + }, { + "fqsen": "\\Illuminate\\Database\\DetectsConcurrencyErrors", + "name": "DetectsConcurrencyErrors", + "summary": "", + "url": "classes/Illuminate-Database-DetectsConcurrencyErrors.html" + }, { + "fqsen": "\\Illuminate\\Database\\DetectsConcurrencyErrors\u003A\u003AcausedByConcurrencyError\u0028\u0029", + "name": "causedByConcurrencyError", + "summary": "Determine\u0020if\u0020the\u0020given\u0020exception\u0020was\u0020caused\u0020by\u0020a\u0020concurrency\u0020error\u0020such\u0020as\u0020a\u0020deadlock\u0020or\u0020serialization\u0020failure.", + "url": "classes/Illuminate-Database-DetectsConcurrencyErrors.html#method_causedByConcurrencyError" + }, { + "fqsen": "\\Illuminate\\Database\\DetectsLostConnections", + "name": "DetectsLostConnections", + "summary": "", + "url": "classes/Illuminate-Database-DetectsLostConnections.html" + }, { + "fqsen": "\\Illuminate\\Database\\DetectsLostConnections\u003A\u003AcausedByLostConnection\u0028\u0029", + "name": "causedByLostConnection", + "summary": "Determine\u0020if\u0020the\u0020given\u0020exception\u0020was\u0020caused\u0020by\u0020a\u0020lost\u0020connection.", + "url": "classes/Illuminate-Database-DetectsLostConnections.html#method_causedByLostConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred", + "name": "BroadcastableModelEventOccurred", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003AbroadcastOn\u0028\u0029", + "name": "broadcastOn", + "summary": "The\u0020channels\u0020the\u0020event\u0020should\u0020broadcast\u0020on.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#method_broadcastOn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003AbroadcastAs\u0028\u0029", + "name": "broadcastAs", + "summary": "The\u0020name\u0020the\u0020event\u0020should\u0020broadcast\u0020as.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#method_broadcastAs" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003AbroadcastWith\u0028\u0029", + "name": "broadcastWith", + "summary": "Get\u0020the\u0020data\u0020that\u0020should\u0020be\u0020sent\u0020with\u0020the\u0020broadcasted\u0020event.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#method_broadcastWith" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003AonChannels\u0028\u0029", + "name": "onChannels", + "summary": "Manually\u0020specify\u0020the\u0020channels\u0020the\u0020event\u0020should\u0020broadcast\u0020on.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#method_onChannels" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003AshouldBroadcastNow\u0028\u0029", + "name": "shouldBroadcastNow", + "summary": "Determine\u0020if\u0020the\u0020event\u0020should\u0020be\u0020broadcast\u0020synchronously.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#method_shouldBroadcastNow" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003A\u0024event", + "name": "event", + "summary": "The\u0020event\u0020name\u0020\u0028created,\u0020updated,\u0020etc.\u0029.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#property_event" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020model\u0020instance\u0020corresponding\u0020to\u0020the\u0020event.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003A\u0024channels", + "name": "channels", + "summary": "The\u0020channels\u0020that\u0020the\u0020event\u0020should\u0020be\u0020broadcast\u0020on.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#property_channels" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020queue\u0020connection\u0020that\u0020should\u0020be\u0020used\u0020to\u0020queue\u0020the\u0020broadcast\u0020job.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastableModelEventOccurred\u003A\u003A\u0024queue", + "name": "queue", + "summary": "The\u0020queue\u0020that\u0020should\u0020be\u0020used\u0020to\u0020queue\u0020the\u0020broadcast\u0020job.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastableModelEventOccurred.html#property_queue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents", + "name": "BroadcastsEvents", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbootBroadcastsEvents\u0028\u0029", + "name": "bootBroadcastsEvents", + "summary": "Boot\u0020the\u0020event\u0020broadcasting\u0020trait.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_bootBroadcastsEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastCreated\u0028\u0029", + "name": "broadcastCreated", + "summary": "Broadcast\u0020that\u0020the\u0020model\u0020was\u0020created.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastCreated" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastUpdated\u0028\u0029", + "name": "broadcastUpdated", + "summary": "Broadcast\u0020that\u0020the\u0020model\u0020was\u0020updated.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastUpdated" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastTrashed\u0028\u0029", + "name": "broadcastTrashed", + "summary": "Broadcast\u0020that\u0020the\u0020model\u0020was\u0020trashed.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastTrashed" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastRestored\u0028\u0029", + "name": "broadcastRestored", + "summary": "Broadcast\u0020that\u0020the\u0020model\u0020was\u0020restored.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastRestored" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastDeleted\u0028\u0029", + "name": "broadcastDeleted", + "summary": "Broadcast\u0020that\u0020the\u0020model\u0020was\u0020deleted.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastDeleted" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastIfBroadcastChannelsExistForEvent\u0028\u0029", + "name": "broadcastIfBroadcastChannelsExistForEvent", + "summary": "Broadcast\u0020the\u0020given\u0020event\u0020instance\u0020if\u0020channels\u0020are\u0020configured\u0020for\u0020the\u0020model\u0020event.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastIfBroadcastChannelsExistForEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AnewBroadcastableModelEvent\u0028\u0029", + "name": "newBroadcastableModelEvent", + "summary": "Create\u0020a\u0020new\u0020broadcastable\u0020model\u0020event\u0020event.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_newBroadcastableModelEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AnewBroadcastableEvent\u0028\u0029", + "name": "newBroadcastableEvent", + "summary": "Create\u0020a\u0020new\u0020broadcastable\u0020model\u0020event\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_newBroadcastableEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastOn\u0028\u0029", + "name": "broadcastOn", + "summary": "Get\u0020the\u0020channels\u0020that\u0020model\u0020events\u0020should\u0020broadcast\u0020on.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastOn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastConnection\u0028\u0029", + "name": "broadcastConnection", + "summary": "Get\u0020the\u0020queue\u0020connection\u0020that\u0020should\u0020be\u0020used\u0020to\u0020broadcast\u0020model\u0020events.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastQueue\u0028\u0029", + "name": "broadcastQueue", + "summary": "Get\u0020the\u0020queue\u0020that\u0020should\u0020be\u0020used\u0020to\u0020broadcast\u0020model\u0020events.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastQueue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\BroadcastsEvents\u003A\u003AbroadcastAfterCommit\u0028\u0029", + "name": "broadcastAfterCommit", + "summary": "Determine\u0020if\u0020the\u0020model\u0020event\u0020broadcast\u0020queued\u0020job\u0020should\u0020be\u0020dispatched\u0020after\u0020all\u0020transactions\u0020are\u0020committed.", + "url": "classes/Illuminate-Database-Eloquent-BroadcastsEvents.html#method_broadcastAfterCommit" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder", + "name": "Builder", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Builder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Eloquent\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020and\u0020return\u0020an\u0020un\u002Dsaved\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_make" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwithGlobalScope\u0028\u0029", + "name": "withGlobalScope", + "summary": "Register\u0020a\u0020new\u0020global\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_withGlobalScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwithoutGlobalScope\u0028\u0029", + "name": "withoutGlobalScope", + "summary": "Remove\u0020a\u0020registered\u0020global\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_withoutGlobalScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwithoutGlobalScopes\u0028\u0029", + "name": "withoutGlobalScopes", + "summary": "Remove\u0020all\u0020or\u0020passed\u0020registered\u0020global\u0020scopes.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_withoutGlobalScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024removedScopes", + "name": "removedScopes", + "summary": "Removed\u0020global\u0020scopes.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_removedScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwhereKey\u0028\u0029", + "name": "whereKey", + "summary": "Add\u0020a\u0020where\u0020clause\u0020on\u0020the\u0020primary\u0020key\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_whereKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwhereKeyNot\u0028\u0029", + "name": "whereKeyNot", + "summary": "Add\u0020a\u0020where\u0020clause\u0020on\u0020the\u0020primary\u0020key\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_whereKeyNot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Add\u0020a\u0020basic\u0020where\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_where" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfirstWhere\u0028\u0029", + "name": "firstWhere", + "summary": "Add\u0020a\u0020basic\u0020where\u0020clause\u0020to\u0020the\u0020query,\u0020and\u0020return\u0020the\u0020first\u0020result.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_firstWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AorWhere\u0028\u0029", + "name": "orWhere", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_orWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Alatest\u0028\u0029", + "name": "latest", + "summary": "Add\u0020an\u0020\u0022order\u0020by\u0022\u0020clause\u0020for\u0020a\u0020timestamp\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_latest" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Aoldest\u0028\u0029", + "name": "oldest", + "summary": "Add\u0020an\u0020\u0022order\u0020by\u0022\u0020clause\u0020for\u0020a\u0020timestamp\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_oldest" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Ahydrate\u0028\u0029", + "name": "hydrate", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models\u0020from\u0020plain\u0020arrays.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_hydrate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfromQuery\u0028\u0029", + "name": "fromQuery", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models\u0020from\u0020a\u0020raw\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_fromQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Find\u0020a\u0020model\u0020by\u0020its\u0020primary\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_find" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfindMany\u0028\u0029", + "name": "findMany", + "summary": "Find\u0020multiple\u0020models\u0020by\u0020their\u0020primary\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_findMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfindOrFail\u0028\u0029", + "name": "findOrFail", + "summary": "Find\u0020a\u0020model\u0020by\u0020its\u0020primary\u0020key\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_findOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfindOrNew\u0028\u0029", + "name": "findOrNew", + "summary": "Find\u0020a\u0020model\u0020by\u0020its\u0020primary\u0020key\u0020or\u0020return\u0020fresh\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_findOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfirstOrNew\u0028\u0029", + "name": "firstOrNew", + "summary": "Get\u0020the\u0020first\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020instantiate\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_firstOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfirstOrCreate\u0028\u0029", + "name": "firstOrCreate", + "summary": "Get\u0020the\u0020first\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020create\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_firstOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AupdateOrCreate\u0028\u0029", + "name": "updateOrCreate", + "summary": "Create\u0020or\u0020update\u0020a\u0020record\u0020matching\u0020the\u0020attributes,\u0020and\u0020fill\u0020it\u0020with\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_updateOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfirstOrFail\u0028\u0029", + "name": "firstOrFail", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_firstOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AfirstOr\u0028\u0029", + "name": "firstOr", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020or\u0020call\u0020a\u0020callback.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_firstOr" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Asole\u0028\u0029", + "name": "sole", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020if\u0020it\u0027s\u0020the\u0020sole\u0020matching\u0020record.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_sole" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Avalue\u0028\u0029", + "name": "value", + "summary": "Get\u0020a\u0020single\u0020column\u0027s\u0020value\u0020from\u0020the\u0020first\u0020result\u0020of\u0020a\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_value" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AvalueOrFail\u0028\u0029", + "name": "valueOrFail", + "summary": "Get\u0020a\u0020single\u0020column\u0027s\u0020value\u0020from\u0020the\u0020first\u0020result\u0020of\u0020the\u0020query\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_valueOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Execute\u0020the\u0020query\u0020as\u0020a\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetModels\u0028\u0029", + "name": "getModels", + "summary": "Get\u0020the\u0020hydrated\u0020models\u0020without\u0020eager\u0020loading.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getModels" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AeagerLoadRelations\u0028\u0029", + "name": "eagerLoadRelations", + "summary": "Eager\u0020load\u0020the\u0020relationships\u0020for\u0020the\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_eagerLoadRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AeagerLoadRelation\u0028\u0029", + "name": "eagerLoadRelation", + "summary": "Eagerly\u0020load\u0020the\u0020relationship\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_eagerLoadRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetRelation\u0028\u0029", + "name": "getRelation", + "summary": "Get\u0020the\u0020relation\u0020instance\u0020for\u0020the\u0020given\u0020relation\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003ArelationsNestedUnder\u0028\u0029", + "name": "relationsNestedUnder", + "summary": "Get\u0020the\u0020deeply\u0020nested\u0020relations\u0020for\u0020a\u0020given\u0020top\u002Dlevel\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_relationsNestedUnder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AisNestedUnder\u0028\u0029", + "name": "isNestedUnder", + "summary": "Determine\u0020if\u0020the\u0020relationship\u0020is\u0020nested.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_isNestedUnder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Get\u0020a\u0020lazy\u0020collection\u0020for\u0020the\u0020given\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AenforceOrderBy\u0028\u0029", + "name": "enforceOrderBy", + "summary": "Add\u0020a\u0020generic\u0020\u0022order\u0020by\u0022\u0020clause\u0020if\u0020the\u0020query\u0020doesn\u0027t\u0020already\u0020have\u0020one.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_enforceOrderBy" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Get\u0020an\u0020array\u0020with\u0020the\u0020values\u0020of\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Apaginate\u0028\u0029", + "name": "paginate", + "summary": "Paginate\u0020the\u0020given\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_paginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AsimplePaginate\u0028\u0029", + "name": "simplePaginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020simple\u0020paginator.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_simplePaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AcursorPaginate\u0028\u0029", + "name": "cursorPaginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020cursor\u0020paginator.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_cursorPaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AensureOrderForCursorPagination\u0028\u0029", + "name": "ensureOrderForCursorPagination", + "summary": "Ensure\u0020the\u0020proper\u0020order\u0020by\u0020required\u0020for\u0020cursor\u0020pagination.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_ensureOrderForCursorPagination" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Save\u0020a\u0020new\u0020model\u0020and\u0020return\u0020the\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AforceCreate\u0028\u0029", + "name": "forceCreate", + "summary": "Save\u0020a\u0020new\u0020model\u0020and\u0020return\u0020the\u0020instance.\u0020Allow\u0020mass\u002Dassignment.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_forceCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Update\u0020records\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_update" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Aupsert\u0028\u0029", + "name": "upsert", + "summary": "Insert\u0020new\u0020records\u0020or\u0020update\u0020the\u0020existing\u0020ones.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_upsert" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Aincrement\u0028\u0029", + "name": "increment", + "summary": "Increment\u0020a\u0020column\u0027s\u0020value\u0020by\u0020a\u0020given\u0020amount.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_increment" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Adecrement\u0028\u0029", + "name": "decrement", + "summary": "Decrement\u0020a\u0020column\u0027s\u0020value\u0020by\u0020a\u0020given\u0020amount.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_decrement" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AaddUpdatedAtColumn\u0028\u0029", + "name": "addUpdatedAtColumn", + "summary": "Add\u0020the\u0020\u0022updated\u0020at\u0022\u0020column\u0020to\u0020an\u0020array\u0020of\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_addUpdatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AaddTimestampsToUpsertValues\u0028\u0029", + "name": "addTimestampsToUpsertValues", + "summary": "Add\u0020timestamps\u0020to\u0020the\u0020inserted\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_addTimestampsToUpsertValues" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AaddUpdatedAtToUpsertColumns\u0028\u0029", + "name": "addUpdatedAtToUpsertColumns", + "summary": "Add\u0020the\u0020\u0022updated\u0020at\u0022\u0020column\u0020to\u0020the\u0020updated\u0020columns.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_addUpdatedAtToUpsertColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020records\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AforceDelete\u0028\u0029", + "name": "forceDelete", + "summary": "Run\u0020the\u0020default\u0020delete\u0020function\u0020on\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_forceDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024onDelete", + "name": "onDelete", + "summary": "A\u0020replacement\u0020for\u0020the\u0020typical\u0020delete\u0020function.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_onDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AhasNamedScope\u0028\u0029", + "name": "hasNamedScope", + "summary": "Determine\u0020if\u0020the\u0020given\u0020model\u0020has\u0020a\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_hasNamedScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024scopes", + "name": "scopes", + "summary": "Applied\u0020global\u0020scopes.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_scopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AapplyScopes\u0028\u0029", + "name": "applyScopes", + "summary": "Apply\u0020the\u0020scopes\u0020to\u0020the\u0020Eloquent\u0020builder\u0020instance\u0020and\u0020return\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_applyScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AcallScope\u0028\u0029", + "name": "callScope", + "summary": "Apply\u0020the\u0020given\u0020scope\u0020on\u0020the\u0020current\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_callScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AcallNamedScope\u0028\u0029", + "name": "callNamedScope", + "summary": "Apply\u0020the\u0020given\u0020named\u0020scope\u0020on\u0020the\u0020current\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_callNamedScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AaddNewWheresWithinGroup\u0028\u0029", + "name": "addNewWheresWithinGroup", + "summary": "Nest\u0020where\u0020conditions\u0020by\u0020slicing\u0020them\u0020at\u0020the\u0020given\u0020where\u0020count.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_addNewWheresWithinGroup" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgroupWhereSliceForScope\u0028\u0029", + "name": "groupWhereSliceForScope", + "summary": "Slice\u0020where\u0020conditions\u0020at\u0020the\u0020given\u0020offset\u0020and\u0020add\u0020them\u0020to\u0020the\u0020query\u0020as\u0020a\u0020nested\u0020condition.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_groupWhereSliceForScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AcreateNestedWhere\u0028\u0029", + "name": "createNestedWhere", + "summary": "Create\u0020a\u0020where\u0020array\u0020with\u0020nested\u0020where\u0020conditions.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_createNestedWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Set\u0020the\u0020relationships\u0020that\u0020should\u0020be\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_with" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Awithout\u0028\u0029", + "name": "without", + "summary": "Prevent\u0020the\u0020specified\u0020relations\u0020from\u0020being\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_without" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwithOnly\u0028\u0029", + "name": "withOnly", + "summary": "Set\u0020the\u0020relationships\u0020that\u0020should\u0020be\u0020eager\u0020loaded\u0020while\u0020removing\u0020any\u0020previously\u0020added\u0020eager\u0020loading\u0020specifications.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_withOnly" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AnewModelInstance\u0028\u0029", + "name": "newModelInstance", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020model\u0020being\u0020queried.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_newModelInstance" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AparseWithRelations\u0028\u0029", + "name": "parseWithRelations", + "summary": "Parse\u0020a\u0020list\u0020of\u0020relations\u0020into\u0020individuals.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_parseWithRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AcreateSelectWithConstraint\u0028\u0029", + "name": "createSelectWithConstraint", + "summary": "Create\u0020a\u0020constraint\u0020to\u0020select\u0020the\u0020given\u0020columns\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_createSelectWithConstraint" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AaddNestedWiths\u0028\u0029", + "name": "addNestedWiths", + "summary": "Parse\u0020the\u0020nested\u0020relationships\u0020in\u0020a\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_addNestedWiths" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AwithCasts\u0028\u0029", + "name": "withCasts", + "summary": "Apply\u0020query\u002Dtime\u0020casts\u0020to\u0020the\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_withCasts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetQuery\u0028\u0029", + "name": "getQuery", + "summary": "Get\u0020the\u0020underlying\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AsetQuery\u0028\u0029", + "name": "setQuery", + "summary": "Set\u0020the\u0020underlying\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_setQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AtoBase\u0028\u0029", + "name": "toBase", + "summary": "Get\u0020a\u0020base\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_toBase" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetEagerLoads\u0028\u0029", + "name": "getEagerLoads", + "summary": "Get\u0020the\u0020relationships\u0020being\u0020eagerly\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getEagerLoads" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AsetEagerLoads\u0028\u0029", + "name": "setEagerLoads", + "summary": "Set\u0020the\u0020relationships\u0020being\u0020eagerly\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_setEagerLoads" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AdefaultKeyName\u0028\u0029", + "name": "defaultKeyName", + "summary": "Get\u0020the\u0020default\u0020key\u0020name\u0020of\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_defaultKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetModel\u0028\u0029", + "name": "getModel", + "summary": "Get\u0020the\u0020model\u0020instance\u0020being\u0020queried.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AsetModel\u0028\u0029", + "name": "setModel", + "summary": "Set\u0020a\u0020model\u0020instance\u0020for\u0020the\u0020model\u0020being\u0020queried.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_setModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AqualifyColumn\u0028\u0029", + "name": "qualifyColumn", + "summary": "Qualify\u0020the\u0020given\u0020column\u0020name\u0020by\u0020the\u0020model\u0027s\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_qualifyColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AqualifyColumns\u0028\u0029", + "name": "qualifyColumns", + "summary": "Qualify\u0020the\u0020given\u0020columns\u0020with\u0020the\u0020model\u0027s\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_qualifyColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetMacro\u0028\u0029", + "name": "getMacro", + "summary": "Get\u0020the\u0020given\u0020macro\u0020by\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getMacro" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AhasMacro\u0028\u0029", + "name": "hasMacro", + "summary": "Checks\u0020if\u0020a\u0020macro\u0020is\u0020registered.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_hasMacro" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AgetGlobalMacro\u0028\u0029", + "name": "getGlobalMacro", + "summary": "Get\u0020the\u0020given\u0020global\u0020macro\u0020by\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_getGlobalMacro" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AhasGlobalMacro\u0028\u0029", + "name": "hasGlobalMacro", + "summary": "Checks\u0020if\u0020a\u0020global\u0020macro\u0020is\u0020registered.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_hasGlobalMacro" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020builder\u0020proxies.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method___get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020handle\u0020calls\u0020into\u0020the\u0020query\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Dynamically\u0020handle\u0020calls\u0020into\u0020the\u0020query\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method___callStatic" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003AregisterMixin\u0028\u0029", + "name": "registerMixin", + "summary": "Register\u0020the\u0020given\u0020mixin\u0020with\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_registerMixin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003Aclone\u0028\u0029", + "name": "clone", + "summary": "Clone\u0020the\u0020Eloquent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method_clone" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Force\u0020a\u0020clone\u0020of\u0020the\u0020underlying\u0020query\u0020builder\u0020when\u0020cloning.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#method___clone" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024query", + "name": "query", + "summary": "The\u0020base\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_query" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020model\u0020being\u0020queried.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024eagerLoad", + "name": "eagerLoad", + "summary": "The\u0020relationships\u0020that\u0020should\u0020be\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_eagerLoad" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024macros", + "name": "macros", + "summary": "All\u0020of\u0020the\u0020globally\u0020registered\u0020builder\u0020macros.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_macros" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024localMacros", + "name": "localMacros", + "summary": "All\u0020of\u0020the\u0020locally\u0020registered\u0020builder\u0020macros.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_localMacros" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024propertyPassthru", + "name": "propertyPassthru", + "summary": "The\u0020properties\u0020that\u0020should\u0020be\u0020returned\u0020from\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_propertyPassthru" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Builder\u003A\u003A\u0024passthru", + "name": "passthru", + "summary": "The\u0020methods\u0020that\u0020should\u0020be\u0020returned\u0020from\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Builder.html#property_passthru" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\ArrayObject", + "name": "ArrayObject", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-ArrayObject.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\ArrayObject\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "Get\u0020a\u0020collection\u0020containing\u0020the\u0020underlying\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Casts-ArrayObject.html#method_collect" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\ArrayObject\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020the\u0020instance\u0020as\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Casts-ArrayObject.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\ArrayObject\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Get\u0020the\u0020array\u0020that\u0020should\u0020be\u0020JSON\u0020serialized.", + "url": "classes/Illuminate-Database-Eloquent-Casts-ArrayObject.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsArrayObject", + "name": "AsArrayObject", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsArrayObject.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsArrayObject\u003A\u003AcastUsing\u0028\u0029", + "name": "castUsing", + "summary": "Get\u0020the\u0020caster\u0020class\u0020to\u0020use\u0020when\u0020casting\u0020from\u0020\/\u0020to\u0020this\u0020cast\u0020target.", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsArrayObject.html#method_castUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsCollection", + "name": "AsCollection", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsCollection.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsCollection\u003A\u003AcastUsing\u0028\u0029", + "name": "castUsing", + "summary": "Get\u0020the\u0020caster\u0020class\u0020to\u0020use\u0020when\u0020casting\u0020from\u0020\/\u0020to\u0020this\u0020cast\u0020target.", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsCollection.html#method_castUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsEncryptedArrayObject", + "name": "AsEncryptedArrayObject", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsEncryptedArrayObject.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsEncryptedArrayObject\u003A\u003AcastUsing\u0028\u0029", + "name": "castUsing", + "summary": "Get\u0020the\u0020caster\u0020class\u0020to\u0020use\u0020when\u0020casting\u0020from\u0020\/\u0020to\u0020this\u0020cast\u0020target.", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsEncryptedArrayObject.html#method_castUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsEncryptedCollection", + "name": "AsEncryptedCollection", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsEncryptedCollection.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsEncryptedCollection\u003A\u003AcastUsing\u0028\u0029", + "name": "castUsing", + "summary": "Get\u0020the\u0020caster\u0020class\u0020to\u0020use\u0020when\u0020casting\u0020from\u0020\/\u0020to\u0020this\u0020cast\u0020target.", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsEncryptedCollection.html#method_castUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsStringable", + "name": "AsStringable", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsStringable.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\AsStringable\u003A\u003AcastUsing\u0028\u0029", + "name": "castUsing", + "summary": "Get\u0020the\u0020caster\u0020class\u0020to\u0020use\u0020when\u0020casting\u0020from\u0020\/\u0020to\u0020this\u0020cast\u0020target.", + "url": "classes/Illuminate-Database-Eloquent-Casts-AsStringable.html#method_castUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\Attribute", + "name": "Attribute", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Casts-Attribute.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\Attribute\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020attribute\u0020accessor\u0020\/\u0020mutator.", + "url": "classes/Illuminate-Database-Eloquent-Casts-Attribute.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\Attribute\u003A\u003A\u0024get", + "name": "get", + "summary": "The\u0020attribute\u0020accessor.", + "url": "classes/Illuminate-Database-Eloquent-Casts-Attribute.html#property_get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\Attribute\u003A\u003A\u0024set", + "name": "set", + "summary": "The\u0020attribute\u0020mutator.", + "url": "classes/Illuminate-Database-Eloquent-Casts-Attribute.html#property_set" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\Attribute\u003A\u003AwithoutObjectCaching\u0028\u0029", + "name": "withoutObjectCaching", + "summary": "Disable\u0020object\u0020caching\u0020for\u0020the\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Casts-Attribute.html#method_withoutObjectCaching" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts\\Attribute\u003A\u003A\u0024withObjectCaching", + "name": "withObjectCaching", + "summary": "Indicates\u0020if\u0020caching\u0020of\u0020objects\u0020is\u0020enabled\u0020for\u0020this\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Casts-Attribute.html#property_withObjectCaching" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection", + "name": "Collection", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Collection.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Find\u0020a\u0020model\u0020in\u0020the\u0020collection\u0020by\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_find" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationships\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_load" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadAggregate\u0028\u0029", + "name": "loadAggregate", + "summary": "Load\u0020a\u0020set\u0020of\u0020aggregations\u0020over\u0020relationship\u0027s\u0020column\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadCount\u0028\u0029", + "name": "loadCount", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationship\u0020counts\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadMax\u0028\u0029", + "name": "loadMax", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationship\u0027s\u0020max\u0020column\u0020values\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadMax" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadMin\u0028\u0029", + "name": "loadMin", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationship\u0027s\u0020min\u0020column\u0020values\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadMin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadSum\u0028\u0029", + "name": "loadSum", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationship\u0027s\u0020column\u0020summations\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadSum" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadAvg\u0028\u0029", + "name": "loadAvg", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationship\u0027s\u0020average\u0020column\u0020values\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadAvg" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadExists\u0028\u0029", + "name": "loadExists", + "summary": "Load\u0020a\u0020set\u0020of\u0020related\u0020existences\u0020onto\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadExists" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadMissing\u0028\u0029", + "name": "loadMissing", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationships\u0020onto\u0020the\u0020collection\u0020if\u0020they\u0020are\u0020not\u0020already\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadMissing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadMissingRelation\u0028\u0029", + "name": "loadMissingRelation", + "summary": "Load\u0020a\u0020relationship\u0020path\u0020if\u0020it\u0020is\u0020not\u0020already\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadMissingRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadMorph\u0028\u0029", + "name": "loadMorph", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationships\u0020onto\u0020the\u0020mixed\u0020relationship\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AloadMorphCount\u0028\u0029", + "name": "loadMorphCount", + "summary": "Load\u0020a\u0020set\u0020of\u0020relationship\u0020counts\u0020onto\u0020the\u0020mixed\u0020relationship\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_loadMorphCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Determine\u0020if\u0020a\u0020key\u0020exists\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_contains" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AmodelKeys\u0028\u0029", + "name": "modelKeys", + "summary": "Get\u0020the\u0020array\u0020of\u0020primary\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_modelKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Run\u0020a\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_map" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AmapWithKeys\u0028\u0029", + "name": "mapWithKeys", + "summary": "Run\u0020an\u0020associative\u0020map\u0020over\u0020each\u0020of\u0020the\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_mapWithKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Afresh\u0028\u0029", + "name": "fresh", + "summary": "Reload\u0020a\u0020fresh\u0020model\u0020instance\u0020from\u0020the\u0020database\u0020for\u0020all\u0020the\u0020entities.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_fresh" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Adiff\u0028\u0029", + "name": "diff", + "summary": "Diff\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_diff" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aintersect\u0028\u0029", + "name": "intersect", + "summary": "Intersect\u0020the\u0020collection\u0020with\u0020the\u0020given\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_intersect" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Return\u0020only\u0020unique\u0020items\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_unique" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Returns\u0020only\u0020the\u0020models\u0020from\u0020the\u0020collection\u0020with\u0020the\u0020specified\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_only" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Returns\u0020all\u0020models\u0020in\u0020the\u0020collection\u0020except\u0020the\u0020models\u0020with\u0020specified\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_except" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AmakeHidden\u0028\u0029", + "name": "makeHidden", + "summary": "Make\u0020the\u0020given,\u0020typically\u0020visible,\u0020attributes\u0020hidden\u0020across\u0020the\u0020entire\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_makeHidden" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AmakeVisible\u0028\u0029", + "name": "makeVisible", + "summary": "Make\u0020the\u0020given,\u0020typically\u0020hidden,\u0020attributes\u0020visible\u0020across\u0020the\u0020entire\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_makeVisible" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Append\u0020an\u0020attribute\u0020across\u0020the\u0020entire\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_append" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AgetDictionary\u0028\u0029", + "name": "getDictionary", + "summary": "Get\u0020a\u0020dictionary\u0020keyed\u0020by\u0020primary\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_getDictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Get\u0020an\u0020array\u0020with\u0020the\u0020values\u0020of\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020the\u0020keys\u0020of\u0020the\u0020collection\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_keys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Azip\u0028\u0029", + "name": "zip", + "summary": "Zip\u0020the\u0020collection\u0020together\u0020with\u0020one\u0020or\u0020more\u0020arrays.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_zip" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Acollapse\u0028\u0029", + "name": "collapse", + "summary": "Collapse\u0020the\u0020collection\u0020of\u0020items\u0020into\u0020a\u0020single\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_collapse" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Get\u0020a\u0020flattened\u0020array\u0020of\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_flatten" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Aflip\u0028\u0029", + "name": "flip", + "summary": "Flip\u0020the\u0020items\u0020in\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_flip" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003Apad\u0028\u0029", + "name": "pad", + "summary": "Pad\u0020collection\u0020to\u0020the\u0020specified\u0020length\u0020with\u0020a\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_pad" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AduplicateComparator\u0028\u0029", + "name": "duplicateComparator", + "summary": "Get\u0020the\u0020comparison\u0020function\u0020to\u0020detect\u0020duplicates.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_duplicateComparator" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AgetQueueableClass\u0028\u0029", + "name": "getQueueableClass", + "summary": "Get\u0020the\u0020type\u0020of\u0020the\u0020entities\u0020being\u0020queued.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_getQueueableClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AgetQueueableIds\u0028\u0029", + "name": "getQueueableIds", + "summary": "Get\u0020the\u0020identifiers\u0020for\u0020all\u0020of\u0020the\u0020entities.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_getQueueableIds" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AgetQueueableRelations\u0028\u0029", + "name": "getQueueableRelations", + "summary": "Get\u0020the\u0020relationships\u0020of\u0020the\u0020entities\u0020being\u0020queued.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_getQueueableRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AgetQueueableConnection\u0028\u0029", + "name": "getQueueableConnection", + "summary": "Get\u0020the\u0020connection\u0020of\u0020the\u0020entities\u0020being\u0020queued.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_getQueueableConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Collection\u003A\u003AtoQuery\u0028\u0029", + "name": "toQuery", + "summary": "Get\u0020the\u0020Eloquent\u0020query\u0020builder\u0020from\u0020the\u0020collection.", + "url": "classes/Illuminate-Database-Eloquent-Collection.html#method_toQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes", + "name": "GuardsAttributes", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AgetFillable\u0028\u0029", + "name": "getFillable", + "summary": "Get\u0020the\u0020fillable\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_getFillable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003A\u0024fillable", + "name": "fillable", + "summary": "The\u0020attributes\u0020that\u0020are\u0020mass\u0020assignable.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#property_fillable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AmergeFillable\u0028\u0029", + "name": "mergeFillable", + "summary": "Merge\u0020new\u0020fillable\u0020attributes\u0020with\u0020existing\u0020fillable\u0020attributes\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_mergeFillable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AgetGuarded\u0028\u0029", + "name": "getGuarded", + "summary": "Get\u0020the\u0020guarded\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_getGuarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003Aguard\u0028\u0029", + "name": "guard", + "summary": "Set\u0020the\u0020guarded\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_guard" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AmergeGuarded\u0028\u0029", + "name": "mergeGuarded", + "summary": "Merge\u0020new\u0020guarded\u0020attributes\u0020with\u0020existing\u0020guarded\u0020attributes\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_mergeGuarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003Aunguard\u0028\u0029", + "name": "unguard", + "summary": "Disable\u0020all\u0020mass\u0020assignable\u0020restrictions.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_unguard" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003Areguard\u0028\u0029", + "name": "reguard", + "summary": "Enable\u0020the\u0020mass\u0020assignment\u0020restrictions.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_reguard" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AisUnguarded\u0028\u0029", + "name": "isUnguarded", + "summary": "Determine\u0020if\u0020the\u0020current\u0020state\u0020is\u0020\u0022unguarded\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_isUnguarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003A\u0024unguarded", + "name": "unguarded", + "summary": "Indicates\u0020if\u0020all\u0020mass\u0020assignment\u0020is\u0020enabled.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#property_unguarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AisFillable\u0028\u0029", + "name": "isFillable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020attribute\u0020may\u0020be\u0020mass\u0020assigned.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_isFillable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AisGuarded\u0028\u0029", + "name": "isGuarded", + "summary": "Determine\u0020if\u0020the\u0020given\u0020key\u0020is\u0020guarded.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_isGuarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AisGuardableColumn\u0028\u0029", + "name": "isGuardableColumn", + "summary": "Determine\u0020if\u0020the\u0020given\u0020column\u0020is\u0020a\u0020valid,\u0020guardable\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_isGuardableColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AtotallyGuarded\u0028\u0029", + "name": "totallyGuarded", + "summary": "Determine\u0020if\u0020the\u0020model\u0020is\u0020totally\u0020guarded.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_totallyGuarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003AfillableFromArray\u0028\u0029", + "name": "fillableFromArray", + "summary": "Get\u0020the\u0020fillable\u0020attributes\u0020of\u0020a\u0020given\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#method_fillableFromArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003A\u0024guarded", + "name": "guarded", + "summary": "The\u0020attributes\u0020that\u0020aren\u0027t\u0020mass\u0020assignable.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#property_guarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\GuardsAttributes\u003A\u003A\u0024guardableColumns", + "name": "guardableColumns", + "summary": "The\u0020actual\u0020columns\u0020that\u0020exist\u0020on\u0020the\u0020database\u0020and\u0020can\u0020be\u0020guarded.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-GuardsAttributes.html#property_guardableColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes", + "name": "HasAttributes", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AattributesToArray\u0028\u0029", + "name": "attributesToArray", + "summary": "Convert\u0020the\u0020model\u0027s\u0020attributes\u0020to\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_attributesToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AaddDateAttributesToArray\u0028\u0029", + "name": "addDateAttributesToArray", + "summary": "Add\u0020the\u0020date\u0020attributes\u0020to\u0020the\u0020attributes\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_addDateAttributesToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AaddMutatedAttributesToArray\u0028\u0029", + "name": "addMutatedAttributesToArray", + "summary": "Add\u0020the\u0020mutated\u0020attributes\u0020to\u0020the\u0020attributes\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_addMutatedAttributesToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AaddCastAttributesToArray\u0028\u0029", + "name": "addCastAttributesToArray", + "summary": "Add\u0020the\u0020casted\u0020attributes\u0020to\u0020the\u0020attributes\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_addCastAttributesToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetArrayableAttributes\u0028\u0029", + "name": "getArrayableAttributes", + "summary": "Get\u0020an\u0020attribute\u0020array\u0020of\u0020all\u0020arrayable\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getArrayableAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetArrayableAppends\u0028\u0029", + "name": "getArrayableAppends", + "summary": "Get\u0020all\u0020of\u0020the\u0020appendable\u0020values\u0020that\u0020are\u0020arrayable.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getArrayableAppends" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003ArelationsToArray\u0028\u0029", + "name": "relationsToArray", + "summary": "Get\u0020the\u0020model\u0027s\u0020relationships\u0020in\u0020array\u0020form.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_relationsToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetArrayableRelations\u0028\u0029", + "name": "getArrayableRelations", + "summary": "Get\u0020an\u0020attribute\u0020array\u0020of\u0020all\u0020arrayable\u0020relations.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getArrayableRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetArrayableItems\u0028\u0029", + "name": "getArrayableItems", + "summary": "Get\u0020an\u0020attribute\u0020array\u0020of\u0020all\u0020arrayable\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getArrayableItems" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetAttribute\u0028\u0029", + "name": "getAttribute", + "summary": "Get\u0020an\u0020attribute\u0020from\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetAttributeValue\u0028\u0029", + "name": "getAttributeValue", + "summary": "Get\u0020a\u0020plain\u0020attribute\u0020\u0028not\u0020a\u0020relationship\u0029.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getAttributeValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetAttributeFromArray\u0028\u0029", + "name": "getAttributeFromArray", + "summary": "Get\u0020an\u0020attribute\u0020from\u0020the\u0020\u0024attributes\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getAttributeFromArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetRelationValue\u0028\u0029", + "name": "getRelationValue", + "summary": "Get\u0020a\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getRelationValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisRelation\u0028\u0029", + "name": "isRelation", + "summary": "Determine\u0020if\u0020the\u0020given\u0020key\u0020is\u0020a\u0020relationship\u0020method\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhandleLazyLoadingViolation\u0028\u0029", + "name": "handleLazyLoadingViolation", + "summary": "Handle\u0020a\u0020lazy\u0020loading\u0020violation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_handleLazyLoadingViolation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetRelationshipFromMethod\u0028\u0029", + "name": "getRelationshipFromMethod", + "summary": "Get\u0020a\u0020relationship\u0020value\u0020from\u0020a\u0020method.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getRelationshipFromMethod" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasGetMutator\u0028\u0029", + "name": "hasGetMutator", + "summary": "Determine\u0020if\u0020a\u0020get\u0020mutator\u0020exists\u0020for\u0020an\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasGetMutator" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasAttributeMutator\u0028\u0029", + "name": "hasAttributeMutator", + "summary": "Determine\u0020if\u0020a\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020mutator\u0020exists\u0020for\u0020an\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasAttributeMutator" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasAttributeGetMutator\u0028\u0029", + "name": "hasAttributeGetMutator", + "summary": "Determine\u0020if\u0020a\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020get\u0020mutator\u0020exists\u0020for\u0020an\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasAttributeGetMutator" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmutateAttribute\u0028\u0029", + "name": "mutateAttribute", + "summary": "Get\u0020the\u0020value\u0020of\u0020an\u0020attribute\u0020using\u0020its\u0020mutator.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mutateAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmutateAttributeMarkedAttribute\u0028\u0029", + "name": "mutateAttributeMarkedAttribute", + "summary": "Get\u0020the\u0020value\u0020of\u0020an\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020attribute\u0020using\u0020its\u0020mutator.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mutateAttributeMarkedAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmutateAttributeForArray\u0028\u0029", + "name": "mutateAttributeForArray", + "summary": "Get\u0020the\u0020value\u0020of\u0020an\u0020attribute\u0020using\u0020its\u0020mutator\u0020for\u0020array\u0020conversion.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mutateAttributeForArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmergeCasts\u0028\u0029", + "name": "mergeCasts", + "summary": "Merge\u0020new\u0020casts\u0020with\u0020existing\u0020casts\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mergeCasts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AcastAttribute\u0028\u0029", + "name": "castAttribute", + "summary": "Cast\u0020an\u0020attribute\u0020to\u0020a\u0020native\u0020PHP\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_castAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetClassCastableAttributeValue\u0028\u0029", + "name": "getClassCastableAttributeValue", + "summary": "Cast\u0020the\u0020given\u0020attribute\u0020using\u0020a\u0020custom\u0020cast\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getClassCastableAttributeValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetEnumCastableAttributeValue\u0028\u0029", + "name": "getEnumCastableAttributeValue", + "summary": "Cast\u0020the\u0020given\u0020attribute\u0020to\u0020an\u0020enum.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getEnumCastableAttributeValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetCastType\u0028\u0029", + "name": "getCastType", + "summary": "Get\u0020the\u0020type\u0020of\u0020cast\u0020for\u0020a\u0020model\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getCastType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AdeviateClassCastableAttribute\u0028\u0029", + "name": "deviateClassCastableAttribute", + "summary": "Increment\u0020or\u0020decrement\u0020the\u0020given\u0020attribute\u0020using\u0020the\u0020custom\u0020cast\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_deviateClassCastableAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AserializeClassCastableAttribute\u0028\u0029", + "name": "serializeClassCastableAttribute", + "summary": "Serialize\u0020the\u0020given\u0020attribute\u0020using\u0020the\u0020custom\u0020cast\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_serializeClassCastableAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisCustomDateTimeCast\u0028\u0029", + "name": "isCustomDateTimeCast", + "summary": "Determine\u0020if\u0020the\u0020cast\u0020type\u0020is\u0020a\u0020custom\u0020date\u0020time\u0020cast.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isCustomDateTimeCast" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisImmutableCustomDateTimeCast\u0028\u0029", + "name": "isImmutableCustomDateTimeCast", + "summary": "Determine\u0020if\u0020the\u0020cast\u0020type\u0020is\u0020an\u0020immutable\u0020custom\u0020date\u0020time\u0020cast.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isImmutableCustomDateTimeCast" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisDecimalCast\u0028\u0029", + "name": "isDecimalCast", + "summary": "Determine\u0020if\u0020the\u0020cast\u0020type\u0020is\u0020a\u0020decimal\u0020cast.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isDecimalCast" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetAttribute\u0028\u0029", + "name": "setAttribute", + "summary": "Set\u0020a\u0020given\u0020attribute\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasSetMutator\u0028\u0029", + "name": "hasSetMutator", + "summary": "Determine\u0020if\u0020a\u0020set\u0020mutator\u0020exists\u0020for\u0020an\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasSetMutator" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasAttributeSetMutator\u0028\u0029", + "name": "hasAttributeSetMutator", + "summary": "Determine\u0020if\u0020an\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020set\u0020mutator\u0020exists\u0020for\u0020an\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasAttributeSetMutator" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetMutatedAttributeValue\u0028\u0029", + "name": "setMutatedAttributeValue", + "summary": "Set\u0020the\u0020value\u0020of\u0020an\u0020attribute\u0020using\u0020its\u0020mutator.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setMutatedAttributeValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetAttributeMarkedMutatedAttributeValue\u0028\u0029", + "name": "setAttributeMarkedMutatedAttributeValue", + "summary": "Set\u0020the\u0020value\u0020of\u0020a\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020attribute\u0020using\u0020its\u0020mutator.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setAttributeMarkedMutatedAttributeValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisDateAttribute\u0028\u0029", + "name": "isDateAttribute", + "summary": "Determine\u0020if\u0020the\u0020given\u0020attribute\u0020is\u0020a\u0020date\u0020or\u0020date\u0020castable.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isDateAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AfillJsonAttribute\u0028\u0029", + "name": "fillJsonAttribute", + "summary": "Set\u0020a\u0020given\u0020JSON\u0020attribute\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_fillJsonAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetClassCastableAttribute\u0028\u0029", + "name": "setClassCastableAttribute", + "summary": "Set\u0020the\u0020value\u0020of\u0020a\u0020class\u0020castable\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setClassCastableAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetEnumCastableAttribute\u0028\u0029", + "name": "setEnumCastableAttribute", + "summary": "Set\u0020the\u0020value\u0020of\u0020an\u0020enum\u0020castable\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setEnumCastableAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetArrayAttributeWithValue\u0028\u0029", + "name": "getArrayAttributeWithValue", + "summary": "Get\u0020an\u0020array\u0020attribute\u0020with\u0020the\u0020given\u0020key\u0020and\u0020value\u0020set.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getArrayAttributeWithValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetArrayAttributeByKey\u0028\u0029", + "name": "getArrayAttributeByKey", + "summary": "Get\u0020an\u0020array\u0020attribute\u0020or\u0020return\u0020an\u0020empty\u0020array\u0020if\u0020it\u0020is\u0020not\u0020set.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getArrayAttributeByKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AcastAttributeAsJson\u0028\u0029", + "name": "castAttributeAsJson", + "summary": "Cast\u0020the\u0020given\u0020attribute\u0020to\u0020JSON.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_castAttributeAsJson" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AasJson\u0028\u0029", + "name": "asJson", + "summary": "Encode\u0020the\u0020given\u0020value\u0020as\u0020JSON.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_asJson" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AfromJson\u0028\u0029", + "name": "fromJson", + "summary": "Decode\u0020the\u0020given\u0020JSON\u0020back\u0020into\u0020an\u0020array\u0020or\u0020object.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_fromJson" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AfromEncryptedString\u0028\u0029", + "name": "fromEncryptedString", + "summary": "Decrypt\u0020the\u0020given\u0020encrypted\u0020string.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_fromEncryptedString" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AcastAttributeAsEncryptedString\u0028\u0029", + "name": "castAttributeAsEncryptedString", + "summary": "Cast\u0020the\u0020given\u0020attribute\u0020to\u0020an\u0020encrypted\u0020string.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_castAttributeAsEncryptedString" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AencryptUsing\u0028\u0029", + "name": "encryptUsing", + "summary": "Set\u0020the\u0020encrypter\u0020instance\u0020that\u0020will\u0020be\u0020used\u0020to\u0020encrypt\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_encryptUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AfromFloat\u0028\u0029", + "name": "fromFloat", + "summary": "Decode\u0020the\u0020given\u0020float.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_fromFloat" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AasDecimal\u0028\u0029", + "name": "asDecimal", + "summary": "Return\u0020a\u0020decimal\u0020as\u0020string.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_asDecimal" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AasDate\u0028\u0029", + "name": "asDate", + "summary": "Return\u0020a\u0020timestamp\u0020as\u0020DateTime\u0020object\u0020with\u0020time\u0020set\u0020to\u002000\u003A00\u003A00.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_asDate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AasDateTime\u0028\u0029", + "name": "asDateTime", + "summary": "Return\u0020a\u0020timestamp\u0020as\u0020DateTime\u0020object.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_asDateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisStandardDateFormat\u0028\u0029", + "name": "isStandardDateFormat", + "summary": "Determine\u0020if\u0020the\u0020given\u0020value\u0020is\u0020a\u0020standard\u0020date\u0020format.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isStandardDateFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AfromDateTime\u0028\u0029", + "name": "fromDateTime", + "summary": "Convert\u0020a\u0020DateTime\u0020to\u0020a\u0020storable\u0020string.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_fromDateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AasTimestamp\u0028\u0029", + "name": "asTimestamp", + "summary": "Return\u0020a\u0020timestamp\u0020as\u0020unix\u0020timestamp.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_asTimestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AserializeDate\u0028\u0029", + "name": "serializeDate", + "summary": "Prepare\u0020a\u0020date\u0020for\u0020array\u0020\/\u0020JSON\u0020serialization.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_serializeDate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetDates\u0028\u0029", + "name": "getDates", + "summary": "Get\u0020the\u0020attributes\u0020that\u0020should\u0020be\u0020converted\u0020to\u0020dates.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getDates" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetDateFormat\u0028\u0029", + "name": "getDateFormat", + "summary": "Get\u0020the\u0020format\u0020for\u0020database\u0020stored\u0020dates.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getDateFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetDateFormat\u0028\u0029", + "name": "setDateFormat", + "summary": "Set\u0020the\u0020date\u0020format\u0020used\u0020by\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setDateFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasCast\u0028\u0029", + "name": "hasCast", + "summary": "Determine\u0020whether\u0020an\u0020attribute\u0020should\u0020be\u0020cast\u0020to\u0020a\u0020native\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasCast" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetCasts\u0028\u0029", + "name": "getCasts", + "summary": "Get\u0020the\u0020casts\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getCasts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisDateCastable\u0028\u0029", + "name": "isDateCastable", + "summary": "Determine\u0020whether\u0020a\u0020value\u0020is\u0020Date\u0020\/\u0020DateTime\u0020castable\u0020for\u0020inbound\u0020manipulation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isDateCastable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisDateCastableWithCustomFormat\u0028\u0029", + "name": "isDateCastableWithCustomFormat", + "summary": "Determine\u0020whether\u0020a\u0020value\u0020is\u0020Date\u0020\/\u0020DateTime\u0020custom\u002Dcastable\u0020for\u0020inbound\u0020manipulation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isDateCastableWithCustomFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisJsonCastable\u0028\u0029", + "name": "isJsonCastable", + "summary": "Determine\u0020whether\u0020a\u0020value\u0020is\u0020JSON\u0020castable\u0020for\u0020inbound\u0020manipulation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isJsonCastable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisEncryptedCastable\u0028\u0029", + "name": "isEncryptedCastable", + "summary": "Determine\u0020whether\u0020a\u0020value\u0020is\u0020an\u0020encrypted\u0020castable\u0020for\u0020inbound\u0020manipulation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isEncryptedCastable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisClassCastable\u0028\u0029", + "name": "isClassCastable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020key\u0020is\u0020cast\u0020using\u0020a\u0020custom\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isClassCastable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisEnumCastable\u0028\u0029", + "name": "isEnumCastable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020key\u0020is\u0020cast\u0020using\u0020an\u0020enum.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isEnumCastable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisClassDeviable\u0028\u0029", + "name": "isClassDeviable", + "summary": "Determine\u0020if\u0020the\u0020key\u0020is\u0020deviable\u0020using\u0020a\u0020custom\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isClassDeviable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisClassSerializable\u0028\u0029", + "name": "isClassSerializable", + "summary": "Determine\u0020if\u0020the\u0020key\u0020is\u0020serializable\u0020using\u0020a\u0020custom\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isClassSerializable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AresolveCasterClass\u0028\u0029", + "name": "resolveCasterClass", + "summary": "Resolve\u0020the\u0020custom\u0020caster\u0020class\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_resolveCasterClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AparseCasterClass\u0028\u0029", + "name": "parseCasterClass", + "summary": "Parse\u0020the\u0020given\u0020caster\u0020class,\u0020removing\u0020any\u0020arguments.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_parseCasterClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmergeAttributesFromCachedCasts\u0028\u0029", + "name": "mergeAttributesFromCachedCasts", + "summary": "Merge\u0020the\u0020cast\u0020class\u0020and\u0020attribute\u0020cast\u0020attributes\u0020back\u0020into\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mergeAttributesFromCachedCasts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmergeAttributesFromClassCasts\u0028\u0029", + "name": "mergeAttributesFromClassCasts", + "summary": "Merge\u0020the\u0020cast\u0020class\u0020attributes\u0020back\u0020into\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mergeAttributesFromClassCasts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AmergeAttributesFromAttributeCasts\u0028\u0029", + "name": "mergeAttributesFromAttributeCasts", + "summary": "Merge\u0020the\u0020cast\u0020class\u0020attributes\u0020back\u0020into\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_mergeAttributesFromAttributeCasts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AnormalizeCastClassResponse\u0028\u0029", + "name": "normalizeCastClassResponse", + "summary": "Normalize\u0020the\u0020response\u0020from\u0020a\u0020custom\u0020class\u0020caster.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_normalizeCastClassResponse" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetAttributes\u0028\u0029", + "name": "getAttributes", + "summary": "Get\u0020all\u0020of\u0020the\u0020current\u0020attributes\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetAttributesForInsert\u0028\u0029", + "name": "getAttributesForInsert", + "summary": "Get\u0020all\u0020of\u0020the\u0020current\u0020attributes\u0020on\u0020the\u0020model\u0020for\u0020an\u0020insert\u0020operation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getAttributesForInsert" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetRawAttributes\u0028\u0029", + "name": "setRawAttributes", + "summary": "Set\u0020the\u0020array\u0020of\u0020model\u0020attributes.\u0020No\u0020checking\u0020is\u0020done.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setRawAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetOriginal\u0028\u0029", + "name": "getOriginal", + "summary": "Get\u0020the\u0020model\u0027s\u0020original\u0020attribute\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getOriginal" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetOriginalWithoutRewindingModel\u0028\u0029", + "name": "getOriginalWithoutRewindingModel", + "summary": "Get\u0020the\u0020model\u0027s\u0020original\u0020attribute\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getOriginalWithoutRewindingModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetRawOriginal\u0028\u0029", + "name": "getRawOriginal", + "summary": "Get\u0020the\u0020model\u0027s\u0020raw\u0020original\u0020attribute\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getRawOriginal" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Get\u0020a\u0020subset\u0020of\u0020the\u0020model\u0027s\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_only" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsyncOriginal\u0028\u0029", + "name": "syncOriginal", + "summary": "Sync\u0020the\u0020original\u0020attributes\u0020with\u0020the\u0020current.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_syncOriginal" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsyncOriginalAttribute\u0028\u0029", + "name": "syncOriginalAttribute", + "summary": "Sync\u0020a\u0020single\u0020original\u0020attribute\u0020with\u0020its\u0020current\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_syncOriginalAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsyncOriginalAttributes\u0028\u0029", + "name": "syncOriginalAttributes", + "summary": "Sync\u0020multiple\u0020original\u0020attribute\u0020with\u0020their\u0020current\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_syncOriginalAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsyncChanges\u0028\u0029", + "name": "syncChanges", + "summary": "Sync\u0020the\u0020changed\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_syncChanges" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisDirty\u0028\u0029", + "name": "isDirty", + "summary": "Determine\u0020if\u0020the\u0020model\u0020or\u0020any\u0020of\u0020the\u0020given\u0020attribute\u0028s\u0029\u0020have\u0020been\u0020modified.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isDirty" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AisClean\u0028\u0029", + "name": "isClean", + "summary": "Determine\u0020if\u0020the\u0020model\u0020or\u0020all\u0020the\u0020given\u0020attribute\u0028s\u0029\u0020have\u0020remained\u0020the\u0020same.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_isClean" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AwasChanged\u0028\u0029", + "name": "wasChanged", + "summary": "Determine\u0020if\u0020the\u0020model\u0020or\u0020any\u0020of\u0020the\u0020given\u0020attribute\u0028s\u0029\u0020have\u0020been\u0020modified.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_wasChanged" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasChanges\u0028\u0029", + "name": "hasChanges", + "summary": "Determine\u0020if\u0020any\u0020of\u0020the\u0020given\u0020attributes\u0020were\u0020changed.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasChanges" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetDirty\u0028\u0029", + "name": "getDirty", + "summary": "Get\u0020the\u0020attributes\u0020that\u0020have\u0020been\u0020changed\u0020since\u0020the\u0020last\u0020sync.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getDirty" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetChanges\u0028\u0029", + "name": "getChanges", + "summary": "Get\u0020the\u0020attributes\u0020that\u0020were\u0020changed.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getChanges" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AoriginalIsEquivalent\u0028\u0029", + "name": "originalIsEquivalent", + "summary": "Determine\u0020if\u0020the\u0020new\u0020and\u0020old\u0020values\u0020for\u0020a\u0020given\u0020key\u0020are\u0020equivalent.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_originalIsEquivalent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AtransformModelValue\u0028\u0029", + "name": "transformModelValue", + "summary": "Transform\u0020a\u0020raw\u0020model\u0020value\u0020using\u0020mutators,\u0020casts,\u0020etc.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_transformModelValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Append\u0020attributes\u0020to\u0020query\u0020when\u0020building\u0020a\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_append" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AsetAppends\u0028\u0029", + "name": "setAppends", + "summary": "Set\u0020the\u0020accessors\u0020to\u0020append\u0020to\u0020model\u0020arrays.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_setAppends" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AhasAppended\u0028\u0029", + "name": "hasAppended", + "summary": "Return\u0020whether\u0020the\u0020accessor\u0020attribute\u0020has\u0020been\u0020appended.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_hasAppended" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetMutatedAttributes\u0028\u0029", + "name": "getMutatedAttributes", + "summary": "Get\u0020the\u0020mutated\u0020attributes\u0020for\u0020a\u0020given\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getMutatedAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AcacheMutatedAttributes\u0028\u0029", + "name": "cacheMutatedAttributes", + "summary": "Extract\u0020and\u0020cache\u0020all\u0020the\u0020mutated\u0020attributes\u0020of\u0020a\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_cacheMutatedAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetMutatorMethods\u0028\u0029", + "name": "getMutatorMethods", + "summary": "Get\u0020all\u0020of\u0020the\u0020attribute\u0020mutator\u0020methods.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getMutatorMethods" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003AgetAttributeMarkedMutatorMethods\u0028\u0029", + "name": "getAttributeMarkedMutatorMethods", + "summary": "Get\u0020all\u0020of\u0020the\u0020\u0022Attribute\u0022\u0020return\u0020typed\u0020attribute\u0020mutator\u0020methods.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#method_getAttributeMarkedMutatorMethods" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "The\u0020model\u0027s\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_attributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024original", + "name": "original", + "summary": "The\u0020model\u0020attribute\u0027s\u0020original\u0020state.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_original" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024changes", + "name": "changes", + "summary": "The\u0020changed\u0020model\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_changes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024casts", + "name": "casts", + "summary": "The\u0020attributes\u0020that\u0020should\u0020be\u0020cast.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_casts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024classCastCache", + "name": "classCastCache", + "summary": "The\u0020attributes\u0020that\u0020have\u0020been\u0020cast\u0020using\u0020custom\u0020classes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_classCastCache" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024attributeCastCache", + "name": "attributeCastCache", + "summary": "The\u0020attributes\u0020that\u0020have\u0020been\u0020cast\u0020using\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020mutators.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_attributeCastCache" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024primitiveCastTypes", + "name": "primitiveCastTypes", + "summary": "The\u0020built\u002Din,\u0020primitive\u0020cast\u0020types\u0020supported\u0020by\u0020Eloquent.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_primitiveCastTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024dates", + "name": "dates", + "summary": "The\u0020attributes\u0020that\u0020should\u0020be\u0020mutated\u0020to\u0020dates.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_dates" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024dateFormat", + "name": "dateFormat", + "summary": "The\u0020storage\u0020format\u0020of\u0020the\u0020model\u0027s\u0020date\u0020columns.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_dateFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024appends", + "name": "appends", + "summary": "The\u0020accessors\u0020to\u0020append\u0020to\u0020the\u0020model\u0027s\u0020array\u0020form.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_appends" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024snakeAttributes", + "name": "snakeAttributes", + "summary": "Indicates\u0020whether\u0020attributes\u0020are\u0020snake\u0020cased\u0020on\u0020arrays.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_snakeAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024mutatorCache", + "name": "mutatorCache", + "summary": "The\u0020cache\u0020of\u0020the\u0020mutated\u0020attributes\u0020for\u0020each\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_mutatorCache" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024attributeMutatorCache", + "name": "attributeMutatorCache", + "summary": "The\u0020cache\u0020of\u0020the\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020mutated\u0020attributes\u0020for\u0020each\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_attributeMutatorCache" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024getAttributeMutatorCache", + "name": "getAttributeMutatorCache", + "summary": "The\u0020cache\u0020of\u0020the\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020mutated,\u0020gettable\u0020attributes\u0020for\u0020each\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_getAttributeMutatorCache" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024setAttributeMutatorCache", + "name": "setAttributeMutatorCache", + "summary": "The\u0020cache\u0020of\u0020the\u0020\u0022Attribute\u0022\u0020return\u0020type\u0020marked\u0020mutated,\u0020settable\u0020attributes\u0020for\u0020each\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_setAttributeMutatorCache" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasAttributes\u003A\u003A\u0024encrypter", + "name": "encrypter", + "summary": "The\u0020encrypter\u0020instance\u0020that\u0020is\u0020used\u0020to\u0020encrypt\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasAttributes.html#property_encrypter" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents", + "name": "HasEvents", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Aobserve\u0028\u0029", + "name": "observe", + "summary": "Register\u0020observers\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_observe" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AregisterObserver\u0028\u0029", + "name": "registerObserver", + "summary": "Register\u0020a\u0020single\u0020observer\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_registerObserver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AresolveObserverClassName\u0028\u0029", + "name": "resolveObserverClassName", + "summary": "Resolve\u0020the\u0020observer\u0027s\u0020class\u0020name\u0020from\u0020an\u0020object\u0020or\u0020string.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_resolveObserverClassName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AgetObservableEvents\u0028\u0029", + "name": "getObservableEvents", + "summary": "Get\u0020the\u0020observable\u0020event\u0020names.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_getObservableEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AsetObservableEvents\u0028\u0029", + "name": "setObservableEvents", + "summary": "Set\u0020the\u0020observable\u0020event\u0020names.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_setObservableEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AaddObservableEvents\u0028\u0029", + "name": "addObservableEvents", + "summary": "Add\u0020an\u0020observable\u0020event\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_addObservableEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AremoveObservableEvents\u0028\u0029", + "name": "removeObservableEvents", + "summary": "Remove\u0020an\u0020observable\u0020event\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_removeObservableEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AregisterModelEvent\u0028\u0029", + "name": "registerModelEvent", + "summary": "Register\u0020a\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_registerModelEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AfireModelEvent\u0028\u0029", + "name": "fireModelEvent", + "summary": "Fire\u0020the\u0020given\u0020event\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_fireModelEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AfireCustomModelEvent\u0028\u0029", + "name": "fireCustomModelEvent", + "summary": "Fire\u0020a\u0020custom\u0020model\u0020event\u0020for\u0020the\u0020given\u0020event.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_fireCustomModelEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AfilterModelEventResults\u0028\u0029", + "name": "filterModelEventResults", + "summary": "Filter\u0020the\u0020model\u0020event\u0020results.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_filterModelEventResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Aretrieved\u0028\u0029", + "name": "retrieved", + "summary": "Register\u0020a\u0020retrieved\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_retrieved" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Asaving\u0028\u0029", + "name": "saving", + "summary": "Register\u0020a\u0020saving\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_saving" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Asaved\u0028\u0029", + "name": "saved", + "summary": "Register\u0020a\u0020saved\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_saved" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Aupdating\u0028\u0029", + "name": "updating", + "summary": "Register\u0020an\u0020updating\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_updating" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Aupdated\u0028\u0029", + "name": "updated", + "summary": "Register\u0020an\u0020updated\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_updated" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Acreating\u0028\u0029", + "name": "creating", + "summary": "Register\u0020a\u0020creating\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_creating" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Acreated\u0028\u0029", + "name": "created", + "summary": "Register\u0020a\u0020created\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_created" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Areplicating\u0028\u0029", + "name": "replicating", + "summary": "Register\u0020a\u0020replicating\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_replicating" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Adeleting\u0028\u0029", + "name": "deleting", + "summary": "Register\u0020a\u0020deleting\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_deleting" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003Adeleted\u0028\u0029", + "name": "deleted", + "summary": "Register\u0020a\u0020deleted\u0020model\u0020event\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_deleted" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AflushEventListeners\u0028\u0029", + "name": "flushEventListeners", + "summary": "Remove\u0020all\u0020of\u0020the\u0020event\u0020listeners\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_flushEventListeners" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AgetEventDispatcher\u0028\u0029", + "name": "getEventDispatcher", + "summary": "Get\u0020the\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_getEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AsetEventDispatcher\u0028\u0029", + "name": "setEventDispatcher", + "summary": "Set\u0020the\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_setEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AunsetEventDispatcher\u0028\u0029", + "name": "unsetEventDispatcher", + "summary": "Unset\u0020the\u0020event\u0020dispatcher\u0020for\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_unsetEventDispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003AwithoutEvents\u0028\u0029", + "name": "withoutEvents", + "summary": "Execute\u0020a\u0020callback\u0020without\u0020firing\u0020any\u0020model\u0020events\u0020for\u0020any\u0020model\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#method_withoutEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003A\u0024dispatchesEvents", + "name": "dispatchesEvents", + "summary": "The\u0020event\u0020map\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#property_dispatchesEvents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasEvents\u003A\u003A\u0024observables", + "name": "observables", + "summary": "User\u0020exposed\u0020observable\u0020events.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasEvents.html#property_observables" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes", + "name": "HasGlobalScopes", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasGlobalScopes.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes\u003A\u003AaddGlobalScope\u0028\u0029", + "name": "addGlobalScope", + "summary": "Register\u0020a\u0020new\u0020global\u0020scope\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasGlobalScopes.html#method_addGlobalScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes\u003A\u003AhasGlobalScope\u0028\u0029", + "name": "hasGlobalScope", + "summary": "Determine\u0020if\u0020a\u0020model\u0020has\u0020a\u0020global\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasGlobalScopes.html#method_hasGlobalScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes\u003A\u003AgetGlobalScope\u0028\u0029", + "name": "getGlobalScope", + "summary": "Get\u0020a\u0020global\u0020scope\u0020registered\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasGlobalScopes.html#method_getGlobalScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasGlobalScopes\u003A\u003AgetGlobalScopes\u0028\u0029", + "name": "getGlobalScopes", + "summary": "Get\u0020the\u0020global\u0020scopes\u0020for\u0020this\u0020class\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasGlobalScopes.html#method_getGlobalScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships", + "name": "HasRelationships", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AresolveRelationUsing\u0028\u0029", + "name": "resolveRelationUsing", + "summary": "Define\u0020a\u0020dynamic\u0020relation\u0020resolver.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_resolveRelationUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AhasOne\u0028\u0029", + "name": "hasOne", + "summary": "Define\u0020a\u0020one\u002Dto\u002Done\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_hasOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewHasOne\u0028\u0029", + "name": "newHasOne", + "summary": "Instantiate\u0020a\u0020new\u0020HasOne\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newHasOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AhasOneThrough\u0028\u0029", + "name": "hasOneThrough", + "summary": "Define\u0020a\u0020has\u002Done\u002Dthrough\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_hasOneThrough" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewHasOneThrough\u0028\u0029", + "name": "newHasOneThrough", + "summary": "Instantiate\u0020a\u0020new\u0020HasOneThrough\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newHasOneThrough" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphOne\u0028\u0029", + "name": "morphOne", + "summary": "Define\u0020a\u0020polymorphic\u0020one\u002Dto\u002Done\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewMorphOne\u0028\u0029", + "name": "newMorphOne", + "summary": "Instantiate\u0020a\u0020new\u0020MorphOne\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newMorphOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AbelongsTo\u0028\u0029", + "name": "belongsTo", + "summary": "Define\u0020an\u0020inverse\u0020one\u002Dto\u002Done\u0020or\u0020many\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_belongsTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewBelongsTo\u0028\u0029", + "name": "newBelongsTo", + "summary": "Instantiate\u0020a\u0020new\u0020BelongsTo\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newBelongsTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphTo\u0028\u0029", + "name": "morphTo", + "summary": "Define\u0020a\u0020polymorphic,\u0020inverse\u0020one\u002Dto\u002Done\u0020or\u0020many\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphEagerTo\u0028\u0029", + "name": "morphEagerTo", + "summary": "Define\u0020a\u0020polymorphic,\u0020inverse\u0020one\u002Dto\u002Done\u0020or\u0020many\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphEagerTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphInstanceTo\u0028\u0029", + "name": "morphInstanceTo", + "summary": "Define\u0020a\u0020polymorphic,\u0020inverse\u0020one\u002Dto\u002Done\u0020or\u0020many\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphInstanceTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewMorphTo\u0028\u0029", + "name": "newMorphTo", + "summary": "Instantiate\u0020a\u0020new\u0020MorphTo\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newMorphTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AgetActualClassNameForMorph\u0028\u0029", + "name": "getActualClassNameForMorph", + "summary": "Retrieve\u0020the\u0020actual\u0020class\u0020name\u0020for\u0020a\u0020given\u0020morph\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_getActualClassNameForMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AguessBelongsToRelation\u0028\u0029", + "name": "guessBelongsToRelation", + "summary": "Guess\u0020the\u0020\u0022belongs\u0020to\u0022\u0020relationship\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_guessBelongsToRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AhasMany\u0028\u0029", + "name": "hasMany", + "summary": "Define\u0020a\u0020one\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_hasMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewHasMany\u0028\u0029", + "name": "newHasMany", + "summary": "Instantiate\u0020a\u0020new\u0020HasMany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newHasMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AhasManyThrough\u0028\u0029", + "name": "hasManyThrough", + "summary": "Define\u0020a\u0020has\u002Dmany\u002Dthrough\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_hasManyThrough" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewHasManyThrough\u0028\u0029", + "name": "newHasManyThrough", + "summary": "Instantiate\u0020a\u0020new\u0020HasManyThrough\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newHasManyThrough" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphMany\u0028\u0029", + "name": "morphMany", + "summary": "Define\u0020a\u0020polymorphic\u0020one\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewMorphMany\u0028\u0029", + "name": "newMorphMany", + "summary": "Instantiate\u0020a\u0020new\u0020MorphMany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newMorphMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AbelongsToMany\u0028\u0029", + "name": "belongsToMany", + "summary": "Define\u0020a\u0020many\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_belongsToMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewBelongsToMany\u0028\u0029", + "name": "newBelongsToMany", + "summary": "Instantiate\u0020a\u0020new\u0020BelongsToMany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newBelongsToMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphToMany\u0028\u0029", + "name": "morphToMany", + "summary": "Define\u0020a\u0020polymorphic\u0020many\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphToMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewMorphToMany\u0028\u0029", + "name": "newMorphToMany", + "summary": "Instantiate\u0020a\u0020new\u0020MorphToMany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newMorphToMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AmorphedByMany\u0028\u0029", + "name": "morphedByMany", + "summary": "Define\u0020a\u0020polymorphic,\u0020inverse\u0020many\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_morphedByMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AguessBelongsToManyRelation\u0028\u0029", + "name": "guessBelongsToManyRelation", + "summary": "Get\u0020the\u0020relationship\u0020name\u0020of\u0020the\u0020belongsToMany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_guessBelongsToManyRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AjoiningTable\u0028\u0029", + "name": "joiningTable", + "summary": "Get\u0020the\u0020joining\u0020table\u0020name\u0020for\u0020a\u0020many\u002Dto\u002Dmany\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_joiningTable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AjoiningTableSegment\u0028\u0029", + "name": "joiningTableSegment", + "summary": "Get\u0020this\u0020model\u0027s\u0020half\u0020of\u0020the\u0020intermediate\u0020table\u0020name\u0020for\u0020belongsToMany\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_joiningTableSegment" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003A\u0024touches", + "name": "touches", + "summary": "The\u0020relationships\u0020that\u0020should\u0020be\u0020touched\u0020on\u0020save.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#property_touches" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AtouchOwners\u0028\u0029", + "name": "touchOwners", + "summary": "Touch\u0020the\u0020owning\u0020relations\u0020of\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_touchOwners" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AgetMorphs\u0028\u0029", + "name": "getMorphs", + "summary": "Get\u0020the\u0020polymorphic\u0020relationship\u0020columns.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_getMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AgetMorphClass\u0028\u0029", + "name": "getMorphClass", + "summary": "Get\u0020the\u0020class\u0020name\u0020for\u0020polymorphic\u0020relations.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_getMorphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AnewRelatedInstance\u0028\u0029", + "name": "newRelatedInstance", + "summary": "Create\u0020a\u0020new\u0020model\u0020instance\u0020for\u0020a\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_newRelatedInstance" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AgetRelations\u0028\u0029", + "name": "getRelations", + "summary": "Get\u0020all\u0020the\u0020loaded\u0020relations\u0020for\u0020the\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_getRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AgetRelation\u0028\u0029", + "name": "getRelation", + "summary": "Get\u0020a\u0020specified\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_getRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003ArelationLoaded\u0028\u0029", + "name": "relationLoaded", + "summary": "Determine\u0020if\u0020the\u0020given\u0020relation\u0020is\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_relationLoaded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AsetRelation\u0028\u0029", + "name": "setRelation", + "summary": "Set\u0020the\u0020given\u0020relationship\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_setRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AunsetRelation\u0028\u0029", + "name": "unsetRelation", + "summary": "Unset\u0020a\u0020loaded\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_unsetRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AsetRelations\u0028\u0029", + "name": "setRelations", + "summary": "Set\u0020the\u0020entire\u0020relations\u0020array\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_setRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AwithoutRelations\u0028\u0029", + "name": "withoutRelations", + "summary": "Duplicate\u0020the\u0020instance\u0020and\u0020unset\u0020all\u0020the\u0020loaded\u0020relations.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_withoutRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AunsetRelations\u0028\u0029", + "name": "unsetRelations", + "summary": "Unset\u0020all\u0020the\u0020loaded\u0020relations\u0020for\u0020the\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_unsetRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AgetTouchedRelations\u0028\u0029", + "name": "getTouchedRelations", + "summary": "Get\u0020the\u0020relationships\u0020that\u0020are\u0020touched\u0020on\u0020save.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_getTouchedRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003AsetTouchedRelations\u0028\u0029", + "name": "setTouchedRelations", + "summary": "Set\u0020the\u0020relationships\u0020that\u0020are\u0020touched\u0020on\u0020save.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#method_setTouchedRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003A\u0024relations", + "name": "relations", + "summary": "The\u0020loaded\u0020relationships\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#property_relations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003A\u0024manyMethods", + "name": "manyMethods", + "summary": "The\u0020many\u0020to\u0020many\u0020relationship\u0020methods.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#property_manyMethods" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasRelationships\u003A\u003A\u0024relationResolvers", + "name": "relationResolvers", + "summary": "The\u0020relation\u0020resolver\u0020callbacks.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasRelationships.html#property_relationResolvers" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps", + "name": "HasTimestamps", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003Atouch\u0028\u0029", + "name": "touch", + "summary": "Update\u0020the\u0020model\u0027s\u0020update\u0020timestamp.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_touch" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AupdateTimestamps\u0028\u0029", + "name": "updateTimestamps", + "summary": "Update\u0020the\u0020creation\u0020and\u0020update\u0020timestamps.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_updateTimestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AsetCreatedAt\u0028\u0029", + "name": "setCreatedAt", + "summary": "Set\u0020the\u0020value\u0020of\u0020the\u0020\u0022created\u0020at\u0022\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_setCreatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AsetUpdatedAt\u0028\u0029", + "name": "setUpdatedAt", + "summary": "Set\u0020the\u0020value\u0020of\u0020the\u0020\u0022updated\u0020at\u0022\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_setUpdatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AfreshTimestamp\u0028\u0029", + "name": "freshTimestamp", + "summary": "Get\u0020a\u0020fresh\u0020timestamp\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_freshTimestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AfreshTimestampString\u0028\u0029", + "name": "freshTimestampString", + "summary": "Get\u0020a\u0020fresh\u0020timestamp\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_freshTimestampString" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AusesTimestamps\u0028\u0029", + "name": "usesTimestamps", + "summary": "Determine\u0020if\u0020the\u0020model\u0020uses\u0020timestamps.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_usesTimestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AgetCreatedAtColumn\u0028\u0029", + "name": "getCreatedAtColumn", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022created\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_getCreatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AgetUpdatedAtColumn\u0028\u0029", + "name": "getUpdatedAtColumn", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_getUpdatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AgetQualifiedCreatedAtColumn\u0028\u0029", + "name": "getQualifiedCreatedAtColumn", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020\u0022created\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_getQualifiedCreatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003AgetQualifiedUpdatedAtColumn\u0028\u0029", + "name": "getQualifiedUpdatedAtColumn", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#method_getQualifiedUpdatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HasTimestamps\u003A\u003A\u0024timestamps", + "name": "timestamps", + "summary": "Indicates\u0020if\u0020the\u0020model\u0020should\u0020be\u0020timestamped.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HasTimestamps.html#property_timestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes", + "name": "HidesAttributes", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AgetHidden\u0028\u0029", + "name": "getHidden", + "summary": "Get\u0020the\u0020hidden\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_getHidden" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AsetHidden\u0028\u0029", + "name": "setHidden", + "summary": "Set\u0020the\u0020hidden\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_setHidden" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AgetVisible\u0028\u0029", + "name": "getVisible", + "summary": "Get\u0020the\u0020visible\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_getVisible" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AsetVisible\u0028\u0029", + "name": "setVisible", + "summary": "Set\u0020the\u0020visible\u0020attributes\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_setVisible" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AmakeVisible\u0028\u0029", + "name": "makeVisible", + "summary": "Make\u0020the\u0020given,\u0020typically\u0020hidden,\u0020attributes\u0020visible.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_makeVisible" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AmakeVisibleIf\u0028\u0029", + "name": "makeVisibleIf", + "summary": "Make\u0020the\u0020given,\u0020typically\u0020hidden,\u0020attributes\u0020visible\u0020if\u0020the\u0020given\u0020truth\u0020test\u0020passes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_makeVisibleIf" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AmakeHidden\u0028\u0029", + "name": "makeHidden", + "summary": "Make\u0020the\u0020given,\u0020typically\u0020visible,\u0020attributes\u0020hidden.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_makeHidden" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003AmakeHiddenIf\u0028\u0029", + "name": "makeHiddenIf", + "summary": "Make\u0020the\u0020given,\u0020typically\u0020visible,\u0020attributes\u0020hidden\u0020if\u0020the\u0020given\u0020truth\u0020test\u0020passes.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#method_makeHiddenIf" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003A\u0024hidden", + "name": "hidden", + "summary": "The\u0020attributes\u0020that\u0020should\u0020be\u0020hidden\u0020for\u0020serialization.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#property_hidden" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\HidesAttributes\u003A\u003A\u0024visible", + "name": "visible", + "summary": "The\u0020attributes\u0020that\u0020should\u0020be\u0020visible\u0020in\u0020serialization.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-HidesAttributes.html#property_visible" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships", + "name": "QueriesRelationships", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_has" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AhasNested\u0028\u0029", + "name": "hasNested", + "summary": "Add\u0020nested\u0020relationship\u0020count\u0020\/\u0020exists\u0020conditions\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_hasNested" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorHas\u0028\u0029", + "name": "orHas", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orHas" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AdoesntHave\u0028\u0029", + "name": "doesntHave", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_doesntHave" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorDoesntHave\u0028\u0029", + "name": "orDoesntHave", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orDoesntHave" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereHas\u0028\u0029", + "name": "whereHas", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereHas" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereHas\u0028\u0029", + "name": "orWhereHas", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses\u0020and\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereHas" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereDoesntHave\u0028\u0029", + "name": "whereDoesntHave", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereDoesntHave" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereDoesntHave\u0028\u0029", + "name": "orWhereDoesntHave", + "summary": "Add\u0020a\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses\u0020and\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereDoesntHave" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AhasMorph\u0028\u0029", + "name": "hasMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_hasMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AgetBelongsToRelation\u0028\u0029", + "name": "getBelongsToRelation", + "summary": "Get\u0020the\u0020BelongsTo\u0020relationship\u0020for\u0020a\u0020single\u0020polymorphic\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_getBelongsToRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorHasMorph\u0028\u0029", + "name": "orHasMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orHasMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AdoesntHaveMorph\u0028\u0029", + "name": "doesntHaveMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_doesntHaveMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorDoesntHaveMorph\u0028\u0029", + "name": "orDoesntHaveMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orDoesntHaveMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereHasMorph\u0028\u0029", + "name": "whereHasMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereHasMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereHasMorph\u0028\u0029", + "name": "orWhereHasMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses\u0020and\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereHasMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereDoesntHaveMorph\u0028\u0029", + "name": "whereDoesntHaveMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereDoesntHaveMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereDoesntHaveMorph\u0028\u0029", + "name": "orWhereDoesntHaveMorph", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020count\u0020\/\u0020exists\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020where\u0020clauses\u0020and\u0020an\u0020\u0022or\u0022.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereDoesntHaveMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereRelation\u0028\u0029", + "name": "whereRelation", + "summary": "Add\u0020a\u0020basic\u0020where\u0020clause\u0020to\u0020a\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereRelation\u0028\u0029", + "name": "orWhereRelation", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0022\u0020clause\u0020to\u0020a\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereMorphRelation\u0028\u0029", + "name": "whereMorphRelation", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020a\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereMorphRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereMorphRelation\u0028\u0029", + "name": "orWhereMorphRelation", + "summary": "Add\u0020a\u0020polymorphic\u0020relationship\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020an\u0020\u0022or\u0020where\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereMorphRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereMorphedTo\u0028\u0029", + "name": "whereMorphedTo", + "summary": "Add\u0020a\u0020morph\u002Dto\u0020relationship\u0020condition\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereMorphedTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereMorphedTo\u0028\u0029", + "name": "orWhereMorphedTo", + "summary": "Add\u0020a\u0020morph\u002Dto\u0020relationship\u0020condition\u0020to\u0020the\u0020query\u0020with\u0020an\u0020\u0022or\u0020where\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereMorphedTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwhereBelongsTo\u0028\u0029", + "name": "whereBelongsTo", + "summary": "Add\u0020a\u0020\u0022belongs\u0020to\u0022\u0020relationship\u0020where\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_whereBelongsTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AorWhereBelongsTo\u0028\u0029", + "name": "orWhereBelongsTo", + "summary": "Add\u0020an\u0020\u0022BelongsTo\u0022\u0020relationship\u0020with\u0020an\u0020\u0022or\u0020where\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_orWhereBelongsTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithAggregate\u0028\u0029", + "name": "withAggregate", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020include\u0020an\u0020aggregate\u0020value\u0020for\u0020a\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithCount\u0028\u0029", + "name": "withCount", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020count\u0020the\u0020relations.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithMax\u0028\u0029", + "name": "withMax", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020include\u0020the\u0020max\u0020of\u0020the\u0020relation\u0027s\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withMax" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithMin\u0028\u0029", + "name": "withMin", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020include\u0020the\u0020min\u0020of\u0020the\u0020relation\u0027s\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withMin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithSum\u0028\u0029", + "name": "withSum", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020include\u0020the\u0020sum\u0020of\u0020the\u0020relation\u0027s\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withSum" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithAvg\u0028\u0029", + "name": "withAvg", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020include\u0020the\u0020average\u0020of\u0020the\u0020relation\u0027s\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withAvg" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AwithExists\u0028\u0029", + "name": "withExists", + "summary": "Add\u0020subselect\u0020queries\u0020to\u0020include\u0020the\u0020existence\u0020of\u0020related\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_withExists" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AaddHasWhere\u0028\u0029", + "name": "addHasWhere", + "summary": "Add\u0020the\u0020\u0022has\u0022\u0020condition\u0020where\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_addHasWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AmergeConstraintsFrom\u0028\u0029", + "name": "mergeConstraintsFrom", + "summary": "Merge\u0020the\u0020where\u0020constraints\u0020from\u0020another\u0020query\u0020to\u0020the\u0020current\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_mergeConstraintsFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AaddWhereCountQuery\u0028\u0029", + "name": "addWhereCountQuery", + "summary": "Add\u0020a\u0020sub\u002Dquery\u0020count\u0020clause\u0020to\u0020this\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_addWhereCountQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AgetRelationWithoutConstraints\u0028\u0029", + "name": "getRelationWithoutConstraints", + "summary": "Get\u0020the\u0020\u0022has\u0020relation\u0022\u0020base\u0020query\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_getRelationWithoutConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns\\QueriesRelationships\u003A\u003AcanUseExistsForExistenceCheck\u0028\u0029", + "name": "canUseExistsForExistenceCheck", + "summary": "Check\u0020if\u0020we\u0020can\u0020run\u0020an\u0020\u0022exists\u0022\u0020query\u0020to\u0020optimize\u0020performance.", + "url": "classes/Illuminate-Database-Eloquent-Concerns-QueriesRelationships.html#method_canUseExistsForExistenceCheck" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToManyRelationship", + "name": "BelongsToManyRelationship", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToManyRelationship.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToManyRelationship\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020attached\u0020relationship\u0020definition.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToManyRelationship.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToManyRelationship\u003A\u003AcreateFor\u0028\u0029", + "name": "createFor", + "summary": "Create\u0020the\u0020attached\u0020relationship\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToManyRelationship.html#method_createFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToManyRelationship\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020related\u0020factory\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToManyRelationship.html#property_factory" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToManyRelationship\u003A\u003A\u0024pivot", + "name": "pivot", + "summary": "The\u0020pivot\u0020attributes\u0020\/\u0020attribute\u0020resolver.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToManyRelationship.html#property_pivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToManyRelationship\u003A\u003A\u0024relationship", + "name": "relationship", + "summary": "The\u0020relationship\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToManyRelationship.html#property_relationship" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship", + "name": "BelongsToRelationship", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020\u0022belongs\u0020to\u0022\u0020relationship\u0020definition.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship\u003A\u003AattributesFor\u0028\u0029", + "name": "attributesFor", + "summary": "Get\u0020the\u0020parent\u0020model\u0020attributes\u0020and\u0020resolvers\u0020for\u0020the\u0020given\u0020child\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html#method_attributesFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship\u003A\u003Aresolver\u0028\u0029", + "name": "resolver", + "summary": "Get\u0020the\u0020deferred\u0020resolver\u0020for\u0020this\u0020relationship\u0027s\u0020parent\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html#method_resolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020related\u0020factory\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html#property_factory" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship\u003A\u003A\u0024relationship", + "name": "relationship", + "summary": "The\u0020relationship\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html#property_relationship" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\BelongsToRelationship\u003A\u003A\u0024resolved", + "name": "resolved", + "summary": "The\u0020cached,\u0020resolved\u0020parent\u0020instance\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Factories-BelongsToRelationship.html#property_resolved" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\CrossJoinSequence", + "name": "CrossJoinSequence", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-CrossJoinSequence.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\CrossJoinSequence\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020cross\u0020join\u0020sequence\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-CrossJoinSequence.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020factory\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Adefinition\u0028\u0029", + "name": "definition", + "summary": "Define\u0020the\u0020model\u0027s\u0020default\u0020state.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_definition" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "Get\u0020a\u0020new\u0020factory\u0020instance\u0020for\u0020the\u0020given\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_new" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Atimes\u0028\u0029", + "name": "times", + "summary": "Get\u0020a\u0020new\u0020factory\u0020instance\u0020for\u0020the\u0020given\u0020number\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_times" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020the\u0020factory.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_configure" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Get\u0020the\u0020raw\u0020attributes\u0020generated\u0020by\u0020the\u0020factory.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcreateOne\u0028\u0029", + "name": "createOne", + "summary": "Create\u0020a\u0020single\u0020model\u0020and\u0020persist\u0020it\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_createOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcreateOneQuietly\u0028\u0029", + "name": "createOneQuietly", + "summary": "Create\u0020a\u0020single\u0020model\u0020and\u0020persist\u0020it\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_createOneQuietly" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcreateMany\u0028\u0029", + "name": "createMany", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models\u0020and\u0020persist\u0020them\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_createMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcreateManyQuietly\u0028\u0029", + "name": "createManyQuietly", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models\u0020and\u0020persist\u0020them\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_createManyQuietly" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models\u0020and\u0020persist\u0020them\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcreateQuietly\u0028\u0029", + "name": "createQuietly", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models\u0020and\u0020persist\u0020them\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_createQuietly" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Alazy\u0028\u0029", + "name": "lazy", + "summary": "Create\u0020a\u0020callback\u0020that\u0020persists\u0020a\u0020model\u0020in\u0020the\u0020database\u0020when\u0020invoked.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_lazy" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "Set\u0020the\u0020connection\u0020name\u0020on\u0020the\u0020results\u0020and\u0020store\u0020them.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_store" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcreateChildren\u0028\u0029", + "name": "createChildren", + "summary": "Create\u0020the\u0020children\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_createChildren" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AmakeOne\u0028\u0029", + "name": "makeOne", + "summary": "Make\u0020a\u0020single\u0020instance\u0020of\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_makeOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020collection\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_make" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AmakeInstance\u0028\u0029", + "name": "makeInstance", + "summary": "Make\u0020an\u0020instance\u0020of\u0020the\u0020model\u0020with\u0020the\u0020given\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_makeInstance" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AgetExpandedAttributes\u0028\u0029", + "name": "getExpandedAttributes", + "summary": "Get\u0020a\u0020raw\u0020attributes\u0020array\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_getExpandedAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AgetRawAttributes\u0028\u0029", + "name": "getRawAttributes", + "summary": "Get\u0020the\u0020raw\u0020attributes\u0020for\u0020the\u0020model\u0020as\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_getRawAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AparentResolvers\u0028\u0029", + "name": "parentResolvers", + "summary": "Create\u0020the\u0020parent\u0020relationship\u0020resolvers\u0020\u0028as\u0020deferred\u0020Closures\u0029.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_parentResolvers" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AexpandAttributes\u0028\u0029", + "name": "expandAttributes", + "summary": "Expand\u0020all\u0020attributes\u0020to\u0020their\u0020underlying\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_expandAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Astate\u0028\u0029", + "name": "state", + "summary": "Add\u0020a\u0020new\u0020state\u0020transformation\u0020to\u0020the\u0020model\u0020definition.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_state" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003Asequence\u0028\u0029", + "name": "sequence", + "summary": "Add\u0020a\u0020new\u0020sequenced\u0020state\u0020transformation\u0020to\u0020the\u0020model\u0020definition.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_sequence" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcrossJoinSequence\u0028\u0029", + "name": "crossJoinSequence", + "summary": "Add\u0020a\u0020new\u0020cross\u0020joined\u0020sequenced\u0020state\u0020transformation\u0020to\u0020the\u0020model\u0020definition.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_crossJoinSequence" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024has", + "name": "has", + "summary": "The\u0020parent\u0020relationships\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_has" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AguessRelationship\u0028\u0029", + "name": "guessRelationship", + "summary": "Attempt\u0020to\u0020guess\u0020the\u0020relationship\u0020name\u0020for\u0020a\u0020\u0022has\u0022\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_guessRelationship" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AhasAttached\u0028\u0029", + "name": "hasAttached", + "summary": "Define\u0020an\u0020attached\u0020relationship\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_hasAttached" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024for", + "name": "for", + "summary": "The\u0020child\u0020relationships\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_for" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024afterMaking", + "name": "afterMaking", + "summary": "The\u0020\u0022after\u0020making\u0022\u0020callbacks\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_afterMaking" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024afterCreating", + "name": "afterCreating", + "summary": "The\u0020\u0022after\u0020creating\u0022\u0020callbacks\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_afterCreating" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcallAfterMaking\u0028\u0029", + "name": "callAfterMaking", + "summary": "Call\u0020the\u0020\u0022after\u0020making\u0022\u0020callbacks\u0020for\u0020the\u0020given\u0020model\u0020instances.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_callAfterMaking" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AcallAfterCreating\u0028\u0029", + "name": "callAfterCreating", + "summary": "Call\u0020the\u0020\u0022after\u0020creating\u0022\u0020callbacks\u0020for\u0020the\u0020given\u0020model\u0020instances.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_callAfterCreating" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024count", + "name": "count", + "summary": "The\u0020number\u0020of\u0020models\u0020that\u0020should\u0020be\u0020generated.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_count" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020database\u0020connection\u0020that\u0020will\u0020be\u0020used\u0020to\u0020create\u0020the\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AnewInstance\u0028\u0029", + "name": "newInstance", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020factory\u0020builder\u0020with\u0020the\u0020given\u0020mutated\u0020properties.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_newInstance" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AnewModel\u0028\u0029", + "name": "newModel", + "summary": "Get\u0020a\u0020new\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_newModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AmodelName\u0028\u0029", + "name": "modelName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020model\u0020that\u0020is\u0020generated\u0020by\u0020the\u0020factory.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_modelName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AguessModelNamesUsing\u0028\u0029", + "name": "guessModelNamesUsing", + "summary": "Specify\u0020the\u0020callback\u0020that\u0020should\u0020be\u0020invoked\u0020to\u0020guess\u0020model\u0020names\u0020based\u0020on\u0020factory\u0020names.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_guessModelNamesUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AuseNamespace\u0028\u0029", + "name": "useNamespace", + "summary": "Specify\u0020the\u0020default\u0020namespace\u0020that\u0020contains\u0020the\u0020application\u0027s\u0020model\u0020factories.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_useNamespace" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AfactoryForModel\u0028\u0029", + "name": "factoryForModel", + "summary": "Get\u0020a\u0020new\u0020factory\u0020instance\u0020for\u0020the\u0020given\u0020model\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_factoryForModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AguessFactoryNamesUsing\u0028\u0029", + "name": "guessFactoryNamesUsing", + "summary": "Specify\u0020the\u0020callback\u0020that\u0020should\u0020be\u0020invoked\u0020to\u0020guess\u0020factory\u0020names\u0020based\u0020on\u0020dynamic\u0020relationship\u0020names.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_guessFactoryNamesUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AwithFaker\u0028\u0029", + "name": "withFaker", + "summary": "Get\u0020a\u0020new\u0020Faker\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_withFaker" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AresolveFactoryName\u0028\u0029", + "name": "resolveFactoryName", + "summary": "Get\u0020the\u0020factory\u0020name\u0020for\u0020the\u0020given\u0020model\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_resolveFactoryName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003AappNamespace\u0028\u0029", + "name": "appNamespace", + "summary": "Get\u0020the\u0020application\u0020namespace\u0020for\u0020the\u0020application.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method_appNamespace" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Proxy\u0020dynamic\u0020factory\u0020methods\u0020onto\u0020their\u0020proper\u0020methods.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020name\u0020of\u0020the\u0020factory\u0027s\u0020corresponding\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024states", + "name": "states", + "summary": "The\u0020state\u0020transformations\u0020that\u0020will\u0020be\u0020applied\u0020to\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_states" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024faker", + "name": "faker", + "summary": "The\u0020current\u0020Faker\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_faker" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "The\u0020default\u0020namespace\u0020where\u0020factories\u0020reside.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_namespace" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024modelNameResolver", + "name": "modelNameResolver", + "summary": "The\u0020default\u0020model\u0020name\u0020resolver.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_modelNameResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Factory\u003A\u003A\u0024factoryNameResolver", + "name": "factoryNameResolver", + "summary": "The\u0020factory\u0020name\u0020resolver.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Factory.html#property_factoryNameResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\HasFactory", + "name": "HasFactory", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-HasFactory.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\HasFactory\u003A\u003Afactory\u0028\u0029", + "name": "factory", + "summary": "Get\u0020a\u0020new\u0020factory\u0020instance\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-HasFactory.html#method_factory" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\HasFactory\u003A\u003AnewFactory\u0028\u0029", + "name": "newFactory", + "summary": "Create\u0020a\u0020new\u0020factory\u0020instance\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-HasFactory.html#method_newFactory" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Relationship", + "name": "Relationship", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-Relationship.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Relationship\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020child\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Relationship.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Relationship\u003A\u003AcreateFor\u0028\u0029", + "name": "createFor", + "summary": "Create\u0020the\u0020child\u0020relationship\u0020for\u0020the\u0020given\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Relationship.html#method_createFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Relationship\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020related\u0020factory\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Relationship.html#property_factory" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Relationship\u003A\u003A\u0024relationship", + "name": "relationship", + "summary": "The\u0020relationship\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Relationship.html#property_relationship" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Sequence", + "name": "Sequence", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Factories-Sequence.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Sequence\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020sequence\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Sequence.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Sequence\u003A\u003A\u0024count", + "name": "count", + "summary": "The\u0020count\u0020of\u0020the\u0020sequence\u0020items.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Sequence.html#property_count" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Sequence\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "Get\u0020the\u0020next\u0020value\u0020in\u0020the\u0020sequence.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Sequence.html#method___invoke" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Sequence\u003A\u003A\u0024sequence", + "name": "sequence", + "summary": "The\u0020sequence\u0020of\u0020return\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Sequence.html#property_sequence" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories\\Sequence\u003A\u003A\u0024index", + "name": "index", + "summary": "The\u0020current\u0020index\u0020of\u0020the\u0020sequence\u0020iteration.", + "url": "classes/Illuminate-Database-Eloquent-Factories-Sequence.html#property_index" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\HigherOrderBuilderProxy", + "name": "HigherOrderBuilderProxy", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-HigherOrderBuilderProxy.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\HigherOrderBuilderProxy\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020proxy\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-HigherOrderBuilderProxy.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\HigherOrderBuilderProxy\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Proxy\u0020a\u0020scope\u0020call\u0020onto\u0020the\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-HigherOrderBuilderProxy.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\HigherOrderBuilderProxy\u003A\u003A\u0024builder", + "name": "builder", + "summary": "The\u0020collection\u0020being\u0020operated\u0020on.", + "url": "classes/Illuminate-Database-Eloquent-HigherOrderBuilderProxy.html#property_builder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\HigherOrderBuilderProxy\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020method\u0020being\u0020proxied.", + "url": "classes/Illuminate-Database-Eloquent-HigherOrderBuilderProxy.html#property_method" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\InvalidCastException", + "name": "InvalidCastException", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-InvalidCastException.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\InvalidCastException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020exception\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-InvalidCastException.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\InvalidCastException\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020name\u0020of\u0020the\u0020affected\u0020Eloquent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-InvalidCastException.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\InvalidCastException\u003A\u003A\u0024column", + "name": "column", + "summary": "The\u0020name\u0020of\u0020the\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-InvalidCastException.html#property_column" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\InvalidCastException\u003A\u003A\u0024castType", + "name": "castType", + "summary": "The\u0020name\u0020of\u0020the\u0020cast\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-InvalidCastException.html#property_castType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\JsonEncodingException", + "name": "JsonEncodingException", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-JsonEncodingException.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\JsonEncodingException\u003A\u003AforModel\u0028\u0029", + "name": "forModel", + "summary": "Create\u0020a\u0020new\u0020JSON\u0020encoding\u0020exception\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-JsonEncodingException.html#method_forModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\JsonEncodingException\u003A\u003AforResource\u0028\u0029", + "name": "forResource", + "summary": "Create\u0020a\u0020new\u0020JSON\u0020encoding\u0020exception\u0020for\u0020the\u0020resource.", + "url": "classes/Illuminate-Database-Eloquent-JsonEncodingException.html#method_forResource" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\JsonEncodingException\u003A\u003AforAttribute\u0028\u0029", + "name": "forAttribute", + "summary": "Create\u0020a\u0020new\u0020JSON\u0020encoding\u0020exception\u0020for\u0020an\u0020attribute.", + "url": "classes/Illuminate-Database-Eloquent-JsonEncodingException.html#method_forAttribute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\MassAssignmentException", + "name": "MassAssignmentException", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-MassAssignmentException.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\MassPrunable", + "name": "MassPrunable", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-MassPrunable.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\MassPrunable\u003A\u003ApruneAll\u0028\u0029", + "name": "pruneAll", + "summary": "Prune\u0020all\u0020prunable\u0020models\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-MassPrunable.html#method_pruneAll" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\MassPrunable\u003A\u003Aprunable\u0028\u0029", + "name": "prunable", + "summary": "Get\u0020the\u0020prunable\u0020model\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-MassPrunable.html#method_prunable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model", + "name": "Model", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Model.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Eloquent\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AbootIfNotBooted\u0028\u0029", + "name": "bootIfNotBooted", + "summary": "Check\u0020if\u0020the\u0020model\u0020needs\u0020to\u0020be\u0020booted\u0020and\u0020if\u0020so,\u0020do\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_bootIfNotBooted" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Abooting\u0028\u0029", + "name": "booting", + "summary": "Perform\u0020any\u0020actions\u0020required\u0020before\u0020the\u0020model\u0020boots.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_booting" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aboot\u0028\u0029", + "name": "boot", + "summary": "Bootstrap\u0020the\u0020model\u0020and\u0020its\u0020traits.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_boot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AbootTraits\u0028\u0029", + "name": "bootTraits", + "summary": "Boot\u0020all\u0020of\u0020the\u0020bootable\u0020traits\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_bootTraits" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AinitializeTraits\u0028\u0029", + "name": "initializeTraits", + "summary": "Initialize\u0020any\u0020initializable\u0020traits\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_initializeTraits" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024booted", + "name": "booted", + "summary": "The\u0020array\u0020of\u0020booted\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_booted" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AclearBootedModels\u0028\u0029", + "name": "clearBootedModels", + "summary": "Clear\u0020the\u0020list\u0020of\u0020booted\u0020models\u0020so\u0020they\u0020will\u0020be\u0020re\u002Dbooted.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_clearBootedModels" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AwithoutTouching\u0028\u0029", + "name": "withoutTouching", + "summary": "Disables\u0020relationship\u0020model\u0020touching\u0020for\u0020the\u0020current\u0020class\u0020during\u0020given\u0020callback\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_withoutTouching" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AwithoutTouchingOn\u0028\u0029", + "name": "withoutTouchingOn", + "summary": "Disables\u0020relationship\u0020model\u0020touching\u0020for\u0020the\u0020given\u0020model\u0020classes\u0020during\u0020given\u0020callback\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_withoutTouchingOn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AisIgnoringTouch\u0028\u0029", + "name": "isIgnoringTouch", + "summary": "Determine\u0020if\u0020the\u0020given\u0020model\u0020is\u0020ignoring\u0020touches.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_isIgnoringTouch" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003ApreventLazyLoading\u0028\u0029", + "name": "preventLazyLoading", + "summary": "Prevent\u0020model\u0020relationships\u0020from\u0020being\u0020lazy\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_preventLazyLoading" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AhandleLazyLoadingViolationUsing\u0028\u0029", + "name": "handleLazyLoadingViolationUsing", + "summary": "Register\u0020a\u0020callback\u0020that\u0020is\u0020responsible\u0020for\u0020handling\u0020lazy\u0020loading\u0020violations.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_handleLazyLoadingViolationUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AwithoutBroadcasting\u0028\u0029", + "name": "withoutBroadcasting", + "summary": "Execute\u0020a\u0020callback\u0020without\u0020broadcasting\u0020any\u0020model\u0020events\u0020for\u0020all\u0020model\u0020types.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_withoutBroadcasting" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Afill\u0028\u0029", + "name": "fill", + "summary": "Fill\u0020the\u0020model\u0020with\u0020an\u0020array\u0020of\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_fill" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AforceFill\u0028\u0029", + "name": "forceFill", + "summary": "Fill\u0020the\u0020model\u0020with\u0020an\u0020array\u0020of\u0020attributes.\u0020Force\u0020mass\u0020assignment.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_forceFill" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AqualifyColumn\u0028\u0029", + "name": "qualifyColumn", + "summary": "Qualify\u0020the\u0020given\u0020column\u0020name\u0020by\u0020the\u0020model\u0027s\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_qualifyColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AqualifyColumns\u0028\u0029", + "name": "qualifyColumns", + "summary": "Qualify\u0020the\u0020given\u0020columns\u0020with\u0020the\u0020model\u0027s\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_qualifyColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewInstance\u0028\u0029", + "name": "newInstance", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newInstance" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewFromBuilder\u0028\u0029", + "name": "newFromBuilder", + "summary": "Create\u0020a\u0020new\u0020model\u0020instance\u0020that\u0020is\u0020existing.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newFromBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aon\u0028\u0029", + "name": "on", + "summary": "Begin\u0020querying\u0020the\u0020model\u0020on\u0020a\u0020given\u0020connection.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_on" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AonWriteConnection\u0028\u0029", + "name": "onWriteConnection", + "summary": "Begin\u0020querying\u0020the\u0020model\u0020on\u0020the\u0020write\u0020connection.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_onWriteConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020models\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_all" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024with", + "name": "with", + "summary": "The\u0020relations\u0020to\u0020eager\u0020load\u0020on\u0020every\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_with" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Eager\u0020load\u0020relations\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_load" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorph\u0028\u0029", + "name": "loadMorph", + "summary": "Eager\u0020load\u0020relationships\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorph" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMissing\u0028\u0029", + "name": "loadMissing", + "summary": "Eager\u0020load\u0020relations\u0020on\u0020the\u0020model\u0020if\u0020they\u0020are\u0020not\u0020already\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMissing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadAggregate\u0028\u0029", + "name": "loadAggregate", + "summary": "Eager\u0020load\u0020relation\u0027s\u0020column\u0020aggregations\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadCount\u0028\u0029", + "name": "loadCount", + "summary": "Eager\u0020load\u0020relation\u0020counts\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMax\u0028\u0029", + "name": "loadMax", + "summary": "Eager\u0020load\u0020relation\u0020max\u0020column\u0020values\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMax" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMin\u0028\u0029", + "name": "loadMin", + "summary": "Eager\u0020load\u0020relation\u0020min\u0020column\u0020values\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadSum\u0028\u0029", + "name": "loadSum", + "summary": "Eager\u0020load\u0020relation\u0027s\u0020column\u0020summations\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadSum" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadAvg\u0028\u0029", + "name": "loadAvg", + "summary": "Eager\u0020load\u0020relation\u0020average\u0020column\u0020values\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadAvg" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadExists\u0028\u0029", + "name": "loadExists", + "summary": "Eager\u0020load\u0020related\u0020model\u0020existence\u0020values\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadExists" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorphAggregate\u0028\u0029", + "name": "loadMorphAggregate", + "summary": "Eager\u0020load\u0020relationship\u0020column\u0020aggregation\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorphAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorphCount\u0028\u0029", + "name": "loadMorphCount", + "summary": "Eager\u0020load\u0020relationship\u0020counts\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorphCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorphMax\u0028\u0029", + "name": "loadMorphMax", + "summary": "Eager\u0020load\u0020relationship\u0020max\u0020column\u0020values\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorphMax" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorphMin\u0028\u0029", + "name": "loadMorphMin", + "summary": "Eager\u0020load\u0020relationship\u0020min\u0020column\u0020values\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorphMin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorphSum\u0028\u0029", + "name": "loadMorphSum", + "summary": "Eager\u0020load\u0020relationship\u0020column\u0020summations\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorphSum" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AloadMorphAvg\u0028\u0029", + "name": "loadMorphAvg", + "summary": "Eager\u0020load\u0020relationship\u0020average\u0020column\u0020values\u0020on\u0020the\u0020polymorphic\u0020relation\u0020of\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_loadMorphAvg" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aincrement\u0028\u0029", + "name": "increment", + "summary": "Increment\u0020a\u0020column\u0027s\u0020value\u0020by\u0020a\u0020given\u0020amount.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_increment" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Adecrement\u0028\u0029", + "name": "decrement", + "summary": "Decrement\u0020a\u0020column\u0027s\u0020value\u0020by\u0020a\u0020given\u0020amount.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_decrement" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AincrementOrDecrement\u0028\u0029", + "name": "incrementOrDecrement", + "summary": "Run\u0020the\u0020increment\u0020or\u0020decrement\u0020method\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_incrementOrDecrement" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Update\u0020the\u0020model\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_update" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AupdateOrFail\u0028\u0029", + "name": "updateOrFail", + "summary": "Update\u0020the\u0020model\u0020in\u0020the\u0020database\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_updateOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AupdateQuietly\u0028\u0029", + "name": "updateQuietly", + "summary": "Update\u0020the\u0020model\u0020in\u0020the\u0020database\u0020without\u0020raising\u0020any\u0020events.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_updateQuietly" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Save\u0020the\u0020model\u0020and\u0020all\u0020of\u0020its\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_push" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsaveQuietly\u0028\u0029", + "name": "saveQuietly", + "summary": "Save\u0020the\u0020model\u0020to\u0020the\u0020database\u0020without\u0020raising\u0020any\u0020events.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_saveQuietly" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Save\u0020the\u0020model\u0020to\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_save" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsaveOrFail\u0028\u0029", + "name": "saveOrFail", + "summary": "Save\u0020the\u0020model\u0020to\u0020the\u0020database\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_saveOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AfinishSave\u0028\u0029", + "name": "finishSave", + "summary": "Perform\u0020any\u0020actions\u0020that\u0020are\u0020necessary\u0020after\u0020the\u0020model\u0020is\u0020saved.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_finishSave" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AperformUpdate\u0028\u0029", + "name": "performUpdate", + "summary": "Perform\u0020a\u0020model\u0020update\u0020operation.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_performUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetKeysForSelectQuery\u0028\u0029", + "name": "setKeysForSelectQuery", + "summary": "Set\u0020the\u0020keys\u0020for\u0020a\u0020select\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setKeysForSelectQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetKeyForSelectQuery\u0028\u0029", + "name": "getKeyForSelectQuery", + "summary": "Get\u0020the\u0020primary\u0020key\u0020value\u0020for\u0020a\u0020select\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getKeyForSelectQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetKeysForSaveQuery\u0028\u0029", + "name": "setKeysForSaveQuery", + "summary": "Set\u0020the\u0020keys\u0020for\u0020a\u0020save\u0020update\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setKeysForSaveQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetKeyForSaveQuery\u0028\u0029", + "name": "getKeyForSaveQuery", + "summary": "Get\u0020the\u0020primary\u0020key\u0020value\u0020for\u0020a\u0020save\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getKeyForSaveQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AperformInsert\u0028\u0029", + "name": "performInsert", + "summary": "Perform\u0020a\u0020model\u0020insert\u0020operation.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_performInsert" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AinsertAndSetId\u0028\u0029", + "name": "insertAndSetId", + "summary": "Insert\u0020the\u0020given\u0020attributes\u0020and\u0020set\u0020the\u0020ID\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_insertAndSetId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Adestroy\u0028\u0029", + "name": "destroy", + "summary": "Destroy\u0020the\u0020models\u0020for\u0020the\u0020given\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_destroy" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020model\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AdeleteOrFail\u0028\u0029", + "name": "deleteOrFail", + "summary": "Delete\u0020the\u0020model\u0020from\u0020the\u0020database\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_deleteOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AforceDelete\u0028\u0029", + "name": "forceDelete", + "summary": "Force\u0020a\u0020hard\u0020delete\u0020on\u0020a\u0020soft\u0020deleted\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_forceDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AperformDeleteOnModel\u0028\u0029", + "name": "performDeleteOnModel", + "summary": "Perform\u0020the\u0020actual\u0020delete\u0020query\u0020on\u0020this\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_performDeleteOnModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Begin\u0020querying\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_query" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewQuery\u0028\u0029", + "name": "newQuery", + "summary": "Get\u0020a\u0020new\u0020query\u0020builder\u0020for\u0020the\u0020model\u0027s\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewModelQuery\u0028\u0029", + "name": "newModelQuery", + "summary": "Get\u0020a\u0020new\u0020query\u0020builder\u0020that\u0020doesn\u0027t\u0020have\u0020any\u0020global\u0020scopes\u0020or\u0020eager\u0020loading.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newModelQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewQueryWithoutRelationships\u0028\u0029", + "name": "newQueryWithoutRelationships", + "summary": "Get\u0020a\u0020new\u0020query\u0020builder\u0020with\u0020no\u0020relationships\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newQueryWithoutRelationships" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AregisterGlobalScopes\u0028\u0029", + "name": "registerGlobalScopes", + "summary": "Register\u0020the\u0020global\u0020scopes\u0020for\u0020this\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_registerGlobalScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewQueryWithoutScopes\u0028\u0029", + "name": "newQueryWithoutScopes", + "summary": "Get\u0020a\u0020new\u0020query\u0020builder\u0020that\u0020doesn\u0027t\u0020have\u0020any\u0020global\u0020scopes.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newQueryWithoutScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewQueryWithoutScope\u0028\u0029", + "name": "newQueryWithoutScope", + "summary": "Get\u0020a\u0020new\u0020query\u0020instance\u0020without\u0020a\u0020given\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newQueryWithoutScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewQueryForRestoration\u0028\u0029", + "name": "newQueryForRestoration", + "summary": "Get\u0020a\u0020new\u0020query\u0020to\u0020restore\u0020one\u0020or\u0020more\u0020models\u0020by\u0020their\u0020queueable\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newQueryForRestoration" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewEloquentBuilder\u0028\u0029", + "name": "newEloquentBuilder", + "summary": "Create\u0020a\u0020new\u0020Eloquent\u0020query\u0020builder\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newEloquentBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewBaseQueryBuilder\u0028\u0029", + "name": "newBaseQueryBuilder", + "summary": "Get\u0020a\u0020new\u0020query\u0020builder\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newBaseQueryBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewCollection\u0028\u0029", + "name": "newCollection", + "summary": "Create\u0020a\u0020new\u0020Eloquent\u0020Collection\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newCollection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AnewPivot\u0028\u0029", + "name": "newPivot", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_newPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AhasNamedScope\u0028\u0029", + "name": "hasNamedScope", + "summary": "Determine\u0020if\u0020the\u0020model\u0020has\u0020a\u0020given\u0020scope.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_hasNamedScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AcallNamedScope\u0028\u0029", + "name": "callNamedScope", + "summary": "Apply\u0020the\u0020given\u0020named\u0020scope\u0020if\u0020possible.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_callNamedScope" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Convert\u0020the\u0020model\u0020instance\u0020to\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AtoJson\u0028\u0029", + "name": "toJson", + "summary": "Convert\u0020the\u0020model\u0020instance\u0020to\u0020JSON.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_toJson" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Convert\u0020the\u0020object\u0020into\u0020something\u0020JSON\u0020serializable.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Afresh\u0028\u0029", + "name": "fresh", + "summary": "Reload\u0020a\u0020fresh\u0020model\u0020instance\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_fresh" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Arefresh\u0028\u0029", + "name": "refresh", + "summary": "Reload\u0020the\u0020current\u0020model\u0020instance\u0020with\u0020fresh\u0020attributes\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_refresh" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Areplicate\u0028\u0029", + "name": "replicate", + "summary": "Clone\u0020the\u0020model\u0020into\u0020a\u0020new,\u0020non\u002Dexisting\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_replicate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Determine\u0020if\u0020two\u0020models\u0020have\u0020the\u0020same\u0020ID\u0020and\u0020belong\u0020to\u0020the\u0020same\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_is" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AisNot\u0028\u0029", + "name": "isNot", + "summary": "Determine\u0020if\u0020two\u0020models\u0020are\u0020not\u0020the\u0020same.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_isNot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020the\u0020database\u0020connection\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetConnectionName\u0028\u0029", + "name": "getConnectionName", + "summary": "Get\u0020the\u0020current\u0020connection\u0020name\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getConnectionName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetConnection\u0028\u0029", + "name": "setConnection", + "summary": "Set\u0020the\u0020connection\u0020associated\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveConnection\u0028\u0029", + "name": "resolveConnection", + "summary": "Resolve\u0020a\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetConnectionResolver\u0028\u0029", + "name": "getConnectionResolver", + "summary": "Get\u0020the\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getConnectionResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetConnectionResolver\u0028\u0029", + "name": "setConnectionResolver", + "summary": "Set\u0020the\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setConnectionResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AunsetConnectionResolver\u0028\u0029", + "name": "unsetConnectionResolver", + "summary": "Unset\u0020the\u0020connection\u0020resolver\u0020for\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_unsetConnectionResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "Get\u0020the\u0020table\u0020associated\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getTable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetTable\u0028\u0029", + "name": "setTable", + "summary": "Set\u0020the\u0020table\u0020associated\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setTable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetKeyName\u0028\u0029", + "name": "getKeyName", + "summary": "Get\u0020the\u0020primary\u0020key\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetKeyName\u0028\u0029", + "name": "setKeyName", + "summary": "Set\u0020the\u0020primary\u0020key\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetQualifiedKeyName\u0028\u0029", + "name": "getQualifiedKeyName", + "summary": "Get\u0020the\u0020table\u0020qualified\u0020key\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getQualifiedKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetKeyType\u0028\u0029", + "name": "getKeyType", + "summary": "Get\u0020the\u0020auto\u002Dincrementing\u0020key\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getKeyType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetKeyType\u0028\u0029", + "name": "setKeyType", + "summary": "Set\u0020the\u0020data\u0020type\u0020for\u0020the\u0020primary\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setKeyType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetIncrementing\u0028\u0029", + "name": "getIncrementing", + "summary": "Get\u0020the\u0020value\u0020indicating\u0020whether\u0020the\u0020IDs\u0020are\u0020incrementing.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getIncrementing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetIncrementing\u0028\u0029", + "name": "setIncrementing", + "summary": "Set\u0020whether\u0020IDs\u0020are\u0020incrementing.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setIncrementing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetKey\u0028\u0029", + "name": "getKey", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020primary\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetQueueableId\u0028\u0029", + "name": "getQueueableId", + "summary": "Get\u0020the\u0020queueable\u0020identity\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getQueueableId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetQueueableRelations\u0028\u0029", + "name": "getQueueableRelations", + "summary": "Get\u0020the\u0020queueable\u0020relationships\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getQueueableRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetQueueableConnection\u0028\u0029", + "name": "getQueueableConnection", + "summary": "Get\u0020the\u0020queueable\u0020connection\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getQueueableConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetRouteKey\u0028\u0029", + "name": "getRouteKey", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020route\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getRouteKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetRouteKeyName\u0028\u0029", + "name": "getRouteKeyName", + "summary": "Get\u0020the\u0020route\u0020key\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getRouteKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveRouteBinding\u0028\u0029", + "name": "resolveRouteBinding", + "summary": "Retrieve\u0020the\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveRouteBinding" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveSoftDeletableRouteBinding\u0028\u0029", + "name": "resolveSoftDeletableRouteBinding", + "summary": "Retrieve\u0020the\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveSoftDeletableRouteBinding" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveChildRouteBinding\u0028\u0029", + "name": "resolveChildRouteBinding", + "summary": "Retrieve\u0020the\u0020child\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveChildRouteBinding" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveSoftDeletableChildRouteBinding\u0028\u0029", + "name": "resolveSoftDeletableChildRouteBinding", + "summary": "Retrieve\u0020the\u0020child\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveSoftDeletableChildRouteBinding" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveChildRouteBindingQuery\u0028\u0029", + "name": "resolveChildRouteBindingQuery", + "summary": "Retrieve\u0020the\u0020child\u0020model\u0020query\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveChildRouteBindingQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AresolveRouteBindingQuery\u0028\u0029", + "name": "resolveRouteBindingQuery", + "summary": "Retrieve\u0020the\u0020model\u0020for\u0020a\u0020bound\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_resolveRouteBindingQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetForeignKey\u0028\u0029", + "name": "getForeignKey", + "summary": "Get\u0020the\u0020default\u0020foreign\u0020key\u0020name\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getForeignKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AgetPerPage\u0028\u0029", + "name": "getPerPage", + "summary": "Get\u0020the\u0020number\u0020of\u0020models\u0020to\u0020return\u0020per\u0020page.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_getPerPage" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AsetPerPage\u0028\u0029", + "name": "setPerPage", + "summary": "Set\u0020the\u0020number\u0020of\u0020models\u0020to\u0020return\u0020per\u0020page.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_setPerPage" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024preventsLazyLoading", + "name": "preventsLazyLoading", + "summary": "Indicates\u0020whether\u0020lazy\u0020loading\u0020will\u0020be\u0020prevented\u0020on\u0020this\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_preventsLazyLoading" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AbroadcastChannelRoute\u0028\u0029", + "name": "broadcastChannelRoute", + "summary": "Get\u0020the\u0020broadcast\u0020channel\u0020route\u0020definition\u0020that\u0020is\u0020associated\u0020with\u0020the\u0020given\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_broadcastChannelRoute" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AbroadcastChannel\u0028\u0029", + "name": "broadcastChannel", + "summary": "Get\u0020the\u0020broadcast\u0020channel\u0020name\u0020that\u0020is\u0020associated\u0020with\u0020the\u0020given\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_broadcastChannel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020retrieve\u0020attributes\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Dynamically\u0020set\u0020attributes\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___set" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020the\u0020given\u0020attribute\u0020exists.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020the\u0020value\u0020for\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020value\u0020for\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020the\u0020value\u0020for\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Determine\u0020if\u0020an\u0020attribute\u0020or\u0020relation\u0020exists\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___isset" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__unset\u0028\u0029", + "name": "__unset", + "summary": "Unset\u0020an\u0020attribute\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___unset" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Handle\u0020dynamic\u0020method\u0020calls\u0020into\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Handle\u0020dynamic\u0020static\u0020method\u0020calls\u0020into\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___callStatic" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Convert\u0020the\u0020model\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024escapeWhenCastingToString", + "name": "escapeWhenCastingToString", + "summary": "Indicates\u0020that\u0020the\u0020object\u0027s\u0020string\u0020representation\u0020should\u0020be\u0020escaped\u0020when\u0020__toString\u0020is\u0020invoked.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_escapeWhenCastingToString" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__sleep\u0028\u0029", + "name": "__sleep", + "summary": "Prepare\u0020the\u0020object\u0020for\u0020serialization.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___sleep" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A__wakeup\u0028\u0029", + "name": "__wakeup", + "summary": "When\u0020a\u0020model\u0020is\u0020being\u0020unserialized,\u0020check\u0020if\u0020it\u0020needs\u0020to\u0020be\u0020booted.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#method___wakeup" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003ACREATED_AT", + "name": "CREATED_AT", + "summary": "The\u0020name\u0020of\u0020the\u0020\u0022created\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#constant_CREATED_AT" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003AUPDATED_AT", + "name": "UPDATED_AT", + "summary": "The\u0020name\u0020of\u0020the\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#constant_UPDATED_AT" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020connection\u0020name\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024table", + "name": "table", + "summary": "The\u0020table\u0020associated\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_table" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024primaryKey", + "name": "primaryKey", + "summary": "The\u0020primary\u0020key\u0020for\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_primaryKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024keyType", + "name": "keyType", + "summary": "The\u0020\u0022type\u0022\u0020of\u0020the\u0020primary\u0020key\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_keyType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024incrementing", + "name": "incrementing", + "summary": "Indicates\u0020if\u0020the\u0020IDs\u0020are\u0020auto\u002Dincrementing.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_incrementing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024withCount", + "name": "withCount", + "summary": "The\u0020relationship\u0020counts\u0020that\u0020should\u0020be\u0020eager\u0020loaded\u0020on\u0020every\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_withCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024perPage", + "name": "perPage", + "summary": "The\u0020number\u0020of\u0020models\u0020to\u0020return\u0020for\u0020pagination.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_perPage" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024exists", + "name": "exists", + "summary": "Indicates\u0020if\u0020the\u0020model\u0020exists.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_exists" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024wasRecentlyCreated", + "name": "wasRecentlyCreated", + "summary": "Indicates\u0020if\u0020the\u0020model\u0020was\u0020inserted\u0020during\u0020the\u0020current\u0020request\u0020lifecycle.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_wasRecentlyCreated" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024resolver", + "name": "resolver", + "summary": "The\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_resolver" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024dispatcher", + "name": "dispatcher", + "summary": "The\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_dispatcher" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024traitInitializers", + "name": "traitInitializers", + "summary": "The\u0020array\u0020of\u0020trait\u0020initializers\u0020that\u0020will\u0020be\u0020called\u0020on\u0020each\u0020new\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_traitInitializers" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024globalScopes", + "name": "globalScopes", + "summary": "The\u0020array\u0020of\u0020global\u0020scopes\u0020on\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_globalScopes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024ignoreOnTouch", + "name": "ignoreOnTouch", + "summary": "The\u0020list\u0020of\u0020models\u0020classes\u0020that\u0020should\u0020not\u0020be\u0020affected\u0020with\u0020touch.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_ignoreOnTouch" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024modelsShouldPreventLazyLoading", + "name": "modelsShouldPreventLazyLoading", + "summary": "Indicates\u0020whether\u0020lazy\u0020loading\u0020should\u0020be\u0020restricted\u0020on\u0020all\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_modelsShouldPreventLazyLoading" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024lazyLoadingViolationCallback", + "name": "lazyLoadingViolationCallback", + "summary": "The\u0020callback\u0020that\u0020is\u0020responsible\u0020for\u0020handling\u0020lazy\u0020loading\u0020violations.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_lazyLoadingViolationCallback" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Model\u003A\u003A\u0024isBroadcasting", + "name": "isBroadcasting", + "summary": "Indicates\u0020if\u0020broadcasting\u0020is\u0020currently\u0020enabled.", + "url": "classes/Illuminate-Database-Eloquent-Model.html#property_isBroadcasting" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\ModelNotFoundException", + "name": "ModelNotFoundException", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-ModelNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\ModelNotFoundException\u003A\u003AsetModel\u0028\u0029", + "name": "setModel", + "summary": "Set\u0020the\u0020affected\u0020Eloquent\u0020model\u0020and\u0020instance\u0020ids.", + "url": "classes/Illuminate-Database-Eloquent-ModelNotFoundException.html#method_setModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\ModelNotFoundException\u003A\u003AgetModel\u0028\u0029", + "name": "getModel", + "summary": "Get\u0020the\u0020affected\u0020Eloquent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-ModelNotFoundException.html#method_getModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\ModelNotFoundException\u003A\u003AgetIds\u0028\u0029", + "name": "getIds", + "summary": "Get\u0020the\u0020affected\u0020Eloquent\u0020model\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-ModelNotFoundException.html#method_getIds" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\ModelNotFoundException\u003A\u003A\u0024model", + "name": "model", + "summary": "Name\u0020of\u0020the\u0020affected\u0020Eloquent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-ModelNotFoundException.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\ModelNotFoundException\u003A\u003A\u0024ids", + "name": "ids", + "summary": "The\u0020affected\u0020model\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-ModelNotFoundException.html#property_ids" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Prunable", + "name": "Prunable", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Prunable.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Prunable\u003A\u003ApruneAll\u0028\u0029", + "name": "pruneAll", + "summary": "Prune\u0020all\u0020prunable\u0020models\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Prunable.html#method_pruneAll" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Prunable\u003A\u003Aprunable\u0028\u0029", + "name": "prunable", + "summary": "Get\u0020the\u0020prunable\u0020model\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Prunable.html#method_prunable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Prunable\u003A\u003Aprune\u0028\u0029", + "name": "prune", + "summary": "Prune\u0020the\u0020model\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Prunable.html#method_prune" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Prunable\u003A\u003Apruning\u0028\u0029", + "name": "pruning", + "summary": "Prepare\u0020the\u0020model\u0020for\u0020pruning.", + "url": "classes/Illuminate-Database-Eloquent-Prunable.html#method_pruning" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\QueueEntityResolver", + "name": "QueueEntityResolver", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-QueueEntityResolver.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\QueueEntityResolver\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020entity\u0020for\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-QueueEntityResolver.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\RelationNotFoundException", + "name": "RelationNotFoundException", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-RelationNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\RelationNotFoundException\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020a\u0020new\u0020exception\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-RelationNotFoundException.html#method_make" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\RelationNotFoundException\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020name\u0020of\u0020the\u0020affected\u0020Eloquent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-RelationNotFoundException.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\RelationNotFoundException\u003A\u003A\u0024relation", + "name": "relation", + "summary": "The\u0020name\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-RelationNotFoundException.html#property_relation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo", + "name": "BelongsTo", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020belongs\u0020to\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AaddConstraints\u0028\u0029", + "name": "addConstraints", + "summary": "Set\u0020the\u0020base\u0020constraints\u0020on\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_addConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetEagerModelKeys\u0028\u0029", + "name": "getEagerModelKeys", + "summary": "Gather\u0020the\u0020keys\u0020from\u0020an\u0020array\u0020of\u0020related\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getEagerModelKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003Aassociate\u0028\u0029", + "name": "associate", + "summary": "Associate\u0020the\u0020model\u0020instance\u0020to\u0020the\u0020given\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_associate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003Adissociate\u0028\u0029", + "name": "dissociate", + "summary": "Dissociate\u0020previously\u0020associated\u0020model\u0020from\u0020the\u0020given\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_dissociate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003Adisassociate\u0028\u0029", + "name": "disassociate", + "summary": "Alias\u0020of\u0020\u0022dissociate\u0022\u0020method.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_disassociate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetRelationExistenceQueryForSelfRelation\u0028\u0029", + "name": "getRelationExistenceQueryForSelfRelation", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query\u0020on\u0020the\u0020same\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getRelationExistenceQueryForSelfRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003ArelationHasIncrementingId\u0028\u0029", + "name": "relationHasIncrementingId", + "summary": "Determine\u0020if\u0020the\u0020related\u0020model\u0020has\u0020an\u0020auto\u002Dincrementing\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_relationHasIncrementingId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AnewRelatedInstanceFor\u0028\u0029", + "name": "newRelatedInstanceFor", + "summary": "Make\u0020a\u0020new\u0020related\u0020instance\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_newRelatedInstanceFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetChild\u0028\u0029", + "name": "getChild", + "summary": "Get\u0020the\u0020child\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getChild" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetForeignKeyName\u0028\u0029", + "name": "getForeignKeyName", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getForeignKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetQualifiedForeignKeyName\u0028\u0029", + "name": "getQualifiedForeignKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020foreign\u0020key\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getQualifiedForeignKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetParentKey\u0028\u0029", + "name": "getParentKey", + "summary": "Get\u0020the\u0020key\u0020value\u0020of\u0020the\u0020child\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getParentKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetOwnerKeyName\u0028\u0029", + "name": "getOwnerKeyName", + "summary": "Get\u0020the\u0020associated\u0020key\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getOwnerKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetQualifiedOwnerKeyName\u0028\u0029", + "name": "getQualifiedOwnerKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020associated\u0020key\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getQualifiedOwnerKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetRelatedKeyFrom\u0028\u0029", + "name": "getRelatedKeyFrom", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020associated\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getRelatedKeyFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003AgetRelationName\u0028\u0029", + "name": "getRelationName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#method_getRelationName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003A\u0024child", + "name": "child", + "summary": "The\u0020child\u0020model\u0020instance\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#property_child" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003A\u0024foreignKey", + "name": "foreignKey", + "summary": "The\u0020foreign\u0020key\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#property_foreignKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003A\u0024ownerKey", + "name": "ownerKey", + "summary": "The\u0020associated\u0020key\u0020on\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#property_ownerKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsTo\u003A\u003A\u0024relationName", + "name": "relationName", + "summary": "The\u0020name\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsTo.html#property_relationName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany", + "name": "BelongsToMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020belongs\u0020to\u0020many\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AresolveTableName\u0028\u0029", + "name": "resolveTableName", + "summary": "Attempt\u0020to\u0020resolve\u0020the\u0020intermediate\u0020table\u0020name\u0020from\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_resolveTableName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AaddConstraints\u0028\u0029", + "name": "addConstraints", + "summary": "Set\u0020the\u0020base\u0020constraints\u0020on\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_addConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AperformJoin\u0028\u0029", + "name": "performJoin", + "summary": "Set\u0020the\u0020join\u0020clause\u0020for\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_performJoin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AaddWhereConstraints\u0028\u0029", + "name": "addWhereConstraints", + "summary": "Set\u0020the\u0020where\u0020clause\u0020for\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_addWhereConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AbuildDictionary\u0028\u0029", + "name": "buildDictionary", + "summary": "Build\u0020model\u0020dictionary\u0020keyed\u0020by\u0020the\u0020relation\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_buildDictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetPivotClass\u0028\u0029", + "name": "getPivotClass", + "summary": "Get\u0020the\u0020class\u0020being\u0020used\u0020for\u0020pivot\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getPivotClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024using", + "name": "using", + "summary": "The\u0020class\u0020name\u0020of\u0020the\u0020custom\u0020pivot\u0020model\u0020to\u0020use\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_using" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Aas\u0028\u0029", + "name": "as", + "summary": "Specify\u0020the\u0020custom\u0020pivot\u0020accessor\u0020to\u0020use\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_as" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivot\u0028\u0029", + "name": "wherePivot", + "summary": "Set\u0020a\u0020where\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivotBetween\u0028\u0029", + "name": "wherePivotBetween", + "summary": "Set\u0020a\u0020\u0022where\u0020between\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivotBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivotBetween\u0028\u0029", + "name": "orWherePivotBetween", + "summary": "Set\u0020a\u0020\u0022or\u0020where\u0020between\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivotBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivotNotBetween\u0028\u0029", + "name": "wherePivotNotBetween", + "summary": "Set\u0020a\u0020\u0022where\u0020pivot\u0020not\u0020between\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivotNotBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivotNotBetween\u0028\u0029", + "name": "orWherePivotNotBetween", + "summary": "Set\u0020a\u0020\u0022or\u0020where\u0020not\u0020between\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivotNotBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivotIn\u0028\u0029", + "name": "wherePivotIn", + "summary": "Set\u0020a\u0020\u0022where\u0020in\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivot\u0028\u0029", + "name": "orWherePivot", + "summary": "Set\u0020an\u0020\u0022or\u0020where\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwithPivotValue\u0028\u0029", + "name": "withPivotValue", + "summary": "Set\u0020a\u0020where\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_withPivotValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivotIn\u0028\u0029", + "name": "orWherePivotIn", + "summary": "Set\u0020an\u0020\u0022or\u0020where\u0020in\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivotNotIn\u0028\u0029", + "name": "wherePivotNotIn", + "summary": "Set\u0020a\u0020\u0022where\u0020not\u0020in\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivotNotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivotNotIn\u0028\u0029", + "name": "orWherePivotNotIn", + "summary": "Set\u0020an\u0020\u0022or\u0020where\u0020not\u0020in\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivotNotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivotNull\u0028\u0029", + "name": "wherePivotNull", + "summary": "Set\u0020a\u0020\u0022where\u0020null\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AwherePivotNotNull\u0028\u0029", + "name": "wherePivotNotNull", + "summary": "Set\u0020a\u0020\u0022where\u0020not\u0020null\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_wherePivotNotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivotNull\u0028\u0029", + "name": "orWherePivotNull", + "summary": "Set\u0020a\u0020\u0022or\u0020where\u0020null\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorWherePivotNotNull\u0028\u0029", + "name": "orWherePivotNotNull", + "summary": "Set\u0020a\u0020\u0022or\u0020where\u0020not\u0020null\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orWherePivotNotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AorderByPivot\u0028\u0029", + "name": "orderByPivot", + "summary": "Add\u0020an\u0020\u0022order\u0020by\u0022\u0020clause\u0020for\u0020a\u0020pivot\u0020table\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_orderByPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfindOrNew\u0028\u0029", + "name": "findOrNew", + "summary": "Find\u0020a\u0020related\u0020model\u0020by\u0020its\u0020primary\u0020key\u0020or\u0020return\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_findOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfirstOrNew\u0028\u0029", + "name": "firstOrNew", + "summary": "Get\u0020the\u0020first\u0020related\u0020model\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020instantiate\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_firstOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfirstOrCreate\u0028\u0029", + "name": "firstOrCreate", + "summary": "Get\u0020the\u0020first\u0020related\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020create\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_firstOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AupdateOrCreate\u0028\u0029", + "name": "updateOrCreate", + "summary": "Create\u0020or\u0020update\u0020a\u0020related\u0020record\u0020matching\u0020the\u0020attributes,\u0020and\u0020fill\u0020it\u0020with\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_updateOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Find\u0020a\u0020related\u0020model\u0020by\u0020its\u0020primary\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_find" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfindMany\u0028\u0029", + "name": "findMany", + "summary": "Find\u0020multiple\u0020related\u0020models\u0020by\u0020their\u0020primary\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_findMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfindOrFail\u0028\u0029", + "name": "findOrFail", + "summary": "Find\u0020a\u0020related\u0020model\u0020by\u0020its\u0020primary\u0020key\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_findOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfirstWhere\u0028\u0029", + "name": "firstWhere", + "summary": "Add\u0020a\u0020basic\u0020where\u0020clause\u0020to\u0020the\u0020query,\u0020and\u0020return\u0020the\u0020first\u0020result.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_firstWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_first" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfirstOrFail\u0028\u0029", + "name": "firstOrFail", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_firstOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AfirstOr\u0028\u0029", + "name": "firstOr", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020or\u0020call\u0020a\u0020callback.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_firstOr" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Execute\u0020the\u0020query\u0020as\u0020a\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AshouldSelect\u0028\u0029", + "name": "shouldSelect", + "summary": "Get\u0020the\u0020select\u0020columns\u0020for\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_shouldSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AaliasedPivotColumns\u0028\u0029", + "name": "aliasedPivotColumns", + "summary": "Get\u0020the\u0020pivot\u0020columns\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_aliasedPivotColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Apaginate\u0028\u0029", + "name": "paginate", + "summary": "Get\u0020a\u0020paginator\u0020for\u0020the\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_paginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AsimplePaginate\u0028\u0029", + "name": "simplePaginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020simple\u0020paginator.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_simplePaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AcursorPaginate\u0028\u0029", + "name": "cursorPaginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020cursor\u0020paginator.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_cursorPaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Chunk\u0020the\u0020results\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_chunk" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AchunkById\u0028\u0029", + "name": "chunkById", + "summary": "Chunk\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020numeric\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_chunkById" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Aeach\u0028\u0029", + "name": "each", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020item\u0020while\u0020chunking.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_each" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Alazy\u0028\u0029", + "name": "lazy", + "summary": "Query\u0020lazily,\u0020by\u0020chunks\u0020of\u0020the\u0020given\u0020size.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_lazy" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AlazyById\u0028\u0029", + "name": "lazyById", + "summary": "Query\u0020lazily,\u0020by\u0020chunking\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_lazyById" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Get\u0020a\u0020lazy\u0020collection\u0020for\u0020the\u0020given\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AprepareQueryBuilder\u0028\u0029", + "name": "prepareQueryBuilder", + "summary": "Prepare\u0020the\u0020query\u0020builder\u0020for\u0020query\u0020execution.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_prepareQueryBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AhydratePivotRelation\u0028\u0029", + "name": "hydratePivotRelation", + "summary": "Hydrate\u0020the\u0020pivot\u0020table\u0020relationship\u0020on\u0020the\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_hydratePivotRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AmigratePivotAttributes\u0028\u0029", + "name": "migratePivotAttributes", + "summary": "Get\u0020the\u0020pivot\u0020attributes\u0020from\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_migratePivotAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AtouchIfTouching\u0028\u0029", + "name": "touchIfTouching", + "summary": "If\u0020we\u0027re\u0020touching\u0020the\u0020parent\u0020model,\u0020touch.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_touchIfTouching" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AtouchingParent\u0028\u0029", + "name": "touchingParent", + "summary": "Determine\u0020if\u0020we\u0020should\u0020touch\u0020the\u0020parent\u0020on\u0020sync.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_touchingParent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AguessInverseRelation\u0028\u0029", + "name": "guessInverseRelation", + "summary": "Attempt\u0020to\u0020guess\u0020the\u0020name\u0020of\u0020the\u0020inverse\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_guessInverseRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Atouch\u0028\u0029", + "name": "touch", + "summary": "Touch\u0020all\u0020of\u0020the\u0020related\u0020models\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_touch" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AallRelatedIds\u0028\u0029", + "name": "allRelatedIds", + "summary": "Get\u0020all\u0020of\u0020the\u0020IDs\u0020for\u0020the\u0020related\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_allRelatedIds" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Save\u0020a\u0020new\u0020model\u0020and\u0020attach\u0020it\u0020to\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_save" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AsaveMany\u0028\u0029", + "name": "saveMany", + "summary": "Save\u0020an\u0020array\u0020of\u0020new\u0020models\u0020and\u0020attach\u0020them\u0020to\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_saveMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AcreateMany\u0028\u0029", + "name": "createMany", + "summary": "Create\u0020an\u0020array\u0020of\u0020new\u0020instances\u0020of\u0020the\u0020related\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_createMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetRelationExistenceQueryForSelfJoin\u0028\u0029", + "name": "getRelationExistenceQueryForSelfJoin", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query\u0020on\u0020the\u0020same\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getRelationExistenceQueryForSelfJoin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetExistenceCompareKey\u0028\u0029", + "name": "getExistenceCompareKey", + "summary": "Get\u0020the\u0020key\u0020for\u0020comparing\u0020against\u0020the\u0020parent\u0020key\u0020in\u0020\u0022has\u0022\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getExistenceCompareKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024withTimestamps", + "name": "withTimestamps", + "summary": "Indicates\u0020if\u0020timestamps\u0020are\u0020available\u0020on\u0020the\u0020pivot\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_withTimestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AcreatedAt\u0028\u0029", + "name": "createdAt", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022created\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_createdAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AupdatedAt\u0028\u0029", + "name": "updatedAt", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_updatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetForeignPivotKeyName\u0028\u0029", + "name": "getForeignPivotKeyName", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getForeignPivotKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetQualifiedForeignPivotKeyName\u0028\u0029", + "name": "getQualifiedForeignPivotKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020foreign\u0020key\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getQualifiedForeignPivotKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetRelatedPivotKeyName\u0028\u0029", + "name": "getRelatedPivotKeyName", + "summary": "Get\u0020the\u0020\u0022related\u0020key\u0022\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getRelatedPivotKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetQualifiedRelatedPivotKeyName\u0028\u0029", + "name": "getQualifiedRelatedPivotKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020\u0022related\u0020key\u0022\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getQualifiedRelatedPivotKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetParentKeyName\u0028\u0029", + "name": "getParentKeyName", + "summary": "Get\u0020the\u0020parent\u0020key\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getParentKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetQualifiedParentKeyName\u0028\u0029", + "name": "getQualifiedParentKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020parent\u0020key\u0020name\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getQualifiedParentKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetRelatedKeyName\u0028\u0029", + "name": "getRelatedKeyName", + "summary": "Get\u0020the\u0020related\u0020key\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getRelatedKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetQualifiedRelatedKeyName\u0028\u0029", + "name": "getQualifiedRelatedKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020related\u0020key\u0020name\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getQualifiedRelatedKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "Get\u0020the\u0020intermediate\u0020table\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getTable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetRelationName\u0028\u0029", + "name": "getRelationName", + "summary": "Get\u0020the\u0020relationship\u0020name\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getRelationName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetPivotAccessor\u0028\u0029", + "name": "getPivotAccessor", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020pivot\u0020accessor\u0020for\u0020this\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getPivotAccessor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AgetPivotColumns\u0028\u0029", + "name": "getPivotColumns", + "summary": "Get\u0020the\u0020pivot\u0020columns\u0020for\u0020this\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_getPivotColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003AqualifyPivotColumn\u0028\u0029", + "name": "qualifyPivotColumn", + "summary": "Qualify\u0020the\u0020given\u0020column\u0020name\u0020by\u0020the\u0020pivot\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#method_qualifyPivotColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024table", + "name": "table", + "summary": "The\u0020intermediate\u0020table\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_table" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024foreignPivotKey", + "name": "foreignPivotKey", + "summary": "The\u0020foreign\u0020key\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_foreignPivotKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024relatedPivotKey", + "name": "relatedPivotKey", + "summary": "The\u0020associated\u0020key\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_relatedPivotKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024parentKey", + "name": "parentKey", + "summary": "The\u0020key\u0020name\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_parentKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024relatedKey", + "name": "relatedKey", + "summary": "The\u0020key\u0020name\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_relatedKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024relationName", + "name": "relationName", + "summary": "The\u0020\u0022name\u0022\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_relationName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotColumns", + "name": "pivotColumns", + "summary": "The\u0020pivot\u0020table\u0020columns\u0020to\u0020retrieve.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotWheres", + "name": "pivotWheres", + "summary": "Any\u0020pivot\u0020table\u0020restrictions\u0020for\u0020where\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotWheres" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotWhereIns", + "name": "pivotWhereIns", + "summary": "Any\u0020pivot\u0020table\u0020restrictions\u0020for\u0020whereIn\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotWhereIns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotWhereNulls", + "name": "pivotWhereNulls", + "summary": "Any\u0020pivot\u0020table\u0020restrictions\u0020for\u0020whereNull\u0020clauses.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotWhereNulls" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotValues", + "name": "pivotValues", + "summary": "The\u0020default\u0020values\u0020for\u0020the\u0020pivot\u0020columns.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotValues" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotCreatedAt", + "name": "pivotCreatedAt", + "summary": "The\u0020custom\u0020pivot\u0020table\u0020column\u0020for\u0020the\u0020created_at\u0020timestamp.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotCreatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024pivotUpdatedAt", + "name": "pivotUpdatedAt", + "summary": "The\u0020custom\u0020pivot\u0020table\u0020column\u0020for\u0020the\u0020updated_at\u0020timestamp.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_pivotUpdatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany\u003A\u003A\u0024accessor", + "name": "accessor", + "summary": "The\u0020name\u0020of\u0020the\u0020accessor\u0020to\u0020use\u0020for\u0020the\u0020\u0022pivot\u0022\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-BelongsToMany.html#property_accessor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot", + "name": "AsPivot", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AfromAttributes\u0028\u0029", + "name": "fromAttributes", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_fromAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AfromRawAttributes\u0028\u0029", + "name": "fromRawAttributes", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020model\u0020from\u0020raw\u0020values\u0020returned\u0020from\u0020a\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_fromRawAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AsetKeysForSelectQuery\u0028\u0029", + "name": "setKeysForSelectQuery", + "summary": "Set\u0020the\u0020keys\u0020for\u0020a\u0020select\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_setKeysForSelectQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AsetKeysForSaveQuery\u0028\u0029", + "name": "setKeysForSaveQuery", + "summary": "Set\u0020the\u0020keys\u0020for\u0020a\u0020save\u0020update\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_setKeysForSaveQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020pivot\u0020model\u0020record\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetDeleteQuery\u0028\u0029", + "name": "getDeleteQuery", + "summary": "Get\u0020the\u0020query\u0020builder\u0020for\u0020a\u0020delete\u0020operation\u0020on\u0020the\u0020pivot.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getDeleteQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "Get\u0020the\u0020table\u0020associated\u0020with\u0020the\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getTable" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetForeignKey\u0028\u0029", + "name": "getForeignKey", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020column\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getForeignKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetRelatedKey\u0028\u0029", + "name": "getRelatedKey", + "summary": "Get\u0020the\u0020\u0022related\u0020key\u0022\u0020column\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getRelatedKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetOtherKey\u0028\u0029", + "name": "getOtherKey", + "summary": "Get\u0020the\u0020\u0022related\u0020key\u0022\u0020column\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getOtherKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AsetPivotKeys\u0028\u0029", + "name": "setPivotKeys", + "summary": "Set\u0020the\u0020key\u0020names\u0020for\u0020the\u0020pivot\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_setPivotKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AhasTimestampAttributes\u0028\u0029", + "name": "hasTimestampAttributes", + "summary": "Determine\u0020if\u0020the\u0020pivot\u0020model\u0020or\u0020given\u0020attributes\u0020has\u0020timestamp\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_hasTimestampAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetCreatedAtColumn\u0028\u0029", + "name": "getCreatedAtColumn", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022created\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getCreatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetUpdatedAtColumn\u0028\u0029", + "name": "getUpdatedAtColumn", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getUpdatedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AgetQueueableId\u0028\u0029", + "name": "getQueueableId", + "summary": "Get\u0020the\u0020queueable\u0020identity\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_getQueueableId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AnewQueryForRestoration\u0028\u0029", + "name": "newQueryForRestoration", + "summary": "Get\u0020a\u0020new\u0020query\u0020to\u0020restore\u0020one\u0020or\u0020more\u0020models\u0020by\u0020their\u0020queueable\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_newQueryForRestoration" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AnewQueryForCollectionRestoration\u0028\u0029", + "name": "newQueryForCollectionRestoration", + "summary": "Get\u0020a\u0020new\u0020query\u0020to\u0020restore\u0020multiple\u0020models\u0020by\u0020their\u0020queueable\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_newQueryForCollectionRestoration" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003AunsetRelations\u0028\u0029", + "name": "unsetRelations", + "summary": "Unset\u0020all\u0020the\u0020loaded\u0020relations\u0020for\u0020the\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#method_unsetRelations" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003A\u0024pivotParent", + "name": "pivotParent", + "summary": "The\u0020parent\u0020model\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#property_pivotParent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003A\u0024foreignKey", + "name": "foreignKey", + "summary": "The\u0020name\u0020of\u0020the\u0020foreign\u0020key\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#property_foreignKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\AsPivot\u003A\u003A\u0024relatedKey", + "name": "relatedKey", + "summary": "The\u0020name\u0020of\u0020the\u0020\u0022other\u0020key\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-AsPivot.html#property_relatedKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany", + "name": "CanBeOneOfMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AaddOneOfManySubQueryConstraints\u0028\u0029", + "name": "addOneOfManySubQueryConstraints", + "summary": "Add\u0020constraints\u0020for\u0020inner\u0020join\u0020subselect\u0020for\u0020one\u0020of\u0020many\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_addOneOfManySubQueryConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AgetOneOfManySubQuerySelectColumns\u0028\u0029", + "name": "getOneOfManySubQuerySelectColumns", + "summary": "Get\u0020the\u0020columns\u0020the\u0020determine\u0020the\u0020relationship\u0020groups.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_getOneOfManySubQuerySelectColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AaddOneOfManyJoinSubQueryConstraints\u0028\u0029", + "name": "addOneOfManyJoinSubQueryConstraints", + "summary": "Add\u0020join\u0020query\u0020constraints\u0020for\u0020one\u0020of\u0020many\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_addOneOfManyJoinSubQueryConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AofMany\u0028\u0029", + "name": "ofMany", + "summary": "Indicate\u0020that\u0020the\u0020relation\u0020is\u0020a\u0020single\u0020result\u0020of\u0020a\u0020larger\u0020one\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_ofMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AlatestOfMany\u0028\u0029", + "name": "latestOfMany", + "summary": "Indicate\u0020that\u0020the\u0020relation\u0020is\u0020the\u0020latest\u0020single\u0020result\u0020of\u0020a\u0020larger\u0020one\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_latestOfMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AoldestOfMany\u0028\u0029", + "name": "oldestOfMany", + "summary": "Indicate\u0020that\u0020the\u0020relation\u0020is\u0020the\u0020oldest\u0020single\u0020result\u0020of\u0020a\u0020larger\u0020one\u002Dto\u002Dmany\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_oldestOfMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AgetDefaultOneOfManyJoinAlias\u0028\u0029", + "name": "getDefaultOneOfManyJoinAlias", + "summary": "Get\u0020the\u0020default\u0020alias\u0020for\u0020the\u0020one\u0020of\u0020many\u0020inner\u0020join\u0020clause.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_getDefaultOneOfManyJoinAlias" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AnewOneOfManySubQuery\u0028\u0029", + "name": "newOneOfManySubQuery", + "summary": "Get\u0020a\u0020new\u0020query\u0020for\u0020the\u0020related\u0020model,\u0020grouping\u0020the\u0020query\u0020by\u0020the\u0020given\u0020column,\u0020often\u0020the\u0020foreign\u0020key\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_newOneOfManySubQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AaddOneOfManyJoinSubQuery\u0028\u0029", + "name": "addOneOfManyJoinSubQuery", + "summary": "Add\u0020the\u0020join\u0020subquery\u0020to\u0020the\u0020given\u0020query\u0020on\u0020the\u0020given\u0020column\u0020and\u0020the\u0020relationship\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_addOneOfManyJoinSubQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AmergeOneOfManyJoinsTo\u0028\u0029", + "name": "mergeOneOfManyJoinsTo", + "summary": "Merge\u0020the\u0020relationship\u0020query\u0020joins\u0020to\u0020the\u0020given\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_mergeOneOfManyJoinsTo" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AgetRelationQuery\u0028\u0029", + "name": "getRelationQuery", + "summary": "Get\u0020the\u0020query\u0020builder\u0020that\u0020will\u0020contain\u0020the\u0020relationship\u0020constraints.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_getRelationQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AgetOneOfManySubQuery\u0028\u0029", + "name": "getOneOfManySubQuery", + "summary": "Get\u0020the\u0020one\u0020of\u0020many\u0020inner\u0020join\u0020subselect\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_getOneOfManySubQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AqualifySubSelectColumn\u0028\u0029", + "name": "qualifySubSelectColumn", + "summary": "Get\u0020the\u0020qualified\u0020column\u0020name\u0020for\u0020the\u0020one\u002Dof\u002Dmany\u0020relationship\u0020using\u0020the\u0020subselect\u0020join\u0020query\u0027s\u0020alias.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_qualifySubSelectColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AqualifyRelatedColumn\u0028\u0029", + "name": "qualifyRelatedColumn", + "summary": "Qualify\u0020related\u0020column\u0020using\u0020the\u0020related\u0020table\u0020name\u0020if\u0020it\u0020is\u0020not\u0020already\u0020qualified.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_qualifyRelatedColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AguessRelationship\u0028\u0029", + "name": "guessRelationship", + "summary": "Guess\u0020the\u0020\u0022hasOne\u0022\u0020relationship\u0027s\u0020name\u0020via\u0020backtrace.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_guessRelationship" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003A\u0024isOneOfMany", + "name": "isOneOfMany", + "summary": "Determines\u0020whether\u0020the\u0020relationship\u0020is\u0020one\u002Dof\u002Dmany.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#property_isOneOfMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003AgetRelationName\u0028\u0029", + "name": "getRelationName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#method_getRelationName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003A\u0024relationName", + "name": "relationName", + "summary": "The\u0020name\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#property_relationName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\CanBeOneOfMany\u003A\u003A\u0024oneOfManySubQuery", + "name": "oneOfManySubQuery", + "summary": "The\u0020one\u0020of\u0020many\u0020inner\u0020join\u0020subselect\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-CanBeOneOfMany.html#property_oneOfManySubQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\ComparesRelatedModels", + "name": "ComparesRelatedModels", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-ComparesRelatedModels.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\ComparesRelatedModels\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Determine\u0020if\u0020the\u0020model\u0020is\u0020the\u0020related\u0020instance\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-ComparesRelatedModels.html#method_is" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\ComparesRelatedModels\u003A\u003AisNot\u0028\u0029", + "name": "isNot", + "summary": "Determine\u0020if\u0020the\u0020model\u0020is\u0020not\u0020the\u0020related\u0020instance\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-ComparesRelatedModels.html#method_isNot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\ComparesRelatedModels\u003A\u003AgetParentKey\u0028\u0029", + "name": "getParentKey", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020parent\u0020model\u0027s\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-ComparesRelatedModels.html#method_getParentKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\ComparesRelatedModels\u003A\u003AgetRelatedKeyFrom\u0028\u0029", + "name": "getRelatedKeyFrom", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020related\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-ComparesRelatedModels.html#method_getRelatedKeyFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\ComparesRelatedModels\u003A\u003AcompareKeys\u0028\u0029", + "name": "compareKeys", + "summary": "Compare\u0020the\u0020parent\u0020key\u0020with\u0020the\u0020related\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-ComparesRelatedModels.html#method_compareKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithDictionary", + "name": "InteractsWithDictionary", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithDictionary.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithDictionary\u003A\u003AgetDictionaryKey\u0028\u0029", + "name": "getDictionaryKey", + "summary": "Get\u0020a\u0020dictionary\u0020key\u0020attribute\u0020\u002D\u0020casting\u0020it\u0020to\u0020a\u0020string\u0020if\u0020necessary.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithDictionary.html#method_getDictionaryKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable", + "name": "InteractsWithPivotTable", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003Atoggle\u0028\u0029", + "name": "toggle", + "summary": "Toggles\u0020a\u0020model\u0020\u0028or\u0020models\u0029\u0020from\u0020the\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_toggle" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AsyncWithoutDetaching\u0028\u0029", + "name": "syncWithoutDetaching", + "summary": "Sync\u0020the\u0020intermediate\u0020tables\u0020with\u0020a\u0020list\u0020of\u0020IDs\u0020without\u0020detaching.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_syncWithoutDetaching" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003Async\u0028\u0029", + "name": "sync", + "summary": "Sync\u0020the\u0020intermediate\u0020tables\u0020with\u0020a\u0020list\u0020of\u0020IDs\u0020or\u0020collection\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_sync" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AsyncWithPivotValues\u0028\u0029", + "name": "syncWithPivotValues", + "summary": "Sync\u0020the\u0020intermediate\u0020tables\u0020with\u0020a\u0020list\u0020of\u0020IDs\u0020or\u0020collection\u0020of\u0020models\u0020with\u0020the\u0020given\u0020pivot\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_syncWithPivotValues" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AformatRecordsList\u0028\u0029", + "name": "formatRecordsList", + "summary": "Format\u0020the\u0020sync\u0020\/\u0020toggle\u0020record\u0020list\u0020so\u0020that\u0020it\u0020is\u0020keyed\u0020by\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_formatRecordsList" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AattachNew\u0028\u0029", + "name": "attachNew", + "summary": "Attach\u0020all\u0020of\u0020the\u0020records\u0020that\u0020aren\u0027t\u0020in\u0020the\u0020given\u0020current\u0020records.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_attachNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AupdateExistingPivot\u0028\u0029", + "name": "updateExistingPivot", + "summary": "Update\u0020an\u0020existing\u0020pivot\u0020record\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_updateExistingPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AupdateExistingPivotUsingCustomClass\u0028\u0029", + "name": "updateExistingPivotUsingCustomClass", + "summary": "Update\u0020an\u0020existing\u0020pivot\u0020record\u0020on\u0020the\u0020table\u0020via\u0020a\u0020custom\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_updateExistingPivotUsingCustomClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003Aattach\u0028\u0029", + "name": "attach", + "summary": "Attach\u0020a\u0020model\u0020to\u0020the\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_attach" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AattachUsingCustomClass\u0028\u0029", + "name": "attachUsingCustomClass", + "summary": "Attach\u0020a\u0020model\u0020to\u0020the\u0020parent\u0020using\u0020a\u0020custom\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_attachUsingCustomClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AformatAttachRecords\u0028\u0029", + "name": "formatAttachRecords", + "summary": "Create\u0020an\u0020array\u0020of\u0020records\u0020to\u0020insert\u0020into\u0020the\u0020pivot\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_formatAttachRecords" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AformatAttachRecord\u0028\u0029", + "name": "formatAttachRecord", + "summary": "Create\u0020a\u0020full\u0020attachment\u0020record\u0020payload.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_formatAttachRecord" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AextractAttachIdAndAttributes\u0028\u0029", + "name": "extractAttachIdAndAttributes", + "summary": "Get\u0020the\u0020attach\u0020record\u0020ID\u0020and\u0020extra\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_extractAttachIdAndAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AbaseAttachRecord\u0028\u0029", + "name": "baseAttachRecord", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020attachment\u0020record.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_baseAttachRecord" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AaddTimestampsToAttachment\u0028\u0029", + "name": "addTimestampsToAttachment", + "summary": "Set\u0020the\u0020creation\u0020and\u0020update\u0020timestamps\u0020on\u0020an\u0020attach\u0020record.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_addTimestampsToAttachment" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AhasPivotColumn\u0028\u0029", + "name": "hasPivotColumn", + "summary": "Determine\u0020whether\u0020the\u0020given\u0020column\u0020is\u0020defined\u0020as\u0020a\u0020pivot\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_hasPivotColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003Adetach\u0028\u0029", + "name": "detach", + "summary": "Detach\u0020models\u0020from\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_detach" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AdetachUsingCustomClass\u0028\u0029", + "name": "detachUsingCustomClass", + "summary": "Detach\u0020models\u0020from\u0020the\u0020relationship\u0020using\u0020a\u0020custom\u0020class.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_detachUsingCustomClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AgetCurrentlyAttachedPivots\u0028\u0029", + "name": "getCurrentlyAttachedPivots", + "summary": "Get\u0020the\u0020pivot\u0020models\u0020that\u0020are\u0020currently\u0020attached.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_getCurrentlyAttachedPivots" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AnewPivot\u0028\u0029", + "name": "newPivot", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_newPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AnewExistingPivot\u0028\u0029", + "name": "newExistingPivot", + "summary": "Create\u0020a\u0020new\u0020existing\u0020pivot\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_newExistingPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AnewPivotStatement\u0028\u0029", + "name": "newPivotStatement", + "summary": "Get\u0020a\u0020new\u0020plain\u0020query\u0020builder\u0020for\u0020the\u0020pivot\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_newPivotStatement" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AnewPivotStatementForId\u0028\u0029", + "name": "newPivotStatementForId", + "summary": "Get\u0020a\u0020new\u0020pivot\u0020statement\u0020for\u0020a\u0020given\u0020\u0022other\u0022\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_newPivotStatementForId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AnewPivotQuery\u0028\u0029", + "name": "newPivotQuery", + "summary": "Create\u0020a\u0020new\u0020query\u0020builder\u0020for\u0020the\u0020pivot\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_newPivotQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AwithPivot\u0028\u0029", + "name": "withPivot", + "summary": "Set\u0020the\u0020columns\u0020on\u0020the\u0020pivot\u0020table\u0020to\u0020retrieve.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_withPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AparseIds\u0028\u0029", + "name": "parseIds", + "summary": "Get\u0020all\u0020of\u0020the\u0020IDs\u0020from\u0020the\u0020given\u0020mixed\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_parseIds" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AparseId\u0028\u0029", + "name": "parseId", + "summary": "Get\u0020the\u0020ID\u0020from\u0020the\u0020given\u0020mixed\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_parseId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AcastKeys\u0028\u0029", + "name": "castKeys", + "summary": "Cast\u0020the\u0020given\u0020keys\u0020to\u0020integers\u0020if\u0020they\u0020are\u0020numeric\u0020and\u0020string\u0020otherwise.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_castKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AcastKey\u0028\u0029", + "name": "castKey", + "summary": "Cast\u0020the\u0020given\u0020key\u0020to\u0020convert\u0020to\u0020primary\u0020key\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_castKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AcastAttributes\u0028\u0029", + "name": "castAttributes", + "summary": "Cast\u0020the\u0020given\u0020pivot\u0020attributes.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_castAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\InteractsWithPivotTable\u003A\u003AgetTypeSwapValue\u0028\u0029", + "name": "getTypeSwapValue", + "summary": "Converts\u0020a\u0020given\u0020value\u0020to\u0020a\u0020given\u0020type\u0020value.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-InteractsWithPivotTable.html#method_getTypeSwapValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\SupportsDefaultModels", + "name": "SupportsDefaultModels", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-SupportsDefaultModels.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\SupportsDefaultModels\u003A\u003AnewRelatedInstanceFor\u0028\u0029", + "name": "newRelatedInstanceFor", + "summary": "Make\u0020a\u0020new\u0020related\u0020instance\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-SupportsDefaultModels.html#method_newRelatedInstanceFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\SupportsDefaultModels\u003A\u003A\u0024withDefault", + "name": "withDefault", + "summary": "Indicates\u0020if\u0020a\u0020default\u0020model\u0020instance\u0020should\u0020be\u0020used.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-SupportsDefaultModels.html#property_withDefault" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns\\SupportsDefaultModels\u003A\u003AgetDefaultFor\u0028\u0029", + "name": "getDefaultFor", + "summary": "Get\u0020the\u0020default\u0020value\u0020for\u0020this\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Concerns-SupportsDefaultModels.html#method_getDefaultFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasMany", + "name": "HasMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasMany\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasMany.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasMany\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasMany.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasMany\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasMany.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough", + "name": "HasManyThrough", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020has\u0020many\u0020through\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AaddConstraints\u0028\u0029", + "name": "addConstraints", + "summary": "Set\u0020the\u0020base\u0020constraints\u0020on\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_addConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AperformJoin\u0028\u0029", + "name": "performJoin", + "summary": "Set\u0020the\u0020join\u0020clause\u0020on\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_performJoin" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetQualifiedParentKeyName\u0028\u0029", + "name": "getQualifiedParentKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020parent\u0020key\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getQualifiedParentKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AthroughParentSoftDeletes\u0028\u0029", + "name": "throughParentSoftDeletes", + "summary": "Determine\u0020whether\u0020\u0022through\u0022\u0020parent\u0020of\u0020the\u0020relation\u0020uses\u0020Soft\u0020Deletes.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_throughParentSoftDeletes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AwithTrashedParents\u0028\u0029", + "name": "withTrashedParents", + "summary": "Indicate\u0020that\u0020trashed\u0020\u0022through\u0022\u0020parents\u0020should\u0020be\u0020included\u0020in\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_withTrashedParents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AbuildDictionary\u0028\u0029", + "name": "buildDictionary", + "summary": "Build\u0020model\u0020dictionary\u0020keyed\u0020by\u0020the\u0020relation\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_buildDictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AfirstOrNew\u0028\u0029", + "name": "firstOrNew", + "summary": "Get\u0020the\u0020first\u0020related\u0020model\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020instantiate\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_firstOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AupdateOrCreate\u0028\u0029", + "name": "updateOrCreate", + "summary": "Create\u0020or\u0020update\u0020a\u0020related\u0020record\u0020matching\u0020the\u0020attributes,\u0020and\u0020fill\u0020it\u0020with\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_updateOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AfirstWhere\u0028\u0029", + "name": "firstWhere", + "summary": "Add\u0020a\u0020basic\u0020where\u0020clause\u0020to\u0020the\u0020query,\u0020and\u0020return\u0020the\u0020first\u0020result.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_firstWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_first" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AfirstOrFail\u0028\u0029", + "name": "firstOrFail", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_firstOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Find\u0020a\u0020related\u0020model\u0020by\u0020its\u0020primary\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_find" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AfindMany\u0028\u0029", + "name": "findMany", + "summary": "Find\u0020multiple\u0020related\u0020models\u0020by\u0020their\u0020primary\u0020keys.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_findMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AfindOrFail\u0028\u0029", + "name": "findOrFail", + "summary": "Find\u0020a\u0020related\u0020model\u0020by\u0020its\u0020primary\u0020key\u0020or\u0020throw\u0020an\u0020exception.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_findOrFail" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Execute\u0020the\u0020query\u0020as\u0020a\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Apaginate\u0028\u0029", + "name": "paginate", + "summary": "Get\u0020a\u0020paginator\u0020for\u0020the\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_paginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AsimplePaginate\u0028\u0029", + "name": "simplePaginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020simple\u0020paginator.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_simplePaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AcursorPaginate\u0028\u0029", + "name": "cursorPaginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020cursor\u0020paginator.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_cursorPaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AshouldSelect\u0028\u0029", + "name": "shouldSelect", + "summary": "Set\u0020the\u0020select\u0020clause\u0020for\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_shouldSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Chunk\u0020the\u0020results\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_chunk" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AchunkById\u0028\u0029", + "name": "chunkById", + "summary": "Chunk\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020numeric\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_chunkById" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Get\u0020a\u0020generator\u0020for\u0020the\u0020given\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Aeach\u0028\u0029", + "name": "each", + "summary": "Execute\u0020a\u0020callback\u0020over\u0020each\u0020item\u0020while\u0020chunking.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_each" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003Alazy\u0028\u0029", + "name": "lazy", + "summary": "Query\u0020lazily,\u0020by\u0020chunks\u0020of\u0020the\u0020given\u0020size.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_lazy" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AlazyById\u0028\u0029", + "name": "lazyById", + "summary": "Query\u0020lazily,\u0020by\u0020chunking\u0020the\u0020results\u0020of\u0020a\u0020query\u0020by\u0020comparing\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_lazyById" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AprepareQueryBuilder\u0028\u0029", + "name": "prepareQueryBuilder", + "summary": "Prepare\u0020the\u0020query\u0020builder\u0020for\u0020query\u0020execution.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_prepareQueryBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetRelationExistenceQueryForSelfRelation\u0028\u0029", + "name": "getRelationExistenceQueryForSelfRelation", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query\u0020on\u0020the\u0020same\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getRelationExistenceQueryForSelfRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetRelationExistenceQueryForThroughSelfRelation\u0028\u0029", + "name": "getRelationExistenceQueryForThroughSelfRelation", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query\u0020on\u0020the\u0020same\u0020table\u0020as\u0020the\u0020through\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getRelationExistenceQueryForThroughSelfRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetQualifiedFarKeyName\u0028\u0029", + "name": "getQualifiedFarKeyName", + "summary": "Get\u0020the\u0020qualified\u0020foreign\u0020key\u0020on\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getQualifiedFarKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetFirstKeyName\u0028\u0029", + "name": "getFirstKeyName", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020on\u0020the\u0020\u0022through\u0022\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getFirstKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetQualifiedFirstKeyName\u0028\u0029", + "name": "getQualifiedFirstKeyName", + "summary": "Get\u0020the\u0020qualified\u0020foreign\u0020key\u0020on\u0020the\u0020\u0022through\u0022\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getQualifiedFirstKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetForeignKeyName\u0028\u0029", + "name": "getForeignKeyName", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020on\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getForeignKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetQualifiedForeignKeyName\u0028\u0029", + "name": "getQualifiedForeignKeyName", + "summary": "Get\u0020the\u0020qualified\u0020foreign\u0020key\u0020on\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getQualifiedForeignKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetLocalKeyName\u0028\u0029", + "name": "getLocalKeyName", + "summary": "Get\u0020the\u0020local\u0020key\u0020on\u0020the\u0020far\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getLocalKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetQualifiedLocalKeyName\u0028\u0029", + "name": "getQualifiedLocalKeyName", + "summary": "Get\u0020the\u0020qualified\u0020local\u0020key\u0020on\u0020the\u0020far\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getQualifiedLocalKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003AgetSecondLocalKeyName\u0028\u0029", + "name": "getSecondLocalKeyName", + "summary": "Get\u0020the\u0020local\u0020key\u0020on\u0020the\u0020intermediary\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#method_getSecondLocalKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A\u0024throughParent", + "name": "throughParent", + "summary": "The\u0020\u0022through\u0022\u0020parent\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#property_throughParent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A\u0024farParent", + "name": "farParent", + "summary": "The\u0020far\u0020parent\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#property_farParent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A\u0024firstKey", + "name": "firstKey", + "summary": "The\u0020near\u0020key\u0020on\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#property_firstKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A\u0024secondKey", + "name": "secondKey", + "summary": "The\u0020far\u0020key\u0020on\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#property_secondKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A\u0024localKey", + "name": "localKey", + "summary": "The\u0020local\u0020key\u0020on\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#property_localKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasManyThrough\u003A\u003A\u0024secondLocalKey", + "name": "secondLocalKey", + "summary": "The\u0020local\u0020key\u0020on\u0020the\u0020intermediary\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasManyThrough.html#property_secondLocalKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne", + "name": "HasOne", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020an\u0020internal\u0020relationship\u0020existence\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AaddOneOfManySubQueryConstraints\u0028\u0029", + "name": "addOneOfManySubQueryConstraints", + "summary": "Add\u0020constraints\u0020for\u0020inner\u0020join\u0020subselect\u0020for\u0020one\u0020of\u0020many\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_addOneOfManySubQueryConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AgetOneOfManySubQuerySelectColumns\u0028\u0029", + "name": "getOneOfManySubQuerySelectColumns", + "summary": "Get\u0020the\u0020columns\u0020that\u0020should\u0020be\u0020selected\u0020by\u0020the\u0020one\u0020of\u0020many\u0020subquery.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_getOneOfManySubQuerySelectColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AaddOneOfManyJoinSubQueryConstraints\u0028\u0029", + "name": "addOneOfManyJoinSubQueryConstraints", + "summary": "Add\u0020join\u0020query\u0020constraints\u0020for\u0020one\u0020of\u0020many\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_addOneOfManyJoinSubQueryConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AnewRelatedInstanceFor\u0028\u0029", + "name": "newRelatedInstanceFor", + "summary": "Make\u0020a\u0020new\u0020related\u0020instance\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_newRelatedInstanceFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOne\u003A\u003AgetRelatedKeyFrom\u0028\u0029", + "name": "getRelatedKeyFrom", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOne.html#method_getRelatedKeyFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany", + "name": "HasOneOrMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020has\u0020one\u0020or\u0020many\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Create\u0020and\u0020return\u0020an\u0020un\u002Dsaved\u0020instance\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_make" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AmakeMany\u0028\u0029", + "name": "makeMany", + "summary": "Create\u0020and\u0020return\u0020an\u0020un\u002Dsaved\u0020instance\u0020of\u0020the\u0020related\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_makeMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AaddConstraints\u0028\u0029", + "name": "addConstraints", + "summary": "Set\u0020the\u0020base\u0020constraints\u0020on\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_addConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AmatchOne\u0028\u0029", + "name": "matchOne", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020single\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_matchOne" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AmatchMany\u0028\u0029", + "name": "matchMany", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020many\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_matchMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AmatchOneOrMany\u0028\u0029", + "name": "matchOneOrMany", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020many\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_matchOneOrMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetRelationValue\u0028\u0029", + "name": "getRelationValue", + "summary": "Get\u0020the\u0020value\u0020of\u0020a\u0020relationship\u0020by\u0020one\u0020or\u0020many\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getRelationValue" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AbuildDictionary\u0028\u0029", + "name": "buildDictionary", + "summary": "Build\u0020model\u0020dictionary\u0020keyed\u0020by\u0020the\u0020relation\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_buildDictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AfindOrNew\u0028\u0029", + "name": "findOrNew", + "summary": "Find\u0020a\u0020model\u0020by\u0020its\u0020primary\u0020key\u0020or\u0020return\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_findOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AfirstOrNew\u0028\u0029", + "name": "firstOrNew", + "summary": "Get\u0020the\u0020first\u0020related\u0020model\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020instantiate\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_firstOrNew" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AfirstOrCreate\u0028\u0029", + "name": "firstOrCreate", + "summary": "Get\u0020the\u0020first\u0020related\u0020record\u0020matching\u0020the\u0020attributes\u0020or\u0020create\u0020it.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_firstOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AupdateOrCreate\u0028\u0029", + "name": "updateOrCreate", + "summary": "Create\u0020or\u0020update\u0020a\u0020related\u0020record\u0020matching\u0020the\u0020attributes,\u0020and\u0020fill\u0020it\u0020with\u0020values.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_updateOrCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Attach\u0020a\u0020model\u0020instance\u0020to\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_save" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AsaveMany\u0028\u0029", + "name": "saveMany", + "summary": "Attach\u0020a\u0020collection\u0020of\u0020models\u0020to\u0020the\u0020parent\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_saveMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AforceCreate\u0028\u0029", + "name": "forceCreate", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020related\u0020model.\u0020Allow\u0020mass\u002Dassignment.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_forceCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AcreateMany\u0028\u0029", + "name": "createMany", + "summary": "Create\u0020a\u0020Collection\u0020of\u0020new\u0020instances\u0020of\u0020the\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_createMany" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AsetForeignAttributesForCreate\u0028\u0029", + "name": "setForeignAttributesForCreate", + "summary": "Set\u0020the\u0020foreign\u0020ID\u0020for\u0020creating\u0020a\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_setForeignAttributesForCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetRelationExistenceQueryForSelfRelation\u0028\u0029", + "name": "getRelationExistenceQueryForSelfRelation", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020query\u0020on\u0020the\u0020same\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getRelationExistenceQueryForSelfRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetExistenceCompareKey\u0028\u0029", + "name": "getExistenceCompareKey", + "summary": "Get\u0020the\u0020key\u0020for\u0020comparing\u0020against\u0020the\u0020parent\u0020key\u0020in\u0020\u0022has\u0022\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getExistenceCompareKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetParentKey\u0028\u0029", + "name": "getParentKey", + "summary": "Get\u0020the\u0020key\u0020value\u0020of\u0020the\u0020parent\u0027s\u0020local\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getParentKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetQualifiedParentKeyName\u0028\u0029", + "name": "getQualifiedParentKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020parent\u0020key\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getQualifiedParentKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetForeignKeyName\u0028\u0029", + "name": "getForeignKeyName", + "summary": "Get\u0020the\u0020plain\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getForeignKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetQualifiedForeignKeyName\u0028\u0029", + "name": "getQualifiedForeignKeyName", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getQualifiedForeignKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003AgetLocalKeyName\u0028\u0029", + "name": "getLocalKeyName", + "summary": "Get\u0020the\u0020local\u0020key\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#method_getLocalKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003A\u0024foreignKey", + "name": "foreignKey", + "summary": "The\u0020foreign\u0020key\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#property_foreignKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneOrMany\u003A\u003A\u0024localKey", + "name": "localKey", + "summary": "The\u0020local\u0020key\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneOrMany.html#property_localKey" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneThrough", + "name": "HasOneThrough", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneThrough.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneThrough\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneThrough.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneThrough\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneThrough.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneThrough\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneThrough.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\HasOneThrough\u003A\u003AnewRelatedInstanceFor\u0028\u0029", + "name": "newRelatedInstanceFor", + "summary": "Make\u0020a\u0020new\u0020related\u0020instance\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-HasOneThrough.html#method_newRelatedInstanceFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphMany", + "name": "MorphMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphMany\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphMany.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphMany\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphMany.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphMany\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphMany.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphMany\u003A\u003AforceCreate\u0028\u0029", + "name": "forceCreate", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020related\u0020model.\u0020Allow\u0020mass\u002Dassignment.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphMany.html#method_forceCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne", + "name": "MorphOne", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Get\u0020the\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AaddOneOfManySubQueryConstraints\u0028\u0029", + "name": "addOneOfManySubQueryConstraints", + "summary": "Add\u0020constraints\u0020for\u0020inner\u0020join\u0020subselect\u0020for\u0020one\u0020of\u0020many\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_addOneOfManySubQueryConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AgetOneOfManySubQuerySelectColumns\u0028\u0029", + "name": "getOneOfManySubQuerySelectColumns", + "summary": "Get\u0020the\u0020columns\u0020that\u0020should\u0020be\u0020selected\u0020by\u0020the\u0020one\u0020of\u0020many\u0020subquery.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_getOneOfManySubQuerySelectColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AaddOneOfManyJoinSubQueryConstraints\u0028\u0029", + "name": "addOneOfManyJoinSubQueryConstraints", + "summary": "Add\u0020join\u0020query\u0020constraints\u0020for\u0020one\u0020of\u0020many\u0020relationships.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_addOneOfManyJoinSubQueryConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AnewRelatedInstanceFor\u0028\u0029", + "name": "newRelatedInstanceFor", + "summary": "Make\u0020a\u0020new\u0020related\u0020instance\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_newRelatedInstanceFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOne\u003A\u003AgetRelatedKeyFrom\u0028\u0029", + "name": "getRelatedKeyFrom", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020model\u0027s\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOne.html#method_getRelatedKeyFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany", + "name": "MorphOneOrMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020morph\u0020one\u0020or\u0020many\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AaddConstraints\u0028\u0029", + "name": "addConstraints", + "summary": "Set\u0020the\u0020base\u0020constraints\u0020on\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_addConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AsetForeignAttributesForCreate\u0028\u0029", + "name": "setForeignAttributesForCreate", + "summary": "Set\u0020the\u0020foreign\u0020ID\u0020and\u0020type\u0020for\u0020creating\u0020a\u0020related\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_setForeignAttributesForCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Get\u0020the\u0020relationship\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AgetQualifiedMorphType\u0028\u0029", + "name": "getQualifiedMorphType", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020\u0022type\u0022\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_getQualifiedMorphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AgetMorphType\u0028\u0029", + "name": "getMorphType", + "summary": "Get\u0020the\u0020plain\u0020morph\u0020type\u0020name\u0020without\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_getMorphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003AgetMorphClass\u0028\u0029", + "name": "getMorphClass", + "summary": "Get\u0020the\u0020class\u0020name\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#method_getMorphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003A\u0024morphType", + "name": "morphType", + "summary": "The\u0020foreign\u0020key\u0020type\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#property_morphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphOneOrMany\u003A\u003A\u0024morphClass", + "name": "morphClass", + "summary": "The\u0020class\u0020name\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphOneOrMany.html#property_morphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot", + "name": "MorphPivot", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AsetKeysForSaveQuery\u0028\u0029", + "name": "setKeysForSaveQuery", + "summary": "Set\u0020the\u0020keys\u0020for\u0020a\u0020save\u0020update\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_setKeysForSaveQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AsetKeysForSelectQuery\u0028\u0029", + "name": "setKeysForSelectQuery", + "summary": "Set\u0020the\u0020keys\u0020for\u0020a\u0020select\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_setKeysForSelectQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020pivot\u0020model\u0020record\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AgetMorphType\u0028\u0029", + "name": "getMorphType", + "summary": "Get\u0020the\u0020morph\u0020type\u0020for\u0020the\u0020pivot.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_getMorphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AsetMorphType\u0028\u0029", + "name": "setMorphType", + "summary": "Set\u0020the\u0020morph\u0020type\u0020for\u0020the\u0020pivot.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_setMorphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AsetMorphClass\u0028\u0029", + "name": "setMorphClass", + "summary": "Set\u0020the\u0020morph\u0020class\u0020for\u0020the\u0020pivot.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_setMorphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AgetQueueableId\u0028\u0029", + "name": "getQueueableId", + "summary": "Get\u0020the\u0020queueable\u0020identity\u0020for\u0020the\u0020entity.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_getQueueableId" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AnewQueryForRestoration\u0028\u0029", + "name": "newQueryForRestoration", + "summary": "Get\u0020a\u0020new\u0020query\u0020to\u0020restore\u0020one\u0020or\u0020more\u0020models\u0020by\u0020their\u0020queueable\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_newQueryForRestoration" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003AnewQueryForCollectionRestoration\u0028\u0029", + "name": "newQueryForCollectionRestoration", + "summary": "Get\u0020a\u0020new\u0020query\u0020to\u0020restore\u0020multiple\u0020models\u0020by\u0020their\u0020queueable\u0020IDs.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#method_newQueryForCollectionRestoration" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003A\u0024morphType", + "name": "morphType", + "summary": "The\u0020type\u0020of\u0020the\u0020polymorphic\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#property_morphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphPivot\u003A\u003A\u0024morphClass", + "name": "morphClass", + "summary": "The\u0020value\u0020of\u0020the\u0020polymorphic\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphPivot.html#property_morphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo", + "name": "MorphTo", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020morph\u0020to\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AbuildDictionary\u0028\u0029", + "name": "buildDictionary", + "summary": "Build\u0020a\u0020dictionary\u0020with\u0020the\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_buildDictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AgetEager\u0028\u0029", + "name": "getEager", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_getEager" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AgetResultsByType\u0028\u0029", + "name": "getResultsByType", + "summary": "Get\u0020all\u0020of\u0020the\u0020relation\u0020results\u0020for\u0020a\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_getResultsByType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AgatherKeysByType\u0028\u0029", + "name": "gatherKeysByType", + "summary": "Gather\u0020all\u0020of\u0020the\u0020foreign\u0020keys\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_gatherKeysByType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AcreateModelByType\u0028\u0029", + "name": "createModelByType", + "summary": "Create\u0020a\u0020new\u0020model\u0020instance\u0020by\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_createModelByType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AmatchToMorphParents\u0028\u0029", + "name": "matchToMorphParents", + "summary": "Match\u0020the\u0020results\u0020for\u0020a\u0020given\u0020type\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_matchToMorphParents" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003Aassociate\u0028\u0029", + "name": "associate", + "summary": "Associate\u0020the\u0020model\u0020instance\u0020to\u0020the\u0020given\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_associate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003Adissociate\u0028\u0029", + "name": "dissociate", + "summary": "Dissociate\u0020previously\u0020associated\u0020model\u0020from\u0020the\u0020given\u0020parent.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_dissociate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003Atouch\u0028\u0029", + "name": "touch", + "summary": "Touch\u0020all\u0020of\u0020the\u0020related\u0020models\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_touch" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AnewRelatedInstanceFor\u0028\u0029", + "name": "newRelatedInstanceFor", + "summary": "Make\u0020a\u0020new\u0020related\u0020instance\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_newRelatedInstanceFor" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AgetMorphType\u0028\u0029", + "name": "getMorphType", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020\u0022type\u0022\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_getMorphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AgetDictionary\u0028\u0029", + "name": "getDictionary", + "summary": "Get\u0020the\u0020dictionary\u0020used\u0020by\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_getDictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AmorphWith\u0028\u0029", + "name": "morphWith", + "summary": "Specify\u0020which\u0020relations\u0020to\u0020load\u0020for\u0020a\u0020given\u0020morph\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_morphWith" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AmorphWithCount\u0028\u0029", + "name": "morphWithCount", + "summary": "Specify\u0020which\u0020relationship\u0020counts\u0020to\u0020load\u0020for\u0020a\u0020given\u0020morph\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_morphWithCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003Aconstrain\u0028\u0029", + "name": "constrain", + "summary": "Specify\u0020constraints\u0020on\u0020the\u0020query\u0020for\u0020a\u0020given\u0020morph\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_constrain" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003AreplayMacros\u0028\u0029", + "name": "replayMacros", + "summary": "Replay\u0020stored\u0020macro\u0020calls\u0020on\u0020the\u0020actual\u0020related\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method_replayMacros" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Handle\u0020dynamic\u0020method\u0020calls\u0020to\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024morphType", + "name": "morphType", + "summary": "The\u0020type\u0020of\u0020the\u0020polymorphic\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_morphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024models", + "name": "models", + "summary": "The\u0020models\u0020whose\u0020relations\u0020are\u0020being\u0020eager\u0020loaded.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_models" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024dictionary", + "name": "dictionary", + "summary": "All\u0020of\u0020the\u0020models\u0020keyed\u0020by\u0020ID.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_dictionary" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024macroBuffer", + "name": "macroBuffer", + "summary": "A\u0020buffer\u0020of\u0020dynamic\u0020calls\u0020to\u0020query\u0020macros.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_macroBuffer" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024morphableEagerLoads", + "name": "morphableEagerLoads", + "summary": "A\u0020map\u0020of\u0020relations\u0020to\u0020load\u0020for\u0020each\u0020individual\u0020morph\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_morphableEagerLoads" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024morphableEagerLoadCounts", + "name": "morphableEagerLoadCounts", + "summary": "A\u0020map\u0020of\u0020relationship\u0020counts\u0020to\u0020load\u0020for\u0020each\u0020individual\u0020morph\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_morphableEagerLoadCounts" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphTo\u003A\u003A\u0024morphableConstraints", + "name": "morphableConstraints", + "summary": "A\u0020map\u0020of\u0020constraints\u0020to\u0020apply\u0020for\u0020each\u0020individual\u0020morph\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphTo.html#property_morphableConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany", + "name": "MorphToMany", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020morph\u0020to\u0020many\u0020relationship\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AaddWhereConstraints\u0028\u0029", + "name": "addWhereConstraints", + "summary": "Set\u0020the\u0020where\u0020clause\u0020for\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_addWhereConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AbaseAttachRecord\u0028\u0029", + "name": "baseAttachRecord", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020attachment\u0020record.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_baseAttachRecord" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020count\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AgetCurrentlyAttachedPivots\u0028\u0029", + "name": "getCurrentlyAttachedPivots", + "summary": "Get\u0020the\u0020pivot\u0020models\u0020that\u0020are\u0020currently\u0020attached.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_getCurrentlyAttachedPivots" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AnewPivotQuery\u0028\u0029", + "name": "newPivotQuery", + "summary": "Create\u0020a\u0020new\u0020query\u0020builder\u0020for\u0020the\u0020pivot\u0020table.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_newPivotQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AnewPivot\u0028\u0029", + "name": "newPivot", + "summary": "Create\u0020a\u0020new\u0020pivot\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_newPivot" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AaliasedPivotColumns\u0028\u0029", + "name": "aliasedPivotColumns", + "summary": "Get\u0020the\u0020pivot\u0020columns\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_aliasedPivotColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AgetMorphType\u0028\u0029", + "name": "getMorphType", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020\u0022type\u0022\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_getMorphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AgetMorphClass\u0028\u0029", + "name": "getMorphClass", + "summary": "Get\u0020the\u0020class\u0020name\u0020of\u0020the\u0020parent\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_getMorphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003AgetInverse\u0028\u0029", + "name": "getInverse", + "summary": "Get\u0020the\u0020indicator\u0020for\u0020a\u0020reverse\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#method_getInverse" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003A\u0024morphType", + "name": "morphType", + "summary": "The\u0020type\u0020of\u0020the\u0020polymorphic\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#property_morphType" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003A\u0024morphClass", + "name": "morphClass", + "summary": "The\u0020class\u0020name\u0020of\u0020the\u0020morph\u0020type\u0020constraint.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#property_morphClass" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\MorphToMany\u003A\u003A\u0024inverse", + "name": "inverse", + "summary": "Indicates\u0020if\u0020we\u0020are\u0020connecting\u0020the\u0020inverse\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-MorphToMany.html#property_inverse" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Pivot", + "name": "Pivot", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Pivot.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Pivot\u003A\u003A\u0024incrementing", + "name": "incrementing", + "summary": "Indicates\u0020if\u0020the\u0020IDs\u0020are\u0020auto\u002Dincrementing.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Pivot.html#property_incrementing" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Pivot\u003A\u003A\u0024guarded", + "name": "guarded", + "summary": "The\u0020attributes\u0020that\u0020aren\u0027t\u0020mass\u0020assignable.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Pivot.html#property_guarded" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation", + "name": "Relation", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020relation\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AnoConstraints\u0028\u0029", + "name": "noConstraints", + "summary": "Run\u0020a\u0020callback\u0020with\u0020constraints\u0020disabled\u0020on\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_noConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AaddConstraints\u0028\u0029", + "name": "addConstraints", + "summary": "Set\u0020the\u0020base\u0020constraints\u0020on\u0020the\u0020relation\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_addConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AaddEagerConstraints\u0028\u0029", + "name": "addEagerConstraints", + "summary": "Set\u0020the\u0020constraints\u0020for\u0020an\u0020eager\u0020load\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_addEagerConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AinitRelation\u0028\u0029", + "name": "initRelation", + "summary": "Initialize\u0020the\u0020relation\u0020on\u0020a\u0020set\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_initRelation" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Match\u0020the\u0020eagerly\u0020loaded\u0020results\u0020to\u0020their\u0020parents.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_match" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetResults\u0028\u0029", + "name": "getResults", + "summary": "Get\u0020the\u0020results\u0020of\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getResults" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetEager\u0028\u0029", + "name": "getEager", + "summary": "Get\u0020the\u0020relationship\u0020for\u0020eager\u0020loading.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getEager" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003Asole\u0028\u0029", + "name": "sole", + "summary": "Execute\u0020the\u0020query\u0020and\u0020get\u0020the\u0020first\u0020result\u0020if\u0020it\u0027s\u0020the\u0020sole\u0020matching\u0020record.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_sole" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Execute\u0020the\u0020query\u0020as\u0020a\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_get" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003Atouch\u0028\u0029", + "name": "touch", + "summary": "Touch\u0020all\u0020of\u0020the\u0020related\u0020models\u0020for\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_touch" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003ArawUpdate\u0028\u0029", + "name": "rawUpdate", + "summary": "Run\u0020a\u0020raw\u0020update\u0020against\u0020the\u0020base\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_rawUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetRelationExistenceCountQuery\u0028\u0029", + "name": "getRelationExistenceCountQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020a\u0020relationship\u0020count\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getRelationExistenceCountQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetRelationExistenceQuery\u0028\u0029", + "name": "getRelationExistenceQuery", + "summary": "Add\u0020the\u0020constraints\u0020for\u0020an\u0020internal\u0020relationship\u0020existence\u0020query.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getRelationExistenceQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetRelationCountHash\u0028\u0029", + "name": "getRelationCountHash", + "summary": "Get\u0020a\u0020relationship\u0020join\u0020table\u0020hash.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getRelationCountHash" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetKeys\u0028\u0029", + "name": "getKeys", + "summary": "Get\u0020all\u0020of\u0020the\u0020primary\u0020keys\u0020for\u0020an\u0020array\u0020of\u0020models.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetRelationQuery\u0028\u0029", + "name": "getRelationQuery", + "summary": "Get\u0020the\u0020query\u0020builder\u0020that\u0020will\u0020contain\u0020the\u0020relationship\u0020constraints.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getRelationQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetQuery\u0028\u0029", + "name": "getQuery", + "summary": "Get\u0020the\u0020underlying\u0020query\u0020for\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetBaseQuery\u0028\u0029", + "name": "getBaseQuery", + "summary": "Get\u0020the\u0020base\u0020query\u0020builder\u0020driving\u0020the\u0020Eloquent\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getBaseQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetParent\u0028\u0029", + "name": "getParent", + "summary": "Get\u0020the\u0020parent\u0020model\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getParent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetQualifiedParentKeyName\u0028\u0029", + "name": "getQualifiedParentKeyName", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020parent\u0020key\u0020name.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getQualifiedParentKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetRelated\u0028\u0029", + "name": "getRelated", + "summary": "Get\u0020the\u0020related\u0020model\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getRelated" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AcreatedAt\u0028\u0029", + "name": "createdAt", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022created\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_createdAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AupdatedAt\u0028\u0029", + "name": "updatedAt", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_updatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003ArelatedUpdatedAt\u0028\u0029", + "name": "relatedUpdatedAt", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020related\u0020model\u0027s\u0020\u0022updated\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_relatedUpdatedAt" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AwhereInMethod\u0028\u0029", + "name": "whereInMethod", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022where\u0020in\u0022\u0020method\u0020for\u0020eager\u0020loading.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_whereInMethod" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024requireMorphMap", + "name": "requireMorphMap", + "summary": "Prevents\u0020morph\u0020relationships\u0020without\u0020a\u0020morph\u0020map.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_requireMorphMap" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003ArequiresMorphMap\u0028\u0029", + "name": "requiresMorphMap", + "summary": "Determine\u0020if\u0020polymorphic\u0020relationships\u0020require\u0020explicit\u0020model\u0020mapping.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_requiresMorphMap" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AenforceMorphMap\u0028\u0029", + "name": "enforceMorphMap", + "summary": "Define\u0020the\u0020morph\u0020map\u0020for\u0020polymorphic\u0020relations\u0020and\u0020require\u0020all\u0020morphed\u0020models\u0020to\u0020be\u0020explicitly\u0020mapped.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_enforceMorphMap" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024morphMap", + "name": "morphMap", + "summary": "An\u0020array\u0020to\u0020map\u0020class\u0020names\u0020to\u0020their\u0020morph\u0020names\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_morphMap" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AbuildMorphMapFromModels\u0028\u0029", + "name": "buildMorphMapFromModels", + "summary": "Builds\u0020a\u0020table\u002Dkeyed\u0020array\u0020from\u0020model\u0020class\u0020names.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_buildMorphMapFromModels" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003AgetMorphedModel\u0028\u0029", + "name": "getMorphedModel", + "summary": "Get\u0020the\u0020model\u0020associated\u0020with\u0020a\u0020custom\u0020polymorphic\u0020type.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method_getMorphedModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Handle\u0020dynamic\u0020method\u0020calls\u0020to\u0020the\u0020relationship.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Force\u0020a\u0020clone\u0020of\u0020the\u0020underlying\u0020query\u0020builder\u0020when\u0020cloning.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#method___clone" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024query", + "name": "query", + "summary": "The\u0020Eloquent\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_query" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024parent", + "name": "parent", + "summary": "The\u0020parent\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_parent" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024related", + "name": "related", + "summary": "The\u0020related\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_related" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024constraints", + "name": "constraints", + "summary": "Indicates\u0020if\u0020the\u0020relation\u0020is\u0020adding\u0020constraints.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_constraints" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Relation\u003A\u003A\u0024selfJoinCount", + "name": "selfJoinCount", + "summary": "The\u0020count\u0020of\u0020self\u0020joins.", + "url": "classes/Illuminate-Database-Eloquent-Relations-Relation.html#property_selfJoinCount" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Scope", + "name": "Scope", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-Scope.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Scope\u003A\u003Aapply\u0028\u0029", + "name": "apply", + "summary": "Apply\u0020the\u0020scope\u0020to\u0020a\u0020given\u0020Eloquent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-Scope.html#method_apply" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes", + "name": "SoftDeletes", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AbootSoftDeletes\u0028\u0029", + "name": "bootSoftDeletes", + "summary": "Boot\u0020the\u0020soft\u0020deleting\u0020trait\u0020for\u0020a\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_bootSoftDeletes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AinitializeSoftDeletes\u0028\u0029", + "name": "initializeSoftDeletes", + "summary": "Initialize\u0020the\u0020soft\u0020deleting\u0020trait\u0020for\u0020an\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_initializeSoftDeletes" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AforceDelete\u0028\u0029", + "name": "forceDelete", + "summary": "Force\u0020a\u0020hard\u0020delete\u0020on\u0020a\u0020soft\u0020deleted\u0020model.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_forceDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AperformDeleteOnModel\u0028\u0029", + "name": "performDeleteOnModel", + "summary": "Perform\u0020the\u0020actual\u0020delete\u0020query\u0020on\u0020this\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_performDeleteOnModel" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003ArunSoftDelete\u0028\u0029", + "name": "runSoftDelete", + "summary": "Perform\u0020the\u0020actual\u0020delete\u0020query\u0020on\u0020this\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_runSoftDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003Arestore\u0028\u0029", + "name": "restore", + "summary": "Restore\u0020a\u0020soft\u002Ddeleted\u0020model\u0020instance.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_restore" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003Atrashed\u0028\u0029", + "name": "trashed", + "summary": "Determine\u0020if\u0020the\u0020model\u0020instance\u0020has\u0020been\u0020soft\u002Ddeleted.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_trashed" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AsoftDeleted\u0028\u0029", + "name": "softDeleted", + "summary": "Register\u0020a\u0020\u0022softDeleted\u0022\u0020model\u0020event\u0020callback\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_softDeleted" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003Arestoring\u0028\u0029", + "name": "restoring", + "summary": "Register\u0020a\u0020\u0022restoring\u0022\u0020model\u0020event\u0020callback\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_restoring" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003Arestored\u0028\u0029", + "name": "restored", + "summary": "Register\u0020a\u0020\u0022restored\u0022\u0020model\u0020event\u0020callback\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_restored" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AforceDeleted\u0028\u0029", + "name": "forceDeleted", + "summary": "Register\u0020a\u0020\u0022forceDeleted\u0022\u0020model\u0020event\u0020callback\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_forceDeleted" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AisForceDeleting\u0028\u0029", + "name": "isForceDeleting", + "summary": "Determine\u0020if\u0020the\u0020model\u0020is\u0020currently\u0020force\u0020deleting.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_isForceDeleting" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AgetDeletedAtColumn\u0028\u0029", + "name": "getDeletedAtColumn", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020\u0022deleted\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_getDeletedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003AgetQualifiedDeletedAtColumn\u0028\u0029", + "name": "getQualifiedDeletedAtColumn", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020\u0022deleted\u0020at\u0022\u0020column.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#method_getQualifiedDeletedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletes\u003A\u003A\u0024forceDeleting", + "name": "forceDeleting", + "summary": "Indicates\u0020if\u0020the\u0020model\u0020is\u0020currently\u0020force\u0020deleting.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletes.html#property_forceDeleting" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope", + "name": "SoftDeletingScope", + "summary": "", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003Aapply\u0028\u0029", + "name": "apply", + "summary": "Apply\u0020the\u0020scope\u0020to\u0020a\u0020given\u0020Eloquent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_apply" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Extend\u0020the\u0020query\u0020builder\u0020with\u0020the\u0020needed\u0020functions.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003AgetDeletedAtColumn\u0028\u0029", + "name": "getDeletedAtColumn", + "summary": "Get\u0020the\u0020\u0022deleted\u0020at\u0022\u0020column\u0020for\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_getDeletedAtColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003AaddRestore\u0028\u0029", + "name": "addRestore", + "summary": "Add\u0020the\u0020restore\u0020extension\u0020to\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_addRestore" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003AaddWithTrashed\u0028\u0029", + "name": "addWithTrashed", + "summary": "Add\u0020the\u0020with\u002Dtrashed\u0020extension\u0020to\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_addWithTrashed" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003AaddWithoutTrashed\u0028\u0029", + "name": "addWithoutTrashed", + "summary": "Add\u0020the\u0020without\u002Dtrashed\u0020extension\u0020to\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_addWithoutTrashed" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003AaddOnlyTrashed\u0028\u0029", + "name": "addOnlyTrashed", + "summary": "Add\u0020the\u0020only\u002Dtrashed\u0020extension\u0020to\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#method_addOnlyTrashed" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\SoftDeletingScope\u003A\u003A\u0024extensions", + "name": "extensions", + "summary": "All\u0020of\u0020the\u0020extensions\u0020to\u0020be\u0020added\u0020to\u0020the\u0020builder.", + "url": "classes/Illuminate-Database-Eloquent-SoftDeletingScope.html#property_extensions" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ConnectionEvent", + "name": "ConnectionEvent", + "summary": "", + "url": "classes/Illuminate-Database-Events-ConnectionEvent.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ConnectionEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-ConnectionEvent.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ConnectionEvent\u003A\u003A\u0024connectionName", + "name": "connectionName", + "summary": "The\u0020name\u0020of\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Events-ConnectionEvent.html#property_connectionName" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ConnectionEvent\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Events-ConnectionEvent.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\DatabaseRefreshed", + "name": "DatabaseRefreshed", + "summary": "", + "url": "classes/Illuminate-Database-Events-DatabaseRefreshed.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationEnded", + "name": "MigrationEnded", + "summary": "", + "url": "classes/Illuminate-Database-Events-MigrationEnded.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationEvent", + "name": "MigrationEvent", + "summary": "", + "url": "classes/Illuminate-Database-Events-MigrationEvent.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-MigrationEvent.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationEvent\u003A\u003A\u0024migration", + "name": "migration", + "summary": "A\u0020migration\u0020instance.", + "url": "classes/Illuminate-Database-Events-MigrationEvent.html#property_migration" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationEvent\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020migration\u0020method\u0020that\u0020was\u0020called.", + "url": "classes/Illuminate-Database-Events-MigrationEvent.html#property_method" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationsEnded", + "name": "MigrationsEnded", + "summary": "", + "url": "classes/Illuminate-Database-Events-MigrationsEnded.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationsEvent", + "name": "MigrationsEvent", + "summary": "", + "url": "classes/Illuminate-Database-Events-MigrationsEvent.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationsEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-MigrationsEvent.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationsEvent\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020migration\u0020method\u0020that\u0020was\u0020invoked.", + "url": "classes/Illuminate-Database-Events-MigrationsEvent.html#property_method" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationsStarted", + "name": "MigrationsStarted", + "summary": "", + "url": "classes/Illuminate-Database-Events-MigrationsStarted.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\MigrationStarted", + "name": "MigrationStarted", + "summary": "", + "url": "classes/Illuminate-Database-Events-MigrationStarted.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ModelsPruned", + "name": "ModelsPruned", + "summary": "", + "url": "classes/Illuminate-Database-Events-ModelsPruned.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ModelsPruned\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-ModelsPruned.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ModelsPruned\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020class\u0020name\u0020of\u0020the\u0020model\u0020that\u0020was\u0020pruned.", + "url": "classes/Illuminate-Database-Events-ModelsPruned.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\ModelsPruned\u003A\u003A\u0024count", + "name": "count", + "summary": "The\u0020number\u0020of\u0020pruned\u0020records.", + "url": "classes/Illuminate-Database-Events-ModelsPruned.html#property_count" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\NoPendingMigrations", + "name": "NoPendingMigrations", + "summary": "", + "url": "classes/Illuminate-Database-Events-NoPendingMigrations.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\NoPendingMigrations\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-NoPendingMigrations.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\NoPendingMigrations\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020migration\u0020method\u0020that\u0020was\u0020called.", + "url": "classes/Illuminate-Database-Events-NoPendingMigrations.html#property_method" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted", + "name": "QueryExecuted", + "summary": "", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted\u003A\u003A\u0024sql", + "name": "sql", + "summary": "The\u0020SQL\u0020query\u0020that\u0020was\u0020executed.", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html#property_sql" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted\u003A\u003A\u0024bindings", + "name": "bindings", + "summary": "The\u0020array\u0020of\u0020query\u0020bindings.", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html#property_bindings" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted\u003A\u003A\u0024time", + "name": "time", + "summary": "The\u0020number\u0020of\u0020milliseconds\u0020it\u0020took\u0020to\u0020execute\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html#property_time" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\QueryExecuted\u003A\u003A\u0024connectionName", + "name": "connectionName", + "summary": "The\u0020database\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Events-QueryExecuted.html#property_connectionName" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaDumped", + "name": "SchemaDumped", + "summary": "", + "url": "classes/Illuminate-Database-Events-SchemaDumped.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaDumped\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-SchemaDumped.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaDumped\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Events-SchemaDumped.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaDumped\u003A\u003A\u0024connectionName", + "name": "connectionName", + "summary": "The\u0020database\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Events-SchemaDumped.html#property_connectionName" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaDumped\u003A\u003A\u0024path", + "name": "path", + "summary": "The\u0020path\u0020to\u0020the\u0020schema\u0020dump.", + "url": "classes/Illuminate-Database-Events-SchemaDumped.html#property_path" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaLoaded", + "name": "SchemaLoaded", + "summary": "", + "url": "classes/Illuminate-Database-Events-SchemaLoaded.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaLoaded\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-SchemaLoaded.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaLoaded\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Events-SchemaLoaded.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaLoaded\u003A\u003A\u0024connectionName", + "name": "connectionName", + "summary": "The\u0020database\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Events-SchemaLoaded.html#property_connectionName" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\SchemaLoaded\u003A\u003A\u0024path", + "name": "path", + "summary": "The\u0020path\u0020to\u0020the\u0020schema\u0020dump.", + "url": "classes/Illuminate-Database-Events-SchemaLoaded.html#property_path" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\StatementPrepared", + "name": "StatementPrepared", + "summary": "", + "url": "classes/Illuminate-Database-Events-StatementPrepared.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\StatementPrepared\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020instance.", + "url": "classes/Illuminate-Database-Events-StatementPrepared.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\StatementPrepared\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Events-StatementPrepared.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\StatementPrepared\u003A\u003A\u0024statement", + "name": "statement", + "summary": "The\u0020PDO\u0020statement.", + "url": "classes/Illuminate-Database-Events-StatementPrepared.html#property_statement" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\TransactionBeginning", + "name": "TransactionBeginning", + "summary": "", + "url": "classes/Illuminate-Database-Events-TransactionBeginning.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\TransactionCommitted", + "name": "TransactionCommitted", + "summary": "", + "url": "classes/Illuminate-Database-Events-TransactionCommitted.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events\\TransactionRolledBack", + "name": "TransactionRolledBack", + "summary": "", + "url": "classes/Illuminate-Database-Events-TransactionRolledBack.html" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar", + "name": "Grammar", + "summary": "", + "url": "classes/Illuminate-Database-Grammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AwrapArray\u0028\u0029", + "name": "wrapArray", + "summary": "Wrap\u0020an\u0020array\u0020of\u0020values.", + "url": "classes/Illuminate-Database-Grammar.html#method_wrapArray" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AwrapTable\u0028\u0029", + "name": "wrapTable", + "summary": "Wrap\u0020a\u0020table\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Grammar.html#method_wrapTable" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wrap\u0020a\u0020value\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Grammar.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AwrapAliasedValue\u0028\u0029", + "name": "wrapAliasedValue", + "summary": "Wrap\u0020a\u0020value\u0020that\u0020has\u0020an\u0020alias.", + "url": "classes/Illuminate-Database-Grammar.html#method_wrapAliasedValue" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AwrapSegments\u0028\u0029", + "name": "wrapSegments", + "summary": "Wrap\u0020the\u0020given\u0020value\u0020segments.", + "url": "classes/Illuminate-Database-Grammar.html#method_wrapSegments" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AwrapValue\u0028\u0029", + "name": "wrapValue", + "summary": "Wrap\u0020a\u0020single\u0020string\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Grammar.html#method_wrapValue" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003Acolumnize\u0028\u0029", + "name": "columnize", + "summary": "Convert\u0020an\u0020array\u0020of\u0020column\u0020names\u0020into\u0020a\u0020delimited\u0020string.", + "url": "classes/Illuminate-Database-Grammar.html#method_columnize" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003Aparameterize\u0028\u0029", + "name": "parameterize", + "summary": "Create\u0020query\u0020parameter\u0020place\u002Dholders\u0020for\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Grammar.html#method_parameterize" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003Aparameter\u0028\u0029", + "name": "parameter", + "summary": "Get\u0020the\u0020appropriate\u0020query\u0020parameter\u0020place\u002Dholder\u0020for\u0020a\u0020value.", + "url": "classes/Illuminate-Database-Grammar.html#method_parameter" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AquoteString\u0028\u0029", + "name": "quoteString", + "summary": "Quote\u0020the\u0020given\u0020string\u0020literal.", + "url": "classes/Illuminate-Database-Grammar.html#method_quoteString" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AisExpression\u0028\u0029", + "name": "isExpression", + "summary": "Determine\u0020if\u0020the\u0020given\u0020value\u0020is\u0020a\u0020raw\u0020expression.", + "url": "classes/Illuminate-Database-Grammar.html#method_isExpression" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Get\u0020the\u0020value\u0020of\u0020a\u0020raw\u0020expression.", + "url": "classes/Illuminate-Database-Grammar.html#method_getValue" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AgetDateFormat\u0028\u0029", + "name": "getDateFormat", + "summary": "Get\u0020the\u0020format\u0020for\u0020database\u0020stored\u0020dates.", + "url": "classes/Illuminate-Database-Grammar.html#method_getDateFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AgetTablePrefix\u0028\u0029", + "name": "getTablePrefix", + "summary": "Get\u0020the\u0020grammar\u0027s\u0020table\u0020prefix.", + "url": "classes/Illuminate-Database-Grammar.html#method_getTablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003AsetTablePrefix\u0028\u0029", + "name": "setTablePrefix", + "summary": "Set\u0020the\u0020grammar\u0027s\u0020table\u0020prefix.", + "url": "classes/Illuminate-Database-Grammar.html#method_setTablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Grammar\u003A\u003A\u0024tablePrefix", + "name": "tablePrefix", + "summary": "The\u0020grammar\u0020table\u0020prefix.", + "url": "classes/Illuminate-Database-Grammar.html#property_tablePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\LazyLoadingViolationException", + "name": "LazyLoadingViolationException", + "summary": "", + "url": "classes/Illuminate-Database-LazyLoadingViolationException.html" + }, { + "fqsen": "\\Illuminate\\Database\\LazyLoadingViolationException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020exception\u0020instance.", + "url": "classes/Illuminate-Database-LazyLoadingViolationException.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\LazyLoadingViolationException\u003A\u003A\u0024model", + "name": "model", + "summary": "The\u0020name\u0020of\u0020the\u0020affected\u0020Eloquent\u0020model.", + "url": "classes/Illuminate-Database-LazyLoadingViolationException.html#property_model" + }, { + "fqsen": "\\Illuminate\\Database\\LazyLoadingViolationException\u003A\u003A\u0024relation", + "name": "relation", + "summary": "The\u0020name\u0020of\u0020the\u0020relation.", + "url": "classes/Illuminate-Database-LazyLoadingViolationException.html#property_relation" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository", + "name": "DatabaseMigrationRepository", + "summary": "", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020migration\u0020repository\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetRan\u0028\u0029", + "name": "getRan", + "summary": "Get\u0020the\u0020completed\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getRan" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetMigrations\u0028\u0029", + "name": "getMigrations", + "summary": "Get\u0020list\u0020of\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getMigrations" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetLast\u0028\u0029", + "name": "getLast", + "summary": "Get\u0020the\u0020last\u0020migration\u0020batch.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getLast" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetMigrationBatches\u0028\u0029", + "name": "getMigrationBatches", + "summary": "Get\u0020the\u0020completed\u0020migrations\u0020with\u0020their\u0020batch\u0020numbers.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getMigrationBatches" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Log\u0020that\u0020a\u0020migration\u0020was\u0020run.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_log" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Remove\u0020a\u0020migration\u0020from\u0020the\u0020log.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetNextBatchNumber\u0028\u0029", + "name": "getNextBatchNumber", + "summary": "Get\u0020the\u0020next\u0020migration\u0020batch\u0020number.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getNextBatchNumber" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetLastBatchNumber\u0028\u0029", + "name": "getLastBatchNumber", + "summary": "Get\u0020the\u0020last\u0020migration\u0020batch\u0020number.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getLastBatchNumber" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AcreateRepository\u0028\u0029", + "name": "createRepository", + "summary": "Create\u0020the\u0020migration\u0020repository\u0020data\u0020store.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_createRepository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003ArepositoryExists\u0028\u0029", + "name": "repositoryExists", + "summary": "Determine\u0020if\u0020the\u0020migration\u0020repository\u0020exists.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_repositoryExists" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AdeleteRepository\u0028\u0029", + "name": "deleteRepository", + "summary": "Delete\u0020the\u0020migration\u0020repository\u0020data\u0020store.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_deleteRepository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003A\u0024table", + "name": "table", + "summary": "The\u0020name\u0020of\u0020the\u0020migration\u0020table.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#property_table" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetConnectionResolver\u0028\u0029", + "name": "getConnectionResolver", + "summary": "Get\u0020the\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getConnectionResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Resolve\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003AsetSource\u0028\u0029", + "name": "setSource", + "summary": "Set\u0020the\u0020information\u0020source\u0020to\u0020gather\u0020data.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#method_setSource" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003A\u0024resolver", + "name": "resolver", + "summary": "The\u0020database\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#property_resolver" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\DatabaseMigrationRepository\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020database\u0020connection\u0020to\u0020use.", + "url": "classes/Illuminate-Database-Migrations-DatabaseMigrationRepository.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migration", + "name": "Migration", + "summary": "", + "url": "classes/Illuminate-Database-Migrations-Migration.html" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migration\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020the\u0020migration\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Migrations-Migration.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migration\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020database\u0020connection\u0020to\u0020use.", + "url": "classes/Illuminate-Database-Migrations-Migration.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migration\u003A\u003A\u0024withinTransaction", + "name": "withinTransaction", + "summary": "Enables,\u0020if\u0020supported,\u0020wrapping\u0020the\u0020migration\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Migrations-Migration.html#property_withinTransaction" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator", + "name": "MigrationCreator", + "summary": "", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migration\u0020creator\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020migration\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AensureMigrationDoesntAlreadyExist\u0028\u0029", + "name": "ensureMigrationDoesntAlreadyExist", + "summary": "Ensure\u0020that\u0020a\u0020migration\u0020with\u0020the\u0020given\u0020name\u0020doesn\u0027t\u0020already\u0020exist.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_ensureMigrationDoesntAlreadyExist" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AgetStub\u0028\u0029", + "name": "getStub", + "summary": "Get\u0020the\u0020migration\u0020stub\u0020file.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_getStub" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003ApopulateStub\u0028\u0029", + "name": "populateStub", + "summary": "Populate\u0020the\u0020place\u002Dholders\u0020in\u0020the\u0020migration\u0020stub.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_populateStub" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AgetClassName\u0028\u0029", + "name": "getClassName", + "summary": "Get\u0020the\u0020class\u0020name\u0020of\u0020a\u0020migration\u0020name.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_getClassName" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "Get\u0020the\u0020full\u0020path\u0020to\u0020the\u0020migration.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_getPath" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AfirePostCreateHooks\u0028\u0029", + "name": "firePostCreateHooks", + "summary": "Fire\u0020the\u0020registered\u0020post\u0020create\u0020hooks.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_firePostCreateHooks" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AafterCreate\u0028\u0029", + "name": "afterCreate", + "summary": "Register\u0020a\u0020post\u0020migration\u0020create\u0020hook.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_afterCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AgetDatePrefix\u0028\u0029", + "name": "getDatePrefix", + "summary": "Get\u0020the\u0020date\u0020prefix\u0020for\u0020the\u0020migration.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_getDatePrefix" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AstubPath\u0028\u0029", + "name": "stubPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020stubs.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_stubPath" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003AgetFilesystem\u0028\u0029", + "name": "getFilesystem", + "summary": "Get\u0020the\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#method_getFilesystem" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#property_files" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003A\u0024customStubPath", + "name": "customStubPath", + "summary": "The\u0020custom\u0020app\u0020stubs\u0020directory.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#property_customStubPath" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationCreator\u003A\u003A\u0024postCreate", + "name": "postCreate", + "summary": "The\u0020registered\u0020post\u0020create\u0020hooks.", + "url": "classes/Illuminate-Database-Migrations-MigrationCreator.html#property_postCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface", + "name": "MigrationRepositoryInterface", + "summary": "", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AgetRan\u0028\u0029", + "name": "getRan", + "summary": "Get\u0020the\u0020completed\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_getRan" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AgetMigrations\u0028\u0029", + "name": "getMigrations", + "summary": "Get\u0020the\u0020list\u0020of\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_getMigrations" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AgetLast\u0028\u0029", + "name": "getLast", + "summary": "Get\u0020the\u0020last\u0020migration\u0020batch.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_getLast" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AgetMigrationBatches\u0028\u0029", + "name": "getMigrationBatches", + "summary": "Get\u0020the\u0020completed\u0020migrations\u0020with\u0020their\u0020batch\u0020numbers.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_getMigrationBatches" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Log\u0020that\u0020a\u0020migration\u0020was\u0020run.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_log" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Remove\u0020a\u0020migration\u0020from\u0020the\u0020log.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AgetNextBatchNumber\u0028\u0029", + "name": "getNextBatchNumber", + "summary": "Get\u0020the\u0020next\u0020migration\u0020batch\u0020number.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_getNextBatchNumber" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AcreateRepository\u0028\u0029", + "name": "createRepository", + "summary": "Create\u0020the\u0020migration\u0020repository\u0020data\u0020store.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_createRepository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003ArepositoryExists\u0028\u0029", + "name": "repositoryExists", + "summary": "Determine\u0020if\u0020the\u0020migration\u0020repository\u0020exists.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_repositoryExists" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AdeleteRepository\u0028\u0029", + "name": "deleteRepository", + "summary": "Delete\u0020the\u0020migration\u0020repository\u0020data\u0020store.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_deleteRepository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\MigrationRepositoryInterface\u003A\u003AsetSource\u0028\u0029", + "name": "setSource", + "summary": "Set\u0020the\u0020information\u0020source\u0020to\u0020gather\u0020data.", + "url": "classes/Illuminate-Database-Migrations-MigrationRepositoryInterface.html#method_setSource" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator", + "name": "Migrator", + "summary": "", + "url": "classes/Illuminate-Database-Migrations-Migrator.html" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020migrator\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Run\u0020the\u0020pending\u0020migrations\u0020at\u0020a\u0020given\u0020path.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_run" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ApendingMigrations\u0028\u0029", + "name": "pendingMigrations", + "summary": "Get\u0020the\u0020migration\u0020files\u0020that\u0020have\u0020not\u0020yet\u0020run.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_pendingMigrations" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArunPending\u0028\u0029", + "name": "runPending", + "summary": "Run\u0020an\u0020array\u0020of\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_runPending" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArunUp\u0028\u0029", + "name": "runUp", + "summary": "Run\u0020\u0022up\u0022\u0020a\u0020migration\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_runUp" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003Arollback\u0028\u0029", + "name": "rollback", + "summary": "Rollback\u0020the\u0020last\u0020migration\u0020operation.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_rollback" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetMigrationsForRollback\u0028\u0029", + "name": "getMigrationsForRollback", + "summary": "Get\u0020the\u0020migrations\u0020for\u0020a\u0020rollback\u0020operation.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getMigrationsForRollback" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArollbackMigrations\u0028\u0029", + "name": "rollbackMigrations", + "summary": "Rollback\u0020the\u0020given\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_rollbackMigrations" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Rolls\u0020all\u0020of\u0020the\u0020currently\u0020applied\u0020migrations\u0020back.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_reset" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AresetMigrations\u0028\u0029", + "name": "resetMigrations", + "summary": "Reset\u0020the\u0020given\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_resetMigrations" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArunDown\u0028\u0029", + "name": "runDown", + "summary": "Run\u0020\u0022down\u0022\u0020a\u0020migration\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_runDown" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArunMigration\u0028\u0029", + "name": "runMigration", + "summary": "Run\u0020a\u0020migration\u0020inside\u0020a\u0020transaction\u0020if\u0020the\u0020database\u0020supports\u0020it.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_runMigration" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ApretendToRun\u0028\u0029", + "name": "pretendToRun", + "summary": "Pretend\u0020to\u0020run\u0020the\u0020migrations.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_pretendToRun" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetQueries\u0028\u0029", + "name": "getQueries", + "summary": "Get\u0020all\u0020of\u0020the\u0020queries\u0020that\u0020would\u0020be\u0020run\u0020for\u0020a\u0020migration.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getQueries" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArunMethod\u0028\u0029", + "name": "runMethod", + "summary": "Run\u0020a\u0020migration\u0020method\u0020on\u0020the\u0020given\u0020connection.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_runMethod" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020a\u0020migration\u0020instance\u0020from\u0020a\u0020file.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AresolvePath\u0028\u0029", + "name": "resolvePath", + "summary": "Resolve\u0020a\u0020migration\u0020instance\u0020from\u0020a\u0020migration\u0020path.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_resolvePath" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetMigrationClass\u0028\u0029", + "name": "getMigrationClass", + "summary": "Generate\u0020a\u0020migration\u0020class\u0020name\u0020based\u0020on\u0020the\u0020migration\u0020file\u0020name.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getMigrationClass" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetMigrationFiles\u0028\u0029", + "name": "getMigrationFiles", + "summary": "Get\u0020all\u0020of\u0020the\u0020migration\u0020files\u0020in\u0020a\u0020given\u0020path.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getMigrationFiles" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArequireFiles\u0028\u0029", + "name": "requireFiles", + "summary": "Require\u0020in\u0020all\u0020the\u0020migration\u0020files\u0020in\u0020a\u0020given\u0020path.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_requireFiles" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetMigrationName\u0028\u0029", + "name": "getMigrationName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020migration.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getMigrationName" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003Apath\u0028\u0029", + "name": "path", + "summary": "Register\u0020a\u0020custom\u0020migration\u0020path.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_path" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024paths", + "name": "paths", + "summary": "The\u0020paths\u0020to\u0020all\u0020of\u0020the\u0020migration\u0020files.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_paths" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AusingConnection\u0028\u0029", + "name": "usingConnection", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020using\u0020the\u0020given\u0020connection\u0020as\u0020the\u0020default\u0020connection.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_usingConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AsetConnection\u0028\u0029", + "name": "setConnection", + "summary": "Set\u0020the\u0020default\u0020connection\u0020name.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_setConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AresolveConnection\u0028\u0029", + "name": "resolveConnection", + "summary": "Resolve\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_resolveConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetSchemaGrammar\u0028\u0029", + "name": "getSchemaGrammar", + "summary": "Get\u0020the\u0020schema\u0020grammar\u0020out\u0020of\u0020a\u0020migration\u0020connection.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetRepository\u0028\u0029", + "name": "getRepository", + "summary": "Get\u0020the\u0020migration\u0020repository\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getRepository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003ArepositoryExists\u0028\u0029", + "name": "repositoryExists", + "summary": "Determine\u0020if\u0020the\u0020migration\u0020repository\u0020exists.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_repositoryExists" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AhasRunAnyMigrations\u0028\u0029", + "name": "hasRunAnyMigrations", + "summary": "Determine\u0020if\u0020any\u0020migrations\u0020have\u0020been\u0020run.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_hasRunAnyMigrations" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AdeleteRepository\u0028\u0029", + "name": "deleteRepository", + "summary": "Delete\u0020the\u0020migration\u0020repository\u0020data\u0020store.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_deleteRepository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AgetFilesystem\u0028\u0029", + "name": "getFilesystem", + "summary": "Get\u0020the\u0020file\u0020system\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_getFilesystem" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AsetOutput\u0028\u0029", + "name": "setOutput", + "summary": "Set\u0020the\u0020output\u0020implementation\u0020that\u0020should\u0020be\u0020used\u0020by\u0020the\u0020console.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_setOutput" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003Anote\u0028\u0029", + "name": "note", + "summary": "Write\u0020a\u0020note\u0020to\u0020the\u0020console\u0027s\u0020output.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_note" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003AfireMigrationEvent\u0028\u0029", + "name": "fireMigrationEvent", + "summary": "Fire\u0020the\u0020given\u0020event\u0020for\u0020the\u0020migration.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#method_fireMigrationEvent" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024events", + "name": "events", + "summary": "The\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_events" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020migration\u0020repository\u0020implementation.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_repository" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_files" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024resolver", + "name": "resolver", + "summary": "The\u0020connection\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_resolver" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020default\u0020connection.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations\\Migrator\u003A\u003A\u0024output", + "name": "output", + "summary": "The\u0020output\u0020interface\u0020implementation.", + "url": "classes/Illuminate-Database-Migrations-Migrator.html#property_output" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider", + "name": "MigrationServiceProvider", + "summary": "", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterRepository\u0028\u0029", + "name": "registerRepository", + "summary": "Register\u0020the\u0020migration\u0020repository\u0020service.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerRepository" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrator\u0028\u0029", + "name": "registerMigrator", + "summary": "Register\u0020the\u0020migrator\u0020service.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrator" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterCreator\u0028\u0029", + "name": "registerCreator", + "summary": "Register\u0020the\u0020migration\u0020creator.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerCreator" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterCommands\u0028\u0029", + "name": "registerCommands", + "summary": "Register\u0020the\u0020given\u0020commands.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerCommands" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateCommand\u0028\u0029", + "name": "registerMigrateCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateFreshCommand\u0028\u0029", + "name": "registerMigrateFreshCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateFreshCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateInstallCommand\u0028\u0029", + "name": "registerMigrateInstallCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateInstallCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateMakeCommand\u0028\u0029", + "name": "registerMigrateMakeCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateMakeCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateRefreshCommand\u0028\u0029", + "name": "registerMigrateRefreshCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateRefreshCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateResetCommand\u0028\u0029", + "name": "registerMigrateResetCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateResetCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateRollbackCommand\u0028\u0029", + "name": "registerMigrateRollbackCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateRollbackCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003AregisterMigrateStatusCommand\u0028\u0029", + "name": "registerMigrateStatusCommand", + "summary": "Register\u0020the\u0020command.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_registerMigrateStatusCommand" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003Aprovides\u0028\u0029", + "name": "provides", + "summary": "Get\u0020the\u0020services\u0020provided\u0020by\u0020the\u0020provider.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#method_provides" + }, { + "fqsen": "\\Illuminate\\Database\\MigrationServiceProvider\u003A\u003A\u0024commands", + "name": "commands", + "summary": "The\u0020commands\u0020to\u0020be\u0020registered.", + "url": "classes/Illuminate-Database-MigrationServiceProvider.html#property_commands" + }, { + "fqsen": "\\Illuminate\\Database\\MultipleRecordsFoundException", + "name": "MultipleRecordsFoundException", + "summary": "", + "url": "classes/Illuminate-Database-MultipleRecordsFoundException.html" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection", + "name": "MySqlConnection", + "summary": "", + "url": "classes/Illuminate-Database-MySqlConnection.html" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AisMaria\u0028\u0029", + "name": "isMaria", + "summary": "Determine\u0020if\u0020the\u0020connected\u0020database\u0020is\u0020a\u0020MariaDB\u0020database.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_isMaria" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AgetDefaultQueryGrammar\u0028\u0029", + "name": "getDefaultQueryGrammar", + "summary": "Get\u0020the\u0020default\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_getDefaultQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AgetSchemaBuilder\u0028\u0029", + "name": "getSchemaBuilder", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_getSchemaBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AgetDefaultSchemaGrammar\u0028\u0029", + "name": "getDefaultSchemaGrammar", + "summary": "Get\u0020the\u0020default\u0020schema\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_getDefaultSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AgetSchemaState\u0028\u0029", + "name": "getSchemaState", + "summary": "Get\u0020the\u0020schema\u0020state\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_getSchemaState" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AgetDefaultPostProcessor\u0028\u0029", + "name": "getDefaultPostProcessor", + "summary": "Get\u0020the\u0020default\u0020post\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_getDefaultPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\MySqlConnection\u003A\u003AgetDoctrineDriver\u0028\u0029", + "name": "getDoctrineDriver", + "summary": "Get\u0020the\u0020Doctrine\u0020DBAL\u0020driver.", + "url": "classes/Illuminate-Database-MySqlConnection.html#method_getDoctrineDriver" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Concerns\\ConnectsToDatabase", + "name": "ConnectsToDatabase", + "summary": "", + "url": "classes/Illuminate-Database-PDO-Concerns-ConnectsToDatabase.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Concerns\\ConnectsToDatabase\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Create\u0020a\u0020new\u0020database\u0020connection.", + "url": "classes/Illuminate-Database-PDO-Concerns-ConnectsToDatabase.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection", + "name": "Connection", + "summary": "", + "url": "classes/Illuminate-Database-PDO-Connection.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020PDO\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Execute\u0020an\u0020SQL\u0020statement.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_exec" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepare\u0020a\u0020new\u0020SQL\u0020statement.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_prepare" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Execute\u0020a\u0020new\u0020query\u0020against\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_query" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Get\u0020the\u0020last\u0020insert\u0020ID.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_lastInsertId" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003AcreateStatement\u0028\u0029", + "name": "createStatement", + "summary": "Create\u0020a\u0020new\u0020statement\u0020instance.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_createStatement" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Begin\u0020a\u0020new\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_beginTransaction" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commit\u0020a\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_commit" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rollback\u0020a\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_rollBack" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Wrap\u0020quotes\u0020around\u0020the\u0020given\u0020input.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_quote" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Get\u0020the\u0020server\u0020version\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_getServerVersion" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003AgetWrappedConnection\u0028\u0029", + "name": "getWrappedConnection", + "summary": "Get\u0020the\u0020wrapped\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-PDO-Connection.html#method_getWrappedConnection" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Connection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020underlying\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-PDO-Connection.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\MySqlDriver", + "name": "MySqlDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020MySQL\u0020based\u0020drivers.", + "url": "classes/Illuminate-Database-PDO-MySqlDriver.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\PostgresDriver", + "name": "PostgresDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020PostgreSQL\u0020based\u0020drivers.", + "url": "classes/Illuminate-Database-PDO-PostgresDriver.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SQLiteDriver", + "name": "SQLiteDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Doctrine\\DBAL\\Driver\u007D\u0020interface\u0020for\u0020SQLite\u0020based\u0020drivers.", + "url": "classes/Illuminate-Database-PDO-SQLiteDriver.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection", + "name": "SqlServerConnection", + "summary": "", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020SQL\u0020Server\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003Aprepare\u0028\u0029", + "name": "prepare", + "summary": "Prepare\u0020a\u0020new\u0020SQL\u0020statement.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_prepare" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Execute\u0020a\u0020new\u0020query\u0020against\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_query" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003Aexec\u0028\u0029", + "name": "exec", + "summary": "Execute\u0020an\u0020SQL\u0020statement.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_exec" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Get\u0020the\u0020last\u0020insert\u0020ID.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_lastInsertId" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Begin\u0020a\u0020new\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_beginTransaction" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commit\u0020a\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_commit" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003ArollBack\u0028\u0029", + "name": "rollBack", + "summary": "Rollback\u0020a\u0020database\u0020transaction.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_rollBack" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003Aquote\u0028\u0029", + "name": "quote", + "summary": "Wrap\u0020quotes\u0020around\u0020the\u0020given\u0020input.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_quote" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003AgetServerVersion\u0028\u0029", + "name": "getServerVersion", + "summary": "Get\u0020the\u0020server\u0020version\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_getServerVersion" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003AgetWrappedConnection\u0028\u0029", + "name": "getWrappedConnection", + "summary": "Get\u0020the\u0020wrapped\u0020PDO\u0020connection.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#method_getWrappedConnection" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerConnection\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020underlying\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-PDO-SqlServerConnection.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerDriver", + "name": "SqlServerDriver", + "summary": "Abstract\u0020base\u0020implementation\u0020of\u0020the\u0020\u007B\u0040see\u0020Driver\u007D\u0020interface\u0020for\u0020Microsoft\u0020SQL\u0020Server\u0020based\u0020drivers.", + "url": "classes/Illuminate-Database-PDO-SqlServerDriver.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\SqlServerDriver\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Attempts\u0020to\u0020create\u0020a\u0020connection\u0020with\u0020the\u0020database.", + "url": "classes/Illuminate-Database-PDO-SqlServerDriver.html#method_connect" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection", + "name": "PostgresConnection", + "summary": "", + "url": "classes/Illuminate-Database-PostgresConnection.html" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AbindValues\u0028\u0029", + "name": "bindValues", + "summary": "Bind\u0020values\u0020to\u0020their\u0020parameters\u0020in\u0020the\u0020given\u0020statement.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_bindValues" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AgetDefaultQueryGrammar\u0028\u0029", + "name": "getDefaultQueryGrammar", + "summary": "Get\u0020the\u0020default\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_getDefaultQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AgetSchemaBuilder\u0028\u0029", + "name": "getSchemaBuilder", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_getSchemaBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AgetDefaultSchemaGrammar\u0028\u0029", + "name": "getDefaultSchemaGrammar", + "summary": "Get\u0020the\u0020default\u0020schema\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_getDefaultSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AgetSchemaState\u0028\u0029", + "name": "getSchemaState", + "summary": "Get\u0020the\u0020schema\u0020state\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_getSchemaState" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AgetDefaultPostProcessor\u0028\u0029", + "name": "getDefaultPostProcessor", + "summary": "Get\u0020the\u0020default\u0020post\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_getDefaultPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\PostgresConnection\u003A\u003AgetDoctrineDriver\u0028\u0029", + "name": "getDoctrineDriver", + "summary": "Get\u0020the\u0020Doctrine\u0020DBAL\u0020driver.", + "url": "classes/Illuminate-Database-PostgresConnection.html#method_getDoctrineDriver" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder", + "name": "Builder", + "summary": "", + "url": "classes/Illuminate-Database-Query-Builder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020query\u0020builder\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "Set\u0020the\u0020columns\u0020to\u0020be\u0020selected.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_select" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AselectSub\u0028\u0029", + "name": "selectSub", + "summary": "Add\u0020a\u0020subselect\u0020expression\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_selectSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AselectRaw\u0028\u0029", + "name": "selectRaw", + "summary": "Add\u0020a\u0020new\u0020\u0022raw\u0022\u0020select\u0020expression\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_selectRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AfromSub\u0028\u0029", + "name": "fromSub", + "summary": "Makes\u0020\u0022from\u0022\u0020fetch\u0020from\u0020a\u0020subquery.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_fromSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AfromRaw\u0028\u0029", + "name": "fromRaw", + "summary": "Add\u0020a\u0020raw\u0020from\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_fromRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcreateSub\u0028\u0029", + "name": "createSub", + "summary": "Creates\u0020a\u0020subquery\u0020and\u0020parse\u0020it.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_createSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AparseSub\u0028\u0029", + "name": "parseSub", + "summary": "Parse\u0020the\u0020subquery\u0020into\u0020SQL\u0020and\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_parseSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AprependDatabaseNameIfCrossDatabaseQuery\u0028\u0029", + "name": "prependDatabaseNameIfCrossDatabaseQuery", + "summary": "Prepend\u0020the\u0020database\u0020name\u0020if\u0020the\u0020given\u0020query\u0020is\u0020on\u0020another\u0020database.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_prependDatabaseNameIfCrossDatabaseQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddSelect\u0028\u0029", + "name": "addSelect", + "summary": "Add\u0020a\u0020new\u0020select\u0020column\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024distinct", + "name": "distinct", + "summary": "Indicates\u0020if\u0020the\u0020query\u0020returns\u0020distinct\u0020results.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_distinct" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024from", + "name": "from", + "summary": "The\u0020table\u0020which\u0020the\u0020query\u0020is\u0020targeting.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_from" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "Add\u0020a\u0020join\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_join" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AjoinWhere\u0028\u0029", + "name": "joinWhere", + "summary": "Add\u0020a\u0020\u0022join\u0020where\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_joinWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AjoinSub\u0028\u0029", + "name": "joinSub", + "summary": "Add\u0020a\u0020subquery\u0020join\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_joinSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AleftJoin\u0028\u0029", + "name": "leftJoin", + "summary": "Add\u0020a\u0020left\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_leftJoin" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AleftJoinWhere\u0028\u0029", + "name": "leftJoinWhere", + "summary": "Add\u0020a\u0020\u0022join\u0020where\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_leftJoinWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AleftJoinSub\u0028\u0029", + "name": "leftJoinSub", + "summary": "Add\u0020a\u0020subquery\u0020left\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_leftJoinSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ArightJoin\u0028\u0029", + "name": "rightJoin", + "summary": "Add\u0020a\u0020right\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_rightJoin" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ArightJoinWhere\u0028\u0029", + "name": "rightJoinWhere", + "summary": "Add\u0020a\u0020\u0022right\u0020join\u0020where\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_rightJoinWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ArightJoinSub\u0028\u0029", + "name": "rightJoinSub", + "summary": "Add\u0020a\u0020subquery\u0020right\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_rightJoinSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcrossJoin\u0028\u0029", + "name": "crossJoin", + "summary": "Add\u0020a\u0020\u0022cross\u0020join\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_crossJoin" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcrossJoinSub\u0028\u0029", + "name": "crossJoinSub", + "summary": "Add\u0020a\u0020subquery\u0020cross\u0020join\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_crossJoinSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AnewJoinClause\u0028\u0029", + "name": "newJoinClause", + "summary": "Get\u0020a\u0020new\u0020join\u0020clause.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_newJoinClause" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AmergeWheres\u0028\u0029", + "name": "mergeWheres", + "summary": "Merge\u0020an\u0020array\u0020of\u0020where\u0020clauses\u0020and\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_mergeWheres" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Add\u0020a\u0020basic\u0020where\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_where" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddArrayOfWheres\u0028\u0029", + "name": "addArrayOfWheres", + "summary": "Add\u0020an\u0020array\u0020of\u0020where\u0020clauses\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addArrayOfWheres" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AprepareValueAndOperator\u0028\u0029", + "name": "prepareValueAndOperator", + "summary": "Prepare\u0020the\u0020value\u0020and\u0020operator\u0020for\u0020a\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_prepareValueAndOperator" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AinvalidOperatorAndValue\u0028\u0029", + "name": "invalidOperatorAndValue", + "summary": "Determine\u0020if\u0020the\u0020given\u0020operator\u0020and\u0020value\u0020combination\u0020is\u0020legal.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_invalidOperatorAndValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AinvalidOperator\u0028\u0029", + "name": "invalidOperator", + "summary": "Determine\u0020if\u0020the\u0020given\u0020operator\u0020is\u0020supported.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_invalidOperator" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AisBitwiseOperator\u0028\u0029", + "name": "isBitwiseOperator", + "summary": "Determine\u0020if\u0020the\u0020operator\u0020is\u0020a\u0020bitwise\u0020operator.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_isBitwiseOperator" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhere\u0028\u0029", + "name": "orWhere", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereColumn\u0028\u0029", + "name": "whereColumn", + "summary": "Add\u0020a\u0020\u0022where\u0022\u0020clause\u0020comparing\u0020two\u0020columns\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereColumn\u0028\u0029", + "name": "orWhereColumn", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0022\u0020clause\u0020comparing\u0020two\u0020columns\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereRaw\u0028\u0029", + "name": "whereRaw", + "summary": "Add\u0020a\u0020raw\u0020where\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereRaw\u0028\u0029", + "name": "orWhereRaw", + "summary": "Add\u0020a\u0020raw\u0020or\u0020where\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereIn\u0028\u0029", + "name": "whereIn", + "summary": "Add\u0020a\u0020\u0022where\u0020in\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereIn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereIn\u0028\u0029", + "name": "orWhereIn", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020in\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereIn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNotIn\u0028\u0029", + "name": "whereNotIn", + "summary": "Add\u0020a\u0020\u0022where\u0020not\u0020in\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereNotIn\u0028\u0029", + "name": "orWhereNotIn", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020not\u0020in\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereNotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereIntegerInRaw\u0028\u0029", + "name": "whereIntegerInRaw", + "summary": "Add\u0020a\u0020\u0022where\u0020in\u0020raw\u0022\u0020clause\u0020for\u0020integer\u0020values\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereIntegerInRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereIntegerInRaw\u0028\u0029", + "name": "orWhereIntegerInRaw", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020in\u0020raw\u0022\u0020clause\u0020for\u0020integer\u0020values\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereIntegerInRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereIntegerNotInRaw\u0028\u0029", + "name": "whereIntegerNotInRaw", + "summary": "Add\u0020a\u0020\u0022where\u0020not\u0020in\u0020raw\u0022\u0020clause\u0020for\u0020integer\u0020values\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereIntegerNotInRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereIntegerNotInRaw\u0028\u0029", + "name": "orWhereIntegerNotInRaw", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020not\u0020in\u0020raw\u0022\u0020clause\u0020for\u0020integer\u0020values\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereIntegerNotInRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNull\u0028\u0029", + "name": "whereNull", + "summary": "Add\u0020a\u0020\u0022where\u0020null\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereNull\u0028\u0029", + "name": "orWhereNull", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020null\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNotNull\u0028\u0029", + "name": "whereNotNull", + "summary": "Add\u0020a\u0020\u0022where\u0020not\u0020null\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereBetween\u0028\u0029", + "name": "whereBetween", + "summary": "Add\u0020a\u0020where\u0020between\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereBetweenColumns\u0028\u0029", + "name": "whereBetweenColumns", + "summary": "Add\u0020a\u0020where\u0020between\u0020statement\u0020using\u0020columns\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereBetweenColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereBetween\u0028\u0029", + "name": "orWhereBetween", + "summary": "Add\u0020an\u0020or\u0020where\u0020between\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereBetweenColumns\u0028\u0029", + "name": "orWhereBetweenColumns", + "summary": "Add\u0020an\u0020or\u0020where\u0020between\u0020statement\u0020using\u0020columns\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereBetweenColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNotBetween\u0028\u0029", + "name": "whereNotBetween", + "summary": "Add\u0020a\u0020where\u0020not\u0020between\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNotBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNotBetweenColumns\u0028\u0029", + "name": "whereNotBetweenColumns", + "summary": "Add\u0020a\u0020where\u0020not\u0020between\u0020statement\u0020using\u0020columns\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNotBetweenColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereNotBetween\u0028\u0029", + "name": "orWhereNotBetween", + "summary": "Add\u0020an\u0020or\u0020where\u0020not\u0020between\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereNotBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereNotBetweenColumns\u0028\u0029", + "name": "orWhereNotBetweenColumns", + "summary": "Add\u0020an\u0020or\u0020where\u0020not\u0020between\u0020statement\u0020using\u0020columns\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereNotBetweenColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereNotNull\u0028\u0029", + "name": "orWhereNotNull", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020not\u0020null\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereNotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereDate\u0028\u0029", + "name": "whereDate", + "summary": "Add\u0020a\u0020\u0022where\u0020date\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereDate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereDate\u0028\u0029", + "name": "orWhereDate", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020date\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereDate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereTime\u0028\u0029", + "name": "whereTime", + "summary": "Add\u0020a\u0020\u0022where\u0020time\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereTime" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereTime\u0028\u0029", + "name": "orWhereTime", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020time\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereTime" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereDay\u0028\u0029", + "name": "whereDay", + "summary": "Add\u0020a\u0020\u0022where\u0020day\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereDay" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereDay\u0028\u0029", + "name": "orWhereDay", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020day\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereDay" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereMonth\u0028\u0029", + "name": "whereMonth", + "summary": "Add\u0020a\u0020\u0022where\u0020month\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereMonth" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereMonth\u0028\u0029", + "name": "orWhereMonth", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020month\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereMonth" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereYear\u0028\u0029", + "name": "whereYear", + "summary": "Add\u0020a\u0020\u0022where\u0020year\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereYear" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereYear\u0028\u0029", + "name": "orWhereYear", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020year\u0022\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereYear" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddDateBasedWhere\u0028\u0029", + "name": "addDateBasedWhere", + "summary": "Add\u0020a\u0020date\u0020based\u0020\u0028year,\u0020month,\u0020day,\u0020time\u0029\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addDateBasedWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNested\u0028\u0029", + "name": "whereNested", + "summary": "Add\u0020a\u0020nested\u0020where\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNested" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AforNestedWhere\u0028\u0029", + "name": "forNestedWhere", + "summary": "Create\u0020a\u0020new\u0020query\u0020instance\u0020for\u0020nested\u0020where\u0020condition.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_forNestedWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddNestedWhereQuery\u0028\u0029", + "name": "addNestedWhereQuery", + "summary": "Add\u0020another\u0020query\u0020builder\u0020as\u0020a\u0020nested\u0020where\u0020to\u0020the\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addNestedWhereQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereSub\u0028\u0029", + "name": "whereSub", + "summary": "Add\u0020a\u0020full\u0020sub\u002Dselect\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereExists\u0028\u0029", + "name": "whereExists", + "summary": "Add\u0020an\u0020exists\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereExists\u0028\u0029", + "name": "orWhereExists", + "summary": "Add\u0020an\u0020or\u0020exists\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereNotExists\u0028\u0029", + "name": "whereNotExists", + "summary": "Add\u0020a\u0020where\u0020not\u0020exists\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereNotExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereNotExists\u0028\u0029", + "name": "orWhereNotExists", + "summary": "Add\u0020a\u0020where\u0020not\u0020exists\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereNotExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddWhereExistsQuery\u0028\u0029", + "name": "addWhereExistsQuery", + "summary": "Add\u0020an\u0020exists\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addWhereExistsQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereRowValues\u0028\u0029", + "name": "whereRowValues", + "summary": "Adds\u0020a\u0020where\u0020condition\u0020using\u0020row\u0020values.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereRowValues" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereRowValues\u0028\u0029", + "name": "orWhereRowValues", + "summary": "Adds\u0020an\u0020or\u0020where\u0020condition\u0020using\u0020row\u0020values.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereRowValues" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereJsonContains\u0028\u0029", + "name": "whereJsonContains", + "summary": "Add\u0020a\u0020\u0022where\u0020JSON\u0020contains\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereJsonContains\u0028\u0029", + "name": "orWhereJsonContains", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020JSON\u0020contains\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereJsonDoesntContain\u0028\u0029", + "name": "whereJsonDoesntContain", + "summary": "Add\u0020a\u0020\u0022where\u0020JSON\u0020not\u0020contains\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereJsonDoesntContain" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereJsonDoesntContain\u0028\u0029", + "name": "orWhereJsonDoesntContain", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020JSON\u0020not\u0020contains\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereJsonDoesntContain" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereJsonLength\u0028\u0029", + "name": "whereJsonLength", + "summary": "Add\u0020a\u0020\u0022where\u0020JSON\u0020length\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereJsonLength\u0028\u0029", + "name": "orWhereJsonLength", + "summary": "Add\u0020an\u0020\u0022or\u0020where\u0020JSON\u0020length\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AdynamicWhere\u0028\u0029", + "name": "dynamicWhere", + "summary": "Handles\u0020dynamic\u0020\u0022where\u0022\u0020clauses\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_dynamicWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddDynamic\u0028\u0029", + "name": "addDynamic", + "summary": "Add\u0020a\u0020single\u0020dynamic\u0020where\u0020clause\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addDynamic" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwhereFullText\u0028\u0029", + "name": "whereFullText", + "summary": "Add\u0020a\u0020\u0022where\u0020fulltext\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_whereFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorWhereFullText\u0028\u0029", + "name": "orWhereFullText", + "summary": "Add\u0020a\u0020\u0022or\u0020where\u0020fulltext\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orWhereFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Add\u0020a\u0020\u0022group\u0020by\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_groupBy" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgroupByRaw\u0028\u0029", + "name": "groupByRaw", + "summary": "Add\u0020a\u0020raw\u0020groupBy\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_groupByRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Ahaving\u0028\u0029", + "name": "having", + "summary": "Add\u0020a\u0020\u0022having\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_having" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorHaving\u0028\u0029", + "name": "orHaving", + "summary": "Add\u0020an\u0020\u0022or\u0020having\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orHaving" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AhavingBetween\u0028\u0029", + "name": "havingBetween", + "summary": "Add\u0020a\u0020\u0022having\u0020between\u0020\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_havingBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AhavingRaw\u0028\u0029", + "name": "havingRaw", + "summary": "Add\u0020a\u0020raw\u0020having\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_havingRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorHavingRaw\u0028\u0029", + "name": "orHavingRaw", + "summary": "Add\u0020a\u0020raw\u0020or\u0020having\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orHavingRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorderBy\u0028\u0029", + "name": "orderBy", + "summary": "Add\u0020an\u0020\u0022order\u0020by\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orderBy" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorderByDesc\u0028\u0029", + "name": "orderByDesc", + "summary": "Add\u0020a\u0020descending\u0020\u0022order\u0020by\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orderByDesc" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Alatest\u0028\u0029", + "name": "latest", + "summary": "Add\u0020an\u0020\u0022order\u0020by\u0022\u0020clause\u0020for\u0020a\u0020timestamp\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_latest" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aoldest\u0028\u0029", + "name": "oldest", + "summary": "Add\u0020an\u0020\u0022order\u0020by\u0022\u0020clause\u0020for\u0020a\u0020timestamp\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_oldest" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AinRandomOrder\u0028\u0029", + "name": "inRandomOrder", + "summary": "Put\u0020the\u0020query\u0027s\u0020results\u0020in\u0020random\u0020order.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_inRandomOrder" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AorderByRaw\u0028\u0029", + "name": "orderByRaw", + "summary": "Add\u0020a\u0020raw\u0020\u0022order\u0020by\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_orderByRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Askip\u0028\u0029", + "name": "skip", + "summary": "Alias\u0020to\u0020set\u0020the\u0020\u0022offset\u0022\u0020value\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_skip" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024offset", + "name": "offset", + "summary": "The\u0020number\u0020of\u0020records\u0020to\u0020skip.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_offset" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Atake\u0028\u0029", + "name": "take", + "summary": "Alias\u0020to\u0020set\u0020the\u0020\u0022limit\u0022\u0020value\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_take" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024limit", + "name": "limit", + "summary": "The\u0020maximum\u0020number\u0020of\u0020records\u0020to\u0020return.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_limit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AforPage\u0028\u0029", + "name": "forPage", + "summary": "Set\u0020the\u0020limit\u0020and\u0020offset\u0020for\u0020a\u0020given\u0020page.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_forPage" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AforPageBeforeId\u0028\u0029", + "name": "forPageBeforeId", + "summary": "Constrain\u0020the\u0020query\u0020to\u0020the\u0020previous\u0020\u0022page\u0022\u0020of\u0020results\u0020before\u0020a\u0020given\u0020ID.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_forPageBeforeId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AforPageAfterId\u0028\u0029", + "name": "forPageAfterId", + "summary": "Constrain\u0020the\u0020query\u0020to\u0020the\u0020next\u0020\u0022page\u0022\u0020of\u0020results\u0020after\u0020a\u0020given\u0020ID.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_forPageAfterId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Areorder\u0028\u0029", + "name": "reorder", + "summary": "Remove\u0020all\u0020existing\u0020orders\u0020and\u0020optionally\u0020add\u0020a\u0020new\u0020order.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_reorder" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AremoveExistingOrdersFor\u0028\u0029", + "name": "removeExistingOrdersFor", + "summary": "Get\u0020an\u0020array\u0020with\u0020all\u0020orders\u0020with\u0020a\u0020given\u0020column\u0020removed.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_removeExistingOrdersFor" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aunion\u0028\u0029", + "name": "union", + "summary": "Add\u0020a\u0020union\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_union" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AunionAll\u0028\u0029", + "name": "unionAll", + "summary": "Add\u0020a\u0020union\u0020all\u0020statement\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_unionAll" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024lock", + "name": "lock", + "summary": "Indicates\u0020whether\u0020row\u0020locking\u0020is\u0020being\u0020used.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_lock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AlockForUpdate\u0028\u0029", + "name": "lockForUpdate", + "summary": "Lock\u0020the\u0020selected\u0020rows\u0020in\u0020the\u0020table\u0020for\u0020updating.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_lockForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AsharedLock\u0028\u0029", + "name": "sharedLock", + "summary": "Share\u0020lock\u0020the\u0020selected\u0020rows\u0020in\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_sharedLock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AbeforeQuery\u0028\u0029", + "name": "beforeQuery", + "summary": "Register\u0020a\u0020closure\u0020to\u0020be\u0020invoked\u0020before\u0020the\u0020query\u0020is\u0020executed.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_beforeQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AapplyBeforeQueryCallbacks\u0028\u0029", + "name": "applyBeforeQueryCallbacks", + "summary": "Invoke\u0020the\u0020\u0022before\u0020query\u0022\u0020modification\u0020callbacks.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_applyBeforeQueryCallbacks" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AtoSql\u0028\u0029", + "name": "toSql", + "summary": "Get\u0020the\u0020SQL\u0020representation\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_toSql" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Execute\u0020a\u0020query\u0020for\u0020a\u0020single\u0020record\u0020by\u0020ID.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_find" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Avalue\u0028\u0029", + "name": "value", + "summary": "Get\u0020a\u0020single\u0020column\u0027s\u0020value\u0020from\u0020the\u0020first\u0020result\u0020of\u0020a\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_value" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Execute\u0020the\u0020query\u0020as\u0020a\u0020\u0022select\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_get" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ArunSelect\u0028\u0029", + "name": "runSelect", + "summary": "Run\u0020the\u0020query\u0020as\u0020a\u0020\u0022select\u0022\u0020statement\u0020against\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_runSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Apaginate\u0028\u0029", + "name": "paginate", + "summary": "Paginate\u0020the\u0020given\u0020query\u0020into\u0020a\u0020simple\u0020paginator.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_paginate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AsimplePaginate\u0028\u0029", + "name": "simplePaginate", + "summary": "Get\u0020a\u0020paginator\u0020only\u0020supporting\u0020simple\u0020next\u0020and\u0020previous\u0020links.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_simplePaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcursorPaginate\u0028\u0029", + "name": "cursorPaginate", + "summary": "Get\u0020a\u0020paginator\u0020only\u0020supporting\u0020simple\u0020next\u0020and\u0020previous\u0020links.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_cursorPaginate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AensureOrderForCursorPagination\u0028\u0029", + "name": "ensureOrderForCursorPagination", + "summary": "Ensure\u0020the\u0020proper\u0020order\u0020by\u0020required\u0020for\u0020cursor\u0020pagination.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_ensureOrderForCursorPagination" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgetCountForPagination\u0028\u0029", + "name": "getCountForPagination", + "summary": "Get\u0020the\u0020count\u0020of\u0020the\u0020total\u0020records\u0020for\u0020the\u0020paginator.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_getCountForPagination" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ArunPaginationCountQuery\u0028\u0029", + "name": "runPaginationCountQuery", + "summary": "Run\u0020a\u0020pagination\u0020count\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_runPaginationCountQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcloneForPaginationCount\u0028\u0029", + "name": "cloneForPaginationCount", + "summary": "Clone\u0020the\u0020existing\u0020query\u0020instance\u0020for\u0020usage\u0020in\u0020a\u0020pagination\u0020subquery.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_cloneForPaginationCount" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AwithoutSelectAliases\u0028\u0029", + "name": "withoutSelectAliases", + "summary": "Remove\u0020the\u0020column\u0020aliases\u0020since\u0020they\u0020will\u0020break\u0020count\u0020queries.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_withoutSelectAliases" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Acursor\u0028\u0029", + "name": "cursor", + "summary": "Get\u0020a\u0020lazy\u0020collection\u0020for\u0020the\u0020given\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_cursor" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AenforceOrderBy\u0028\u0029", + "name": "enforceOrderBy", + "summary": "Throw\u0020an\u0020exception\u0020if\u0020the\u0020query\u0020doesn\u0027t\u0020have\u0020an\u0020orderBy\u0020clause.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_enforceOrderBy" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Apluck\u0028\u0029", + "name": "pluck", + "summary": "Get\u0020a\u0020collection\u0020instance\u0020containing\u0020the\u0020values\u0020of\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_pluck" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AstripTableForPluck\u0028\u0029", + "name": "stripTableForPluck", + "summary": "Strip\u0020off\u0020the\u0020table\u0020name\u0020or\u0020alias\u0020from\u0020a\u0020column\u0020identifier.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_stripTableForPluck" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ApluckFromObjectColumn\u0028\u0029", + "name": "pluckFromObjectColumn", + "summary": "Retrieve\u0020column\u0020values\u0020from\u0020rows\u0020represented\u0020as\u0020objects.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_pluckFromObjectColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003ApluckFromArrayColumn\u0028\u0029", + "name": "pluckFromArrayColumn", + "summary": "Retrieve\u0020column\u0020values\u0020from\u0020rows\u0020represented\u0020as\u0020arrays.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_pluckFromArrayColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aimplode\u0028\u0029", + "name": "implode", + "summary": "Concatenate\u0020values\u0020of\u0020a\u0020given\u0020column\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_implode" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020any\u0020rows\u0020exist\u0020for\u0020the\u0020current\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AdoesntExist\u0028\u0029", + "name": "doesntExist", + "summary": "Determine\u0020if\u0020no\u0020rows\u0020exist\u0020for\u0020the\u0020current\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_doesntExist" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AexistsOr\u0028\u0029", + "name": "existsOr", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020no\u0020rows\u0020exist\u0020for\u0020the\u0020current\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_existsOr" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AdoesntExistOr\u0028\u0029", + "name": "doesntExistOr", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020rows\u0020exist\u0020for\u0020the\u0020current\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_doesntExistOr" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Retrieve\u0020the\u0020\u0022count\u0022\u0020result\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_count" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Amin\u0028\u0029", + "name": "min", + "summary": "Retrieve\u0020the\u0020minimum\u0020value\u0020of\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_min" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Amax\u0028\u0029", + "name": "max", + "summary": "Retrieve\u0020the\u0020maximum\u0020value\u0020of\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_max" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Asum\u0028\u0029", + "name": "sum", + "summary": "Retrieve\u0020the\u0020sum\u0020of\u0020the\u0020values\u0020of\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_sum" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aavg\u0028\u0029", + "name": "avg", + "summary": "Retrieve\u0020the\u0020average\u0020of\u0020the\u0020values\u0020of\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_avg" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aaverage\u0028\u0029", + "name": "average", + "summary": "Alias\u0020for\u0020the\u0020\u0022avg\u0022\u0020method.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_average" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024aggregate", + "name": "aggregate", + "summary": "An\u0020aggregate\u0020function\u0020and\u0020column\u0020to\u0020be\u0020run.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_aggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AnumericAggregate\u0028\u0029", + "name": "numericAggregate", + "summary": "Execute\u0020a\u0020numeric\u0020aggregate\u0020function\u0020on\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_numericAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AsetAggregate\u0028\u0029", + "name": "setAggregate", + "summary": "Set\u0020the\u0020aggregate\u0020property\u0020without\u0020running\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_setAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AonceWithColumns\u0028\u0029", + "name": "onceWithColumns", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020while\u0020selecting\u0020the\u0020given\u0020columns.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_onceWithColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "Insert\u0020new\u0020records\u0020into\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_insert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AinsertOrIgnore\u0028\u0029", + "name": "insertOrIgnore", + "summary": "Insert\u0020new\u0020records\u0020into\u0020the\u0020database\u0020while\u0020ignoring\u0020errors.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_insertOrIgnore" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AinsertGetId\u0028\u0029", + "name": "insertGetId", + "summary": "Insert\u0020a\u0020new\u0020record\u0020and\u0020get\u0020the\u0020value\u0020of\u0020the\u0020primary\u0020key.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_insertGetId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AinsertUsing\u0028\u0029", + "name": "insertUsing", + "summary": "Insert\u0020new\u0020records\u0020into\u0020the\u0020table\u0020using\u0020a\u0020subquery.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_insertUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Update\u0020records\u0020in\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_update" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AupdateFrom\u0028\u0029", + "name": "updateFrom", + "summary": "Update\u0020records\u0020in\u0020a\u0020PostgreSQL\u0020database\u0020using\u0020the\u0020update\u0020from\u0020syntax.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_updateFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AupdateOrInsert\u0028\u0029", + "name": "updateOrInsert", + "summary": "Insert\u0020or\u0020update\u0020a\u0020record\u0020matching\u0020the\u0020attributes,\u0020and\u0020fill\u0020it\u0020with\u0020values.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_updateOrInsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aupsert\u0028\u0029", + "name": "upsert", + "summary": "Insert\u0020new\u0020records\u0020or\u0020update\u0020the\u0020existing\u0020ones.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_upsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aincrement\u0028\u0029", + "name": "increment", + "summary": "Increment\u0020a\u0020column\u0027s\u0020value\u0020by\u0020a\u0020given\u0020amount.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_increment" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Adecrement\u0028\u0029", + "name": "decrement", + "summary": "Decrement\u0020a\u0020column\u0027s\u0020value\u0020by\u0020a\u0020given\u0020amount.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_decrement" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020records\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Run\u0020a\u0020truncate\u0020statement\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_truncate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AnewQuery\u0028\u0029", + "name": "newQuery", + "summary": "Get\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_newQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AforSubQuery\u0028\u0029", + "name": "forSubQuery", + "summary": "Create\u0020a\u0020new\u0020query\u0020instance\u0020for\u0020a\u0020sub\u002Dquery.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_forSubQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Create\u0020a\u0020raw\u0020database\u0020expression.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgetBindings\u0028\u0029", + "name": "getBindings", + "summary": "Get\u0020the\u0020current\u0020query\u0020value\u0020bindings\u0020in\u0020a\u0020flattened\u0020array.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_getBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgetRawBindings\u0028\u0029", + "name": "getRawBindings", + "summary": "Get\u0020the\u0020raw\u0020array\u0020of\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_getRawBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AsetBindings\u0028\u0029", + "name": "setBindings", + "summary": "Set\u0020the\u0020bindings\u0020on\u0020the\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_setBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AaddBinding\u0028\u0029", + "name": "addBinding", + "summary": "Add\u0020a\u0020binding\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_addBinding" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcastBinding\u0028\u0029", + "name": "castBinding", + "summary": "Cast\u0020the\u0020given\u0020binding\u0020value.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_castBinding" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AmergeBindings\u0028\u0029", + "name": "mergeBindings", + "summary": "Merge\u0020an\u0020array\u0020of\u0020bindings\u0020into\u0020our\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_mergeBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcleanBindings\u0028\u0029", + "name": "cleanBindings", + "summary": "Remove\u0020all\u0020of\u0020the\u0020expressions\u0020from\u0020a\u0020list\u0020of\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_cleanBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AflattenValue\u0028\u0029", + "name": "flattenValue", + "summary": "Get\u0020a\u0020scalar\u0020type\u0020value\u0020from\u0020an\u0020unknown\u0020type\u0020of\u0020input.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_flattenValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AdefaultKeyName\u0028\u0029", + "name": "defaultKeyName", + "summary": "Get\u0020the\u0020default\u0020key\u0020name\u0020of\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_defaultKeyName" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgetProcessor\u0028\u0029", + "name": "getProcessor", + "summary": "Get\u0020the\u0020database\u0020query\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_getProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AgetGrammar\u0028\u0029", + "name": "getGrammar", + "summary": "Get\u0020the\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_getGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024useWritePdo", + "name": "useWritePdo", + "summary": "Whether\u0020to\u0020use\u0020write\u0020pdo\u0020for\u0020the\u0020select.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_useWritePdo" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AisQueryable\u0028\u0029", + "name": "isQueryable", + "summary": "Determine\u0020if\u0020the\u0020value\u0020is\u0020a\u0020query\u0020builder\u0020instance\u0020or\u0020a\u0020Closure.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_isQueryable" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Aclone\u0028\u0029", + "name": "clone", + "summary": "Clone\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_clone" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcloneWithout\u0028\u0029", + "name": "cloneWithout", + "summary": "Clone\u0020the\u0020query\u0020without\u0020the\u0020given\u0020properties.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_cloneWithout" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003AcloneWithoutBindings\u0028\u0029", + "name": "cloneWithoutBindings", + "summary": "Clone\u0020the\u0020query\u0020without\u0020the\u0020given\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_cloneWithoutBindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020current\u0020SQL\u0020and\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003Add\u0028\u0029", + "name": "dd", + "summary": "Die\u0020and\u0020dump\u0020the\u0020current\u0020SQL\u0020and\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#method_dd" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Handle\u0020dynamic\u0020method\u0020calls\u0020into\u0020the\u0020method.", + "url": "classes/Illuminate-Database-Query-Builder.html#method___call" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024grammar", + "name": "grammar", + "summary": "The\u0020database\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_grammar" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024processor", + "name": "processor", + "summary": "The\u0020database\u0020query\u0020post\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_processor" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024bindings", + "name": "bindings", + "summary": "The\u0020current\u0020query\u0020value\u0020bindings.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_bindings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024columns", + "name": "columns", + "summary": "The\u0020columns\u0020that\u0020should\u0020be\u0020returned.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_columns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024joins", + "name": "joins", + "summary": "The\u0020table\u0020joins\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_joins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024wheres", + "name": "wheres", + "summary": "The\u0020where\u0020constraints\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_wheres" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024groups", + "name": "groups", + "summary": "The\u0020groupings\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_groups" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024havings", + "name": "havings", + "summary": "The\u0020having\u0020constraints\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_havings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024orders", + "name": "orders", + "summary": "The\u0020orderings\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_orders" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024unions", + "name": "unions", + "summary": "The\u0020query\u0020union\u0020statements.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_unions" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024unionLimit", + "name": "unionLimit", + "summary": "The\u0020maximum\u0020number\u0020of\u0020union\u0020records\u0020to\u0020return.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_unionLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024unionOffset", + "name": "unionOffset", + "summary": "The\u0020number\u0020of\u0020union\u0020records\u0020to\u0020skip.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_unionOffset" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024unionOrders", + "name": "unionOrders", + "summary": "The\u0020orderings\u0020for\u0020the\u0020union\u0020query.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_unionOrders" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024beforeQueryCallbacks", + "name": "beforeQueryCallbacks", + "summary": "The\u0020callbacks\u0020that\u0020should\u0020be\u0020invoked\u0020before\u0020the\u0020query\u0020is\u0020executed.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_beforeQueryCallbacks" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024operators", + "name": "operators", + "summary": "All\u0020of\u0020the\u0020available\u0020clause\u0020operators.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_operators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Builder\u003A\u003A\u0024bitwiseOperators", + "name": "bitwiseOperators", + "summary": "All\u0020of\u0020the\u0020available\u0020bitwise\u0020operators.", + "url": "classes/Illuminate-Database-Query-Builder.html#property_bitwiseOperators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Expression", + "name": "Expression", + "summary": "", + "url": "classes/Illuminate-Database-Query-Expression.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Expression\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020raw\u0020query\u0020expression.", + "url": "classes/Illuminate-Database-Query-Expression.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Expression\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020expression.", + "url": "classes/Illuminate-Database-Query-Expression.html#method_getValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Expression\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020value\u0020of\u0020the\u0020expression.", + "url": "classes/Illuminate-Database-Query-Expression.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Expression\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020value\u0020of\u0020the\u0020expression.", + "url": "classes/Illuminate-Database-Query-Expression.html#property_value" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar", + "name": "Grammar", + "summary": "", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileSelect\u0028\u0029", + "name": "compileSelect", + "summary": "Compile\u0020a\u0020select\u0020query\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileComponents\u0028\u0029", + "name": "compileComponents", + "summary": "Compile\u0020the\u0020components\u0020necessary\u0020for\u0020a\u0020select\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileComponents" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileAggregate\u0028\u0029", + "name": "compileAggregate", + "summary": "Compile\u0020an\u0020aggregated\u0020select\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileColumns\u0028\u0029", + "name": "compileColumns", + "summary": "Compile\u0020the\u0020\u0022select\u0020\u002A\u0022\u0020portion\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileFrom\u0028\u0029", + "name": "compileFrom", + "summary": "Compile\u0020the\u0020\u0022from\u0022\u0020portion\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileJoins\u0028\u0029", + "name": "compileJoins", + "summary": "Compile\u0020the\u0020\u0022join\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileWheres\u0028\u0029", + "name": "compileWheres", + "summary": "Compile\u0020the\u0020\u0022where\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileWheres" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileWheresToArray\u0028\u0029", + "name": "compileWheresToArray", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020the\u0020where\u0020clauses\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileWheresToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AconcatenateWhereClauses\u0028\u0029", + "name": "concatenateWhereClauses", + "summary": "Format\u0020the\u0020where\u0020clause\u0020statements\u0020into\u0020one\u0020string.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_concatenateWhereClauses" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereRaw\u0028\u0029", + "name": "whereRaw", + "summary": "Compile\u0020a\u0020raw\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereBasic\u0028\u0029", + "name": "whereBasic", + "summary": "Compile\u0020a\u0020basic\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereBasic" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereBitwise\u0028\u0029", + "name": "whereBitwise", + "summary": "Compile\u0020a\u0020bitwise\u0020operator\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereBitwise" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereIn\u0028\u0029", + "name": "whereIn", + "summary": "Compile\u0020a\u0020\u0022where\u0020in\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereIn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereNotIn\u0028\u0029", + "name": "whereNotIn", + "summary": "Compile\u0020a\u0020\u0022where\u0020not\u0020in\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereNotIn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereNotInRaw\u0028\u0029", + "name": "whereNotInRaw", + "summary": "Compile\u0020a\u0020\u0022where\u0020not\u0020in\u0020raw\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereNotInRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereInRaw\u0028\u0029", + "name": "whereInRaw", + "summary": "Compile\u0020a\u0020\u0022where\u0020in\u0020raw\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereInRaw" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereNull\u0028\u0029", + "name": "whereNull", + "summary": "Compile\u0020a\u0020\u0022where\u0020null\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereNotNull\u0028\u0029", + "name": "whereNotNull", + "summary": "Compile\u0020a\u0020\u0022where\u0020not\u0020null\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereNotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereBetween\u0028\u0029", + "name": "whereBetween", + "summary": "Compile\u0020a\u0020\u0022between\u0022\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereBetweenColumns\u0028\u0029", + "name": "whereBetweenColumns", + "summary": "Compile\u0020a\u0020\u0022between\u0022\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereBetweenColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereDate\u0028\u0029", + "name": "whereDate", + "summary": "Compile\u0020a\u0020\u0022where\u0020date\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereDate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereTime\u0028\u0029", + "name": "whereTime", + "summary": "Compile\u0020a\u0020\u0022where\u0020time\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereTime" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereDay\u0028\u0029", + "name": "whereDay", + "summary": "Compile\u0020a\u0020\u0022where\u0020day\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereDay" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereMonth\u0028\u0029", + "name": "whereMonth", + "summary": "Compile\u0020a\u0020\u0022where\u0020month\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereMonth" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereYear\u0028\u0029", + "name": "whereYear", + "summary": "Compile\u0020a\u0020\u0022where\u0020year\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereYear" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AdateBasedWhere\u0028\u0029", + "name": "dateBasedWhere", + "summary": "Compile\u0020a\u0020date\u0020based\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_dateBasedWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereColumn\u0028\u0029", + "name": "whereColumn", + "summary": "Compile\u0020a\u0020where\u0020clause\u0020comparing\u0020two\u0020columns.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereNested\u0028\u0029", + "name": "whereNested", + "summary": "Compile\u0020a\u0020nested\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereNested" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereSub\u0028\u0029", + "name": "whereSub", + "summary": "Compile\u0020a\u0020where\u0020condition\u0020with\u0020a\u0020sub\u002Dselect.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereSub" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereExists\u0028\u0029", + "name": "whereExists", + "summary": "Compile\u0020a\u0020where\u0020exists\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereNotExists\u0028\u0029", + "name": "whereNotExists", + "summary": "Compile\u0020a\u0020where\u0020exists\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereNotExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereRowValues\u0028\u0029", + "name": "whereRowValues", + "summary": "Compile\u0020a\u0020where\u0020row\u0020values\u0020condition.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereRowValues" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereJsonBoolean\u0028\u0029", + "name": "whereJsonBoolean", + "summary": "Compile\u0020a\u0020\u0022where\u0020JSON\u0020boolean\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereJsonBoolean" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereJsonContains\u0028\u0029", + "name": "whereJsonContains", + "summary": "Compile\u0020a\u0020\u0022where\u0020JSON\u0020contains\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileJsonContains\u0028\u0029", + "name": "compileJsonContains", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020contains\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AprepareBindingForJsonContains\u0028\u0029", + "name": "prepareBindingForJsonContains", + "summary": "Prepare\u0020the\u0020binding\u0020for\u0020a\u0020\u0022JSON\u0020contains\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_prepareBindingForJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereJsonLength\u0028\u0029", + "name": "whereJsonLength", + "summary": "Compile\u0020a\u0020\u0022where\u0020JSON\u0020length\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileJsonLength\u0028\u0029", + "name": "compileJsonLength", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020length\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwhereFullText\u0028\u0029", + "name": "whereFullText", + "summary": "Compile\u0020a\u0020\u0022where\u0020fulltext\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_whereFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileGroups\u0028\u0029", + "name": "compileGroups", + "summary": "Compile\u0020the\u0020\u0022group\u0020by\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileGroups" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileHavings\u0028\u0029", + "name": "compileHavings", + "summary": "Compile\u0020the\u0020\u0022having\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileHavings" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileHaving\u0028\u0029", + "name": "compileHaving", + "summary": "Compile\u0020a\u0020single\u0020having\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileHaving" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileBasicHaving\u0028\u0029", + "name": "compileBasicHaving", + "summary": "Compile\u0020a\u0020basic\u0020having\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileBasicHaving" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileHavingBetween\u0028\u0029", + "name": "compileHavingBetween", + "summary": "Compile\u0020a\u0020\u0022between\u0022\u0020having\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileHavingBetween" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileOrders\u0028\u0029", + "name": "compileOrders", + "summary": "Compile\u0020the\u0020\u0022order\u0020by\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileOrders" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileOrdersToArray\u0028\u0029", + "name": "compileOrdersToArray", + "summary": "Compile\u0020the\u0020query\u0020orders\u0020to\u0020an\u0020array.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileOrdersToArray" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileRandom\u0028\u0029", + "name": "compileRandom", + "summary": "Compile\u0020the\u0020random\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileRandom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileLimit\u0028\u0029", + "name": "compileLimit", + "summary": "Compile\u0020the\u0020\u0022limit\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileOffset\u0028\u0029", + "name": "compileOffset", + "summary": "Compile\u0020the\u0020\u0022offset\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileOffset" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUnions\u0028\u0029", + "name": "compileUnions", + "summary": "Compile\u0020the\u0020\u0022union\u0022\u0020queries\u0020attached\u0020to\u0020the\u0020main\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUnions" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUnion\u0028\u0029", + "name": "compileUnion", + "summary": "Compile\u0020a\u0020single\u0020union\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUnion" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwrapUnion\u0028\u0029", + "name": "wrapUnion", + "summary": "Wrap\u0020a\u0020union\u0020subquery\u0020in\u0020parentheses.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrapUnion" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUnionAggregate\u0028\u0029", + "name": "compileUnionAggregate", + "summary": "Compile\u0020a\u0020union\u0020aggregate\u0020query\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUnionAggregate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileExists\u0028\u0029", + "name": "compileExists", + "summary": "Compile\u0020an\u0020exists\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileInsert\u0028\u0029", + "name": "compileInsert", + "summary": "Compile\u0020an\u0020insert\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileInsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileInsertOrIgnore\u0028\u0029", + "name": "compileInsertOrIgnore", + "summary": "Compile\u0020an\u0020insert\u0020ignore\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileInsertOrIgnore" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileInsertGetId\u0028\u0029", + "name": "compileInsertGetId", + "summary": "Compile\u0020an\u0020insert\u0020and\u0020get\u0020ID\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileInsertGetId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileInsertUsing\u0028\u0029", + "name": "compileInsertUsing", + "summary": "Compile\u0020an\u0020insert\u0020statement\u0020using\u0020a\u0020subquery\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileInsertUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUpdate\u0028\u0029", + "name": "compileUpdate", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUpdateColumns\u0028\u0029", + "name": "compileUpdateColumns", + "summary": "Compile\u0020the\u0020columns\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUpdateColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUpdateWithoutJoins\u0028\u0029", + "name": "compileUpdateWithoutJoins", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020without\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUpdateWithoutJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUpdateWithJoins\u0028\u0029", + "name": "compileUpdateWithJoins", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020with\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUpdateWithJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileUpsert\u0028\u0029", + "name": "compileUpsert", + "summary": "Compile\u0020an\u0020\u0022upsert\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileUpsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AprepareBindingsForUpdate\u0028\u0029", + "name": "prepareBindingsForUpdate", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_prepareBindingsForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileDelete\u0028\u0029", + "name": "compileDelete", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileDeleteWithoutJoins\u0028\u0029", + "name": "compileDeleteWithoutJoins", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020without\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileDeleteWithoutJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileDeleteWithJoins\u0028\u0029", + "name": "compileDeleteWithJoins", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020with\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileDeleteWithJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AprepareBindingsForDelete\u0028\u0029", + "name": "prepareBindingsForDelete", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020a\u0020delete\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_prepareBindingsForDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileTruncate\u0028\u0029", + "name": "compileTruncate", + "summary": "Compile\u0020a\u0020truncate\u0020table\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileTruncate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileLock\u0028\u0029", + "name": "compileLock", + "summary": "Compile\u0020the\u0020lock\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileLock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AsupportsSavepoints\u0028\u0029", + "name": "supportsSavepoints", + "summary": "Determine\u0020if\u0020the\u0020grammar\u0020supports\u0020savepoints.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_supportsSavepoints" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileSavepoint\u0028\u0029", + "name": "compileSavepoint", + "summary": "Compile\u0020the\u0020SQL\u0020statement\u0020to\u0020define\u0020a\u0020savepoint.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileSavepoint" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AcompileSavepointRollBack\u0028\u0029", + "name": "compileSavepointRollBack", + "summary": "Compile\u0020the\u0020SQL\u0020statement\u0020to\u0020execute\u0020a\u0020savepoint\u0020rollback.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_compileSavepointRollBack" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wrap\u0020a\u0020value\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwrapJsonSelector\u0028\u0029", + "name": "wrapJsonSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrapJsonSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwrapJsonBooleanSelector\u0028\u0029", + "name": "wrapJsonBooleanSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector\u0020for\u0020boolean\u0020values.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrapJsonBooleanSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwrapJsonBooleanValue\u0028\u0029", + "name": "wrapJsonBooleanValue", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020boolean\u0020value.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrapJsonBooleanValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwrapJsonFieldAndPath\u0028\u0029", + "name": "wrapJsonFieldAndPath", + "summary": "Split\u0020the\u0020given\u0020JSON\u0020selector\u0020into\u0020the\u0020field\u0020and\u0020the\u0020optional\u0020path\u0020and\u0020wrap\u0020them\u0020separately.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrapJsonFieldAndPath" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AwrapJsonPath\u0028\u0029", + "name": "wrapJsonPath", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020path.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_wrapJsonPath" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AisJsonSelector\u0028\u0029", + "name": "isJsonSelector", + "summary": "Determine\u0020if\u0020the\u0020given\u0020string\u0020is\u0020a\u0020JSON\u0020selector.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_isJsonSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003Aconcatenate\u0028\u0029", + "name": "concatenate", + "summary": "Concatenate\u0020an\u0020array\u0020of\u0020segments,\u0020removing\u0020empties.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_concatenate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AremoveLeadingBoolean\u0028\u0029", + "name": "removeLeadingBoolean", + "summary": "Remove\u0020the\u0020leading\u0020boolean\u0020from\u0020a\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_removeLeadingBoolean" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AgetOperators\u0028\u0029", + "name": "getOperators", + "summary": "Get\u0020the\u0020grammar\u0020specific\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_getOperators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003AgetBitwiseOperators\u0028\u0029", + "name": "getBitwiseOperators", + "summary": "Get\u0020the\u0020grammar\u0020specific\u0020bitwise\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#method_getBitwiseOperators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003A\u0024operators", + "name": "operators", + "summary": "The\u0020grammar\u0020specific\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#property_operators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003A\u0024bitwiseOperators", + "name": "bitwiseOperators", + "summary": "The\u0020grammar\u0020specific\u0020bitwise\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#property_bitwiseOperators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\Grammar\u003A\u003A\u0024selectComponents", + "name": "selectComponents", + "summary": "The\u0020components\u0020that\u0020make\u0020up\u0020a\u0020select\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-Grammar.html#property_selectComponents" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar", + "name": "MySqlGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AwhereNull\u0028\u0029", + "name": "whereNull", + "summary": "Add\u0020a\u0020\u0022where\u0020null\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_whereNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AwhereNotNull\u0028\u0029", + "name": "whereNotNull", + "summary": "Add\u0020a\u0020\u0022where\u0020not\u0020null\u0022\u0020clause\u0020to\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_whereNotNull" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AwhereFullText\u0028\u0029", + "name": "whereFullText", + "summary": "Compile\u0020a\u0020\u0022where\u0020fulltext\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_whereFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileInsertOrIgnore\u0028\u0029", + "name": "compileInsertOrIgnore", + "summary": "Compile\u0020an\u0020insert\u0020ignore\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileInsertOrIgnore" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileJsonContains\u0028\u0029", + "name": "compileJsonContains", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020contains\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileJsonLength\u0028\u0029", + "name": "compileJsonLength", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020length\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileRandom\u0028\u0029", + "name": "compileRandom", + "summary": "Compile\u0020the\u0020random\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileRandom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileLock\u0028\u0029", + "name": "compileLock", + "summary": "Compile\u0020the\u0020lock\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileLock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileInsert\u0028\u0029", + "name": "compileInsert", + "summary": "Compile\u0020an\u0020insert\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileInsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileUpdateColumns\u0028\u0029", + "name": "compileUpdateColumns", + "summary": "Compile\u0020the\u0020columns\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileUpdateColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileUpsert\u0028\u0029", + "name": "compileUpsert", + "summary": "Compile\u0020an\u0020\u0022upsert\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileUpsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileJsonUpdateColumn\u0028\u0029", + "name": "compileJsonUpdateColumn", + "summary": "Prepare\u0020a\u0020JSON\u0020column\u0020being\u0020updated\u0020using\u0020the\u0020JSON_SET\u0020function.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileJsonUpdateColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileUpdateWithoutJoins\u0028\u0029", + "name": "compileUpdateWithoutJoins", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020without\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileUpdateWithoutJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AprepareBindingsForUpdate\u0028\u0029", + "name": "prepareBindingsForUpdate", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_prepareBindingsForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AcompileDeleteWithoutJoins\u0028\u0029", + "name": "compileDeleteWithoutJoins", + "summary": "Compile\u0020a\u0020delete\u0020query\u0020that\u0020does\u0020not\u0020use\u0020joins.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_compileDeleteWithoutJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AwrapValue\u0028\u0029", + "name": "wrapValue", + "summary": "Wrap\u0020a\u0020single\u0020string\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_wrapValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AwrapJsonSelector\u0028\u0029", + "name": "wrapJsonSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_wrapJsonSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003AwrapJsonBooleanSelector\u0028\u0029", + "name": "wrapJsonBooleanSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector\u0020for\u0020boolean\u0020values.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#method_wrapJsonBooleanSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\MySqlGrammar\u003A\u003A\u0024operators", + "name": "operators", + "summary": "The\u0020grammar\u0020specific\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-MySqlGrammar.html#property_operators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar", + "name": "PostgresGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwhereBasic\u0028\u0029", + "name": "whereBasic", + "summary": "Compile\u0020a\u0020basic\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_whereBasic" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwhereBitwise\u0028\u0029", + "name": "whereBitwise", + "summary": "Compile\u0020a\u0020bitwise\u0020operator\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_whereBitwise" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwhereDate\u0028\u0029", + "name": "whereDate", + "summary": "Compile\u0020a\u0020\u0022where\u0020date\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_whereDate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwhereTime\u0028\u0029", + "name": "whereTime", + "summary": "Compile\u0020a\u0020\u0022where\u0020time\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_whereTime" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AdateBasedWhere\u0028\u0029", + "name": "dateBasedWhere", + "summary": "Compile\u0020a\u0020date\u0020based\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_dateBasedWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwhereFullText\u0028\u0029", + "name": "whereFullText", + "summary": "Compile\u0020a\u0020\u0022where\u0020fulltext\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_whereFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AvalidFullTextLanguages\u0028\u0029", + "name": "validFullTextLanguages", + "summary": "Get\u0020an\u0020array\u0020of\u0020valid\u0020full\u0020text\u0020languages.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_validFullTextLanguages" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileColumns\u0028\u0029", + "name": "compileColumns", + "summary": "Compile\u0020the\u0020\u0022select\u0020\u002A\u0022\u0020portion\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileJsonContains\u0028\u0029", + "name": "compileJsonContains", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020contains\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileJsonLength\u0028\u0029", + "name": "compileJsonLength", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020length\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileHaving\u0028\u0029", + "name": "compileHaving", + "summary": "Compile\u0020a\u0020single\u0020having\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileHaving" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileHavingBitwise\u0028\u0029", + "name": "compileHavingBitwise", + "summary": "Compile\u0020a\u0020having\u0020clause\u0020involving\u0020a\u0020bitwise\u0020operator.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileHavingBitwise" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileLock\u0028\u0029", + "name": "compileLock", + "summary": "Compile\u0020the\u0020lock\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileLock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileInsertOrIgnore\u0028\u0029", + "name": "compileInsertOrIgnore", + "summary": "Compile\u0020an\u0020insert\u0020ignore\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileInsertOrIgnore" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileInsertGetId\u0028\u0029", + "name": "compileInsertGetId", + "summary": "Compile\u0020an\u0020insert\u0020and\u0020get\u0020ID\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileInsertGetId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpdate\u0028\u0029", + "name": "compileUpdate", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpdateColumns\u0028\u0029", + "name": "compileUpdateColumns", + "summary": "Compile\u0020the\u0020columns\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpdateColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpsert\u0028\u0029", + "name": "compileUpsert", + "summary": "Compile\u0020an\u0020\u0022upsert\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileJsonUpdateColumn\u0028\u0029", + "name": "compileJsonUpdateColumn", + "summary": "Prepares\u0020a\u0020JSON\u0020column\u0020being\u0020updated\u0020using\u0020the\u0020JSONB_SET\u0020function.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileJsonUpdateColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpdateFrom\u0028\u0029", + "name": "compileUpdateFrom", + "summary": "Compile\u0020an\u0020update\u0020from\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpdateFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpdateWheres\u0028\u0029", + "name": "compileUpdateWheres", + "summary": "Compile\u0020the\u0020additional\u0020where\u0020clauses\u0020for\u0020updates\u0020with\u0020joins.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpdateWheres" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpdateJoinWheres\u0028\u0029", + "name": "compileUpdateJoinWheres", + "summary": "Compile\u0020the\u0020\u0022join\u0022\u0020clause\u0020where\u0020clauses\u0020for\u0020an\u0020update.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpdateJoinWheres" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AprepareBindingsForUpdateFrom\u0028\u0029", + "name": "prepareBindingsForUpdateFrom", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_prepareBindingsForUpdateFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileUpdateWithJoinsOrLimit\u0028\u0029", + "name": "compileUpdateWithJoinsOrLimit", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020with\u0020joins\u0020or\u0020limit\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileUpdateWithJoinsOrLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AprepareBindingsForUpdate\u0028\u0029", + "name": "prepareBindingsForUpdate", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_prepareBindingsForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileDelete\u0028\u0029", + "name": "compileDelete", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileDeleteWithJoinsOrLimit\u0028\u0029", + "name": "compileDeleteWithJoinsOrLimit", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020with\u0020joins\u0020or\u0020limit\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileDeleteWithJoinsOrLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AcompileTruncate\u0028\u0029", + "name": "compileTruncate", + "summary": "Compile\u0020a\u0020truncate\u0020table\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_compileTruncate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwrapJsonSelector\u0028\u0029", + "name": "wrapJsonSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_wrapJsonSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwrapJsonBooleanSelector\u0028\u0029", + "name": "wrapJsonBooleanSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector\u0020for\u0020boolean\u0020values.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_wrapJsonBooleanSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwrapJsonBooleanValue\u0028\u0029", + "name": "wrapJsonBooleanValue", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020boolean\u0020value.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_wrapJsonBooleanValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003AwrapJsonPathAttributes\u0028\u0029", + "name": "wrapJsonPathAttributes", + "summary": "Wrap\u0020the\u0020attributes\u0020of\u0020the\u0020give\u0020JSON\u0020path.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#method_wrapJsonPathAttributes" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003A\u0024operators", + "name": "operators", + "summary": "All\u0020of\u0020the\u0020available\u0020clause\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#property_operators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\PostgresGrammar\u003A\u003A\u0024bitwiseOperators", + "name": "bitwiseOperators", + "summary": "The\u0020grammar\u0020specific\u0020bitwise\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-PostgresGrammar.html#property_bitwiseOperators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar", + "name": "SQLiteGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileLock\u0028\u0029", + "name": "compileLock", + "summary": "Compile\u0020the\u0020lock\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileLock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwrapUnion\u0028\u0029", + "name": "wrapUnion", + "summary": "Wrap\u0020a\u0020union\u0020subquery\u0020in\u0020parentheses.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_wrapUnion" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwhereDate\u0028\u0029", + "name": "whereDate", + "summary": "Compile\u0020a\u0020\u0022where\u0020date\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_whereDate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwhereDay\u0028\u0029", + "name": "whereDay", + "summary": "Compile\u0020a\u0020\u0022where\u0020day\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_whereDay" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwhereMonth\u0028\u0029", + "name": "whereMonth", + "summary": "Compile\u0020a\u0020\u0022where\u0020month\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_whereMonth" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwhereYear\u0028\u0029", + "name": "whereYear", + "summary": "Compile\u0020a\u0020\u0022where\u0020year\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_whereYear" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwhereTime\u0028\u0029", + "name": "whereTime", + "summary": "Compile\u0020a\u0020\u0022where\u0020time\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_whereTime" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AdateBasedWhere\u0028\u0029", + "name": "dateBasedWhere", + "summary": "Compile\u0020a\u0020date\u0020based\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_dateBasedWhere" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileJsonLength\u0028\u0029", + "name": "compileJsonLength", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020length\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileUpdate\u0028\u0029", + "name": "compileUpdate", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileInsertOrIgnore\u0028\u0029", + "name": "compileInsertOrIgnore", + "summary": "Compile\u0020an\u0020insert\u0020ignore\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileInsertOrIgnore" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileUpdateColumns\u0028\u0029", + "name": "compileUpdateColumns", + "summary": "Compile\u0020the\u0020columns\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileUpdateColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileUpsert\u0028\u0029", + "name": "compileUpsert", + "summary": "Compile\u0020an\u0020\u0022upsert\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileUpsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AgroupJsonColumnsForUpdate\u0028\u0029", + "name": "groupJsonColumnsForUpdate", + "summary": "Group\u0020the\u0020nested\u0020JSON\u0020columns.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_groupJsonColumnsForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileJsonPatch\u0028\u0029", + "name": "compileJsonPatch", + "summary": "Compile\u0020a\u0020\u0022JSON\u0022\u0020patch\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileJsonPatch" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileUpdateWithJoinsOrLimit\u0028\u0029", + "name": "compileUpdateWithJoinsOrLimit", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020with\u0020joins\u0020or\u0020limit\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileUpdateWithJoinsOrLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AprepareBindingsForUpdate\u0028\u0029", + "name": "prepareBindingsForUpdate", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_prepareBindingsForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileDelete\u0028\u0029", + "name": "compileDelete", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileDeleteWithJoinsOrLimit\u0028\u0029", + "name": "compileDeleteWithJoinsOrLimit", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020with\u0020joins\u0020or\u0020limit\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileDeleteWithJoinsOrLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AcompileTruncate\u0028\u0029", + "name": "compileTruncate", + "summary": "Compile\u0020a\u0020truncate\u0020table\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_compileTruncate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003AwrapJsonSelector\u0028\u0029", + "name": "wrapJsonSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#method_wrapJsonSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SQLiteGrammar\u003A\u003A\u0024operators", + "name": "operators", + "summary": "All\u0020of\u0020the\u0020available\u0020clause\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-SQLiteGrammar.html#property_operators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar", + "name": "SqlServerGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileSelect\u0028\u0029", + "name": "compileSelect", + "summary": "Compile\u0020a\u0020select\u0020query\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileColumns\u0028\u0029", + "name": "compileColumns", + "summary": "Compile\u0020the\u0020\u0022select\u0020\u002A\u0022\u0020portion\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileFrom\u0028\u0029", + "name": "compileFrom", + "summary": "Compile\u0020the\u0020\u0022from\u0022\u0020portion\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileFrom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwhereBitwise\u0028\u0029", + "name": "whereBitwise", + "summary": "Compile\u0020a\u0020bitwise\u0020operator\u0020where\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_whereBitwise" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwhereDate\u0028\u0029", + "name": "whereDate", + "summary": "Compile\u0020a\u0020\u0022where\u0020date\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_whereDate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwhereTime\u0028\u0029", + "name": "whereTime", + "summary": "Compile\u0020a\u0020\u0022where\u0020time\u0022\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_whereTime" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileJsonContains\u0028\u0029", + "name": "compileJsonContains", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020contains\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AprepareBindingForJsonContains\u0028\u0029", + "name": "prepareBindingForJsonContains", + "summary": "Prepare\u0020the\u0020binding\u0020for\u0020a\u0020\u0022JSON\u0020contains\u0022\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_prepareBindingForJsonContains" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileJsonLength\u0028\u0029", + "name": "compileJsonLength", + "summary": "Compile\u0020a\u0020\u0022JSON\u0020length\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileJsonLength" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileHaving\u0028\u0029", + "name": "compileHaving", + "summary": "Compile\u0020a\u0020single\u0020having\u0020clause.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileHaving" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileHavingBitwise\u0028\u0029", + "name": "compileHavingBitwise", + "summary": "Compile\u0020a\u0020having\u0020clause\u0020involving\u0020a\u0020bitwise\u0020operator.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileHavingBitwise" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileAnsiOffset\u0028\u0029", + "name": "compileAnsiOffset", + "summary": "Create\u0020a\u0020full\u0020ANSI\u0020offset\u0020clause\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileAnsiOffset" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileOver\u0028\u0029", + "name": "compileOver", + "summary": "Compile\u0020the\u0020over\u0020statement\u0020for\u0020a\u0020table\u0020expression.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileOver" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AqueryOrderContainsSubquery\u0028\u0029", + "name": "queryOrderContainsSubquery", + "summary": "Determine\u0020if\u0020the\u0020query\u0027s\u0020order\u0020by\u0020clauses\u0020contain\u0020a\u0020subquery.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_queryOrderContainsSubquery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AsortBindingsForSubqueryOrderBy\u0028\u0029", + "name": "sortBindingsForSubqueryOrderBy", + "summary": "Move\u0020the\u0020order\u0020bindings\u0020to\u0020be\u0020after\u0020the\u0020\u0022select\u0022\u0020statement\u0020to\u0020account\u0020for\u0020an\u0020order\u0020by\u0020subquery.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_sortBindingsForSubqueryOrderBy" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileTableExpression\u0028\u0029", + "name": "compileTableExpression", + "summary": "Compile\u0020a\u0020common\u0020table\u0020expression\u0020for\u0020a\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileTableExpression" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileRowConstraint\u0028\u0029", + "name": "compileRowConstraint", + "summary": "Compile\u0020the\u0020limit\u0020\/\u0020offset\u0020row\u0020constraint\u0020for\u0020a\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileRowConstraint" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileDeleteWithoutJoins\u0028\u0029", + "name": "compileDeleteWithoutJoins", + "summary": "Compile\u0020a\u0020delete\u0020statement\u0020without\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileDeleteWithoutJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileRandom\u0028\u0029", + "name": "compileRandom", + "summary": "Compile\u0020the\u0020random\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileRandom" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileLimit\u0028\u0029", + "name": "compileLimit", + "summary": "Compile\u0020the\u0020\u0022limit\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileLimit" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileOffset\u0028\u0029", + "name": "compileOffset", + "summary": "Compile\u0020the\u0020\u0022offset\u0022\u0020portions\u0020of\u0020the\u0020query.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileOffset" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileLock\u0028\u0029", + "name": "compileLock", + "summary": "Compile\u0020the\u0020lock\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileLock" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwrapUnion\u0028\u0029", + "name": "wrapUnion", + "summary": "Wrap\u0020a\u0020union\u0020subquery\u0020in\u0020parentheses.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_wrapUnion" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileExists\u0028\u0029", + "name": "compileExists", + "summary": "Compile\u0020an\u0020exists\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileExists" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileUpdateWithJoins\u0028\u0029", + "name": "compileUpdateWithJoins", + "summary": "Compile\u0020an\u0020update\u0020statement\u0020with\u0020joins\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileUpdateWithJoins" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileUpsert\u0028\u0029", + "name": "compileUpsert", + "summary": "Compile\u0020an\u0020\u0022upsert\u0022\u0020statement\u0020into\u0020SQL.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileUpsert" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AprepareBindingsForUpdate\u0028\u0029", + "name": "prepareBindingsForUpdate", + "summary": "Prepare\u0020the\u0020bindings\u0020for\u0020an\u0020update\u0020statement.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_prepareBindingsForUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileSavepoint\u0028\u0029", + "name": "compileSavepoint", + "summary": "Compile\u0020the\u0020SQL\u0020statement\u0020to\u0020define\u0020a\u0020savepoint.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileSavepoint" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AcompileSavepointRollBack\u0028\u0029", + "name": "compileSavepointRollBack", + "summary": "Compile\u0020the\u0020SQL\u0020statement\u0020to\u0020execute\u0020a\u0020savepoint\u0020rollback.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_compileSavepointRollBack" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AgetDateFormat\u0028\u0029", + "name": "getDateFormat", + "summary": "Get\u0020the\u0020format\u0020for\u0020database\u0020stored\u0020dates.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_getDateFormat" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwrapValue\u0028\u0029", + "name": "wrapValue", + "summary": "Wrap\u0020a\u0020single\u0020string\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_wrapValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwrapJsonSelector\u0028\u0029", + "name": "wrapJsonSelector", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020selector.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_wrapJsonSelector" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwrapJsonBooleanValue\u0028\u0029", + "name": "wrapJsonBooleanValue", + "summary": "Wrap\u0020the\u0020given\u0020JSON\u0020boolean\u0020value.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_wrapJsonBooleanValue" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwrapTable\u0028\u0029", + "name": "wrapTable", + "summary": "Wrap\u0020a\u0020table\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_wrapTable" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003AwrapTableValuedFunction\u0028\u0029", + "name": "wrapTableValuedFunction", + "summary": "Wrap\u0020a\u0020table\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#method_wrapTableValuedFunction" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars\\SqlServerGrammar\u003A\u003A\u0024operators", + "name": "operators", + "summary": "All\u0020of\u0020the\u0020available\u0020clause\u0020operators.", + "url": "classes/Illuminate-Database-Query-Grammars-SqlServerGrammar.html#property_operators" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause", + "name": "JoinClause", + "summary": "", + "url": "classes/Illuminate-Database-Query-JoinClause.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020join\u0020clause\u0020instance.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003Aon\u0028\u0029", + "name": "on", + "summary": "Add\u0020an\u0020\u0022on\u0022\u0020clause\u0020to\u0020the\u0020join.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#method_on" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003AorOn\u0028\u0029", + "name": "orOn", + "summary": "Add\u0020an\u0020\u0022or\u0020on\u0022\u0020clause\u0020to\u0020the\u0020join.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#method_orOn" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003AnewQuery\u0028\u0029", + "name": "newQuery", + "summary": "Get\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020join\u0020clause\u0020builder.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#method_newQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003AforSubQuery\u0028\u0029", + "name": "forSubQuery", + "summary": "Create\u0020a\u0020new\u0020query\u0020instance\u0020for\u0020sub\u002Dquery.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#method_forSubQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003AnewParentQuery\u0028\u0029", + "name": "newParentQuery", + "summary": "Create\u0020a\u0020new\u0020parent\u0020query\u0020instance.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#method_newParentQuery" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A\u0024type", + "name": "type", + "summary": "The\u0020type\u0020of\u0020join\u0020being\u0020performed.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#property_type" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A\u0024table", + "name": "table", + "summary": "The\u0020table\u0020the\u0020join\u0020clause\u0020is\u0020joining\u0020to.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#property_table" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A\u0024parentConnection", + "name": "parentConnection", + "summary": "The\u0020connection\u0020of\u0020the\u0020parent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#property_parentConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A\u0024parentGrammar", + "name": "parentGrammar", + "summary": "The\u0020grammar\u0020of\u0020the\u0020parent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#property_parentGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A\u0024parentProcessor", + "name": "parentProcessor", + "summary": "The\u0020processor\u0020of\u0020the\u0020parent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#property_parentProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\JoinClause\u003A\u003A\u0024parentClass", + "name": "parentClass", + "summary": "The\u0020class\u0020name\u0020of\u0020the\u0020parent\u0020query\u0020builder.", + "url": "classes/Illuminate-Database-Query-JoinClause.html#property_parentClass" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\MySqlProcessor", + "name": "MySqlProcessor", + "summary": "", + "url": "classes/Illuminate-Database-Query-Processors-MySqlProcessor.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\MySqlProcessor\u003A\u003AprocessColumnListing\u0028\u0029", + "name": "processColumnListing", + "summary": "Process\u0020the\u0020results\u0020of\u0020a\u0020column\u0020listing\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-MySqlProcessor.html#method_processColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\PostgresProcessor", + "name": "PostgresProcessor", + "summary": "", + "url": "classes/Illuminate-Database-Query-Processors-PostgresProcessor.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\PostgresProcessor\u003A\u003AprocessInsertGetId\u0028\u0029", + "name": "processInsertGetId", + "summary": "Process\u0020an\u0020\u0022insert\u0020get\u0020ID\u0022\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-PostgresProcessor.html#method_processInsertGetId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\PostgresProcessor\u003A\u003AprocessColumnListing\u0028\u0029", + "name": "processColumnListing", + "summary": "Process\u0020the\u0020results\u0020of\u0020a\u0020column\u0020listing\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-PostgresProcessor.html#method_processColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\Processor", + "name": "Processor", + "summary": "", + "url": "classes/Illuminate-Database-Query-Processors-Processor.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\Processor\u003A\u003AprocessSelect\u0028\u0029", + "name": "processSelect", + "summary": "Process\u0020the\u0020results\u0020of\u0020a\u0020\u0022select\u0022\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-Processor.html#method_processSelect" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\Processor\u003A\u003AprocessInsertGetId\u0028\u0029", + "name": "processInsertGetId", + "summary": "Process\u0020an\u0020\u0020\u0022insert\u0020get\u0020ID\u0022\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-Processor.html#method_processInsertGetId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\Processor\u003A\u003AprocessColumnListing\u0028\u0029", + "name": "processColumnListing", + "summary": "Process\u0020the\u0020results\u0020of\u0020a\u0020column\u0020listing\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-Processor.html#method_processColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\SQLiteProcessor", + "name": "SQLiteProcessor", + "summary": "", + "url": "classes/Illuminate-Database-Query-Processors-SQLiteProcessor.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\SQLiteProcessor\u003A\u003AprocessColumnListing\u0028\u0029", + "name": "processColumnListing", + "summary": "Process\u0020the\u0020results\u0020of\u0020a\u0020column\u0020listing\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-SQLiteProcessor.html#method_processColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\SqlServerProcessor", + "name": "SqlServerProcessor", + "summary": "", + "url": "classes/Illuminate-Database-Query-Processors-SqlServerProcessor.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\SqlServerProcessor\u003A\u003AprocessInsertGetId\u0028\u0029", + "name": "processInsertGetId", + "summary": "Process\u0020an\u0020\u0022insert\u0020get\u0020ID\u0022\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-SqlServerProcessor.html#method_processInsertGetId" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\SqlServerProcessor\u003A\u003AprocessInsertGetIdForOdbc\u0028\u0029", + "name": "processInsertGetIdForOdbc", + "summary": "Process\u0020an\u0020\u0022insert\u0020get\u0020ID\u0022\u0020query\u0020for\u0020ODBC.", + "url": "classes/Illuminate-Database-Query-Processors-SqlServerProcessor.html#method_processInsertGetIdForOdbc" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors\\SqlServerProcessor\u003A\u003AprocessColumnListing\u0028\u0029", + "name": "processColumnListing", + "summary": "Process\u0020the\u0020results\u0020of\u0020a\u0020column\u0020listing\u0020query.", + "url": "classes/Illuminate-Database-Query-Processors-SqlServerProcessor.html#method_processColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException", + "name": "QueryException", + "summary": "", + "url": "classes/Illuminate-Database-QueryException.html" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020query\u0020exception\u0020instance.", + "url": "classes/Illuminate-Database-QueryException.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException\u003A\u003AformatMessage\u0028\u0029", + "name": "formatMessage", + "summary": "Format\u0020the\u0020SQL\u0020error\u0020message.", + "url": "classes/Illuminate-Database-QueryException.html#method_formatMessage" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException\u003A\u003AgetSql\u0028\u0029", + "name": "getSql", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-QueryException.html#method_getSql" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException\u003A\u003AgetBindings\u0028\u0029", + "name": "getBindings", + "summary": "Get\u0020the\u0020bindings\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-QueryException.html#method_getBindings" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException\u003A\u003A\u0024sql", + "name": "sql", + "summary": "The\u0020SQL\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-QueryException.html#property_sql" + }, { + "fqsen": "\\Illuminate\\Database\\QueryException\u003A\u003A\u0024bindings", + "name": "bindings", + "summary": "The\u0020bindings\u0020for\u0020the\u0020query.", + "url": "classes/Illuminate-Database-QueryException.html#property_bindings" + }, { + "fqsen": "\\Illuminate\\Database\\RecordsNotFoundException", + "name": "RecordsNotFoundException", + "summary": "", + "url": "classes/Illuminate-Database-RecordsNotFoundException.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint", + "name": "Blueprint", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Blueprint.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020schema\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Execute\u0020the\u0020blueprint\u0020against\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_build" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtoSql\u0028\u0029", + "name": "toSql", + "summary": "Get\u0020the\u0020raw\u0020SQL\u0020statements\u0020for\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_toSql" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AensureCommandsAreValid\u0028\u0029", + "name": "ensureCommandsAreValid", + "summary": "Ensure\u0020the\u0020commands\u0020on\u0020the\u0020blueprint\u0020are\u0020valid\u0020for\u0020the\u0020connection\u0020type.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_ensureCommandsAreValid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AcommandsNamed\u0028\u0029", + "name": "commandsNamed", + "summary": "Get\u0020all\u0020of\u0020the\u0020commands\u0020matching\u0020the\u0020given\u0020names.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_commandsNamed" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AaddImpliedCommands\u0028\u0029", + "name": "addImpliedCommands", + "summary": "Add\u0020the\u0020commands\u0020that\u0020are\u0020implied\u0020by\u0020the\u0020blueprint\u0027s\u0020state.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_addImpliedCommands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AaddFluentIndexes\u0028\u0029", + "name": "addFluentIndexes", + "summary": "Add\u0020the\u0020index\u0020commands\u0020fluently\u0020specified\u0020on\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_addFluentIndexes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AaddFluentCommands\u0028\u0029", + "name": "addFluentCommands", + "summary": "Add\u0020the\u0020fluent\u0020commands\u0020specified\u0020on\u0020any\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_addFluentCommands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Acreating\u0028\u0029", + "name": "creating", + "summary": "Determine\u0020if\u0020the\u0020blueprint\u0020has\u0020a\u0020create\u0020command.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_creating" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Indicate\u0020that\u0020the\u0020table\u0020needs\u0020to\u0020be\u0020created.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024temporary", + "name": "temporary", + "summary": "Whether\u0020to\u0020make\u0020the\u0020table\u0020temporary.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_temporary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Adrop\u0028\u0029", + "name": "drop", + "summary": "Indicate\u0020that\u0020the\u0020table\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_drop" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropIfExists\u0028\u0029", + "name": "dropIfExists", + "summary": "Indicate\u0020that\u0020the\u0020table\u0020should\u0020be\u0020dropped\u0020if\u0020it\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropColumn\u0028\u0029", + "name": "dropColumn", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020columns\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003ArenameColumn\u0028\u0029", + "name": "renameColumn", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020columns\u0020should\u0020be\u0020renamed.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_renameColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropPrimary\u0028\u0029", + "name": "dropPrimary", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020primary\u0020key\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropPrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropUnique\u0028\u0029", + "name": "dropUnique", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020unique\u0020key\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropIndex\u0028\u0029", + "name": "dropIndex", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020index\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropFullText\u0028\u0029", + "name": "dropFullText", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020fulltext\u0020index\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropSpatialIndex\u0028\u0029", + "name": "dropSpatialIndex", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020spatial\u0020index\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropForeign\u0028\u0029", + "name": "dropForeign", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020foreign\u0020key\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropConstrainedForeignId\u0028\u0029", + "name": "dropConstrainedForeignId", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020column\u0020and\u0020foreign\u0020key\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropConstrainedForeignId" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003ArenameIndex\u0028\u0029", + "name": "renameIndex", + "summary": "Indicate\u0020that\u0020the\u0020given\u0020indexes\u0020should\u0020be\u0020renamed.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_renameIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropTimestamps\u0028\u0029", + "name": "dropTimestamps", + "summary": "Indicate\u0020that\u0020the\u0020timestamp\u0020columns\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropTimestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropTimestampsTz\u0028\u0029", + "name": "dropTimestampsTz", + "summary": "Indicate\u0020that\u0020the\u0020timestamp\u0020columns\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropTimestampsTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropSoftDeletes\u0028\u0029", + "name": "dropSoftDeletes", + "summary": "Indicate\u0020that\u0020the\u0020soft\u0020delete\u0020column\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropSoftDeletes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropSoftDeletesTz\u0028\u0029", + "name": "dropSoftDeletesTz", + "summary": "Indicate\u0020that\u0020the\u0020soft\u0020delete\u0020column\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropSoftDeletesTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropRememberToken\u0028\u0029", + "name": "dropRememberToken", + "summary": "Indicate\u0020that\u0020the\u0020remember\u0020token\u0020column\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropRememberToken" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropMorphs\u0028\u0029", + "name": "dropMorphs", + "summary": "Indicate\u0020that\u0020the\u0020polymorphic\u0020columns\u0020should\u0020be\u0020dropped.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Arename\u0028\u0029", + "name": "rename", + "summary": "Rename\u0020the\u0020table\u0020to\u0020a\u0020given\u0020name.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_rename" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aprimary\u0028\u0029", + "name": "primary", + "summary": "Specify\u0020the\u0020primary\u0020key\u0028s\u0029\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_primary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Specify\u0020a\u0020unique\u0020index\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aindex\u0028\u0029", + "name": "index", + "summary": "Specify\u0020an\u0020index\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_index" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AfullText\u0028\u0029", + "name": "fullText", + "summary": "Specify\u0020an\u0020fulltext\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_fullText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AspatialIndex\u0028\u0029", + "name": "spatialIndex", + "summary": "Specify\u0020a\u0020spatial\u0020index\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_spatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003ArawIndex\u0028\u0029", + "name": "rawIndex", + "summary": "Specify\u0020a\u0020raw\u0020index\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_rawIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aforeign\u0028\u0029", + "name": "foreign", + "summary": "Specify\u0020a\u0020foreign\u0020key\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_foreign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020big\u0020integer\u0020\u00288\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_id" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aincrements\u0028\u0029", + "name": "increments", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020integer\u0020\u00284\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_increments" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AintegerIncrements\u0028\u0029", + "name": "integerIncrements", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020integer\u0020\u00284\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_integerIncrements" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtinyIncrements\u0028\u0029", + "name": "tinyIncrements", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020tiny\u0020integer\u0020\u00281\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_tinyIncrements" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AsmallIncrements\u0028\u0029", + "name": "smallIncrements", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020small\u0020integer\u0020\u00282\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_smallIncrements" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmediumIncrements\u0028\u0029", + "name": "mediumIncrements", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020medium\u0020integer\u0020\u00283\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_mediumIncrements" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AbigIncrements\u0028\u0029", + "name": "bigIncrements", + "summary": "Create\u0020a\u0020new\u0020auto\u002Dincrementing\u0020big\u0020integer\u0020\u00288\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_bigIncrements" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Achar\u0028\u0029", + "name": "char", + "summary": "Create\u0020a\u0020new\u0020char\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_char" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Astring\u0028\u0029", + "name": "string", + "summary": "Create\u0020a\u0020new\u0020string\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_string" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtinyText\u0028\u0029", + "name": "tinyText", + "summary": "Create\u0020a\u0020new\u0020tiny\u0020text\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_tinyText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Atext\u0028\u0029", + "name": "text", + "summary": "Create\u0020a\u0020new\u0020text\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_text" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmediumText\u0028\u0029", + "name": "mediumText", + "summary": "Create\u0020a\u0020new\u0020medium\u0020text\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_mediumText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AlongText\u0028\u0029", + "name": "longText", + "summary": "Create\u0020a\u0020new\u0020long\u0020text\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_longText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Ainteger\u0028\u0029", + "name": "integer", + "summary": "Create\u0020a\u0020new\u0020integer\u0020\u00284\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_integer" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtinyInteger\u0028\u0029", + "name": "tinyInteger", + "summary": "Create\u0020a\u0020new\u0020tiny\u0020integer\u0020\u00281\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_tinyInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AsmallInteger\u0028\u0029", + "name": "smallInteger", + "summary": "Create\u0020a\u0020new\u0020small\u0020integer\u0020\u00282\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_smallInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmediumInteger\u0028\u0029", + "name": "mediumInteger", + "summary": "Create\u0020a\u0020new\u0020medium\u0020integer\u0020\u00283\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_mediumInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AbigInteger\u0028\u0029", + "name": "bigInteger", + "summary": "Create\u0020a\u0020new\u0020big\u0020integer\u0020\u00288\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_bigInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedInteger\u0028\u0029", + "name": "unsignedInteger", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020integer\u0020\u00284\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedTinyInteger\u0028\u0029", + "name": "unsignedTinyInteger", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020tiny\u0020integer\u0020\u00281\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedTinyInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedSmallInteger\u0028\u0029", + "name": "unsignedSmallInteger", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020small\u0020integer\u0020\u00282\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedSmallInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedMediumInteger\u0028\u0029", + "name": "unsignedMediumInteger", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020medium\u0020integer\u0020\u00283\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedMediumInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedBigInteger\u0028\u0029", + "name": "unsignedBigInteger", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020big\u0020integer\u0020\u00288\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedBigInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AforeignId\u0028\u0029", + "name": "foreignId", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020big\u0020integer\u0020\u00288\u002Dbyte\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_foreignId" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AforeignIdFor\u0028\u0029", + "name": "foreignIdFor", + "summary": "Create\u0020a\u0020foreign\u0020ID\u0020column\u0020for\u0020the\u0020given\u0020model.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_foreignIdFor" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Afloat\u0028\u0029", + "name": "float", + "summary": "Create\u0020a\u0020new\u0020float\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_float" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Adouble\u0028\u0029", + "name": "double", + "summary": "Create\u0020a\u0020new\u0020double\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_double" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Adecimal\u0028\u0029", + "name": "decimal", + "summary": "Create\u0020a\u0020new\u0020decimal\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_decimal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedFloat\u0028\u0029", + "name": "unsignedFloat", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020float\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedFloat" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedDouble\u0028\u0029", + "name": "unsignedDouble", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020double\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedDouble" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AunsignedDecimal\u0028\u0029", + "name": "unsignedDecimal", + "summary": "Create\u0020a\u0020new\u0020unsigned\u0020decimal\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_unsignedDecimal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aboolean\u0028\u0029", + "name": "boolean", + "summary": "Create\u0020a\u0020new\u0020boolean\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_boolean" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aenum\u0028\u0029", + "name": "enum", + "summary": "Create\u0020a\u0020new\u0020enum\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_enum" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Create\u0020a\u0020new\u0020set\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_set" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Ajson\u0028\u0029", + "name": "json", + "summary": "Create\u0020a\u0020new\u0020json\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_json" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Ajsonb\u0028\u0029", + "name": "jsonb", + "summary": "Create\u0020a\u0020new\u0020jsonb\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_jsonb" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Adate\u0028\u0029", + "name": "date", + "summary": "Create\u0020a\u0020new\u0020date\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_date" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdateTime\u0028\u0029", + "name": "dateTime", + "summary": "Create\u0020a\u0020new\u0020date\u002Dtime\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdateTimeTz\u0028\u0029", + "name": "dateTimeTz", + "summary": "Create\u0020a\u0020new\u0020date\u002Dtime\u0020column\u0020\u0028with\u0020time\u0020zone\u0029\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dateTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Atime\u0028\u0029", + "name": "time", + "summary": "Create\u0020a\u0020new\u0020time\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_time" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtimeTz\u0028\u0029", + "name": "timeTz", + "summary": "Create\u0020a\u0020new\u0020time\u0020column\u0020\u0028with\u0020time\u0020zone\u0029\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_timeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Atimestamp\u0028\u0029", + "name": "timestamp", + "summary": "Create\u0020a\u0020new\u0020timestamp\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_timestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtimestampTz\u0028\u0029", + "name": "timestampTz", + "summary": "Create\u0020a\u0020new\u0020timestamp\u0020\u0028with\u0020time\u0020zone\u0029\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_timestampTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Atimestamps\u0028\u0029", + "name": "timestamps", + "summary": "Add\u0020nullable\u0020creation\u0020and\u0020update\u0020timestamps\u0020to\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_timestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AnullableTimestamps\u0028\u0029", + "name": "nullableTimestamps", + "summary": "Add\u0020nullable\u0020creation\u0020and\u0020update\u0020timestamps\u0020to\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_nullableTimestamps" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AtimestampsTz\u0028\u0029", + "name": "timestampsTz", + "summary": "Add\u0020creation\u0020and\u0020update\u0020timestampTz\u0020columns\u0020to\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_timestampsTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AsoftDeletes\u0028\u0029", + "name": "softDeletes", + "summary": "Add\u0020a\u0020\u0022deleted\u0020at\u0022\u0020timestamp\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_softDeletes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AsoftDeletesTz\u0028\u0029", + "name": "softDeletesTz", + "summary": "Add\u0020a\u0020\u0022deleted\u0020at\u0022\u0020timestampTz\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_softDeletesTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Ayear\u0028\u0029", + "name": "year", + "summary": "Create\u0020a\u0020new\u0020year\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_year" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Abinary\u0028\u0029", + "name": "binary", + "summary": "Create\u0020a\u0020new\u0020binary\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_binary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Auuid\u0028\u0029", + "name": "uuid", + "summary": "Create\u0020a\u0020new\u0020uuid\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_uuid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AforeignUuid\u0028\u0029", + "name": "foreignUuid", + "summary": "Create\u0020a\u0020new\u0020UUID\u0020column\u0020on\u0020the\u0020table\u0020with\u0020a\u0020foreign\u0020key\u0020constraint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_foreignUuid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AipAddress\u0028\u0029", + "name": "ipAddress", + "summary": "Create\u0020a\u0020new\u0020IP\u0020address\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_ipAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmacAddress\u0028\u0029", + "name": "macAddress", + "summary": "Create\u0020a\u0020new\u0020MAC\u0020address\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_macAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Ageometry\u0028\u0029", + "name": "geometry", + "summary": "Create\u0020a\u0020new\u0020geometry\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_geometry" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Apoint\u0028\u0029", + "name": "point", + "summary": "Create\u0020a\u0020new\u0020point\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_point" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AlineString\u0028\u0029", + "name": "lineString", + "summary": "Create\u0020a\u0020new\u0020linestring\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_lineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Apolygon\u0028\u0029", + "name": "polygon", + "summary": "Create\u0020a\u0020new\u0020polygon\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_polygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AgeometryCollection\u0028\u0029", + "name": "geometryCollection", + "summary": "Create\u0020a\u0020new\u0020geometrycollection\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_geometryCollection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmultiPoint\u0028\u0029", + "name": "multiPoint", + "summary": "Create\u0020a\u0020new\u0020multipoint\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_multiPoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmultiLineString\u0028\u0029", + "name": "multiLineString", + "summary": "Create\u0020a\u0020new\u0020multilinestring\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_multiLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmultiPolygon\u0028\u0029", + "name": "multiPolygon", + "summary": "Create\u0020a\u0020new\u0020multipolygon\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_multiPolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AmultiPolygonZ\u0028\u0029", + "name": "multiPolygonZ", + "summary": "Create\u0020a\u0020new\u0020multipolygon\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_multiPolygonZ" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Acomputed\u0028\u0029", + "name": "computed", + "summary": "Create\u0020a\u0020new\u0020generated,\u0020computed\u0020column\u0020on\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_computed" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003Amorphs\u0028\u0029", + "name": "morphs", + "summary": "Add\u0020the\u0020proper\u0020columns\u0020for\u0020a\u0020polymorphic\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_morphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AnullableMorphs\u0028\u0029", + "name": "nullableMorphs", + "summary": "Add\u0020nullable\u0020columns\u0020for\u0020a\u0020polymorphic\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_nullableMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AnumericMorphs\u0028\u0029", + "name": "numericMorphs", + "summary": "Add\u0020the\u0020proper\u0020columns\u0020for\u0020a\u0020polymorphic\u0020table\u0020using\u0020numeric\u0020IDs\u0020\u0028incremental\u0029.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_numericMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AnullableNumericMorphs\u0028\u0029", + "name": "nullableNumericMorphs", + "summary": "Add\u0020nullable\u0020columns\u0020for\u0020a\u0020polymorphic\u0020table\u0020using\u0020numeric\u0020IDs\u0020\u0028incremental\u0029.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_nullableNumericMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AuuidMorphs\u0028\u0029", + "name": "uuidMorphs", + "summary": "Add\u0020the\u0020proper\u0020columns\u0020for\u0020a\u0020polymorphic\u0020table\u0020using\u0020UUIDs.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_uuidMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AnullableUuidMorphs\u0028\u0029", + "name": "nullableUuidMorphs", + "summary": "Add\u0020nullable\u0020columns\u0020for\u0020a\u0020polymorphic\u0020table\u0020using\u0020UUIDs.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_nullableUuidMorphs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003ArememberToken\u0028\u0029", + "name": "rememberToken", + "summary": "Adds\u0020the\u0020\u0060remember_token\u0060\u0020column\u0020to\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_rememberToken" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AindexCommand\u0028\u0029", + "name": "indexCommand", + "summary": "Add\u0020a\u0020new\u0020index\u0020command\u0020to\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_indexCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AdropIndexCommand\u0028\u0029", + "name": "dropIndexCommand", + "summary": "Create\u0020a\u0020new\u0020drop\u0020index\u0020command\u0020on\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_dropIndexCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AcreateIndexName\u0028\u0029", + "name": "createIndexName", + "summary": "Create\u0020a\u0020default\u0020index\u0020name\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_createIndexName" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AaddColumn\u0028\u0029", + "name": "addColumn", + "summary": "Add\u0020a\u0020new\u0020column\u0020to\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_addColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AaddColumnDefinition\u0028\u0029", + "name": "addColumnDefinition", + "summary": "Add\u0020a\u0020new\u0020column\u0020definition\u0020to\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_addColumnDefinition" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024after", + "name": "after", + "summary": "The\u0020column\u0020to\u0020add\u0020new\u0020columns\u0020after.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_after" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AremoveColumn\u0028\u0029", + "name": "removeColumn", + "summary": "Remove\u0020a\u0020column\u0020from\u0020the\u0020schema\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_removeColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AaddCommand\u0028\u0029", + "name": "addCommand", + "summary": "Add\u0020a\u0020new\u0020command\u0020to\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_addCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AcreateCommand\u0028\u0029", + "name": "createCommand", + "summary": "Create\u0020a\u0020new\u0020Fluent\u0020command.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_createCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "Get\u0020the\u0020table\u0020the\u0020blueprint\u0020describes.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_getTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Get\u0020the\u0020columns\u0020on\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_getColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AgetCommands\u0028\u0029", + "name": "getCommands", + "summary": "Get\u0020the\u0020commands\u0020on\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_getCommands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AgetAddedColumns\u0028\u0029", + "name": "getAddedColumns", + "summary": "Get\u0020the\u0020columns\u0020on\u0020the\u0020blueprint\u0020that\u0020should\u0020be\u0020added.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_getAddedColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AgetChangedColumns\u0028\u0029", + "name": "getChangedColumns", + "summary": "Get\u0020the\u0020columns\u0020on\u0020the\u0020blueprint\u0020that\u0020should\u0020be\u0020changed.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_getChangedColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AhasAutoIncrementColumn\u0028\u0029", + "name": "hasAutoIncrementColumn", + "summary": "Determine\u0020if\u0020the\u0020blueprint\u0020has\u0020auto\u002Dincrement\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_hasAutoIncrementColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003AautoIncrementingStartingValues\u0028\u0029", + "name": "autoIncrementingStartingValues", + "summary": "Get\u0020the\u0020auto\u002Dincrement\u0020column\u0020starting\u0020values.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#method_autoIncrementingStartingValues" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024table", + "name": "table", + "summary": "The\u0020table\u0020the\u0020blueprint\u0020describes.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_table" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "The\u0020prefix\u0020of\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_prefix" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024columns", + "name": "columns", + "summary": "The\u0020columns\u0020that\u0020should\u0020be\u0020added\u0020to\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_columns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024commands", + "name": "commands", + "summary": "The\u0020commands\u0020that\u0020should\u0020be\u0020run\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_commands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024engine", + "name": "engine", + "summary": "The\u0020storage\u0020engine\u0020that\u0020should\u0020be\u0020used\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_engine" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024charset", + "name": "charset", + "summary": "The\u0020default\u0020character\u0020set\u0020that\u0020should\u0020be\u0020used\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_charset" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Blueprint\u003A\u003A\u0024collation", + "name": "collation", + "summary": "The\u0020collation\u0020that\u0020should\u0020be\u0020used\u0020for\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Blueprint.html#property_collation" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder", + "name": "Builder", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Builder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020Schema\u0020manager.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003A\u0024defaultStringLength", + "name": "defaultStringLength", + "summary": "The\u0020default\u0020string\u0020length\u0020for\u0020migrations.", + "url": "classes/Illuminate-Database-Schema-Builder.html#property_defaultStringLength" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003A\u0024defaultMorphKeyType", + "name": "defaultMorphKeyType", + "summary": "The\u0020default\u0020relationship\u0020morph\u0020key\u0020type.", + "url": "classes/Illuminate-Database-Schema-Builder.html#property_defaultMorphKeyType" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AmorphUsingUuids\u0028\u0029", + "name": "morphUsingUuids", + "summary": "Set\u0020the\u0020default\u0020morph\u0020key\u0020type\u0020for\u0020migrations\u0020to\u0020UUIDs.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_morphUsingUuids" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Create\u0020a\u0020database\u0020in\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_createDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdropDatabaseIfExists\u0028\u0029", + "name": "dropDatabaseIfExists", + "summary": "Drop\u0020a\u0020database\u0020from\u0020the\u0020schema\u0020if\u0020the\u0020database\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_dropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AhasTable\u0028\u0029", + "name": "hasTable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020table\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_hasTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AhasColumn\u0028\u0029", + "name": "hasColumn", + "summary": "Determine\u0020if\u0020the\u0020given\u0020table\u0020has\u0020a\u0020given\u0020column.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_hasColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AhasColumns\u0028\u0029", + "name": "hasColumns", + "summary": "Determine\u0020if\u0020the\u0020given\u0020table\u0020has\u0020given\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_hasColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AgetColumnType\u0028\u0029", + "name": "getColumnType", + "summary": "Get\u0020the\u0020data\u0020type\u0020for\u0020the\u0020given\u0020column\u0020name.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_getColumnType" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AgetColumnListing\u0028\u0029", + "name": "getColumnListing", + "summary": "Get\u0020the\u0020column\u0020listing\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_getColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003Atable\u0028\u0029", + "name": "table", + "summary": "Modify\u0020a\u0020table\u0020on\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_table" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020table\u0020on\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_create" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003Adrop\u0028\u0029", + "name": "drop", + "summary": "Drop\u0020a\u0020table\u0020from\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_drop" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdropIfExists\u0028\u0029", + "name": "dropIfExists", + "summary": "Drop\u0020a\u0020table\u0020from\u0020the\u0020schema\u0020if\u0020it\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_dropIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdropColumns\u0028\u0029", + "name": "dropColumns", + "summary": "Drop\u0020columns\u0020from\u0020a\u0020table\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_dropColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdropAllTables\u0028\u0029", + "name": "dropAllTables", + "summary": "Drop\u0020all\u0020tables\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_dropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdropAllViews\u0028\u0029", + "name": "dropAllViews", + "summary": "Drop\u0020all\u0020views\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_dropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdropAllTypes\u0028\u0029", + "name": "dropAllTypes", + "summary": "Drop\u0020all\u0020types\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_dropAllTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AgetAllTables\u0028\u0029", + "name": "getAllTables", + "summary": "Get\u0020all\u0020of\u0020the\u0020table\u0020names\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_getAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003Arename\u0028\u0029", + "name": "rename", + "summary": "Rename\u0020a\u0020table\u0020on\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_rename" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AenableForeignKeyConstraints\u0028\u0029", + "name": "enableForeignKeyConstraints", + "summary": "Enable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_enableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AdisableForeignKeyConstraints\u0028\u0029", + "name": "disableForeignKeyConstraints", + "summary": "Disable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_disableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Execute\u0020the\u0020blueprint\u0020to\u0020build\u0020\/\u0020modify\u0020the\u0020table.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_build" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AcreateBlueprint\u0028\u0029", + "name": "createBlueprint", + "summary": "Create\u0020a\u0020new\u0020command\u0020set\u0020with\u0020a\u0020Closure.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_createBlueprint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AregisterCustomDoctrineType\u0028\u0029", + "name": "registerCustomDoctrineType", + "summary": "Register\u0020a\u0020custom\u0020Doctrine\u0020mapping\u0020type.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_registerCustomDoctrineType" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AgetConnection\u0028\u0029", + "name": "getConnection", + "summary": "Get\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_getConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AsetConnection\u0028\u0029", + "name": "setConnection", + "summary": "Set\u0020the\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_setConnection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003AblueprintResolver\u0028\u0029", + "name": "blueprintResolver", + "summary": "Set\u0020the\u0020Schema\u0020Blueprint\u0020resolver\u0020callback.", + "url": "classes/Illuminate-Database-Schema-Builder.html#method_blueprintResolver" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Schema-Builder.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003A\u0024grammar", + "name": "grammar", + "summary": "The\u0020schema\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-Schema-Builder.html#property_grammar" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Builder\u003A\u003A\u0024resolver", + "name": "resolver", + "summary": "The\u0020Blueprint\u0020resolver\u0020callback.", + "url": "classes/Illuminate-Database-Schema-Builder.html#property_resolver" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ColumnDefinition", + "name": "ColumnDefinition", + "summary": "", + "url": "classes/Illuminate-Database-Schema-ColumnDefinition.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignIdColumnDefinition", + "name": "ForeignIdColumnDefinition", + "summary": "", + "url": "classes/Illuminate-Database-Schema-ForeignIdColumnDefinition.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignIdColumnDefinition\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020foreign\u0020ID\u0020column\u0020definition.", + "url": "classes/Illuminate-Database-Schema-ForeignIdColumnDefinition.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignIdColumnDefinition\u003A\u003Aconstrained\u0028\u0029", + "name": "constrained", + "summary": "Create\u0020a\u0020foreign\u0020key\u0020constraint\u0020on\u0020this\u0020column\u0020referencing\u0020the\u0020\u0022id\u0022\u0020column\u0020of\u0020the\u0020conventionally\u0020related\u0020table.", + "url": "classes/Illuminate-Database-Schema-ForeignIdColumnDefinition.html#method_constrained" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignIdColumnDefinition\u003A\u003Areferences\u0028\u0029", + "name": "references", + "summary": "Specify\u0020which\u0020column\u0020this\u0020foreign\u0020ID\u0020references\u0020on\u0020another\u0020table.", + "url": "classes/Illuminate-Database-Schema-ForeignIdColumnDefinition.html#method_references" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignIdColumnDefinition\u003A\u003A\u0024blueprint", + "name": "blueprint", + "summary": "The\u0020schema\u0020builder\u0020blueprint\u0020instance.", + "url": "classes/Illuminate-Database-Schema-ForeignIdColumnDefinition.html#property_blueprint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignKeyDefinition", + "name": "ForeignKeyDefinition", + "summary": "", + "url": "classes/Illuminate-Database-Schema-ForeignKeyDefinition.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignKeyDefinition\u003A\u003AcascadeOnUpdate\u0028\u0029", + "name": "cascadeOnUpdate", + "summary": "Indicate\u0020that\u0020updates\u0020should\u0020cascade.", + "url": "classes/Illuminate-Database-Schema-ForeignKeyDefinition.html#method_cascadeOnUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignKeyDefinition\u003A\u003ArestrictOnUpdate\u0028\u0029", + "name": "restrictOnUpdate", + "summary": "Indicate\u0020that\u0020updates\u0020should\u0020be\u0020restricted.", + "url": "classes/Illuminate-Database-Schema-ForeignKeyDefinition.html#method_restrictOnUpdate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignKeyDefinition\u003A\u003AcascadeOnDelete\u0028\u0029", + "name": "cascadeOnDelete", + "summary": "Indicate\u0020that\u0020deletes\u0020should\u0020cascade.", + "url": "classes/Illuminate-Database-Schema-ForeignKeyDefinition.html#method_cascadeOnDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignKeyDefinition\u003A\u003ArestrictOnDelete\u0028\u0029", + "name": "restrictOnDelete", + "summary": "Indicate\u0020that\u0020deletes\u0020should\u0020be\u0020restricted.", + "url": "classes/Illuminate-Database-Schema-ForeignKeyDefinition.html#method_restrictOnDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\ForeignKeyDefinition\u003A\u003AnullOnDelete\u0028\u0029", + "name": "nullOnDelete", + "summary": "Indicate\u0020that\u0020deletes\u0020should\u0020set\u0020the\u0020foreign\u0020key\u0020value\u0020to\u0020null.", + "url": "classes/Illuminate-Database-Schema-ForeignKeyDefinition.html#method_nullOnDelete" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn", + "name": "ChangeColumn", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003Acompile\u0028\u0029", + "name": "compile", + "summary": "Compile\u0020a\u0020change\u0020column\u0020command\u0020into\u0020a\u0020series\u0020of\u0020SQL\u0020statements.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_compile" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AgetChangedDiff\u0028\u0029", + "name": "getChangedDiff", + "summary": "Get\u0020the\u0020Doctrine\u0020table\u0020difference\u0020for\u0020the\u0020given\u0020changes.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_getChangedDiff" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AgetTableWithColumnChanges\u0028\u0029", + "name": "getTableWithColumnChanges", + "summary": "Get\u0020a\u0020copy\u0020of\u0020the\u0020given\u0020Doctrine\u0020table\u0020after\u0020making\u0020the\u0020column\u0020changes.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_getTableWithColumnChanges" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AgetDoctrineColumn\u0028\u0029", + "name": "getDoctrineColumn", + "summary": "Get\u0020the\u0020Doctrine\u0020column\u0020instance\u0020for\u0020a\u0020column\u0020change.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_getDoctrineColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AgetDoctrineColumnChangeOptions\u0028\u0029", + "name": "getDoctrineColumnChangeOptions", + "summary": "Get\u0020the\u0020Doctrine\u0020column\u0020change\u0020options.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_getDoctrineColumnChangeOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AgetDoctrineColumnType\u0028\u0029", + "name": "getDoctrineColumnType", + "summary": "Get\u0020the\u0020doctrine\u0020column\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_getDoctrineColumnType" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AcalculateDoctrineTextLength\u0028\u0029", + "name": "calculateDoctrineTextLength", + "summary": "Calculate\u0020the\u0020proper\u0020column\u0020length\u0020to\u0020force\u0020the\u0020Doctrine\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_calculateDoctrineTextLength" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AdoesntNeedCharacterOptions\u0028\u0029", + "name": "doesntNeedCharacterOptions", + "summary": "Determine\u0020if\u0020the\u0020given\u0020type\u0020does\u0020not\u0020need\u0020character\u0020\/\u0020collation\u0020options.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_doesntNeedCharacterOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AmapFluentOptionToDoctrine\u0028\u0029", + "name": "mapFluentOptionToDoctrine", + "summary": "Get\u0020the\u0020matching\u0020Doctrine\u0020option\u0020for\u0020a\u0020given\u0020Fluent\u0020attribute\u0020name.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_mapFluentOptionToDoctrine" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\ChangeColumn\u003A\u003AmapFluentValueToDoctrine\u0028\u0029", + "name": "mapFluentValueToDoctrine", + "summary": "Get\u0020the\u0020matching\u0020Doctrine\u0020value\u0020for\u0020a\u0020given\u0020Fluent\u0020attribute.", + "url": "classes/Illuminate-Database-Schema-Grammars-ChangeColumn.html#method_mapFluentValueToDoctrine" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar", + "name": "Grammar", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileCreateDatabase\u0028\u0029", + "name": "compileCreateDatabase", + "summary": "Compile\u0020a\u0020create\u0020database\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileCreateDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileDropDatabaseIfExists\u0028\u0029", + "name": "compileDropDatabaseIfExists", + "summary": "Compile\u0020a\u0020drop\u0020database\u0020if\u0020exists\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileDropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileRenameColumn\u0028\u0029", + "name": "compileRenameColumn", + "summary": "Compile\u0020a\u0020rename\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileRenameColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileChange\u0028\u0029", + "name": "compileChange", + "summary": "Compile\u0020a\u0020change\u0020column\u0020command\u0020into\u0020a\u0020series\u0020of\u0020SQL\u0020statements.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileChange" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileFulltext\u0028\u0029", + "name": "compileFulltext", + "summary": "Compile\u0020a\u0020fulltext\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileFulltext" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileDropFullText\u0028\u0029", + "name": "compileDropFullText", + "summary": "Compile\u0020a\u0020drop\u0020fulltext\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileDropFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AcompileForeign\u0028\u0029", + "name": "compileForeign", + "summary": "Compile\u0020a\u0020foreign\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_compileForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetColumns\u0028\u0029", + "name": "getColumns", + "summary": "Compile\u0020the\u0020blueprint\u0027s\u0020column\u0020definitions.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020the\u0020column\u0020data\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getType" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AtypeComputed\u0028\u0029", + "name": "typeComputed", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020generated,\u0020computed\u0020column\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_typeComputed" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AaddModifiers\u0028\u0029", + "name": "addModifiers", + "summary": "Add\u0020the\u0020column\u0020modifiers\u0020to\u0020the\u0020definition.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_addModifiers" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetCommandByName\u0028\u0029", + "name": "getCommandByName", + "summary": "Get\u0020the\u0020primary\u0020key\u0020command\u0020if\u0020it\u0020exists\u0020on\u0020the\u0020blueprint.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getCommandByName" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetCommandsByName\u0028\u0029", + "name": "getCommandsByName", + "summary": "Get\u0020all\u0020of\u0020the\u0020commands\u0020with\u0020a\u0020given\u0020name.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getCommandsByName" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AprefixArray\u0028\u0029", + "name": "prefixArray", + "summary": "Add\u0020a\u0020prefix\u0020to\u0020an\u0020array\u0020of\u0020values.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_prefixArray" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AwrapTable\u0028\u0029", + "name": "wrapTable", + "summary": "Wrap\u0020a\u0020table\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_wrapTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wrap\u0020a\u0020value\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_wrap" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetDefaultValue\u0028\u0029", + "name": "getDefaultValue", + "summary": "Format\u0020a\u0020value\u0020so\u0020that\u0020it\u0020can\u0020be\u0020used\u0020in\u0020\u0022default\u0022\u0020clauses.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getDefaultValue" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetDoctrineTableDiff\u0028\u0029", + "name": "getDoctrineTableDiff", + "summary": "Create\u0020an\u0020empty\u0020Doctrine\u0020DBAL\u0020TableDiff\u0020from\u0020the\u0020Blueprint.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getDoctrineTableDiff" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AgetFluentCommands\u0028\u0029", + "name": "getFluentCommands", + "summary": "Get\u0020the\u0020fluent\u0020commands\u0020for\u0020the\u0020grammar.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_getFluentCommands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003AsupportsSchemaTransactions\u0028\u0029", + "name": "supportsSchemaTransactions", + "summary": "Check\u0020if\u0020this\u0020Grammar\u0020supports\u0020schema\u0020changes\u0020wrapped\u0020in\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#method_supportsSchemaTransactions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003A\u0024transactions", + "name": "transactions", + "summary": "If\u0020this\u0020Grammar\u0020supports\u0020schema\u0020changes\u0020wrapped\u0020in\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#property_transactions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\Grammar\u003A\u003A\u0024fluentCommands", + "name": "fluentCommands", + "summary": "The\u0020commands\u0020to\u0020be\u0020executed\u0020outside\u0020of\u0020create\u0020or\u0020alter\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-Grammar.html#property_fluentCommands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar", + "name": "MySqlGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileCreateDatabase\u0028\u0029", + "name": "compileCreateDatabase", + "summary": "Compile\u0020a\u0020create\u0020database\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileCreateDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropDatabaseIfExists\u0028\u0029", + "name": "compileDropDatabaseIfExists", + "summary": "Compile\u0020a\u0020drop\u0020database\u0020if\u0020exists\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileTableExists\u0028\u0029", + "name": "compileTableExists", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020the\u0020list\u0020of\u0020tables.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileTableExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileColumnListing\u0028\u0029", + "name": "compileColumnListing", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020the\u0020list\u0020of\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileCreate\u0028\u0029", + "name": "compileCreate", + "summary": "Compile\u0020a\u0020create\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileCreateTable\u0028\u0029", + "name": "compileCreateTable", + "summary": "Create\u0020the\u0020main\u0020create\u0020table\u0020clause.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileCreateTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileCreateEncoding\u0028\u0029", + "name": "compileCreateEncoding", + "summary": "Append\u0020the\u0020character\u0020set\u0020specifications\u0020to\u0020a\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileCreateEncoding" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileCreateEngine\u0028\u0029", + "name": "compileCreateEngine", + "summary": "Append\u0020the\u0020engine\u0020specifications\u0020to\u0020a\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileCreateEngine" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileAdd\u0028\u0029", + "name": "compileAdd", + "summary": "Compile\u0020an\u0020add\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileAdd" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileAutoIncrementStartingValues\u0028\u0029", + "name": "compileAutoIncrementStartingValues", + "summary": "Compile\u0020the\u0020auto\u002Dincrementing\u0020column\u0020starting\u0020values.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileAutoIncrementStartingValues" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompilePrimary\u0028\u0029", + "name": "compilePrimary", + "summary": "Compile\u0020a\u0020primary\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compilePrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileUnique\u0028\u0029", + "name": "compileUnique", + "summary": "Compile\u0020a\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileIndex\u0028\u0029", + "name": "compileIndex", + "summary": "Compile\u0020a\u0020plain\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileFullText\u0028\u0029", + "name": "compileFullText", + "summary": "Compile\u0020a\u0020fulltext\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileSpatialIndex\u0028\u0029", + "name": "compileSpatialIndex", + "summary": "Compile\u0020a\u0020spatial\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileKey\u0028\u0029", + "name": "compileKey", + "summary": "Compile\u0020an\u0020index\u0020creation\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileKey" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDrop\u0028\u0029", + "name": "compileDrop", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDrop" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropIfExists\u0028\u0029", + "name": "compileDropIfExists", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020\u0028if\u0020exists\u0029\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropColumn\u0028\u0029", + "name": "compileDropColumn", + "summary": "Compile\u0020a\u0020drop\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropPrimary\u0028\u0029", + "name": "compileDropPrimary", + "summary": "Compile\u0020a\u0020drop\u0020primary\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropPrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropUnique\u0028\u0029", + "name": "compileDropUnique", + "summary": "Compile\u0020a\u0020drop\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropIndex\u0028\u0029", + "name": "compileDropIndex", + "summary": "Compile\u0020a\u0020drop\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropFullText\u0028\u0029", + "name": "compileDropFullText", + "summary": "Compile\u0020a\u0020drop\u0020fulltext\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropSpatialIndex\u0028\u0029", + "name": "compileDropSpatialIndex", + "summary": "Compile\u0020a\u0020drop\u0020spatial\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropForeign\u0028\u0029", + "name": "compileDropForeign", + "summary": "Compile\u0020a\u0020drop\u0020foreign\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileRename\u0028\u0029", + "name": "compileRename", + "summary": "Compile\u0020a\u0020rename\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileRename" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileRenameIndex\u0028\u0029", + "name": "compileRenameIndex", + "summary": "Compile\u0020a\u0020rename\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileRenameIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropAllTables\u0028\u0029", + "name": "compileDropAllTables", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020tables.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDropAllViews\u0028\u0029", + "name": "compileDropAllViews", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020views.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileGetAllTables\u0028\u0029", + "name": "compileGetAllTables", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020retrieve\u0020all\u0020table\u0020names.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileGetAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileGetAllViews\u0028\u0029", + "name": "compileGetAllViews", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020retrieve\u0020all\u0020view\u0020names.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileGetAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileEnableForeignKeyConstraints\u0028\u0029", + "name": "compileEnableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020enable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileEnableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AcompileDisableForeignKeyConstraints\u0028\u0029", + "name": "compileDisableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020disable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_compileDisableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeChar\u0028\u0029", + "name": "typeChar", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020char\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeChar" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeString\u0028\u0029", + "name": "typeString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020string\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeTinyText\u0028\u0029", + "name": "typeTinyText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeTinyText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeText\u0028\u0029", + "name": "typeText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeMediumText\u0028\u0029", + "name": "typeMediumText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeMediumText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeLongText\u0028\u0029", + "name": "typeLongText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020long\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeLongText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeBigInteger\u0028\u0029", + "name": "typeBigInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020big\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeBigInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeInteger\u0028\u0029", + "name": "typeInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeMediumInteger\u0028\u0029", + "name": "typeMediumInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeMediumInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeTinyInteger\u0028\u0029", + "name": "typeTinyInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeTinyInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeSmallInteger\u0028\u0029", + "name": "typeSmallInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020small\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeSmallInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeFloat\u0028\u0029", + "name": "typeFloat", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020float\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeFloat" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeDouble\u0028\u0029", + "name": "typeDouble", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020double\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeDouble" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeDecimal\u0028\u0029", + "name": "typeDecimal", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020decimal\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeDecimal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeBoolean\u0028\u0029", + "name": "typeBoolean", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020boolean\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeBoolean" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeEnum\u0028\u0029", + "name": "typeEnum", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020enumeration\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeEnum" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeSet\u0028\u0029", + "name": "typeSet", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020set\u0020enumeration\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeSet" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeJson\u0028\u0029", + "name": "typeJson", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020json\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeJson" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeJsonb\u0028\u0029", + "name": "typeJsonb", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020jsonb\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeJsonb" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeDate\u0028\u0029", + "name": "typeDate", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeDate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeDateTime\u0028\u0029", + "name": "typeDateTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeDateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeDateTimeTz\u0028\u0029", + "name": "typeDateTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeDateTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeTime\u0028\u0029", + "name": "typeTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeTimeTz\u0028\u0029", + "name": "typeTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeTimestamp\u0028\u0029", + "name": "typeTimestamp", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeTimestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeTimestampTz\u0028\u0029", + "name": "typeTimestampTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeTimestampTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeYear\u0028\u0029", + "name": "typeYear", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020year\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeYear" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeBinary\u0028\u0029", + "name": "typeBinary", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020binary\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeBinary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeUuid\u0028\u0029", + "name": "typeUuid", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020uuid\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeUuid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeIpAddress\u0028\u0029", + "name": "typeIpAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020IP\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeIpAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeMacAddress\u0028\u0029", + "name": "typeMacAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020MAC\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeMacAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeGeometry\u0028\u0029", + "name": "typeGeometry", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Geometry\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeGeometry" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypePoint\u0028\u0029", + "name": "typePoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Point\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typePoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeLineString\u0028\u0029", + "name": "typeLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020LineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypePolygon\u0028\u0029", + "name": "typePolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Polygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typePolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeGeometryCollection\u0028\u0029", + "name": "typeGeometryCollection", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020GeometryCollection\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeGeometryCollection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeMultiPoint\u0028\u0029", + "name": "typeMultiPoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPoint\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeMultiPoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeMultiLineString\u0028\u0029", + "name": "typeMultiLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiLineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeMultiLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeMultiPolygon\u0028\u0029", + "name": "typeMultiPolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPolygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeMultiPolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AtypeComputed\u0028\u0029", + "name": "typeComputed", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020generated,\u0020computed\u0020column\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_typeComputed" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyVirtualAs\u0028\u0029", + "name": "modifyVirtualAs", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020virtual\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyVirtualAs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyStoredAs\u0028\u0029", + "name": "modifyStoredAs", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020stored\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyStoredAs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyUnsigned\u0028\u0029", + "name": "modifyUnsigned", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020unsigned\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyUnsigned" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyCharset\u0028\u0029", + "name": "modifyCharset", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020character\u0020set\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyCharset" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyCollate\u0028\u0029", + "name": "modifyCollate", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020collation\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyCollate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyNullable\u0028\u0029", + "name": "modifyNullable", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020nullable\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyNullable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyInvisible\u0028\u0029", + "name": "modifyInvisible", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020invisible\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyInvisible" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyDefault\u0028\u0029", + "name": "modifyDefault", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020default\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyDefault" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyIncrement\u0028\u0029", + "name": "modifyIncrement", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020auto\u002Dincrement\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyIncrement" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyFirst\u0028\u0029", + "name": "modifyFirst", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020\u0022first\u0022\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyFirst" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyAfter\u0028\u0029", + "name": "modifyAfter", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020\u0022after\u0022\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyAfter" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifyComment\u0028\u0029", + "name": "modifyComment", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020\u0022comment\u0022\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifyComment" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AmodifySrid\u0028\u0029", + "name": "modifySrid", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020SRID\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_modifySrid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003AwrapValue\u0028\u0029", + "name": "wrapValue", + "summary": "Wrap\u0020a\u0020single\u0020string\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#method_wrapValue" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "The\u0020possible\u0020column\u0020modifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#property_modifiers" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\MySqlGrammar\u003A\u003A\u0024serials", + "name": "serials", + "summary": "The\u0020possible\u0020column\u0020serials.", + "url": "classes/Illuminate-Database-Schema-Grammars-MySqlGrammar.html#property_serials" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar", + "name": "PostgresGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileCreateDatabase\u0028\u0029", + "name": "compileCreateDatabase", + "summary": "Compile\u0020a\u0020create\u0020database\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileCreateDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropDatabaseIfExists\u0028\u0029", + "name": "compileDropDatabaseIfExists", + "summary": "Compile\u0020a\u0020drop\u0020database\u0020if\u0020exists\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileTableExists\u0028\u0029", + "name": "compileTableExists", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020if\u0020a\u0020table\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileTableExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileColumnListing\u0028\u0029", + "name": "compileColumnListing", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020the\u0020list\u0020of\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileCreate\u0028\u0029", + "name": "compileCreate", + "summary": "Compile\u0020a\u0020create\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileAdd\u0028\u0029", + "name": "compileAdd", + "summary": "Compile\u0020a\u0020column\u0020addition\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileAdd" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileAutoIncrementStartingValues\u0028\u0029", + "name": "compileAutoIncrementStartingValues", + "summary": "Compile\u0020the\u0020auto\u002Dincrementing\u0020column\u0020starting\u0020values.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileAutoIncrementStartingValues" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompilePrimary\u0028\u0029", + "name": "compilePrimary", + "summary": "Compile\u0020a\u0020primary\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compilePrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileUnique\u0028\u0029", + "name": "compileUnique", + "summary": "Compile\u0020a\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileIndex\u0028\u0029", + "name": "compileIndex", + "summary": "Compile\u0020a\u0020plain\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileFulltext\u0028\u0029", + "name": "compileFulltext", + "summary": "Compile\u0020a\u0020fulltext\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileFulltext" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileSpatialIndex\u0028\u0029", + "name": "compileSpatialIndex", + "summary": "Compile\u0020a\u0020spatial\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileForeign\u0028\u0029", + "name": "compileForeign", + "summary": "Compile\u0020a\u0020foreign\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDrop\u0028\u0029", + "name": "compileDrop", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDrop" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropIfExists\u0028\u0029", + "name": "compileDropIfExists", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020\u0028if\u0020exists\u0029\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropAllTables\u0028\u0029", + "name": "compileDropAllTables", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020tables.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropAllViews\u0028\u0029", + "name": "compileDropAllViews", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020views.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropAllTypes\u0028\u0029", + "name": "compileDropAllTypes", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020types.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropAllTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileGetAllTables\u0028\u0029", + "name": "compileGetAllTables", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020retrieve\u0020all\u0020table\u0020names.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileGetAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileGetAllViews\u0028\u0029", + "name": "compileGetAllViews", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020retrieve\u0020all\u0020view\u0020names.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileGetAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileGetAllTypes\u0028\u0029", + "name": "compileGetAllTypes", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020retrieve\u0020all\u0020type\u0020names.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileGetAllTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropColumn\u0028\u0029", + "name": "compileDropColumn", + "summary": "Compile\u0020a\u0020drop\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropPrimary\u0028\u0029", + "name": "compileDropPrimary", + "summary": "Compile\u0020a\u0020drop\u0020primary\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropPrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropUnique\u0028\u0029", + "name": "compileDropUnique", + "summary": "Compile\u0020a\u0020drop\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropIndex\u0028\u0029", + "name": "compileDropIndex", + "summary": "Compile\u0020a\u0020drop\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropFullText\u0028\u0029", + "name": "compileDropFullText", + "summary": "Compile\u0020a\u0020drop\u0020fulltext\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropFullText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropSpatialIndex\u0028\u0029", + "name": "compileDropSpatialIndex", + "summary": "Compile\u0020a\u0020drop\u0020spatial\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDropForeign\u0028\u0029", + "name": "compileDropForeign", + "summary": "Compile\u0020a\u0020drop\u0020foreign\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDropForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileRename\u0028\u0029", + "name": "compileRename", + "summary": "Compile\u0020a\u0020rename\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileRename" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileRenameIndex\u0028\u0029", + "name": "compileRenameIndex", + "summary": "Compile\u0020a\u0020rename\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileRenameIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileEnableForeignKeyConstraints\u0028\u0029", + "name": "compileEnableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020enable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileEnableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileDisableForeignKeyConstraints\u0028\u0029", + "name": "compileDisableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020disable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileDisableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AcompileComment\u0028\u0029", + "name": "compileComment", + "summary": "Compile\u0020a\u0020comment\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_compileComment" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeChar\u0028\u0029", + "name": "typeChar", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020char\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeChar" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeString\u0028\u0029", + "name": "typeString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020string\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeTinyText\u0028\u0029", + "name": "typeTinyText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeTinyText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeText\u0028\u0029", + "name": "typeText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMediumText\u0028\u0029", + "name": "typeMediumText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMediumText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeLongText\u0028\u0029", + "name": "typeLongText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020long\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeLongText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeInteger\u0028\u0029", + "name": "typeInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeBigInteger\u0028\u0029", + "name": "typeBigInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020big\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeBigInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMediumInteger\u0028\u0029", + "name": "typeMediumInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMediumInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeTinyInteger\u0028\u0029", + "name": "typeTinyInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeTinyInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeSmallInteger\u0028\u0029", + "name": "typeSmallInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020small\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeSmallInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AgeneratableColumn\u0028\u0029", + "name": "generatableColumn", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020generatable\u0020column.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_generatableColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeFloat\u0028\u0029", + "name": "typeFloat", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020float\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeFloat" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeDouble\u0028\u0029", + "name": "typeDouble", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020double\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeDouble" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeReal\u0028\u0029", + "name": "typeReal", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020real\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeReal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeDecimal\u0028\u0029", + "name": "typeDecimal", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020decimal\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeDecimal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeBoolean\u0028\u0029", + "name": "typeBoolean", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020boolean\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeBoolean" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeEnum\u0028\u0029", + "name": "typeEnum", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020enumeration\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeEnum" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeJson\u0028\u0029", + "name": "typeJson", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020json\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeJson" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeJsonb\u0028\u0029", + "name": "typeJsonb", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020jsonb\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeJsonb" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeDate\u0028\u0029", + "name": "typeDate", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeDate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeDateTime\u0028\u0029", + "name": "typeDateTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeDateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeDateTimeTz\u0028\u0029", + "name": "typeDateTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeDateTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeTime\u0028\u0029", + "name": "typeTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeTimeTz\u0028\u0029", + "name": "typeTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeTimestamp\u0028\u0029", + "name": "typeTimestamp", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeTimestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeTimestampTz\u0028\u0029", + "name": "typeTimestampTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeTimestampTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeYear\u0028\u0029", + "name": "typeYear", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020year\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeYear" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeBinary\u0028\u0029", + "name": "typeBinary", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020binary\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeBinary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeUuid\u0028\u0029", + "name": "typeUuid", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020uuid\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeUuid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeIpAddress\u0028\u0029", + "name": "typeIpAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020IP\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeIpAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMacAddress\u0028\u0029", + "name": "typeMacAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020MAC\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMacAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeGeometry\u0028\u0029", + "name": "typeGeometry", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Geometry\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeGeometry" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypePoint\u0028\u0029", + "name": "typePoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Point\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typePoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeLineString\u0028\u0029", + "name": "typeLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020LineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypePolygon\u0028\u0029", + "name": "typePolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Polygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typePolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeGeometryCollection\u0028\u0029", + "name": "typeGeometryCollection", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020GeometryCollection\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeGeometryCollection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMultiPoint\u0028\u0029", + "name": "typeMultiPoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPoint\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMultiPoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMultiLineString\u0028\u0029", + "name": "typeMultiLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiLineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMultiLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMultiPolygon\u0028\u0029", + "name": "typeMultiPolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPolygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMultiPolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AtypeMultiPolygonZ\u0028\u0029", + "name": "typeMultiPolygonZ", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPolygonZ\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_typeMultiPolygonZ" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AformatPostGisType\u0028\u0029", + "name": "formatPostGisType", + "summary": "Format\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020PostGIS\u0020spatial\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_formatPostGisType" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AmodifyCollate\u0028\u0029", + "name": "modifyCollate", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020collation\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_modifyCollate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AmodifyNullable\u0028\u0029", + "name": "modifyNullable", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020nullable\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_modifyNullable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AmodifyDefault\u0028\u0029", + "name": "modifyDefault", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020default\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_modifyDefault" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AmodifyIncrement\u0028\u0029", + "name": "modifyIncrement", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020auto\u002Dincrement\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_modifyIncrement" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AmodifyVirtualAs\u0028\u0029", + "name": "modifyVirtualAs", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020virtual\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_modifyVirtualAs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003AmodifyStoredAs\u0028\u0029", + "name": "modifyStoredAs", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020stored\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#method_modifyStoredAs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003A\u0024transactions", + "name": "transactions", + "summary": "If\u0020this\u0020Grammar\u0020supports\u0020schema\u0020changes\u0020wrapped\u0020in\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#property_transactions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "The\u0020possible\u0020column\u0020modifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#property_modifiers" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003A\u0024serials", + "name": "serials", + "summary": "The\u0020columns\u0020available\u0020as\u0020serials.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#property_serials" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\PostgresGrammar\u003A\u003A\u0024fluentCommands", + "name": "fluentCommands", + "summary": "The\u0020commands\u0020to\u0020be\u0020executed\u0020outside\u0020of\u0020create\u0020or\u0020alter\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-PostgresGrammar.html#property_fluentCommands" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\RenameColumn", + "name": "RenameColumn", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-RenameColumn.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\RenameColumn\u003A\u003Acompile\u0028\u0029", + "name": "compile", + "summary": "Compile\u0020a\u0020rename\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-RenameColumn.html#method_compile" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\RenameColumn\u003A\u003AgetRenamedDiff\u0028\u0029", + "name": "getRenamedDiff", + "summary": "Get\u0020a\u0020new\u0020column\u0020instance\u0020with\u0020the\u0020new\u0020column\u0020name.", + "url": "classes/Illuminate-Database-Schema-Grammars-RenameColumn.html#method_getRenamedDiff" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\RenameColumn\u003A\u003AsetRenamedColumns\u0028\u0029", + "name": "setRenamedColumns", + "summary": "Set\u0020the\u0020renamed\u0020columns\u0020on\u0020the\u0020table\u0020diff.", + "url": "classes/Illuminate-Database-Schema-Grammars-RenameColumn.html#method_setRenamedColumns" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\RenameColumn\u003A\u003AgetWritableColumnOptions\u0028\u0029", + "name": "getWritableColumnOptions", + "summary": "Get\u0020the\u0020writable\u0020column\u0020options.", + "url": "classes/Illuminate-Database-Schema-Grammars-RenameColumn.html#method_getWritableColumnOptions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar", + "name": "SQLiteGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileTableExists\u0028\u0029", + "name": "compileTableExists", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020if\u0020a\u0020table\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileTableExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileColumnListing\u0028\u0029", + "name": "compileColumnListing", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020the\u0020list\u0020of\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileCreate\u0028\u0029", + "name": "compileCreate", + "summary": "Compile\u0020a\u0020create\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AaddForeignKeys\u0028\u0029", + "name": "addForeignKeys", + "summary": "Get\u0020the\u0020foreign\u0020key\u0020syntax\u0020for\u0020a\u0020table\u0020creation\u0020statement.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_addForeignKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AgetForeignKey\u0028\u0029", + "name": "getForeignKey", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020the\u0020foreign\u0020key.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_getForeignKey" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AaddPrimaryKeys\u0028\u0029", + "name": "addPrimaryKeys", + "summary": "Get\u0020the\u0020primary\u0020key\u0020syntax\u0020for\u0020a\u0020table\u0020creation\u0020statement.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_addPrimaryKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileAdd\u0028\u0029", + "name": "compileAdd", + "summary": "Compile\u0020alter\u0020table\u0020commands\u0020for\u0020adding\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileAdd" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileUnique\u0028\u0029", + "name": "compileUnique", + "summary": "Compile\u0020a\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileIndex\u0028\u0029", + "name": "compileIndex", + "summary": "Compile\u0020a\u0020plain\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileSpatialIndex\u0028\u0029", + "name": "compileSpatialIndex", + "summary": "Compile\u0020a\u0020spatial\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileForeign\u0028\u0029", + "name": "compileForeign", + "summary": "Compile\u0020a\u0020foreign\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDrop\u0028\u0029", + "name": "compileDrop", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDrop" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropIfExists\u0028\u0029", + "name": "compileDropIfExists", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020\u0028if\u0020exists\u0029\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropAllTables\u0028\u0029", + "name": "compileDropAllTables", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020tables.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropAllViews\u0028\u0029", + "name": "compileDropAllViews", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020views.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileRebuild\u0028\u0029", + "name": "compileRebuild", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020rebuild\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileRebuild" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropColumn\u0028\u0029", + "name": "compileDropColumn", + "summary": "Compile\u0020a\u0020drop\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropUnique\u0028\u0029", + "name": "compileDropUnique", + "summary": "Compile\u0020a\u0020drop\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropIndex\u0028\u0029", + "name": "compileDropIndex", + "summary": "Compile\u0020a\u0020drop\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDropSpatialIndex\u0028\u0029", + "name": "compileDropSpatialIndex", + "summary": "Compile\u0020a\u0020drop\u0020spatial\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDropSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileRename\u0028\u0029", + "name": "compileRename", + "summary": "Compile\u0020a\u0020rename\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileRename" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileRenameIndex\u0028\u0029", + "name": "compileRenameIndex", + "summary": "Compile\u0020a\u0020rename\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileRenameIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileEnableForeignKeyConstraints\u0028\u0029", + "name": "compileEnableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020enable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileEnableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDisableForeignKeyConstraints\u0028\u0029", + "name": "compileDisableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020disable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDisableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileEnableWriteableSchema\u0028\u0029", + "name": "compileEnableWriteableSchema", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020enable\u0020a\u0020writable\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileEnableWriteableSchema" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AcompileDisableWriteableSchema\u0028\u0029", + "name": "compileDisableWriteableSchema", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020disable\u0020a\u0020writable\u0020schema.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_compileDisableWriteableSchema" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeChar\u0028\u0029", + "name": "typeChar", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020char\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeChar" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeString\u0028\u0029", + "name": "typeString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020string\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeTinyText\u0028\u0029", + "name": "typeTinyText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeTinyText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeText\u0028\u0029", + "name": "typeText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeMediumText\u0028\u0029", + "name": "typeMediumText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeMediumText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeLongText\u0028\u0029", + "name": "typeLongText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020long\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeLongText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeInteger\u0028\u0029", + "name": "typeInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeBigInteger\u0028\u0029", + "name": "typeBigInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020big\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeBigInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeMediumInteger\u0028\u0029", + "name": "typeMediumInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeMediumInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeTinyInteger\u0028\u0029", + "name": "typeTinyInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeTinyInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeSmallInteger\u0028\u0029", + "name": "typeSmallInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020small\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeSmallInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeFloat\u0028\u0029", + "name": "typeFloat", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020float\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeFloat" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeDouble\u0028\u0029", + "name": "typeDouble", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020double\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeDouble" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeDecimal\u0028\u0029", + "name": "typeDecimal", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020decimal\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeDecimal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeBoolean\u0028\u0029", + "name": "typeBoolean", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020boolean\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeBoolean" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeEnum\u0028\u0029", + "name": "typeEnum", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020enumeration\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeEnum" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeJson\u0028\u0029", + "name": "typeJson", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020json\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeJson" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeJsonb\u0028\u0029", + "name": "typeJsonb", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020jsonb\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeJsonb" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeDate\u0028\u0029", + "name": "typeDate", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeDate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeDateTime\u0028\u0029", + "name": "typeDateTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeDateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeDateTimeTz\u0028\u0029", + "name": "typeDateTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeDateTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeTime\u0028\u0029", + "name": "typeTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeTimeTz\u0028\u0029", + "name": "typeTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeTimestamp\u0028\u0029", + "name": "typeTimestamp", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeTimestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeTimestampTz\u0028\u0029", + "name": "typeTimestampTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeTimestampTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeYear\u0028\u0029", + "name": "typeYear", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020year\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeYear" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeBinary\u0028\u0029", + "name": "typeBinary", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020binary\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeBinary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeUuid\u0028\u0029", + "name": "typeUuid", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020uuid\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeUuid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeIpAddress\u0028\u0029", + "name": "typeIpAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020IP\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeIpAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeMacAddress\u0028\u0029", + "name": "typeMacAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020MAC\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeMacAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeGeometry\u0028\u0029", + "name": "typeGeometry", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Geometry\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeGeometry" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypePoint\u0028\u0029", + "name": "typePoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Point\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typePoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeLineString\u0028\u0029", + "name": "typeLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020LineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypePolygon\u0028\u0029", + "name": "typePolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Polygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typePolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeGeometryCollection\u0028\u0029", + "name": "typeGeometryCollection", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020GeometryCollection\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeGeometryCollection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeMultiPoint\u0028\u0029", + "name": "typeMultiPoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPoint\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeMultiPoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeMultiLineString\u0028\u0029", + "name": "typeMultiLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiLineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeMultiLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeMultiPolygon\u0028\u0029", + "name": "typeMultiPolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPolygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeMultiPolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AtypeComputed\u0028\u0029", + "name": "typeComputed", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020generated,\u0020computed\u0020column\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_typeComputed" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AmodifyVirtualAs\u0028\u0029", + "name": "modifyVirtualAs", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020virtual\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_modifyVirtualAs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AmodifyStoredAs\u0028\u0029", + "name": "modifyStoredAs", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020stored\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_modifyStoredAs" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AmodifyNullable\u0028\u0029", + "name": "modifyNullable", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020nullable\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_modifyNullable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AmodifyDefault\u0028\u0029", + "name": "modifyDefault", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020default\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_modifyDefault" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003AmodifyIncrement\u0028\u0029", + "name": "modifyIncrement", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020auto\u002Dincrement\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#method_modifyIncrement" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "The\u0020possible\u0020column\u0020modifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#property_modifiers" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SQLiteGrammar\u003A\u003A\u0024serials", + "name": "serials", + "summary": "The\u0020columns\u0020available\u0020as\u0020serials.", + "url": "classes/Illuminate-Database-Schema-Grammars-SQLiteGrammar.html#property_serials" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar", + "name": "SqlServerGrammar", + "summary": "", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileCreateDatabase\u0028\u0029", + "name": "compileCreateDatabase", + "summary": "Compile\u0020a\u0020create\u0020database\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileCreateDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropDatabaseIfExists\u0028\u0029", + "name": "compileDropDatabaseIfExists", + "summary": "Compile\u0020a\u0020drop\u0020database\u0020if\u0020exists\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileTableExists\u0028\u0029", + "name": "compileTableExists", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020if\u0020a\u0020table\u0020exists.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileTableExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileColumnListing\u0028\u0029", + "name": "compileColumnListing", + "summary": "Compile\u0020the\u0020query\u0020to\u0020determine\u0020the\u0020list\u0020of\u0020columns.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileCreate\u0028\u0029", + "name": "compileCreate", + "summary": "Compile\u0020a\u0020create\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileCreate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileAdd\u0028\u0029", + "name": "compileAdd", + "summary": "Compile\u0020a\u0020column\u0020addition\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileAdd" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompilePrimary\u0028\u0029", + "name": "compilePrimary", + "summary": "Compile\u0020a\u0020primary\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compilePrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileUnique\u0028\u0029", + "name": "compileUnique", + "summary": "Compile\u0020a\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileIndex\u0028\u0029", + "name": "compileIndex", + "summary": "Compile\u0020a\u0020plain\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileSpatialIndex\u0028\u0029", + "name": "compileSpatialIndex", + "summary": "Compile\u0020a\u0020spatial\u0020index\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDrop\u0028\u0029", + "name": "compileDrop", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDrop" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropIfExists\u0028\u0029", + "name": "compileDropIfExists", + "summary": "Compile\u0020a\u0020drop\u0020table\u0020\u0028if\u0020exists\u0029\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropAllTables\u0028\u0029", + "name": "compileDropAllTables", + "summary": "Compile\u0020the\u0020SQL\u0020needed\u0020to\u0020drop\u0020all\u0020tables.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropColumn\u0028\u0029", + "name": "compileDropColumn", + "summary": "Compile\u0020a\u0020drop\u0020column\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropColumn" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropDefaultConstraint\u0028\u0029", + "name": "compileDropDefaultConstraint", + "summary": "Compile\u0020a\u0020drop\u0020default\u0020constraint\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropDefaultConstraint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropPrimary\u0028\u0029", + "name": "compileDropPrimary", + "summary": "Compile\u0020a\u0020drop\u0020primary\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropPrimary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropUnique\u0028\u0029", + "name": "compileDropUnique", + "summary": "Compile\u0020a\u0020drop\u0020unique\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropUnique" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropIndex\u0028\u0029", + "name": "compileDropIndex", + "summary": "Compile\u0020a\u0020drop\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropSpatialIndex\u0028\u0029", + "name": "compileDropSpatialIndex", + "summary": "Compile\u0020a\u0020drop\u0020spatial\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropSpatialIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropForeign\u0028\u0029", + "name": "compileDropForeign", + "summary": "Compile\u0020a\u0020drop\u0020foreign\u0020key\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropForeign" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileRename\u0028\u0029", + "name": "compileRename", + "summary": "Compile\u0020a\u0020rename\u0020table\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileRename" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileRenameIndex\u0028\u0029", + "name": "compileRenameIndex", + "summary": "Compile\u0020a\u0020rename\u0020index\u0020command.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileRenameIndex" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileEnableForeignKeyConstraints\u0028\u0029", + "name": "compileEnableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020enable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileEnableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDisableForeignKeyConstraints\u0028\u0029", + "name": "compileDisableForeignKeyConstraints", + "summary": "Compile\u0020the\u0020command\u0020to\u0020disable\u0020foreign\u0020key\u0020constraints.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDisableForeignKeyConstraints" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropAllForeignKeys\u0028\u0029", + "name": "compileDropAllForeignKeys", + "summary": "Compile\u0020the\u0020command\u0020to\u0020drop\u0020all\u0020foreign\u0020keys.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropAllForeignKeys" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AcompileDropAllViews\u0028\u0029", + "name": "compileDropAllViews", + "summary": "Compile\u0020the\u0020command\u0020to\u0020drop\u0020all\u0020views.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_compileDropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeChar\u0028\u0029", + "name": "typeChar", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020char\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeChar" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeString\u0028\u0029", + "name": "typeString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020string\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeTinyText\u0028\u0029", + "name": "typeTinyText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeTinyText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeText\u0028\u0029", + "name": "typeText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeMediumText\u0028\u0029", + "name": "typeMediumText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeMediumText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeLongText\u0028\u0029", + "name": "typeLongText", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020long\u0020text\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeLongText" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeInteger\u0028\u0029", + "name": "typeInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeBigInteger\u0028\u0029", + "name": "typeBigInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020big\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeBigInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeMediumInteger\u0028\u0029", + "name": "typeMediumInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020medium\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeMediumInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeTinyInteger\u0028\u0029", + "name": "typeTinyInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020tiny\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeTinyInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeSmallInteger\u0028\u0029", + "name": "typeSmallInteger", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020small\u0020integer\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeSmallInteger" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeFloat\u0028\u0029", + "name": "typeFloat", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020float\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeFloat" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeDouble\u0028\u0029", + "name": "typeDouble", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020double\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeDouble" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeDecimal\u0028\u0029", + "name": "typeDecimal", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020decimal\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeDecimal" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeBoolean\u0028\u0029", + "name": "typeBoolean", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020boolean\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeBoolean" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeEnum\u0028\u0029", + "name": "typeEnum", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020enumeration\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeEnum" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeJson\u0028\u0029", + "name": "typeJson", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020json\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeJson" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeJsonb\u0028\u0029", + "name": "typeJsonb", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020jsonb\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeJsonb" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeDate\u0028\u0029", + "name": "typeDate", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeDate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeDateTime\u0028\u0029", + "name": "typeDateTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeDateTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeDateTimeTz\u0028\u0029", + "name": "typeDateTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020date\u002Dtime\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeDateTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeTime\u0028\u0029", + "name": "typeTime", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeTime" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeTimeTz\u0028\u0029", + "name": "typeTimeTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020time\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeTimeTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeTimestamp\u0028\u0029", + "name": "typeTimestamp", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeTimestamp" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeTimestampTz\u0028\u0029", + "name": "typeTimestampTz", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020timestamp\u0020\u0028with\u0020time\u0020zone\u0029\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeTimestampTz" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeYear\u0028\u0029", + "name": "typeYear", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020year\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeYear" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeBinary\u0028\u0029", + "name": "typeBinary", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020binary\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeBinary" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeUuid\u0028\u0029", + "name": "typeUuid", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020uuid\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeUuid" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeIpAddress\u0028\u0029", + "name": "typeIpAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020an\u0020IP\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeIpAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeMacAddress\u0028\u0029", + "name": "typeMacAddress", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020MAC\u0020address\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeMacAddress" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeGeometry\u0028\u0029", + "name": "typeGeometry", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Geometry\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeGeometry" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypePoint\u0028\u0029", + "name": "typePoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Point\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typePoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeLineString\u0028\u0029", + "name": "typeLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020LineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypePolygon\u0028\u0029", + "name": "typePolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020Polygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typePolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeGeometryCollection\u0028\u0029", + "name": "typeGeometryCollection", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020GeometryCollection\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeGeometryCollection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeMultiPoint\u0028\u0029", + "name": "typeMultiPoint", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPoint\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeMultiPoint" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeMultiLineString\u0028\u0029", + "name": "typeMultiLineString", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiLineString\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeMultiLineString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeMultiPolygon\u0028\u0029", + "name": "typeMultiPolygon", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020spatial\u0020MultiPolygon\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeMultiPolygon" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AtypeComputed\u0028\u0029", + "name": "typeComputed", + "summary": "Create\u0020the\u0020column\u0020definition\u0020for\u0020a\u0020generated,\u0020computed\u0020column\u0020type.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_typeComputed" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AmodifyCollate\u0028\u0029", + "name": "modifyCollate", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020collation\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_modifyCollate" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AmodifyNullable\u0028\u0029", + "name": "modifyNullable", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020nullable\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_modifyNullable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AmodifyDefault\u0028\u0029", + "name": "modifyDefault", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020default\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_modifyDefault" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AmodifyIncrement\u0028\u0029", + "name": "modifyIncrement", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020an\u0020auto\u002Dincrement\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_modifyIncrement" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AmodifyPersisted\u0028\u0029", + "name": "modifyPersisted", + "summary": "Get\u0020the\u0020SQL\u0020for\u0020a\u0020generated\u0020stored\u0020column\u0020modifier.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_modifyPersisted" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AwrapTable\u0028\u0029", + "name": "wrapTable", + "summary": "Wrap\u0020a\u0020table\u0020in\u0020keyword\u0020identifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_wrapTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003AquoteString\u0028\u0029", + "name": "quoteString", + "summary": "Quote\u0020the\u0020given\u0020string\u0020literal.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#method_quoteString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003A\u0024transactions", + "name": "transactions", + "summary": "If\u0020this\u0020Grammar\u0020supports\u0020schema\u0020changes\u0020wrapped\u0020in\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#property_transactions" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003A\u0024modifiers", + "name": "modifiers", + "summary": "The\u0020possible\u0020column\u0020modifiers.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#property_modifiers" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars\\SqlServerGrammar\u003A\u003A\u0024serials", + "name": "serials", + "summary": "The\u0020columns\u0020available\u0020as\u0020serials.", + "url": "classes/Illuminate-Database-Schema-Grammars-SqlServerGrammar.html#property_serials" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder", + "name": "MySqlBuilder", + "summary": "", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Create\u0020a\u0020database\u0020in\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_createDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AdropDatabaseIfExists\u0028\u0029", + "name": "dropDatabaseIfExists", + "summary": "Drop\u0020a\u0020database\u0020from\u0020the\u0020schema\u0020if\u0020the\u0020database\u0020exists.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_dropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AhasTable\u0028\u0029", + "name": "hasTable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020table\u0020exists.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_hasTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AgetColumnListing\u0028\u0029", + "name": "getColumnListing", + "summary": "Get\u0020the\u0020column\u0020listing\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_getColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AdropAllTables\u0028\u0029", + "name": "dropAllTables", + "summary": "Drop\u0020all\u0020tables\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_dropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AdropAllViews\u0028\u0029", + "name": "dropAllViews", + "summary": "Drop\u0020all\u0020views\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_dropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AgetAllTables\u0028\u0029", + "name": "getAllTables", + "summary": "Get\u0020all\u0020of\u0020the\u0020table\u0020names\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_getAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlBuilder\u003A\u003AgetAllViews\u0028\u0029", + "name": "getAllViews", + "summary": "Get\u0020all\u0020of\u0020the\u0020view\u0020names\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-MySqlBuilder.html#method_getAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState", + "name": "MySqlSchemaState", + "summary": "", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020database\u0027s\u0020schema\u0020into\u0020a\u0020file.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003AremoveAutoIncrementingState\u0028\u0029", + "name": "removeAutoIncrementingState", + "summary": "Remove\u0020the\u0020auto\u002Dincrementing\u0020state\u0020from\u0020the\u0020given\u0020schema\u0020dump.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_removeAutoIncrementingState" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003AappendMigrationData\u0028\u0029", + "name": "appendMigrationData", + "summary": "Append\u0020the\u0020migration\u0020data\u0020to\u0020the\u0020schema\u0020dump.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_appendMigrationData" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020given\u0020schema\u0020file\u0020into\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_load" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003AbaseDumpCommand\u0028\u0029", + "name": "baseDumpCommand", + "summary": "Get\u0020the\u0020base\u0020dump\u0020command\u0020arguments\u0020for\u0020MySQL\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_baseDumpCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003AconnectionString\u0028\u0029", + "name": "connectionString", + "summary": "Generate\u0020a\u0020basic\u0020connection\u0020string\u0020\u0028\u002D\u002Dsocket,\u0020\u002D\u002Dhost,\u0020\u002D\u002Dport,\u0020\u002D\u002Duser,\u0020\u002D\u002Dpassword\u0029\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_connectionString" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003AbaseVariables\u0028\u0029", + "name": "baseVariables", + "summary": "Get\u0020the\u0020base\u0020variables\u0020for\u0020a\u0020dump\u0020\/\u0020load\u0020command.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_baseVariables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\MySqlSchemaState\u003A\u003AexecuteDumpProcess\u0028\u0029", + "name": "executeDumpProcess", + "summary": "Execute\u0020the\u0020given\u0020dump\u0020process.", + "url": "classes/Illuminate-Database-Schema-MySqlSchemaState.html#method_executeDumpProcess" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder", + "name": "PostgresBuilder", + "summary": "", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Create\u0020a\u0020database\u0020in\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_createDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AdropDatabaseIfExists\u0028\u0029", + "name": "dropDatabaseIfExists", + "summary": "Drop\u0020a\u0020database\u0020from\u0020the\u0020schema\u0020if\u0020the\u0020database\u0020exists.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_dropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AhasTable\u0028\u0029", + "name": "hasTable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020table\u0020exists.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_hasTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AdropAllTables\u0028\u0029", + "name": "dropAllTables", + "summary": "Drop\u0020all\u0020tables\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_dropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AdropAllViews\u0028\u0029", + "name": "dropAllViews", + "summary": "Drop\u0020all\u0020views\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_dropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AdropAllTypes\u0028\u0029", + "name": "dropAllTypes", + "summary": "Drop\u0020all\u0020types\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_dropAllTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AgetAllTables\u0028\u0029", + "name": "getAllTables", + "summary": "Get\u0020all\u0020of\u0020the\u0020table\u0020names\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_getAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AgetAllViews\u0028\u0029", + "name": "getAllViews", + "summary": "Get\u0020all\u0020of\u0020the\u0020view\u0020names\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_getAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AgetAllTypes\u0028\u0029", + "name": "getAllTypes", + "summary": "Get\u0020all\u0020of\u0020the\u0020type\u0020names\u0020for\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_getAllTypes" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AgetColumnListing\u0028\u0029", + "name": "getColumnListing", + "summary": "Get\u0020the\u0020column\u0020listing\u0020for\u0020a\u0020given\u0020table.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_getColumnListing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresBuilder\u003A\u003AparseSchemaAndTable\u0028\u0029", + "name": "parseSchemaAndTable", + "summary": "Parse\u0020the\u0020table\u0020name\u0020and\u0020extract\u0020the\u0020schema\u0020and\u0020table.", + "url": "classes/Illuminate-Database-Schema-PostgresBuilder.html#method_parseSchemaAndTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresSchemaState", + "name": "PostgresSchemaState", + "summary": "", + "url": "classes/Illuminate-Database-Schema-PostgresSchemaState.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresSchemaState\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020database\u0027s\u0020schema\u0020into\u0020a\u0020file.", + "url": "classes/Illuminate-Database-Schema-PostgresSchemaState.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresSchemaState\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020given\u0020schema\u0020file\u0020into\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-PostgresSchemaState.html#method_load" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresSchemaState\u003A\u003AbaseDumpCommand\u0028\u0029", + "name": "baseDumpCommand", + "summary": "Get\u0020the\u0020base\u0020dump\u0020command\u0020arguments\u0020for\u0020PostgreSQL\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Database-Schema-PostgresSchemaState.html#method_baseDumpCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\PostgresSchemaState\u003A\u003AbaseVariables\u0028\u0029", + "name": "baseVariables", + "summary": "Get\u0020the\u0020base\u0020variables\u0020for\u0020a\u0020dump\u0020\/\u0020load\u0020command.", + "url": "classes/Illuminate-Database-Schema-PostgresSchemaState.html#method_baseVariables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState", + "name": "SchemaState", + "summary": "", + "url": "classes/Illuminate-Database-Schema-SchemaState.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020dumper\u0020instance.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020database\u0027s\u0020schema\u0020into\u0020a\u0020file.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020given\u0020schema\u0020file\u0020into\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#method_load" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003AmakeProcess\u0028\u0029", + "name": "makeProcess", + "summary": "Create\u0020a\u0020new\u0020process\u0020instance.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#method_makeProcess" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003AwithMigrationTable\u0028\u0029", + "name": "withMigrationTable", + "summary": "Specify\u0020the\u0020name\u0020of\u0020the\u0020application\u0027s\u0020migration\u0020table.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#method_withMigrationTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003AhandleOutputUsing\u0028\u0029", + "name": "handleOutputUsing", + "summary": "Specify\u0020the\u0020callback\u0020that\u0020should\u0020be\u0020used\u0020to\u0020handle\u0020process\u0020output.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#method_handleOutputUsing" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#property_files" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003A\u0024migrationTable", + "name": "migrationTable", + "summary": "The\u0020name\u0020of\u0020the\u0020application\u0027s\u0020migration\u0020table.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#property_migrationTable" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003A\u0024processFactory", + "name": "processFactory", + "summary": "The\u0020process\u0020factory\u0020callback.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#property_processFactory" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SchemaState\u003A\u003A\u0024output", + "name": "output", + "summary": "The\u0020output\u0020callable\u0020instance.", + "url": "classes/Illuminate-Database-Schema-SchemaState.html#property_output" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SQLiteBuilder", + "name": "SQLiteBuilder", + "summary": "", + "url": "classes/Illuminate-Database-Schema-SQLiteBuilder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SQLiteBuilder\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Create\u0020a\u0020database\u0020in\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-SQLiteBuilder.html#method_createDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SQLiteBuilder\u003A\u003AdropDatabaseIfExists\u0028\u0029", + "name": "dropDatabaseIfExists", + "summary": "Drop\u0020a\u0020database\u0020from\u0020the\u0020schema\u0020if\u0020the\u0020database\u0020exists.", + "url": "classes/Illuminate-Database-Schema-SQLiteBuilder.html#method_dropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SQLiteBuilder\u003A\u003AdropAllTables\u0028\u0029", + "name": "dropAllTables", + "summary": "Drop\u0020all\u0020tables\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-SQLiteBuilder.html#method_dropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SQLiteBuilder\u003A\u003AdropAllViews\u0028\u0029", + "name": "dropAllViews", + "summary": "Drop\u0020all\u0020views\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-SQLiteBuilder.html#method_dropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SQLiteBuilder\u003A\u003ArefreshDatabaseFile\u0028\u0029", + "name": "refreshDatabaseFile", + "summary": "Empty\u0020the\u0020database\u0020file.", + "url": "classes/Illuminate-Database-Schema-SQLiteBuilder.html#method_refreshDatabaseFile" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqliteSchemaState", + "name": "SqliteSchemaState", + "summary": "", + "url": "classes/Illuminate-Database-Schema-SqliteSchemaState.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqliteSchemaState\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020database\u0027s\u0020schema\u0020into\u0020a\u0020file.", + "url": "classes/Illuminate-Database-Schema-SqliteSchemaState.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqliteSchemaState\u003A\u003AappendMigrationData\u0028\u0029", + "name": "appendMigrationData", + "summary": "Append\u0020the\u0020migration\u0020data\u0020to\u0020the\u0020schema\u0020dump.", + "url": "classes/Illuminate-Database-Schema-SqliteSchemaState.html#method_appendMigrationData" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqliteSchemaState\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020given\u0020schema\u0020file\u0020into\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-SqliteSchemaState.html#method_load" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqliteSchemaState\u003A\u003AbaseCommand\u0028\u0029", + "name": "baseCommand", + "summary": "Get\u0020the\u0020base\u0020sqlite\u0020command\u0020arguments\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-Database-Schema-SqliteSchemaState.html#method_baseCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqliteSchemaState\u003A\u003AbaseVariables\u0028\u0029", + "name": "baseVariables", + "summary": "Get\u0020the\u0020base\u0020variables\u0020for\u0020a\u0020dump\u0020\/\u0020load\u0020command.", + "url": "classes/Illuminate-Database-Schema-SqliteSchemaState.html#method_baseVariables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqlServerBuilder", + "name": "SqlServerBuilder", + "summary": "", + "url": "classes/Illuminate-Database-Schema-SqlServerBuilder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqlServerBuilder\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "Create\u0020a\u0020database\u0020in\u0020the\u0020schema.", + "url": "classes/Illuminate-Database-Schema-SqlServerBuilder.html#method_createDatabase" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqlServerBuilder\u003A\u003AdropDatabaseIfExists\u0028\u0029", + "name": "dropDatabaseIfExists", + "summary": "Drop\u0020a\u0020database\u0020from\u0020the\u0020schema\u0020if\u0020the\u0020database\u0020exists.", + "url": "classes/Illuminate-Database-Schema-SqlServerBuilder.html#method_dropDatabaseIfExists" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqlServerBuilder\u003A\u003AdropAllTables\u0028\u0029", + "name": "dropAllTables", + "summary": "Drop\u0020all\u0020tables\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-SqlServerBuilder.html#method_dropAllTables" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\SqlServerBuilder\u003A\u003AdropAllViews\u0028\u0029", + "name": "dropAllViews", + "summary": "Drop\u0020all\u0020views\u0020from\u0020the\u0020database.", + "url": "classes/Illuminate-Database-Schema-SqlServerBuilder.html#method_dropAllViews" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder", + "name": "Seeder", + "summary": "", + "url": "classes/Illuminate-Database-Seeder.html" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Run\u0020the\u0020given\u0020seeder\u0020class.", + "url": "classes/Illuminate-Database-Seeder.html#method_call" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003AcallWith\u0028\u0029", + "name": "callWith", + "summary": "Run\u0020the\u0020given\u0020seeder\u0020class.", + "url": "classes/Illuminate-Database-Seeder.html#method_callWith" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003AcallSilent\u0028\u0029", + "name": "callSilent", + "summary": "Silently\u0020run\u0020the\u0020given\u0020seeder\u0020class.", + "url": "classes/Illuminate-Database-Seeder.html#method_callSilent" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020an\u0020instance\u0020of\u0020the\u0020given\u0020seeder\u0020class.", + "url": "classes/Illuminate-Database-Seeder.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "Set\u0020the\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Database-Seeder.html#method_setContainer" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003AsetCommand\u0028\u0029", + "name": "setCommand", + "summary": "Set\u0020the\u0020console\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Seeder.html#method_setCommand" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "Run\u0020the\u0020database\u0020seeds.", + "url": "classes/Illuminate-Database-Seeder.html#method___invoke" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020container\u0020instance.", + "url": "classes/Illuminate-Database-Seeder.html#property_container" + }, { + "fqsen": "\\Illuminate\\Database\\Seeder\u003A\u003A\u0024command", + "name": "command", + "summary": "The\u0020console\u0020command\u0020instance.", + "url": "classes/Illuminate-Database-Seeder.html#property_command" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection", + "name": "SQLiteConnection", + "summary": "", + "url": "classes/Illuminate-Database-SQLiteConnection.html" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020database\u0020connection\u0020instance.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetDefaultQueryGrammar\u0028\u0029", + "name": "getDefaultQueryGrammar", + "summary": "Get\u0020the\u0020default\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getDefaultQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetSchemaBuilder\u0028\u0029", + "name": "getSchemaBuilder", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getSchemaBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetDefaultSchemaGrammar\u0028\u0029", + "name": "getDefaultSchemaGrammar", + "summary": "Get\u0020the\u0020default\u0020schema\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getDefaultSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetSchemaState\u0028\u0029", + "name": "getSchemaState", + "summary": "Get\u0020the\u0020schema\u0020state\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getSchemaState" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetDefaultPostProcessor\u0028\u0029", + "name": "getDefaultPostProcessor", + "summary": "Get\u0020the\u0020default\u0020post\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getDefaultPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetDoctrineDriver\u0028\u0029", + "name": "getDoctrineDriver", + "summary": "Get\u0020the\u0020Doctrine\u0020DBAL\u0020driver.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getDoctrineDriver" + }, { + "fqsen": "\\Illuminate\\Database\\SQLiteConnection\u003A\u003AgetForeignKeyConstraintsConfigurationValue\u0028\u0029", + "name": "getForeignKeyConstraintsConfigurationValue", + "summary": "Get\u0020the\u0020database\u0020connection\u0020foreign\u0020key\u0020constraints\u0020configuration\u0020option.", + "url": "classes/Illuminate-Database-SQLiteConnection.html#method_getForeignKeyConstraintsConfigurationValue" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection", + "name": "SqlServerConnection", + "summary": "", + "url": "classes/Illuminate-Database-SqlServerConnection.html" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Execute\u0020a\u0020Closure\u0020within\u0020a\u0020transaction.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_transaction" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003AgetDefaultQueryGrammar\u0028\u0029", + "name": "getDefaultQueryGrammar", + "summary": "Get\u0020the\u0020default\u0020query\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_getDefaultQueryGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003AgetSchemaBuilder\u0028\u0029", + "name": "getSchemaBuilder", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_getSchemaBuilder" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003AgetDefaultSchemaGrammar\u0028\u0029", + "name": "getDefaultSchemaGrammar", + "summary": "Get\u0020the\u0020default\u0020schema\u0020grammar\u0020instance.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_getDefaultSchemaGrammar" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003AgetSchemaState\u0028\u0029", + "name": "getSchemaState", + "summary": "Get\u0020the\u0020schema\u0020state\u0020for\u0020the\u0020connection.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_getSchemaState" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003AgetDefaultPostProcessor\u0028\u0029", + "name": "getDefaultPostProcessor", + "summary": "Get\u0020the\u0020default\u0020post\u0020processor\u0020instance.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_getDefaultPostProcessor" + }, { + "fqsen": "\\Illuminate\\Database\\SqlServerConnection\u003A\u003AgetDoctrineDriver\u0028\u0029", + "name": "getDoctrineDriver", + "summary": "Get\u0020the\u0020Doctrine\u0020DBAL\u0020driver.", + "url": "classes/Illuminate-Database-SqlServerConnection.html#method_getDoctrineDriver" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener", + "name": "CallQueuedListener", + "summary": "", + "url": "classes/Illuminate-Events-CallQueuedListener.html" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020job\u0020instance.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Handle\u0020the\u0020queued\u0020job.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003AsetJobInstanceIfNecessary\u0028\u0029", + "name": "setJobInstanceIfNecessary", + "summary": "Set\u0020the\u0020job\u0020instance\u0020of\u0020the\u0020given\u0020class\u0020if\u0020necessary.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method_setJobInstanceIfNecessary" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003Afailed\u0028\u0029", + "name": "failed", + "summary": "Call\u0020the\u0020failed\u0020method\u0020on\u0020the\u0020job\u0020instance.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method_failed" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003AprepareData\u0028\u0029", + "name": "prepareData", + "summary": "Unserialize\u0020the\u0020data\u0020if\u0020needed.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method_prepareData" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003AdisplayName\u0028\u0029", + "name": "displayName", + "summary": "Get\u0020the\u0020display\u0020name\u0020for\u0020the\u0020queued\u0020job.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method_displayName" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Prepare\u0020the\u0020instance\u0020for\u0020cloning.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#method___clone" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024class", + "name": "class", + "summary": "The\u0020listener\u0020class\u0020name.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_class" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020listener\u0020method.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_method" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024data", + "name": "data", + "summary": "The\u0020data\u0020to\u0020be\u0020passed\u0020to\u0020the\u0020listener.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_data" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024tries", + "name": "tries", + "summary": "The\u0020number\u0020of\u0020times\u0020the\u0020job\u0020may\u0020be\u0020attempted.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_tries" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024maxExceptions", + "name": "maxExceptions", + "summary": "The\u0020maximum\u0020number\u0020of\u0020exceptions\u0020allowed,\u0020regardless\u0020of\u0020attempts.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_maxExceptions" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024backoff", + "name": "backoff", + "summary": "The\u0020number\u0020of\u0020seconds\u0020to\u0020wait\u0020before\u0020retrying\u0020a\u0020job\u0020that\u0020encountered\u0020an\u0020uncaught\u0020exception.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_backoff" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024retryUntil", + "name": "retryUntil", + "summary": "The\u0020timestamp\u0020indicating\u0020when\u0020the\u0020job\u0020should\u0020timeout.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_retryUntil" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024timeout", + "name": "timeout", + "summary": "The\u0020number\u0020of\u0020seconds\u0020the\u0020job\u0020can\u0020run\u0020before\u0020timing\u0020out.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_timeout" + }, { + "fqsen": "\\Illuminate\\Events\\CallQueuedListener\u003A\u003A\u0024shouldBeEncrypted", + "name": "shouldBeEncrypted", + "summary": "Indicates\u0020if\u0020the\u0020job\u0020should\u0020be\u0020encrypted.", + "url": "classes/Illuminate-Events-CallQueuedListener.html#property_shouldBeEncrypted" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher", + "name": "Dispatcher", + "summary": "", + "url": "classes/Illuminate-Events-Dispatcher.html" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Events-Dispatcher.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Alisten\u0028\u0029", + "name": "listen", + "summary": "Register\u0020an\u0020event\u0020listener\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_listen" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AsetupWildcardListen\u0028\u0029", + "name": "setupWildcardListen", + "summary": "Setup\u0020a\u0020wildcard\u0020listener\u0020callback.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_setupWildcardListen" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AhasListeners\u0028\u0029", + "name": "hasListeners", + "summary": "Determine\u0020if\u0020a\u0020given\u0020event\u0020has\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_hasListeners" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AhasWildcardListeners\u0028\u0029", + "name": "hasWildcardListeners", + "summary": "Determine\u0020if\u0020the\u0020given\u0020event\u0020has\u0020any\u0020wildcard\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_hasWildcardListeners" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Register\u0020an\u0020event\u0020and\u0020payload\u0020to\u0020be\u0020fired\u0020later.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_push" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020a\u0020set\u0020of\u0020pushed\u0020events.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Asubscribe\u0028\u0029", + "name": "subscribe", + "summary": "Register\u0020an\u0020event\u0020subscriber\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_subscribe" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AresolveSubscriber\u0028\u0029", + "name": "resolveSubscriber", + "summary": "Resolve\u0020the\u0020subscriber\u0020instance.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_resolveSubscriber" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Auntil\u0028\u0029", + "name": "until", + "summary": "Fire\u0020an\u0020event\u0020until\u0020the\u0020first\u0020non\u002Dnull\u0020response\u0020is\u0020returned.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_until" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Fire\u0020an\u0020event\u0020and\u0020call\u0020the\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AparseEventAndPayload\u0028\u0029", + "name": "parseEventAndPayload", + "summary": "Parse\u0020the\u0020given\u0020event\u0020and\u0020payload\u0020and\u0020prepare\u0020them\u0020for\u0020dispatching.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_parseEventAndPayload" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AshouldBroadcast\u0028\u0029", + "name": "shouldBroadcast", + "summary": "Determine\u0020if\u0020the\u0020payload\u0020has\u0020a\u0020broadcastable\u0020event.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_shouldBroadcast" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AbroadcastWhen\u0028\u0029", + "name": "broadcastWhen", + "summary": "Check\u0020if\u0020the\u0020event\u0020should\u0020be\u0020broadcasted\u0020by\u0020the\u0020condition.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_broadcastWhen" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AbroadcastEvent\u0028\u0029", + "name": "broadcastEvent", + "summary": "Broadcast\u0020the\u0020given\u0020event\u0020class.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_broadcastEvent" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AgetListeners\u0028\u0029", + "name": "getListeners", + "summary": "Get\u0020all\u0020of\u0020the\u0020listeners\u0020for\u0020a\u0020given\u0020event\u0020name.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_getListeners" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AgetWildcardListeners\u0028\u0029", + "name": "getWildcardListeners", + "summary": "Get\u0020the\u0020wildcard\u0020listeners\u0020for\u0020the\u0020event.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_getWildcardListeners" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AaddInterfaceListeners\u0028\u0029", + "name": "addInterfaceListeners", + "summary": "Add\u0020the\u0020listeners\u0020for\u0020the\u0020event\u0027s\u0020interfaces\u0020to\u0020the\u0020given\u0020array.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_addInterfaceListeners" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AmakeListener\u0028\u0029", + "name": "makeListener", + "summary": "Register\u0020an\u0020event\u0020listener\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_makeListener" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AcreateClassListener\u0028\u0029", + "name": "createClassListener", + "summary": "Create\u0020a\u0020class\u0020based\u0020listener\u0020using\u0020the\u0020IoC\u0020container.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_createClassListener" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AcreateClassCallable\u0028\u0029", + "name": "createClassCallable", + "summary": "Create\u0020the\u0020class\u0020based\u0020event\u0020callable.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_createClassCallable" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AparseClassCallable\u0028\u0029", + "name": "parseClassCallable", + "summary": "Parse\u0020the\u0020class\u0020listener\u0020into\u0020class\u0020and\u0020method.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_parseClassCallable" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AhandlerShouldBeQueued\u0028\u0029", + "name": "handlerShouldBeQueued", + "summary": "Determine\u0020if\u0020the\u0020event\u0020handler\u0020class\u0020should\u0020be\u0020queued.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_handlerShouldBeQueued" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AcreateQueuedHandlerCallable\u0028\u0029", + "name": "createQueuedHandlerCallable", + "summary": "Create\u0020a\u0020callable\u0020for\u0020putting\u0020an\u0020event\u0020handler\u0020on\u0020the\u0020queue.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_createQueuedHandlerCallable" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AhandlerShouldBeDispatchedAfterDatabaseTransactions\u0028\u0029", + "name": "handlerShouldBeDispatchedAfterDatabaseTransactions", + "summary": "Determine\u0020if\u0020the\u0020given\u0020event\u0020handler\u0020should\u0020be\u0020dispatched\u0020after\u0020all\u0020database\u0020transactions\u0020have\u0020committed.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_handlerShouldBeDispatchedAfterDatabaseTransactions" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AcreateCallbackForListenerRunningAfterCommits\u0028\u0029", + "name": "createCallbackForListenerRunningAfterCommits", + "summary": "Create\u0020a\u0020callable\u0020for\u0020dispatching\u0020a\u0020listener\u0020after\u0020database\u0020transactions.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_createCallbackForListenerRunningAfterCommits" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AhandlerWantsToBeQueued\u0028\u0029", + "name": "handlerWantsToBeQueued", + "summary": "Determine\u0020if\u0020the\u0020event\u0020handler\u0020wants\u0020to\u0020be\u0020queued.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_handlerWantsToBeQueued" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AqueueHandler\u0028\u0029", + "name": "queueHandler", + "summary": "Queue\u0020the\u0020handler\u0020class.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_queueHandler" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AcreateListenerAndJob\u0028\u0029", + "name": "createListenerAndJob", + "summary": "Create\u0020the\u0020listener\u0020and\u0020job\u0020for\u0020a\u0020queued\u0020listener.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_createListenerAndJob" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003ApropagateListenerOptions\u0028\u0029", + "name": "propagateListenerOptions", + "summary": "Propagate\u0020listener\u0020options\u0020to\u0020the\u0020job.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_propagateListenerOptions" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020a\u0020set\u0020of\u0020listeners\u0020from\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AforgetPushed\u0028\u0029", + "name": "forgetPushed", + "summary": "Forget\u0020all\u0020of\u0020the\u0020pushed\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_forgetPushed" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AresolveQueue\u0028\u0029", + "name": "resolveQueue", + "summary": "Get\u0020the\u0020queue\u0020implementation\u0020from\u0020the\u0020resolver.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_resolveQueue" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003AsetQueueResolver\u0028\u0029", + "name": "setQueueResolver", + "summary": "Set\u0020the\u0020queue\u0020resolver\u0020implementation.", + "url": "classes/Illuminate-Events-Dispatcher.html#method_setQueueResolver" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Events-Dispatcher.html#property_container" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003A\u0024listeners", + "name": "listeners", + "summary": "The\u0020registered\u0020event\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#property_listeners" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003A\u0024wildcards", + "name": "wildcards", + "summary": "The\u0020wildcard\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#property_wildcards" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003A\u0024wildcardsCache", + "name": "wildcardsCache", + "summary": "The\u0020cached\u0020wildcard\u0020listeners.", + "url": "classes/Illuminate-Events-Dispatcher.html#property_wildcardsCache" + }, { + "fqsen": "\\Illuminate\\Events\\Dispatcher\u003A\u003A\u0024queueResolver", + "name": "queueResolver", + "summary": "The\u0020queue\u0020resolver\u0020instance.", + "url": "classes/Illuminate-Events-Dispatcher.html#property_queueResolver" + }, { + "fqsen": "\\Illuminate\\Events\\EventServiceProvider", + "name": "EventServiceProvider", + "summary": "", + "url": "classes/Illuminate-Events-EventServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Events\\EventServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Events-EventServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Events\\queueable\u0028\u0029", + "name": "queueable", + "summary": "Create\u0020a\u0020new\u0020queued\u0020Closure\u0020event\u0020listener.", + "url": "namespaces/illuminate-events.html#function_queueable" + }, { + "fqsen": "\\Illuminate\\Events\\InvokeQueuedClosure", + "name": "InvokeQueuedClosure", + "summary": "", + "url": "classes/Illuminate-Events-InvokeQueuedClosure.html" + }, { + "fqsen": "\\Illuminate\\Events\\InvokeQueuedClosure\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Handle\u0020the\u0020event.", + "url": "classes/Illuminate-Events-InvokeQueuedClosure.html#method_handle" + }, { + "fqsen": "\\Illuminate\\Events\\InvokeQueuedClosure\u003A\u003Afailed\u0028\u0029", + "name": "failed", + "summary": "Handle\u0020a\u0020job\u0020failure.", + "url": "classes/Illuminate-Events-InvokeQueuedClosure.html#method_failed" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher", + "name": "NullDispatcher", + "summary": "", + "url": "classes/Illuminate-Events-NullDispatcher.html" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020dispatcher\u0020instance\u0020that\u0020does\u0020not\u0020fire.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Don\u0027t\u0020fire\u0020an\u0020event.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Don\u0027t\u0020register\u0020an\u0020event\u0020and\u0020payload\u0020to\u0020be\u0020fired\u0020later.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_push" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Auntil\u0028\u0029", + "name": "until", + "summary": "Don\u0027t\u0020dispatch\u0020an\u0020event.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_until" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Alisten\u0028\u0029", + "name": "listen", + "summary": "Register\u0020an\u0020event\u0020listener\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_listen" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003AhasListeners\u0028\u0029", + "name": "hasListeners", + "summary": "Determine\u0020if\u0020a\u0020given\u0020event\u0020has\u0020listeners.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_hasListeners" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Asubscribe\u0028\u0029", + "name": "subscribe", + "summary": "Register\u0020an\u0020event\u0020subscriber\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_subscribe" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020a\u0020set\u0020of\u0020pushed\u0020events.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020a\u0020set\u0020of\u0020listeners\u0020from\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003AforgetPushed\u0028\u0029", + "name": "forgetPushed", + "summary": "Forget\u0020all\u0020of\u0020the\u0020queued\u0020listeners.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method_forgetPushed" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020pass\u0020method\u0020calls\u0020to\u0020the\u0020underlying\u0020dispatcher.", + "url": "classes/Illuminate-Events-NullDispatcher.html#method___call" + }, { + "fqsen": "\\Illuminate\\Events\\NullDispatcher\u003A\u003A\u0024dispatcher", + "name": "dispatcher", + "summary": "The\u0020underlying\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-Events-NullDispatcher.html#property_dispatcher" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure", + "name": "QueuedClosure", + "summary": "", + "url": "classes/Illuminate-Events-QueuedClosure.html" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020queued\u0020closure\u0020event\u0020listener\u0020resolver.", + "url": "classes/Illuminate-Events-QueuedClosure.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003AonConnection\u0028\u0029", + "name": "onConnection", + "summary": "Set\u0020the\u0020desired\u0020connection\u0020for\u0020the\u0020job.", + "url": "classes/Illuminate-Events-QueuedClosure.html#method_onConnection" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003AonQueue\u0028\u0029", + "name": "onQueue", + "summary": "Set\u0020the\u0020desired\u0020queue\u0020for\u0020the\u0020job.", + "url": "classes/Illuminate-Events-QueuedClosure.html#method_onQueue" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003A\u0024delay", + "name": "delay", + "summary": "The\u0020number\u0020of\u0020seconds\u0020before\u0020the\u0020job\u0020should\u0020be\u0020made\u0020available.", + "url": "classes/Illuminate-Events-QueuedClosure.html#property_delay" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003Acatch\u0028\u0029", + "name": "catch", + "summary": "Specify\u0020a\u0020callback\u0020that\u0020should\u0020be\u0020invoked\u0020if\u0020the\u0020queued\u0020listener\u0020job\u0020fails.", + "url": "classes/Illuminate-Events-QueuedClosure.html#method_catch" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020actual\u0020event\u0020listener\u0020callback.", + "url": "classes/Illuminate-Events-QueuedClosure.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003A\u0024closure", + "name": "closure", + "summary": "The\u0020underlying\u0020Closure.", + "url": "classes/Illuminate-Events-QueuedClosure.html#property_closure" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020name\u0020of\u0020the\u0020connection\u0020the\u0020job\u0020should\u0020be\u0020sent\u0020to.", + "url": "classes/Illuminate-Events-QueuedClosure.html#property_connection" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003A\u0024queue", + "name": "queue", + "summary": "The\u0020name\u0020of\u0020the\u0020queue\u0020the\u0020job\u0020should\u0020be\u0020sent\u0020to.", + "url": "classes/Illuminate-Events-QueuedClosure.html#property_queue" + }, { + "fqsen": "\\Illuminate\\Events\\QueuedClosure\u003A\u003A\u0024catchCallbacks", + "name": "catchCallbacks", + "summary": "All\u0020of\u0020the\u0020\u0022catch\u0022\u0020callbacks\u0020for\u0020the\u0020queued\u0020closure.", + "url": "classes/Illuminate-Events-QueuedClosure.html#property_catchCallbacks" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache", + "name": "Cache", + "summary": "", + "url": "classes/Illuminate-Filesystem-Cache.html" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020cache\u0020instance.", + "url": "classes/Illuminate-Filesystem-Cache.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020cache.", + "url": "classes/Illuminate-Filesystem-Cache.html#method_load" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Persist\u0020the\u0020cache.", + "url": "classes/Illuminate-Filesystem-Cache.html#method_save" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020cache\u0020repository\u0020implementation.", + "url": "classes/Illuminate-Filesystem-Cache.html#property_repository" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache\u003A\u003A\u0024key", + "name": "key", + "summary": "The\u0020cache\u0020key.", + "url": "classes/Illuminate-Filesystem-Cache.html#property_key" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Cache\u003A\u003A\u0024expire", + "name": "expire", + "summary": "The\u0020cache\u0020expiration\u0020time\u0020in\u0020seconds.", + "url": "classes/Illuminate-Filesystem-Cache.html#property_expire" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem", + "name": "Filesystem", + "summary": "", + "url": "classes/Illuminate-Filesystem-Filesystem.html" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020a\u0020file\u0020or\u0020directory\u0020exists.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Amissing\u0028\u0029", + "name": "missing", + "summary": "Determine\u0020if\u0020a\u0020file\u0020or\u0020directory\u0020is\u0020missing.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_missing" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020contents\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_get" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AsharedGet\u0028\u0029", + "name": "sharedGet", + "summary": "Get\u0020contents\u0020of\u0020a\u0020file\u0020with\u0020shared\u0020access.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_sharedGet" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AgetRequire\u0028\u0029", + "name": "getRequire", + "summary": "Get\u0020the\u0020returned\u0020value\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_getRequire" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003ArequireOnce\u0028\u0029", + "name": "requireOnce", + "summary": "Require\u0020the\u0020given\u0020file\u0020once.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_requireOnce" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Alines\u0028\u0029", + "name": "lines", + "summary": "Get\u0020the\u0020contents\u0020of\u0020a\u0020file\u0020one\u0020line\u0020at\u0020a\u0020time.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_lines" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Ahash\u0028\u0029", + "name": "hash", + "summary": "Get\u0020the\u0020MD5\u0020hash\u0020of\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_hash" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Write\u0020the\u0020contents\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_put" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Write\u0020the\u0020contents\u0020of\u0020a\u0020file,\u0020replacing\u0020it\u0020atomically\u0020if\u0020it\u0020already\u0020exists.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_replace" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AreplaceInFile\u0028\u0029", + "name": "replaceInFile", + "summary": "Replace\u0020a\u0020given\u0020string\u0020within\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_replaceInFile" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Prepend\u0020to\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Append\u0020to\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_append" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Achmod\u0028\u0029", + "name": "chmod", + "summary": "Get\u0020or\u0020set\u0020UNIX\u0020mode\u0020of\u0020a\u0020file\u0020or\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_chmod" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020file\u0020at\u0020a\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file\u0020to\u0020a\u0020new\u0020location.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_move" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020a\u0020file\u0020to\u0020a\u0020new\u0020location.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_copy" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Alink\u0028\u0029", + "name": "link", + "summary": "Create\u0020a\u0020symlink\u0020to\u0020the\u0020target\u0020file\u0020or\u0020directory.\u0020On\u0020Windows,\u0020a\u0020hard\u0020link\u0020is\u0020created\u0020if\u0020the\u0020target\u0020is\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_link" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003ArelativeLink\u0028\u0029", + "name": "relativeLink", + "summary": "Create\u0020a\u0020relative\u0020symlink\u0020to\u0020the\u0020target\u0020file\u0020or\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_relativeLink" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "Extract\u0020the\u0020file\u0020name\u0020from\u0020a\u0020file\u0020path.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_name" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Abasename\u0028\u0029", + "name": "basename", + "summary": "Extract\u0020the\u0020trailing\u0020name\u0020component\u0020from\u0020a\u0020file\u0020path.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_basename" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Adirname\u0028\u0029", + "name": "dirname", + "summary": "Extract\u0020the\u0020parent\u0020directory\u0020from\u0020a\u0020file\u0020path.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_dirname" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aextension\u0028\u0029", + "name": "extension", + "summary": "Extract\u0020the\u0020file\u0020extension\u0020from\u0020a\u0020file\u0020path.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_extension" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AguessExtension\u0028\u0029", + "name": "guessExtension", + "summary": "Guess\u0020the\u0020file\u0020extension\u0020from\u0020the\u0020mime\u002Dtype\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_guessExtension" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Atype\u0028\u0029", + "name": "type", + "summary": "Get\u0020the\u0020file\u0020type\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_type" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020the\u0020mime\u002Dtype\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_mimeType" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020file\u0020size\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_size" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AlastModified\u0028\u0029", + "name": "lastModified", + "summary": "Get\u0020the\u0020file\u0027s\u0020last\u0020modification\u0020time.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_lastModified" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AisDirectory\u0028\u0029", + "name": "isDirectory", + "summary": "Determine\u0020if\u0020the\u0020given\u0020path\u0020is\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_isDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AisReadable\u0028\u0029", + "name": "isReadable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020path\u0020is\u0020readable.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_isReadable" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AisWritable\u0028\u0029", + "name": "isWritable", + "summary": "Determine\u0020if\u0020the\u0020given\u0020path\u0020is\u0020writable.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_isWritable" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AisFile\u0028\u0029", + "name": "isFile", + "summary": "Determine\u0020if\u0020the\u0020given\u0020path\u0020is\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_isFile" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Aglob\u0028\u0029", + "name": "glob", + "summary": "Find\u0020path\u0020names\u0020matching\u0020a\u0020given\u0020pattern.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_glob" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020files\u0020in\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_files" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AallFiles\u0028\u0029", + "name": "allFiles", + "summary": "Get\u0020all\u0020of\u0020the\u0020files\u0020from\u0020the\u0020given\u0020directory\u0020\u0028recursive\u0029.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_allFiles" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003Adirectories\u0028\u0029", + "name": "directories", + "summary": "Get\u0020all\u0020of\u0020the\u0020directories\u0020within\u0020a\u0020given\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_directories" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AensureDirectoryExists\u0028\u0029", + "name": "ensureDirectoryExists", + "summary": "Ensure\u0020a\u0020directory\u0020exists.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_ensureDirectoryExists" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AmakeDirectory\u0028\u0029", + "name": "makeDirectory", + "summary": "Create\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_makeDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AmoveDirectory\u0028\u0029", + "name": "moveDirectory", + "summary": "Move\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_moveDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AcopyDirectory\u0028\u0029", + "name": "copyDirectory", + "summary": "Copy\u0020a\u0020directory\u0020from\u0020one\u0020location\u0020to\u0020another.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_copyDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AdeleteDirectory\u0028\u0029", + "name": "deleteDirectory", + "summary": "Recursively\u0020delete\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_deleteDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AdeleteDirectories\u0028\u0029", + "name": "deleteDirectories", + "summary": "Remove\u0020all\u0020of\u0020the\u0020directories\u0020within\u0020a\u0020given\u0020directory.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_deleteDirectories" + }, { + "fqsen": "\\Illuminate\\Filesystem\\Filesystem\u003A\u003AcleanDirectory\u0028\u0029", + "name": "cleanDirectory", + "summary": "Empty\u0020the\u0020specified\u0020directory\u0020of\u0020all\u0020files\u0020and\u0020folders.", + "url": "classes/Illuminate-Filesystem-Filesystem.html#method_cleanDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter", + "name": "FilesystemAdapter", + "summary": "", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020filesystem\u0020adapter\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AassertExists\u0028\u0029", + "name": "assertExists", + "summary": "Assert\u0020that\u0020the\u0020given\u0020file\u0020exists.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_assertExists" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AassertMissing\u0028\u0029", + "name": "assertMissing", + "summary": "Assert\u0020that\u0020the\u0020given\u0020file\u0020does\u0020not\u0020exist.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_assertMissing" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020a\u0020file\u0020exists.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_exists" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Amissing\u0028\u0029", + "name": "missing", + "summary": "Determine\u0020if\u0020a\u0020file\u0020or\u0020directory\u0020is\u0020missing.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_missing" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Apath\u0028\u0029", + "name": "path", + "summary": "Get\u0020the\u0020full\u0020path\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020\u0022short\u0022\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_path" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020contents\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_get" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aresponse\u0028\u0029", + "name": "response", + "summary": "Create\u0020a\u0020streamed\u0020response\u0020for\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_response" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Adownload\u0028\u0029", + "name": "download", + "summary": "Create\u0020a\u0020streamed\u0020download\u0020response\u0020for\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_download" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AfallbackName\u0028\u0029", + "name": "fallbackName", + "summary": "Convert\u0020the\u0020string\u0020to\u0020ASCII\u0020characters\u0020that\u0020are\u0020equivalent\u0020to\u0020the\u0020given\u0020name.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_fallbackName" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Write\u0020the\u0020contents\u0020of\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_put" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AputFile\u0028\u0029", + "name": "putFile", + "summary": "Store\u0020the\u0020uploaded\u0020file\u0020on\u0020the\u0020disk.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_putFile" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AputFileAs\u0028\u0029", + "name": "putFileAs", + "summary": "Store\u0020the\u0020uploaded\u0020file\u0020on\u0020the\u0020disk\u0020with\u0020a\u0020given\u0020name.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_putFileAs" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AgetVisibility\u0028\u0029", + "name": "getVisibility", + "summary": "Get\u0020the\u0020visibility\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_getVisibility" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AsetVisibility\u0028\u0029", + "name": "setVisibility", + "summary": "Set\u0020the\u0020visibility\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_setVisibility" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Prepend\u0020to\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Append\u0020to\u0020a\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_append" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020file\u0020at\u0020a\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020a\u0020file\u0020to\u0020a\u0020new\u0020location.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_copy" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file\u0020to\u0020a\u0020new\u0020location.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_move" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020file\u0020size\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_size" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020the\u0020mime\u002Dtype\u0020of\u0020a\u0020given\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_mimeType" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AlastModified\u0028\u0029", + "name": "lastModified", + "summary": "Get\u0020the\u0020file\u0027s\u0020last\u0020modification\u0020time.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_lastModified" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Aurl\u0028\u0029", + "name": "url", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_url" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AreadStream\u0028\u0029", + "name": "readStream", + "summary": "Get\u0020a\u0020resource\u0020to\u0020read\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_readStream" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AwriteStream\u0028\u0029", + "name": "writeStream", + "summary": "Write\u0020a\u0020new\u0020file\u0020using\u0020a\u0020stream.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_writeStream" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AgetAwsUrl\u0028\u0029", + "name": "getAwsUrl", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_getAwsUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AgetFtpUrl\u0028\u0029", + "name": "getFtpUrl", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_getFtpUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AgetLocalUrl\u0028\u0029", + "name": "getLocalUrl", + "summary": "Get\u0020the\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_getLocalUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AtemporaryUrl\u0028\u0029", + "name": "temporaryUrl", + "summary": "Get\u0020a\u0020temporary\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_temporaryUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AgetAwsTemporaryUrl\u0028\u0029", + "name": "getAwsTemporaryUrl", + "summary": "Get\u0020a\u0020temporary\u0020URL\u0020for\u0020the\u0020file\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_getAwsTemporaryUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AconcatPathToUrl\u0028\u0029", + "name": "concatPathToUrl", + "summary": "Concatenate\u0020a\u0020path\u0020to\u0020a\u0020URL.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_concatPathToUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AreplaceBaseUrl\u0028\u0029", + "name": "replaceBaseUrl", + "summary": "Replace\u0020the\u0020scheme,\u0020host\u0020and\u0020port\u0020of\u0020the\u0020given\u0020UriInterface\u0020with\u0020values\u0020from\u0020the\u0020given\u0020URL.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_replaceBaseUrl" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020files\u0020in\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_files" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AallFiles\u0028\u0029", + "name": "allFiles", + "summary": "Get\u0020all\u0020of\u0020the\u0020files\u0020from\u0020the\u0020given\u0020directory\u0020\u0028recursive\u0029.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_allFiles" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003Adirectories\u0028\u0029", + "name": "directories", + "summary": "Get\u0020all\u0020of\u0020the\u0020directories\u0020within\u0020a\u0020given\u0020directory.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_directories" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AallDirectories\u0028\u0029", + "name": "allDirectories", + "summary": "Get\u0020all\u0020\u0028recursive\u0029\u0020of\u0020the\u0020directories\u0020within\u0020a\u0020given\u0020directory.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_allDirectories" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AmakeDirectory\u0028\u0029", + "name": "makeDirectory", + "summary": "Create\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_makeDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AdeleteDirectory\u0028\u0029", + "name": "deleteDirectory", + "summary": "Recursively\u0020delete\u0020a\u0020directory.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_deleteDirectory" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AflushCache\u0028\u0029", + "name": "flushCache", + "summary": "Flush\u0020the\u0020Flysystem\u0020cache.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_flushCache" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AgetDriver\u0028\u0029", + "name": "getDriver", + "summary": "Get\u0020the\u0020Flysystem\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_getDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AfilterContentsByType\u0028\u0029", + "name": "filterContentsByType", + "summary": "Filter\u0020directory\u0020contents\u0020by\u0020type.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_filterContentsByType" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AparseVisibility\u0028\u0029", + "name": "parseVisibility", + "summary": "Parse\u0020the\u0020given\u0020visibility\u0020value.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_parseVisibility" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003AbuildTemporaryUrlsUsing\u0028\u0029", + "name": "buildTemporaryUrlsUsing", + "summary": "Define\u0020a\u0020custom\u0020temporary\u0020URL\u0020builder\u0020callback.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method_buildTemporaryUrlsUsing" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Pass\u0020dynamic\u0020methods\u0020call\u0020onto\u0020Flysystem.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#method___call" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003A\u0024driver", + "name": "driver", + "summary": "The\u0020Flysystem\u0020filesystem\u0020implementation.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#property_driver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemAdapter\u003A\u003A\u0024temporaryUrlCallback", + "name": "temporaryUrlCallback", + "summary": "The\u0020temporary\u0020URL\u0020builder\u0020callback.", + "url": "classes/Illuminate-Filesystem-FilesystemAdapter.html#property_temporaryUrlCallback" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager", + "name": "FilesystemManager", + "summary": "", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020filesystem\u0020manager\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Adrive\u0028\u0029", + "name": "drive", + "summary": "Get\u0020a\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_drive" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Adisk\u0028\u0029", + "name": "disk", + "summary": "Get\u0020a\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_disk" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Acloud\u0028\u0029", + "name": "cloud", + "summary": "Get\u0020a\u0020default\u0020cloud\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_cloud" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Build\u0020an\u0020on\u002Ddemand\u0020disk.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_build" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Attempt\u0020to\u0020get\u0020the\u0020disk\u0020from\u0020the\u0020local\u0020cache.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_get" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020given\u0020disk.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcallCustomCreator\u0028\u0029", + "name": "callCustomCreator", + "summary": "Call\u0020a\u0020custom\u0020driver\u0020creator.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_callCustomCreator" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcreateLocalDriver\u0028\u0029", + "name": "createLocalDriver", + "summary": "Create\u0020an\u0020instance\u0020of\u0020the\u0020local\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_createLocalDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcreateFtpDriver\u0028\u0029", + "name": "createFtpDriver", + "summary": "Create\u0020an\u0020instance\u0020of\u0020the\u0020ftp\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_createFtpDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcreateSftpDriver\u0028\u0029", + "name": "createSftpDriver", + "summary": "Create\u0020an\u0020instance\u0020of\u0020the\u0020sftp\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_createSftpDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcreateS3Driver\u0028\u0029", + "name": "createS3Driver", + "summary": "Create\u0020an\u0020instance\u0020of\u0020the\u0020Amazon\u0020S3\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_createS3Driver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AformatS3Config\u0028\u0029", + "name": "formatS3Config", + "summary": "Format\u0020the\u0020given\u0020S3\u0020configuration\u0020with\u0020the\u0020default\u0020options.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_formatS3Config" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcreateFlysystem\u0028\u0029", + "name": "createFlysystem", + "summary": "Create\u0020a\u0020Flysystem\u0020instance\u0020with\u0020the\u0020given\u0020adapter.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_createFlysystem" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AcreateCacheStore\u0028\u0029", + "name": "createCacheStore", + "summary": "Create\u0020a\u0020cache\u0020store\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_createCacheStore" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Aadapt\u0028\u0029", + "name": "adapt", + "summary": "Adapt\u0020the\u0020filesystem\u0020implementation.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_adapt" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020the\u0020given\u0020disk\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_set" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AgetConfig\u0028\u0029", + "name": "getConfig", + "summary": "Get\u0020the\u0020filesystem\u0020connection\u0020configuration.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_getConfig" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AgetDefaultDriver\u0028\u0029", + "name": "getDefaultDriver", + "summary": "Get\u0020the\u0020default\u0020driver\u0020name.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_getDefaultDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AgetDefaultCloudDriver\u0028\u0029", + "name": "getDefaultCloudDriver", + "summary": "Get\u0020the\u0020default\u0020cloud\u0020driver\u0020name.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_getDefaultCloudDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AforgetDisk\u0028\u0029", + "name": "forgetDisk", + "summary": "Unset\u0020the\u0020given\u0020disk\u0020instances.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_forgetDisk" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Apurge\u0028\u0029", + "name": "purge", + "summary": "Disconnect\u0020the\u0020given\u0020disk\u0020and\u0020remove\u0020from\u0020local\u0020cache.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_purge" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Register\u0020a\u0020custom\u0020driver\u0020creator\u0020Closure.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003AsetApplication\u0028\u0029", + "name": "setApplication", + "summary": "Set\u0020the\u0020application\u0020instance\u0020used\u0020by\u0020the\u0020manager.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method_setApplication" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020call\u0020the\u0020default\u0020driver\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#method___call" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003A\u0024app", + "name": "app", + "summary": "The\u0020application\u0020instance.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#property_app" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003A\u0024disks", + "name": "disks", + "summary": "The\u0020array\u0020of\u0020resolved\u0020filesystem\u0020drivers.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#property_disks" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemManager\u003A\u003A\u0024customCreators", + "name": "customCreators", + "summary": "The\u0020registered\u0020custom\u0020driver\u0020creators.", + "url": "classes/Illuminate-Filesystem-FilesystemManager.html#property_customCreators" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider", + "name": "FilesystemServiceProvider", + "summary": "", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider\u003A\u003AregisterNativeFilesystem\u0028\u0029", + "name": "registerNativeFilesystem", + "summary": "Register\u0020the\u0020native\u0020filesystem\u0020implementation.", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html#method_registerNativeFilesystem" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider\u003A\u003AregisterFlysystem\u0028\u0029", + "name": "registerFlysystem", + "summary": "Register\u0020the\u0020driver\u0020based\u0020filesystem.", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html#method_registerFlysystem" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider\u003A\u003AregisterManager\u0028\u0029", + "name": "registerManager", + "summary": "Register\u0020the\u0020filesystem\u0020manager.", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html#method_registerManager" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider\u003A\u003AgetDefaultDriver\u0028\u0029", + "name": "getDefaultDriver", + "summary": "Get\u0020the\u0020default\u0020file\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html#method_getDefaultDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\FilesystemServiceProvider\u003A\u003AgetCloudDriver\u0028\u0029", + "name": "getCloudDriver", + "summary": "Get\u0020the\u0020default\u0020cloud\u0020based\u0020file\u0020driver.", + "url": "classes/Illuminate-Filesystem-FilesystemServiceProvider.html#method_getCloudDriver" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile", + "name": "LockableFile", + "summary": "", + "url": "classes/Illuminate-Filesystem-LockableFile.html" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020File\u0020instance.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003AensureDirectoryExists\u0028\u0029", + "name": "ensureDirectoryExists", + "summary": "Create\u0020the\u0020file\u0027s\u0020directory\u0020if\u0020necessary.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_ensureDirectoryExists" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003AcreateResource\u0028\u0029", + "name": "createResource", + "summary": "Create\u0020the\u0020file\u0020resource.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_createResource" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020the\u0020file\u0020contents.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_read" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020file\u0020size.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_size" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_write" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncate\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_truncate" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003AgetSharedLock\u0028\u0029", + "name": "getSharedLock", + "summary": "Get\u0020a\u0020shared\u0020lock\u0020on\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_getSharedLock" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003AgetExclusiveLock\u0028\u0029", + "name": "getExclusiveLock", + "summary": "Get\u0020an\u0020exclusive\u0020lock\u0020on\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_getExclusiveLock" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003AreleaseLock\u0028\u0029", + "name": "releaseLock", + "summary": "Release\u0020the\u0020lock\u0020on\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_releaseLock" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020file.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#method_close" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003A\u0024handle", + "name": "handle", + "summary": "The\u0020file\u0020resource.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#property_handle" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003A\u0024path", + "name": "path", + "summary": "The\u0020file\u0020path.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#property_path" + }, { + "fqsen": "\\Illuminate\\Filesystem\\LockableFile\u003A\u003A\u0024isLocked", + "name": "isLocked", + "summary": "Indicates\u0020if\u0020the\u0020file\u0020is\u0020locked.", + "url": "classes/Illuminate-Filesystem-LockableFile.html#property_isLocked" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable", + "name": "Macroable", + "summary": "", + "url": "classes/Illuminate-Support-Traits-Macroable.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003Amacro\u0028\u0029", + "name": "macro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#method_macro" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003Amixin\u0028\u0029", + "name": "mixin", + "summary": "Mix\u0020another\u0020object\u0020into\u0020the\u0020class.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#method_mixin" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003AhasMacro\u0028\u0029", + "name": "hasMacro", + "summary": "Checks\u0020if\u0020macro\u0020is\u0020registered.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#method_hasMacro" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003AflushMacros\u0028\u0029", + "name": "flushMacros", + "summary": "Flush\u0020the\u0020existing\u0020macros.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#method_flushMacros" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Dynamically\u0020handle\u0020calls\u0020to\u0020the\u0020class.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#method___callStatic" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020handle\u0020calls\u0020to\u0020the\u0020class.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Macroable\u003A\u003A\u0024macros", + "name": "macros", + "summary": "The\u0020registered\u0020string\u0020macros.", + "url": "classes/Illuminate-Support-Traits-Macroable.html#property_macros" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub", + "name": "Hub", + "summary": "", + "url": "classes/Illuminate-Pipeline-Hub.html" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Hub\u0020instance.", + "url": "classes/Illuminate-Pipeline-Hub.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003Adefaults\u0028\u0029", + "name": "defaults", + "summary": "Define\u0020the\u0020default\u0020named\u0020pipeline.", + "url": "classes/Illuminate-Pipeline-Hub.html#method_defaults" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003Apipeline\u0028\u0029", + "name": "pipeline", + "summary": "Define\u0020a\u0020new\u0020named\u0020pipeline.", + "url": "classes/Illuminate-Pipeline-Hub.html#method_pipeline" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003Apipe\u0028\u0029", + "name": "pipe", + "summary": "Send\u0020an\u0020object\u0020through\u0020one\u0020of\u0020the\u0020available\u0020pipelines.", + "url": "classes/Illuminate-Pipeline-Hub.html#method_pipe" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003AgetContainer\u0028\u0029", + "name": "getContainer", + "summary": "Get\u0020the\u0020container\u0020instance\u0020used\u0020by\u0020the\u0020hub.", + "url": "classes/Illuminate-Pipeline-Hub.html#method_getContainer" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "Set\u0020the\u0020container\u0020instance\u0020used\u0020by\u0020the\u0020hub.", + "url": "classes/Illuminate-Pipeline-Hub.html#method_setContainer" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020container\u0020implementation.", + "url": "classes/Illuminate-Pipeline-Hub.html#property_container" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Hub\u003A\u003A\u0024pipelines", + "name": "pipelines", + "summary": "All\u0020of\u0020the\u0020available\u0020pipelines.", + "url": "classes/Illuminate-Pipeline-Hub.html#property_pipelines" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline", + "name": "Pipeline", + "summary": "", + "url": "classes/Illuminate-Pipeline-Pipeline.html" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020class\u0020instance.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Set\u0020the\u0020object\u0020being\u0020sent\u0020through\u0020the\u0020pipeline.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_send" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003Athrough\u0028\u0029", + "name": "through", + "summary": "Set\u0020the\u0020array\u0020of\u0020pipes.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_through" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003Avia\u0028\u0029", + "name": "via", + "summary": "Set\u0020the\u0020method\u0020to\u0020call\u0020on\u0020the\u0020pipes.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_via" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003Athen\u0028\u0029", + "name": "then", + "summary": "Run\u0020the\u0020pipeline\u0020with\u0020a\u0020final\u0020destination\u0020callback.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_then" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AthenReturn\u0028\u0029", + "name": "thenReturn", + "summary": "Run\u0020the\u0020pipeline\u0020and\u0020return\u0020the\u0020result.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_thenReturn" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AprepareDestination\u0028\u0029", + "name": "prepareDestination", + "summary": "Get\u0020the\u0020final\u0020piece\u0020of\u0020the\u0020Closure\u0020onion.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_prepareDestination" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003Acarry\u0028\u0029", + "name": "carry", + "summary": "Get\u0020a\u0020Closure\u0020that\u0020represents\u0020a\u0020slice\u0020of\u0020the\u0020application\u0020onion.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_carry" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AparsePipeString\u0028\u0029", + "name": "parsePipeString", + "summary": "Parse\u0020full\u0020pipe\u0020string\u0020to\u0020get\u0020name\u0020and\u0020parameters.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_parsePipeString" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003A\u0024pipes", + "name": "pipes", + "summary": "The\u0020array\u0020of\u0020class\u0020pipes.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#property_pipes" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AgetContainer\u0028\u0029", + "name": "getContainer", + "summary": "Get\u0020the\u0020container\u0020instance.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_getContainer" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "Set\u0020the\u0020container\u0020instance.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_setContainer" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AhandleCarry\u0028\u0029", + "name": "handleCarry", + "summary": "Handle\u0020the\u0020value\u0020returned\u0020from\u0020each\u0020pipe\u0020before\u0020passing\u0020it\u0020to\u0020the\u0020next.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_handleCarry" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003AhandleException\u0028\u0029", + "name": "handleException", + "summary": "Handle\u0020the\u0020given\u0020exception.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#method_handleException" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020container\u0020implementation.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#property_container" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003A\u0024passable", + "name": "passable", + "summary": "The\u0020object\u0020being\u0020passed\u0020through\u0020the\u0020pipeline.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#property_passable" + }, { + "fqsen": "\\Illuminate\\Pipeline\\Pipeline\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020method\u0020to\u0020call\u0020on\u0020each\u0020pipe.", + "url": "classes/Illuminate-Pipeline-Pipeline.html#property_method" + }, { + "fqsen": "\\Illuminate\\Pipeline\\PipelineServiceProvider", + "name": "PipelineServiceProvider", + "summary": "", + "url": "classes/Illuminate-Pipeline-PipelineServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Pipeline\\PipelineServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Pipeline-PipelineServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Pipeline\\PipelineServiceProvider\u003A\u003Aprovides\u0028\u0029", + "name": "provides", + "summary": "Get\u0020the\u0020services\u0020provided\u0020by\u0020the\u0020provider.", + "url": "classes/Illuminate-Pipeline-PipelineServiceProvider.html#method_provides" + }, { + "fqsen": "\\Illuminate\\Support\\AggregateServiceProvider", + "name": "AggregateServiceProvider", + "summary": "", + "url": "classes/Illuminate-Support-AggregateServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Support\\AggregateServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Support-AggregateServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Support\\AggregateServiceProvider\u003A\u003Aprovides\u0028\u0029", + "name": "provides", + "summary": "Get\u0020the\u0020services\u0020provided\u0020by\u0020the\u0020provider.", + "url": "classes/Illuminate-Support-AggregateServiceProvider.html#method_provides" + }, { + "fqsen": "\\Illuminate\\Support\\AggregateServiceProvider\u003A\u003A\u0024providers", + "name": "providers", + "summary": "The\u0020provider\u0020class\u0020names.", + "url": "classes/Illuminate-Support-AggregateServiceProvider.html#property_providers" + }, { + "fqsen": "\\Illuminate\\Support\\AggregateServiceProvider\u003A\u003A\u0024instances", + "name": "instances", + "summary": "An\u0020array\u0020of\u0020the\u0020service\u0020provider\u0020instances.", + "url": "classes/Illuminate-Support-AggregateServiceProvider.html#property_instances" + }, { + "fqsen": "\\Illuminate\\Support\\Carbon", + "name": "Carbon", + "summary": "A\u0020simple\u0020API\u0020extension\u0020for\u0020DateTime.", + "url": "classes/Illuminate-Support-Carbon.html" + }, { + "fqsen": "\\Illuminate\\Support\\Carbon\u003A\u003AsetTestNow\u0028\u0029", + "name": "setTestNow", + "summary": "Set\u0020a\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.\u0020\u0020The\u0020provided\u0020instance\u0020will\u0020be\u0020returned\nspecifically\u0020under\u0020the\u0020following\u0020conditions\u003A\n\u0020\u0020\u002D\u0020A\u0020call\u0020to\u0020the\u0020static\u0020now\u0028\u0029\u0020method,\u0020ex.\u0020Carbon\u003A\u003Anow\u0028\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020null\u0020\u0028or\u0020blank\u0020string\u0029\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028null\u0029\n\u0020\u0020\u002D\u0020When\u0020the\u0020string\u0020\u0022now\u0022\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028\u0027now\u0027\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020string\u0020containing\u0020the\u0020desired\u0020time\u0020is\u0020passed\u0020to\u0020Carbon\u003A\u003Aparse\u0028\u0029.", + "url": "classes/Illuminate-Support-Carbon.html#method_setTestNow" + }, { + "fqsen": "\\Illuminate\\Support\\Composer", + "name": "Composer", + "summary": "", + "url": "classes/Illuminate-Support-Composer.html" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Composer\u0020manager\u0020instance.", + "url": "classes/Illuminate-Support-Composer.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003AdumpAutoloads\u0028\u0029", + "name": "dumpAutoloads", + "summary": "Regenerate\u0020the\u0020Composer\u0020autoloader\u0020files.", + "url": "classes/Illuminate-Support-Composer.html#method_dumpAutoloads" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003AdumpOptimized\u0028\u0029", + "name": "dumpOptimized", + "summary": "Regenerate\u0020the\u0020optimized\u0020Composer\u0020autoloader\u0020files.", + "url": "classes/Illuminate-Support-Composer.html#method_dumpOptimized" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003AfindComposer\u0028\u0029", + "name": "findComposer", + "summary": "Get\u0020the\u0020composer\u0020command\u0020for\u0020the\u0020environment.", + "url": "classes/Illuminate-Support-Composer.html#method_findComposer" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003AphpBinary\u0028\u0029", + "name": "phpBinary", + "summary": "Get\u0020the\u0020PHP\u0020binary.", + "url": "classes/Illuminate-Support-Composer.html#method_phpBinary" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003AgetProcess\u0028\u0029", + "name": "getProcess", + "summary": "Get\u0020a\u0020new\u0020Symfony\u0020process\u0020instance.", + "url": "classes/Illuminate-Support-Composer.html#method_getProcess" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003AsetWorkingPath\u0028\u0029", + "name": "setWorkingPath", + "summary": "Set\u0020the\u0020working\u0020path\u0020used\u0020by\u0020the\u0020class.", + "url": "classes/Illuminate-Support-Composer.html#method_setWorkingPath" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-Support-Composer.html#property_files" + }, { + "fqsen": "\\Illuminate\\Support\\Composer\u003A\u003A\u0024workingPath", + "name": "workingPath", + "summary": "The\u0020working\u0020path\u0020to\u0020regenerate\u0020from.", + "url": "classes/Illuminate-Support-Composer.html#property_workingPath" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser", + "name": "ConfigurationUrlParser", + "summary": "", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AparseConfiguration\u0028\u0029", + "name": "parseConfiguration", + "summary": "Parse\u0020the\u0020database\u0020configuration,\u0020hydrating\u0020options\u0020using\u0020a\u0020database\u0020configuration\u0020URL\u0020if\u0020possible.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_parseConfiguration" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AgetPrimaryOptions\u0028\u0029", + "name": "getPrimaryOptions", + "summary": "Get\u0020the\u0020primary\u0020database\u0020connection\u0020options.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_getPrimaryOptions" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AgetDriver\u0028\u0029", + "name": "getDriver", + "summary": "Get\u0020the\u0020database\u0020driver\u0020from\u0020the\u0020URL.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_getDriver" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AgetDatabase\u0028\u0029", + "name": "getDatabase", + "summary": "Get\u0020the\u0020database\u0020name\u0020from\u0020the\u0020URL.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_getDatabase" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AgetQueryOptions\u0028\u0029", + "name": "getQueryOptions", + "summary": "Get\u0020all\u0020of\u0020the\u0020additional\u0020database\u0020options\u0020from\u0020the\u0020query\u0020string.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_getQueryOptions" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AparseUrl\u0028\u0029", + "name": "parseUrl", + "summary": "Parse\u0020the\u0020string\u0020URL\u0020to\u0020an\u0020array\u0020of\u0020components.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_parseUrl" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AparseStringsToNativeTypes\u0028\u0029", + "name": "parseStringsToNativeTypes", + "summary": "Convert\u0020string\u0020casted\u0020values\u0020to\u0020their\u0020native\u0020types.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_parseStringsToNativeTypes" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AgetDriverAliases\u0028\u0029", + "name": "getDriverAliases", + "summary": "Get\u0020all\u0020of\u0020the\u0020current\u0020drivers\u0027\u0020aliases.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_getDriverAliases" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003AaddDriverAlias\u0028\u0029", + "name": "addDriverAlias", + "summary": "Add\u0020the\u0020given\u0020driver\u0020alias\u0020to\u0020the\u0020driver\u0020aliases\u0020array.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#method_addDriverAlias" + }, { + "fqsen": "\\Illuminate\\Support\\ConfigurationUrlParser\u003A\u003A\u0024driverAliases", + "name": "driverAliases", + "summary": "The\u0020drivers\u0020aliases\u0020map.", + "url": "classes/Illuminate-Support-ConfigurationUrlParser.html#property_driverAliases" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory", + "name": "DateFactory", + "summary": "", + "url": "classes/Illuminate-Support-DateFactory.html" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003Ause\u0028\u0029", + "name": "use", + "summary": "Use\u0020the\u0020given\u0020handler\u0020when\u0020generating\u0020dates\u0020\u0028class\u0020name,\u0020callable,\u0020or\u0020factory\u0029.", + "url": "classes/Illuminate-Support-DateFactory.html#method_use" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003AuseDefault\u0028\u0029", + "name": "useDefault", + "summary": "Use\u0020the\u0020default\u0020date\u0020class\u0020when\u0020generating\u0020dates.", + "url": "classes/Illuminate-Support-DateFactory.html#method_useDefault" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003AuseCallable\u0028\u0029", + "name": "useCallable", + "summary": "Execute\u0020the\u0020given\u0020callable\u0020on\u0020each\u0020date\u0020creation.", + "url": "classes/Illuminate-Support-DateFactory.html#method_useCallable" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003AuseClass\u0028\u0029", + "name": "useClass", + "summary": "Use\u0020the\u0020given\u0020date\u0020type\u0020\u0028class\u0029\u0020when\u0020generating\u0020dates.", + "url": "classes/Illuminate-Support-DateFactory.html#method_useClass" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003AuseFactory\u0028\u0029", + "name": "useFactory", + "summary": "Use\u0020the\u0020given\u0020Carbon\u0020factory\u0020when\u0020generating\u0020dates.", + "url": "classes/Illuminate-Support-DateFactory.html#method_useFactory" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Handle\u0020dynamic\u0020calls\u0020to\u0020generate\u0020dates.", + "url": "classes/Illuminate-Support-DateFactory.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003ADEFAULT_CLASS_NAME", + "name": "DEFAULT_CLASS_NAME", + "summary": "The\u0020default\u0020class\u0020that\u0020will\u0020be\u0020used\u0020for\u0020all\u0020created\u0020dates.", + "url": "classes/Illuminate-Support-DateFactory.html#constant_DEFAULT_CLASS_NAME" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003A\u0024dateClass", + "name": "dateClass", + "summary": "The\u0020type\u0020\u0028class\u0029\u0020of\u0020dates\u0020that\u0020should\u0020be\u0020created.", + "url": "classes/Illuminate-Support-DateFactory.html#property_dateClass" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003A\u0024callable", + "name": "callable", + "summary": "This\u0020callable\u0020may\u0020be\u0020used\u0020to\u0020intercept\u0020date\u0020creation.", + "url": "classes/Illuminate-Support-DateFactory.html#property_callable" + }, { + "fqsen": "\\Illuminate\\Support\\DateFactory\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020Carbon\u0020factory\u0020that\u0020should\u0020be\u0020used\u0020when\u0020creating\u0020dates.", + "url": "classes/Illuminate-Support-DateFactory.html#property_factory" + }, { + "fqsen": "\\Illuminate\\Support\\Env", + "name": "Env", + "summary": "", + "url": "classes/Illuminate-Support-Env.html" + }, { + "fqsen": "\\Illuminate\\Support\\Env\u003A\u003AenablePutenv\u0028\u0029", + "name": "enablePutenv", + "summary": "Enable\u0020the\u0020putenv\u0020adapter.", + "url": "classes/Illuminate-Support-Env.html#method_enablePutenv" + }, { + "fqsen": "\\Illuminate\\Support\\Env\u003A\u003AdisablePutenv\u0028\u0029", + "name": "disablePutenv", + "summary": "Disable\u0020the\u0020putenv\u0020adapter.", + "url": "classes/Illuminate-Support-Env.html#method_disablePutenv" + }, { + "fqsen": "\\Illuminate\\Support\\Env\u003A\u003AgetRepository\u0028\u0029", + "name": "getRepository", + "summary": "Get\u0020the\u0020environment\u0020repository\u0020instance.", + "url": "classes/Illuminate-Support-Env.html#method_getRepository" + }, { + "fqsen": "\\Illuminate\\Support\\Env\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Gets\u0020the\u0020value\u0020of\u0020an\u0020environment\u0020variable.", + "url": "classes/Illuminate-Support-Env.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Env\u003A\u003A\u0024putenv", + "name": "putenv", + "summary": "Indicates\u0020if\u0020the\u0020putenv\u0020adapter\u0020is\u0020enabled.", + "url": "classes/Illuminate-Support-Env.html#property_putenv" + }, { + "fqsen": "\\Illuminate\\Support\\Env\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020environment\u0020repository\u0020instance.", + "url": "classes/Illuminate-Support-Env.html#property_repository" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\App", + "name": "App", + "summary": "", + "url": "classes/Illuminate-Support-Facades-App.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\App\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-App.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Artisan", + "name": "Artisan", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Artisan.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Artisan\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Artisan.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Auth", + "name": "Auth", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Auth.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Auth\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Auth.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Auth\u003A\u003Aroutes\u0028\u0029", + "name": "routes", + "summary": "Register\u0020the\u0020typical\u0020authentication\u0020routes\u0020for\u0020an\u0020application.", + "url": "classes/Illuminate-Support-Facades-Auth.html#method_routes" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Blade", + "name": "Blade", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Blade.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Blade\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Blade.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Broadcast", + "name": "Broadcast", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Broadcast.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Broadcast\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Broadcast.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Bus", + "name": "Bus", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Bus.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Bus\u003A\u003Afake\u0028\u0029", + "name": "fake", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake.", + "url": "classes/Illuminate-Support-Facades-Bus.html#method_fake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Bus\u003A\u003AdispatchChain\u0028\u0029", + "name": "dispatchChain", + "summary": "Dispatch\u0020the\u0020given\u0020chain\u0020of\u0020jobs.", + "url": "classes/Illuminate-Support-Facades-Bus.html#method_dispatchChain" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Bus\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Bus.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Cache", + "name": "Cache", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Cache.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Cache\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Cache.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Config", + "name": "Config", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Config.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Config\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Config.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Cookie", + "name": "Cookie", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Cookie.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Cookie\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020a\u0020cookie\u0020exists\u0020on\u0020the\u0020request.", + "url": "classes/Illuminate-Support-Facades-Cookie.html#method_has" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Cookie\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieve\u0020a\u0020cookie\u0020from\u0020the\u0020request.", + "url": "classes/Illuminate-Support-Facades-Cookie.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Cookie\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Cookie.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Crypt", + "name": "Crypt", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Crypt.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Crypt\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Crypt.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Date", + "name": "Date", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Date.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Date\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Date.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Date\u003A\u003AresolveFacadeInstance\u0028\u0029", + "name": "resolveFacadeInstance", + "summary": "Resolve\u0020the\u0020facade\u0020root\u0020instance\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Support-Facades-Date.html#method_resolveFacadeInstance" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Date\u003A\u003ADEFAULT_FACADE", + "name": "DEFAULT_FACADE", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Date.html#constant_DEFAULT_FACADE" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\DB", + "name": "DB", + "summary": "", + "url": "classes/Illuminate-Support-Facades-DB.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\DB\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-DB.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Event", + "name": "Event", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Event.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Event\u003A\u003Afake\u0028\u0029", + "name": "fake", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake.", + "url": "classes/Illuminate-Support-Facades-Event.html#method_fake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Event\u003A\u003AfakeExcept\u0028\u0029", + "name": "fakeExcept", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake\u0020that\u0020fakes\u0020all\u0020events\u0020except\u0020the\u0020given\u0020events.", + "url": "classes/Illuminate-Support-Facades-Event.html#method_fakeExcept" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Event\u003A\u003AfakeFor\u0028\u0029", + "name": "fakeFor", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake\u0020during\u0020the\u0020given\u0020callable\u0027s\u0020execution.", + "url": "classes/Illuminate-Support-Facades-Event.html#method_fakeFor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Event\u003A\u003AfakeExceptFor\u0028\u0029", + "name": "fakeExceptFor", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake\u0020during\u0020the\u0020given\u0020callable\u0027s\u0020execution.", + "url": "classes/Illuminate-Support-Facades-Event.html#method_fakeExceptFor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Event\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Event.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade", + "name": "Facade", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Facade.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003Aresolved\u0028\u0029", + "name": "resolved", + "summary": "Run\u0020a\u0020Closure\u0020when\u0020the\u0020facade\u0020has\u0020been\u0020resolved.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_resolved" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003Aspy\u0028\u0029", + "name": "spy", + "summary": "Convert\u0020the\u0020facade\u0020into\u0020a\u0020Mockery\u0020spy.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_spy" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003ApartialMock\u0028\u0029", + "name": "partialMock", + "summary": "Initiate\u0020a\u0020partial\u0020mock\u0020on\u0020the\u0020facade.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_partialMock" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AshouldReceive\u0028\u0029", + "name": "shouldReceive", + "summary": "Initiate\u0020a\u0020mock\u0020expectation\u0020on\u0020the\u0020facade.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_shouldReceive" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AcreateFreshMockInstance\u0028\u0029", + "name": "createFreshMockInstance", + "summary": "Create\u0020a\u0020fresh\u0020mock\u0020instance\u0020for\u0020the\u0020given\u0020class.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_createFreshMockInstance" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AcreateMock\u0028\u0029", + "name": "createMock", + "summary": "Create\u0020a\u0020fresh\u0020mock\u0020instance\u0020for\u0020the\u0020given\u0020class.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_createMock" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AisMock\u0028\u0029", + "name": "isMock", + "summary": "Determines\u0020whether\u0020a\u0020mock\u0020is\u0020set\u0020as\u0020the\u0020instance\u0020of\u0020the\u0020facade.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_isMock" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AgetMockableClass\u0028\u0029", + "name": "getMockableClass", + "summary": "Get\u0020the\u0020mockable\u0020class\u0020for\u0020the\u0020bound\u0020instance.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_getMockableClass" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003Aswap\u0028\u0029", + "name": "swap", + "summary": "Hotswap\u0020the\u0020underlying\u0020instance\u0020behind\u0020the\u0020facade.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_swap" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AgetFacadeRoot\u0028\u0029", + "name": "getFacadeRoot", + "summary": "Get\u0020the\u0020root\u0020object\u0020behind\u0020the\u0020facade.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_getFacadeRoot" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AresolveFacadeInstance\u0028\u0029", + "name": "resolveFacadeInstance", + "summary": "Resolve\u0020the\u0020facade\u0020root\u0020instance\u0020from\u0020the\u0020container.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_resolveFacadeInstance" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AclearResolvedInstance\u0028\u0029", + "name": "clearResolvedInstance", + "summary": "Clear\u0020a\u0020resolved\u0020facade\u0020instance.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_clearResolvedInstance" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AclearResolvedInstances\u0028\u0029", + "name": "clearResolvedInstances", + "summary": "Clear\u0020all\u0020of\u0020the\u0020resolved\u0020instances.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_clearResolvedInstances" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AgetFacadeApplication\u0028\u0029", + "name": "getFacadeApplication", + "summary": "Get\u0020the\u0020application\u0020instance\u0020behind\u0020the\u0020facade.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_getFacadeApplication" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003AsetFacadeApplication\u0028\u0029", + "name": "setFacadeApplication", + "summary": "Set\u0020the\u0020application\u0020instance.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method_setFacadeApplication" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Handle\u0020dynamic,\u0020static\u0020calls\u0020to\u0020the\u0020object.", + "url": "classes/Illuminate-Support-Facades-Facade.html#method___callStatic" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003A\u0024app", + "name": "app", + "summary": "The\u0020application\u0020instance\u0020being\u0020facaded.", + "url": "classes/Illuminate-Support-Facades-Facade.html#property_app" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Facade\u003A\u003A\u0024resolvedInstance", + "name": "resolvedInstance", + "summary": "The\u0020resolved\u0020object\u0020instances.", + "url": "classes/Illuminate-Support-Facades-Facade.html#property_resolvedInstance" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\File", + "name": "File", + "summary": "", + "url": "classes/Illuminate-Support-Facades-File.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\File\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-File.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Gate", + "name": "Gate", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Gate.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Gate\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Gate.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Hash", + "name": "Hash", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Hash.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Hash\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Hash.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Http", + "name": "Http", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Http.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Http\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Http.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Lang", + "name": "Lang", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Lang.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Lang\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Lang.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Log", + "name": "Log", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Log.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Log\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Log.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Mail", + "name": "Mail", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Mail.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Mail\u003A\u003Afake\u0028\u0029", + "name": "fake", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake.", + "url": "classes/Illuminate-Support-Facades-Mail.html#method_fake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Mail\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Mail.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Notification", + "name": "Notification", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Notification.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Notification\u003A\u003Afake\u0028\u0029", + "name": "fake", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake.", + "url": "classes/Illuminate-Support-Facades-Notification.html#method_fake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Notification\u003A\u003Aroute\u0028\u0029", + "name": "route", + "summary": "Begin\u0020sending\u0020a\u0020notification\u0020to\u0020an\u0020anonymous\u0020notifiable.", + "url": "classes/Illuminate-Support-Facades-Notification.html#method_route" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Notification\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Notification.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\ParallelTesting", + "name": "ParallelTesting", + "summary": "", + "url": "classes/Illuminate-Support-Facades-ParallelTesting.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\ParallelTesting\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-ParallelTesting.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password", + "name": "Password", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Password.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Password.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password\u003A\u003ARESET_LINK_SENT", + "name": "RESET_LINK_SENT", + "summary": "Constant\u0020representing\u0020a\u0020successfully\u0020sent\u0020reminder.", + "url": "classes/Illuminate-Support-Facades-Password.html#constant_RESET_LINK_SENT" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password\u003A\u003APASSWORD_RESET", + "name": "PASSWORD_RESET", + "summary": "Constant\u0020representing\u0020a\u0020successfully\u0020reset\u0020password.", + "url": "classes/Illuminate-Support-Facades-Password.html#constant_PASSWORD_RESET" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password\u003A\u003AINVALID_USER", + "name": "INVALID_USER", + "summary": "Constant\u0020representing\u0020the\u0020user\u0020not\u0020found\u0020response.", + "url": "classes/Illuminate-Support-Facades-Password.html#constant_INVALID_USER" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password\u003A\u003AINVALID_TOKEN", + "name": "INVALID_TOKEN", + "summary": "Constant\u0020representing\u0020an\u0020invalid\u0020token.", + "url": "classes/Illuminate-Support-Facades-Password.html#constant_INVALID_TOKEN" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Password\u003A\u003ARESET_THROTTLED", + "name": "RESET_THROTTLED", + "summary": "Constant\u0020representing\u0020a\u0020throttled\u0020reset\u0020attempt.", + "url": "classes/Illuminate-Support-Facades-Password.html#constant_RESET_THROTTLED" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Queue", + "name": "Queue", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Queue.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Queue\u003A\u003ApopUsing\u0028\u0029", + "name": "popUsing", + "summary": "Register\u0020a\u0020callback\u0020to\u0020be\u0020executed\u0020to\u0020pick\u0020jobs.", + "url": "classes/Illuminate-Support-Facades-Queue.html#method_popUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Queue\u003A\u003Afake\u0028\u0029", + "name": "fake", + "summary": "Replace\u0020the\u0020bound\u0020instance\u0020with\u0020a\u0020fake.", + "url": "classes/Illuminate-Support-Facades-Queue.html#method_fake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Queue\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Queue.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\RateLimiter", + "name": "RateLimiter", + "summary": "", + "url": "classes/Illuminate-Support-Facades-RateLimiter.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\RateLimiter\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-RateLimiter.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Redirect", + "name": "Redirect", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Redirect.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Redirect\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Redirect.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Redis", + "name": "Redis", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Redis.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Redis\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Redis.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Request", + "name": "Request", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Request.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Request\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Request.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Response", + "name": "Response", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Response.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Response\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Response.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Route", + "name": "Route", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Route.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Route\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Route.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Schema", + "name": "Schema", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Schema.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Schema\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020a\u0020connection.", + "url": "classes/Illuminate-Support-Facades-Schema.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Schema\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020a\u0020schema\u0020builder\u0020instance\u0020for\u0020the\u0020default\u0020connection.", + "url": "classes/Illuminate-Support-Facades-Schema.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Session", + "name": "Session", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Session.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Session\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Session.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Storage", + "name": "Storage", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Storage.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Storage\u003A\u003Afake\u0028\u0029", + "name": "fake", + "summary": "Replace\u0020the\u0020given\u0020disk\u0020with\u0020a\u0020local\u0020testing\u0020disk.", + "url": "classes/Illuminate-Support-Facades-Storage.html#method_fake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Storage\u003A\u003ApersistentFake\u0028\u0029", + "name": "persistentFake", + "summary": "Replace\u0020the\u0020given\u0020disk\u0020with\u0020a\u0020persistent\u0020local\u0020testing\u0020disk.", + "url": "classes/Illuminate-Support-Facades-Storage.html#method_persistentFake" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Storage\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Storage.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\URL", + "name": "URL", + "summary": "", + "url": "classes/Illuminate-Support-Facades-URL.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\URL\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-URL.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Validator", + "name": "Validator", + "summary": "", + "url": "classes/Illuminate-Support-Facades-Validator.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\Validator\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-Validator.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\View", + "name": "View", + "summary": "", + "url": "classes/Illuminate-Support-Facades-View.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades\\View\u003A\u003AgetFacadeAccessor\u0028\u0029", + "name": "getFacadeAccessor", + "summary": "Get\u0020the\u0020registered\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-Support-Facades-View.html#method_getFacadeAccessor" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent", + "name": "Fluent", + "summary": "", + "url": "classes/Illuminate-Support-Fluent.html" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020fluent\u0020instance.", + "url": "classes/Illuminate-Support-Fluent.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020attribute\u0020from\u0020the\u0020fluent\u0020instance.", + "url": "classes/Illuminate-Support-Fluent.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AgetAttributes\u0028\u0029", + "name": "getAttributes", + "summary": "Get\u0020the\u0020attributes\u0020from\u0020the\u0020fluent\u0020instance.", + "url": "classes/Illuminate-Support-Fluent.html#method_getAttributes" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Convert\u0020the\u0020fluent\u0020instance\u0020to\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Fluent.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Convert\u0020the\u0020object\u0020into\u0020something\u0020JSON\u0020serializable.", + "url": "classes/Illuminate-Support-Fluent.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AtoJson\u0028\u0029", + "name": "toJson", + "summary": "Convert\u0020the\u0020fluent\u0020instance\u0020to\u0020JSON.", + "url": "classes/Illuminate-Support-Fluent.html#method_toJson" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020the\u0020given\u0020offset\u0020exists.", + "url": "classes/Illuminate-Support-Fluent.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020the\u0020value\u0020for\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Fluent.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020value\u0020at\u0020the\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Fluent.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020the\u0020value\u0020at\u0020the\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Fluent.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Handle\u0020dynamic\u0020calls\u0020to\u0020the\u0020fluent\u0020instance\u0020to\u0020set\u0020attributes.", + "url": "classes/Illuminate-Support-Fluent.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020retrieve\u0020the\u0020value\u0020of\u0020an\u0020attribute.", + "url": "classes/Illuminate-Support-Fluent.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Dynamically\u0020set\u0020the\u0020value\u0020of\u0020an\u0020attribute.", + "url": "classes/Illuminate-Support-Fluent.html#method___set" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Dynamically\u0020check\u0020if\u0020an\u0020attribute\u0020is\u0020set.", + "url": "classes/Illuminate-Support-Fluent.html#method___isset" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A__unset\u0028\u0029", + "name": "__unset", + "summary": "Dynamically\u0020unset\u0020an\u0020attribute.", + "url": "classes/Illuminate-Support-Fluent.html#method___unset" + }, { + "fqsen": "\\Illuminate\\Support\\Fluent\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "All\u0020of\u0020the\u0020attributes\u0020set\u0020on\u0020the\u0020fluent\u0020instance.", + "url": "classes/Illuminate-Support-Fluent.html#property_attributes" + }, { + "fqsen": "\\append_config\u0028\u0029", + "name": "append_config", + "summary": "Assign\u0020high\u0020numeric\u0020IDs\u0020to\u0020a\u0020config\u0020item\u0020to\u0020force\u0020appending.", + "url": "namespaces/default.html#function_append_config" + }, { + "fqsen": "\\blank\u0028\u0029", + "name": "blank", + "summary": "Determine\u0020if\u0020the\u0020given\u0020value\u0020is\u0020\u0022blank\u0022.", + "url": "namespaces/default.html#function_blank" + }, { + "fqsen": "\\class_basename\u0028\u0029", + "name": "class_basename", + "summary": "Get\u0020the\u0020class\u0020\u0022basename\u0022\u0020of\u0020the\u0020given\u0020object\u0020\/\u0020class.", + "url": "namespaces/default.html#function_class_basename" + }, { + "fqsen": "\\class_uses_recursive\u0028\u0029", + "name": "class_uses_recursive", + "summary": "Returns\u0020all\u0020traits\u0020used\u0020by\u0020a\u0020class,\u0020its\u0020parent\u0020classes\u0020and\u0020trait\u0020of\u0020their\u0020traits.", + "url": "namespaces/default.html#function_class_uses_recursive" + }, { + "fqsen": "\\e\u0028\u0029", + "name": "e", + "summary": "Encode\u0020HTML\u0020special\u0020characters\u0020in\u0020a\u0020string.", + "url": "namespaces/default.html#function_e" + }, { + "fqsen": "\\env\u0028\u0029", + "name": "env", + "summary": "Gets\u0020the\u0020value\u0020of\u0020an\u0020environment\u0020variable.", + "url": "namespaces/default.html#function_env" + }, { + "fqsen": "\\filled\u0028\u0029", + "name": "filled", + "summary": "Determine\u0020if\u0020a\u0020value\u0020is\u0020\u0022filled\u0022.", + "url": "namespaces/default.html#function_filled" + }, { + "fqsen": "\\object_get\u0028\u0029", + "name": "object_get", + "summary": "Get\u0020an\u0020item\u0020from\u0020an\u0020object\u0020using\u0020\u0022dot\u0022\u0020notation.", + "url": "namespaces/default.html#function_object_get" + }, { + "fqsen": "\\optional\u0028\u0029", + "name": "optional", + "summary": "Provide\u0020access\u0020to\u0020optional\u0020objects.", + "url": "namespaces/default.html#function_optional" + }, { + "fqsen": "\\preg_replace_array\u0028\u0029", + "name": "preg_replace_array", + "summary": "Replace\u0020a\u0020given\u0020pattern\u0020with\u0020each\u0020value\u0020in\u0020the\u0020array\u0020in\u0020sequentially.", + "url": "namespaces/default.html#function_preg_replace_array" + }, { + "fqsen": "\\retry\u0028\u0029", + "name": "retry", + "summary": "Retry\u0020an\u0020operation\u0020a\u0020given\u0020number\u0020of\u0020times.", + "url": "namespaces/default.html#function_retry" + }, { + "fqsen": "\\tap\u0028\u0029", + "name": "tap", + "summary": "Call\u0020the\u0020given\u0020Closure\u0020with\u0020the\u0020given\u0020value\u0020then\u0020return\u0020the\u0020value.", + "url": "namespaces/default.html#function_tap" + }, { + "fqsen": "\\throw_if\u0028\u0029", + "name": "throw_if", + "summary": "Throw\u0020the\u0020given\u0020exception\u0020if\u0020the\u0020given\u0020condition\u0020is\u0020true.", + "url": "namespaces/default.html#function_throw_if" + }, { + "fqsen": "\\throw_unless\u0028\u0029", + "name": "throw_unless", + "summary": "Throw\u0020the\u0020given\u0020exception\u0020unless\u0020the\u0020given\u0020condition\u0020is\u0020true.", + "url": "namespaces/default.html#function_throw_unless" + }, { + "fqsen": "\\trait_uses_recursive\u0028\u0029", + "name": "trait_uses_recursive", + "summary": "Returns\u0020all\u0020traits\u0020used\u0020by\u0020a\u0020trait\u0020and\u0020its\u0020traits.", + "url": "namespaces/default.html#function_trait_uses_recursive" + }, { + "fqsen": "\\transform\u0028\u0029", + "name": "transform", + "summary": "Transform\u0020the\u0020given\u0020value\u0020if\u0020it\u0020is\u0020present.", + "url": "namespaces/default.html#function_transform" + }, { + "fqsen": "\\windows_os\u0028\u0029", + "name": "windows_os", + "summary": "Determine\u0020whether\u0020the\u0020current\u0020environment\u0020is\u0020Windows\u0020based.", + "url": "namespaces/default.html#function_windows_os" + }, { + "fqsen": "\\with\u0028\u0029", + "name": "with", + "summary": "Return\u0020the\u0020given\u0020value,\u0020optionally\u0020passed\u0020through\u0020the\u0020given\u0020callback.", + "url": "namespaces/default.html#function_with" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderTapProxy", + "name": "HigherOrderTapProxy", + "summary": "", + "url": "classes/Illuminate-Support-HigherOrderTapProxy.html" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderTapProxy\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020tap\u0020proxy\u0020instance.", + "url": "classes/Illuminate-Support-HigherOrderTapProxy.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderTapProxy\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020pass\u0020method\u0020calls\u0020to\u0020the\u0020target.", + "url": "classes/Illuminate-Support-HigherOrderTapProxy.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\HigherOrderTapProxy\u003A\u003A\u0024target", + "name": "target", + "summary": "The\u0020target\u0020being\u0020tapped.", + "url": "classes/Illuminate-Support-HigherOrderTapProxy.html#property_target" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString", + "name": "HtmlString", + "summary": "", + "url": "classes/Illuminate-Support-HtmlString.html" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020HTML\u0020string\u0020instance.", + "url": "classes/Illuminate-Support-HtmlString.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString\u003A\u003AtoHtml\u0028\u0029", + "name": "toHtml", + "summary": "Get\u0020the\u0020HTML\u0020string.", + "url": "classes/Illuminate-Support-HtmlString.html#method_toHtml" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020given\u0020HTML\u0020string\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-HtmlString.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020given\u0020HTML\u0020string\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-HtmlString.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020HTML\u0020string.", + "url": "classes/Illuminate-Support-HtmlString.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\HtmlString\u003A\u003A\u0024html", + "name": "html", + "summary": "The\u0020HTML\u0020string.", + "url": "classes/Illuminate-Support-HtmlString.html#property_html" + }, { + "fqsen": "\\Illuminate\\Support\\InteractsWithTime", + "name": "InteractsWithTime", + "summary": "", + "url": "classes/Illuminate-Support-InteractsWithTime.html" + }, { + "fqsen": "\\Illuminate\\Support\\InteractsWithTime\u003A\u003AsecondsUntil\u0028\u0029", + "name": "secondsUntil", + "summary": "Get\u0020the\u0020number\u0020of\u0020seconds\u0020until\u0020the\u0020given\u0020DateTime.", + "url": "classes/Illuminate-Support-InteractsWithTime.html#method_secondsUntil" + }, { + "fqsen": "\\Illuminate\\Support\\InteractsWithTime\u003A\u003AavailableAt\u0028\u0029", + "name": "availableAt", + "summary": "Get\u0020the\u0020\u0022available\u0020at\u0022\u0020UNIX\u0020timestamp.", + "url": "classes/Illuminate-Support-InteractsWithTime.html#method_availableAt" + }, { + "fqsen": "\\Illuminate\\Support\\InteractsWithTime\u003A\u003AparseDateInterval\u0028\u0029", + "name": "parseDateInterval", + "summary": "If\u0020the\u0020given\u0020value\u0020is\u0020an\u0020interval,\u0020convert\u0020it\u0020to\u0020a\u0020DateTime\u0020instance.", + "url": "classes/Illuminate-Support-InteractsWithTime.html#method_parseDateInterval" + }, { + "fqsen": "\\Illuminate\\Support\\InteractsWithTime\u003A\u003AcurrentTime\u0028\u0029", + "name": "currentTime", + "summary": "Get\u0020the\u0020current\u0020system\u0020time\u0020as\u0020a\u0020UNIX\u0020timestamp.", + "url": "classes/Illuminate-Support-InteractsWithTime.html#method_currentTime" + }, { + "fqsen": "\\Illuminate\\Support\\Js", + "name": "Js", + "summary": "", + "url": "classes/Illuminate-Support-Js.html" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020class\u0020instance.", + "url": "classes/Illuminate-Support-Js.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003Afrom\u0028\u0029", + "name": "from", + "summary": "Create\u0020a\u0020new\u0020JavaScript\u0020string\u0020from\u0020the\u0020given\u0020data.", + "url": "classes/Illuminate-Support-Js.html#method_from" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003AconvertDataToJavaScriptExpression\u0028\u0029", + "name": "convertDataToJavaScriptExpression", + "summary": "Convert\u0020the\u0020given\u0020data\u0020to\u0020a\u0020JavaScript\u0020expression.", + "url": "classes/Illuminate-Support-Js.html#method_convertDataToJavaScriptExpression" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003AjsonEncode\u0028\u0029", + "name": "jsonEncode", + "summary": "Encode\u0020the\u0020given\u0020data\u0020as\u0020JSON.", + "url": "classes/Illuminate-Support-Js.html#method_jsonEncode" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003AconvertJsonToJavaScriptExpression\u0028\u0029", + "name": "convertJsonToJavaScriptExpression", + "summary": "Convert\u0020the\u0020given\u0020JSON\u0020to\u0020a\u0020JavaScript\u0020expression.", + "url": "classes/Illuminate-Support-Js.html#method_convertJsonToJavaScriptExpression" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003AtoHtml\u0028\u0029", + "name": "toHtml", + "summary": "Get\u0020the\u0020string\u0020representation\u0020of\u0020the\u0020data\u0020for\u0020use\u0020in\u0020HTML.", + "url": "classes/Illuminate-Support-Js.html#method_toHtml" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020string\u0020representation\u0020of\u0020the\u0020data\u0020for\u0020use\u0020in\u0020HTML.", + "url": "classes/Illuminate-Support-Js.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003AREQUIRED_FLAGS", + "name": "REQUIRED_FLAGS", + "summary": "Flags\u0020that\u0020should\u0020be\u0020used\u0020when\u0020encoding\u0020to\u0020JSON.", + "url": "classes/Illuminate-Support-Js.html#constant_REQUIRED_FLAGS" + }, { + "fqsen": "\\Illuminate\\Support\\Js\u003A\u003A\u0024js", + "name": "js", + "summary": "The\u0020JavaScript\u0020string.", + "url": "classes/Illuminate-Support-Js.html#property_js" + }, { + "fqsen": "\\Illuminate\\Support\\Manager", + "name": "Manager", + "summary": "", + "url": "classes/Illuminate-Support-Manager.html" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020manager\u0020instance.", + "url": "classes/Illuminate-Support-Manager.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AgetDefaultDriver\u0028\u0029", + "name": "getDefaultDriver", + "summary": "Get\u0020the\u0020default\u0020driver\u0020name.", + "url": "classes/Illuminate-Support-Manager.html#method_getDefaultDriver" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003Adriver\u0028\u0029", + "name": "driver", + "summary": "Get\u0020a\u0020driver\u0020instance.", + "url": "classes/Illuminate-Support-Manager.html#method_driver" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AcreateDriver\u0028\u0029", + "name": "createDriver", + "summary": "Create\u0020a\u0020new\u0020driver\u0020instance.", + "url": "classes/Illuminate-Support-Manager.html#method_createDriver" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AcallCustomCreator\u0028\u0029", + "name": "callCustomCreator", + "summary": "Call\u0020a\u0020custom\u0020driver\u0020creator.", + "url": "classes/Illuminate-Support-Manager.html#method_callCustomCreator" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Register\u0020a\u0020custom\u0020driver\u0020creator\u0020Closure.", + "url": "classes/Illuminate-Support-Manager.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AgetDrivers\u0028\u0029", + "name": "getDrivers", + "summary": "Get\u0020all\u0020of\u0020the\u0020created\u0020\u0022drivers\u0022.", + "url": "classes/Illuminate-Support-Manager.html#method_getDrivers" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AgetContainer\u0028\u0029", + "name": "getContainer", + "summary": "Get\u0020the\u0020container\u0020instance\u0020used\u0020by\u0020the\u0020manager.", + "url": "classes/Illuminate-Support-Manager.html#method_getContainer" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "Set\u0020the\u0020container\u0020instance\u0020used\u0020by\u0020the\u0020manager.", + "url": "classes/Illuminate-Support-Manager.html#method_setContainer" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003AforgetDrivers\u0028\u0029", + "name": "forgetDrivers", + "summary": "Forget\u0020all\u0020of\u0020the\u0020resolved\u0020driver\u0020instances.", + "url": "classes/Illuminate-Support-Manager.html#method_forgetDrivers" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020call\u0020the\u0020default\u0020driver\u0020instance.", + "url": "classes/Illuminate-Support-Manager.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020container\u0020instance.", + "url": "classes/Illuminate-Support-Manager.html#property_container" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003A\u0024config", + "name": "config", + "summary": "The\u0020configuration\u0020repository\u0020instance.", + "url": "classes/Illuminate-Support-Manager.html#property_config" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003A\u0024customCreators", + "name": "customCreators", + "summary": "The\u0020registered\u0020custom\u0020driver\u0020creators.", + "url": "classes/Illuminate-Support-Manager.html#property_customCreators" + }, { + "fqsen": "\\Illuminate\\Support\\Manager\u003A\u003A\u0024drivers", + "name": "drivers", + "summary": "The\u0020array\u0020of\u0020created\u0020\u0022drivers\u0022.", + "url": "classes/Illuminate-Support-Manager.html#property_drivers" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag", + "name": "MessageBag", + "summary": "", + "url": "classes/Illuminate-Support-MessageBag.html" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020message\u0020bag\u0020instance.", + "url": "classes/Illuminate-Support-MessageBag.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020the\u0020keys\u0020present\u0020in\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_keys" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020a\u0020message\u0020to\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_add" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AaddIf\u0028\u0029", + "name": "addIf", + "summary": "Add\u0020a\u0020message\u0020to\u0020the\u0020message\u0020bag\u0020if\u0020the\u0020given\u0020conditional\u0020is\u0020\u0022true\u0022.", + "url": "classes/Illuminate-Support-MessageBag.html#method_addIf" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AisUnique\u0028\u0029", + "name": "isUnique", + "summary": "Determine\u0020if\u0020a\u0020key\u0020and\u0020message\u0020combination\u0020already\u0020exists.", + "url": "classes/Illuminate-Support-MessageBag.html#method_isUnique" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020a\u0020new\u0020array\u0020of\u0020messages\u0020into\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020messages\u0020exist\u0020for\u0020all\u0020of\u0020the\u0020given\u0020keys.", + "url": "classes/Illuminate-Support-MessageBag.html#method_has" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AhasAny\u0028\u0029", + "name": "hasAny", + "summary": "Determine\u0020if\u0020messages\u0020exist\u0020for\u0020any\u0020of\u0020the\u0020given\u0020keys.", + "url": "classes/Illuminate-Support-MessageBag.html#method_hasAny" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020message\u0020from\u0020the\u0020message\u0020bag\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-MessageBag.html#method_first" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020all\u0020of\u0020the\u0020messages\u0020from\u0020the\u0020message\u0020bag\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Illuminate-Support-MessageBag.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AgetMessagesForWildcardKey\u0028\u0029", + "name": "getMessagesForWildcardKey", + "summary": "Get\u0020the\u0020messages\u0020for\u0020a\u0020wildcard\u0020key.", + "url": "classes/Illuminate-Support-MessageBag.html#method_getMessagesForWildcardKey" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020of\u0020the\u0020messages\u0020for\u0020every\u0020key\u0020in\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_all" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Get\u0020all\u0020of\u0020the\u0020unique\u0020messages\u0020for\u0020every\u0020key\u0020in\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_unique" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Atransform\u0028\u0029", + "name": "transform", + "summary": "Format\u0020an\u0020array\u0020of\u0020messages.", + "url": "classes/Illuminate-Support-MessageBag.html#method_transform" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AcheckFormat\u0028\u0029", + "name": "checkFormat", + "summary": "Get\u0020the\u0020appropriate\u0020format\u0020based\u0020on\u0020the\u0020given\u0020format.", + "url": "classes/Illuminate-Support-MessageBag.html#method_checkFormat" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003A\u0024messages", + "name": "messages", + "summary": "All\u0020of\u0020the\u0020registered\u0020messages.", + "url": "classes/Illuminate-Support-MessageBag.html#property_messages" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "Get\u0020the\u0020raw\u0020messages\u0020in\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_getMessages" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AgetMessageBag\u0028\u0029", + "name": "getMessageBag", + "summary": "Get\u0020the\u0020messages\u0020for\u0020the\u0020instance.", + "url": "classes/Illuminate-Support-MessageBag.html#method_getMessageBag" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AgetFormat\u0028\u0029", + "name": "getFormat", + "summary": "Get\u0020the\u0020default\u0020message\u0020format.", + "url": "classes/Illuminate-Support-MessageBag.html#method_getFormat" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AsetFormat\u0028\u0029", + "name": "setFormat", + "summary": "Set\u0020the\u0020default\u0020message\u0020format.", + "url": "classes/Illuminate-Support-MessageBag.html#method_setFormat" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020message\u0020bag\u0020has\u0020any\u0020messages.", + "url": "classes/Illuminate-Support-MessageBag.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020message\u0020bag\u0020has\u0020any\u0020messages.", + "url": "classes/Illuminate-Support-MessageBag.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Aany\u0028\u0029", + "name": "any", + "summary": "Determine\u0020if\u0020the\u0020message\u0020bag\u0020has\u0020any\u0020messages.", + "url": "classes/Illuminate-Support-MessageBag.html#method_any" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Get\u0020the\u0020number\u0020of\u0020messages\u0020in\u0020the\u0020message\u0020bag.", + "url": "classes/Illuminate-Support-MessageBag.html#method_count" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020the\u0020instance\u0020as\u0020an\u0020array.", + "url": "classes/Illuminate-Support-MessageBag.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Convert\u0020the\u0020object\u0020into\u0020something\u0020JSON\u0020serializable.", + "url": "classes/Illuminate-Support-MessageBag.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003AtoJson\u0028\u0029", + "name": "toJson", + "summary": "Convert\u0020the\u0020object\u0020to\u0020its\u0020JSON\u0020representation.", + "url": "classes/Illuminate-Support-MessageBag.html#method_toJson" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Convert\u0020the\u0020message\u0020bag\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Illuminate-Support-MessageBag.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\MessageBag\u003A\u003A\u0024format", + "name": "format", + "summary": "Default\u0020format\u0020for\u0020message\u0020output.", + "url": "classes/Illuminate-Support-MessageBag.html#property_format" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager", + "name": "MultipleInstanceManager", + "summary": "", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020manager\u0020instance.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003AgetDefaultInstance\u0028\u0029", + "name": "getDefaultInstance", + "summary": "Get\u0020the\u0020default\u0020instance\u0020name.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_getDefaultInstance" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003AsetDefaultInstance\u0028\u0029", + "name": "setDefaultInstance", + "summary": "Set\u0020the\u0020default\u0020instance\u0020name.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_setDefaultInstance" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003AgetInstanceConfig\u0028\u0029", + "name": "getInstanceConfig", + "summary": "Get\u0020the\u0020instance\u0020specific\u0020configuration.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_getInstanceConfig" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Get\u0020an\u0020instance\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_instance" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Attempt\u0020to\u0020get\u0020an\u0020instance\u0020from\u0020the\u0020local\u0020cache.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020given\u0020instance.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003AcallCustomCreator\u0028\u0029", + "name": "callCustomCreator", + "summary": "Call\u0020a\u0020custom\u0020instance\u0020creator.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_callCustomCreator" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003AforgetInstance\u0028\u0029", + "name": "forgetInstance", + "summary": "Unset\u0020the\u0020given\u0020instances.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_forgetInstance" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003Apurge\u0028\u0029", + "name": "purge", + "summary": "Disconnect\u0020the\u0020given\u0020instance\u0020and\u0020remove\u0020from\u0020local\u0020cache.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_purge" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Register\u0020a\u0020custom\u0020instance\u0020creator\u0020Closure.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method_extend" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020call\u0020the\u0020default\u0020instance.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003A\u0024app", + "name": "app", + "summary": "The\u0020application\u0020instance.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#property_app" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003A\u0024instances", + "name": "instances", + "summary": "The\u0020array\u0020of\u0020resolved\u0020instances.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#property_instances" + }, { + "fqsen": "\\Illuminate\\Support\\MultipleInstanceManager\u003A\u003A\u0024customCreators", + "name": "customCreators", + "summary": "The\u0020registered\u0020custom\u0020instance\u0020creators.", + "url": "classes/Illuminate-Support-MultipleInstanceManager.html#property_customCreators" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver", + "name": "NamespacedItemResolver", + "summary": "", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver\u003A\u003AparseKey\u0028\u0029", + "name": "parseKey", + "summary": "Parse\u0020a\u0020key\u0020into\u0020namespace,\u0020group,\u0020and\u0020item.", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html#method_parseKey" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver\u003A\u003AparseBasicSegments\u0028\u0029", + "name": "parseBasicSegments", + "summary": "Parse\u0020an\u0020array\u0020of\u0020basic\u0020segments.", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html#method_parseBasicSegments" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver\u003A\u003AparseNamespacedSegments\u0028\u0029", + "name": "parseNamespacedSegments", + "summary": "Parse\u0020an\u0020array\u0020of\u0020namespaced\u0020segments.", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html#method_parseNamespacedSegments" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver\u003A\u003AsetParsedKey\u0028\u0029", + "name": "setParsedKey", + "summary": "Set\u0020the\u0020parsed\u0020value\u0020of\u0020a\u0020key.", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html#method_setParsedKey" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver\u003A\u003AflushParsedKeys\u0028\u0029", + "name": "flushParsedKeys", + "summary": "Flush\u0020the\u0020cache\u0020of\u0020parsed\u0020keys.", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html#method_flushParsedKeys" + }, { + "fqsen": "\\Illuminate\\Support\\NamespacedItemResolver\u003A\u003A\u0024parsed", + "name": "parsed", + "summary": "A\u0020cache\u0020of\u0020the\u0020parsed\u0020items.", + "url": "classes/Illuminate-Support-NamespacedItemResolver.html#property_parsed" + }, { + "fqsen": "\\Illuminate\\Support\\Optional", + "name": "Optional", + "summary": "", + "url": "classes/Illuminate-Support-Optional.html" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020optional\u0020instance.", + "url": "classes/Illuminate-Support-Optional.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020a\u0020property\u0020on\u0020the\u0020underlying\u0020object.", + "url": "classes/Illuminate-Support-Optional.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Dynamically\u0020check\u0020a\u0020property\u0020exists\u0020on\u0020the\u0020underlying\u0020object.", + "url": "classes/Illuminate-Support-Optional.html#method___isset" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020at\u0020an\u0020offset.", + "url": "classes/Illuminate-Support-Optional.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020an\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Optional.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Optional.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020the\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-Optional.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020pass\u0020a\u0020method\u0020to\u0020the\u0020underlying\u0020object.", + "url": "classes/Illuminate-Support-Optional.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\Optional\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020underlying\u0020object.", + "url": "classes/Illuminate-Support-Optional.html#property_value" + }, { + "fqsen": "\\Illuminate\\Support\\Pluralizer", + "name": "Pluralizer", + "summary": "", + "url": "classes/Illuminate-Support-Pluralizer.html" + }, { + "fqsen": "\\Illuminate\\Support\\Pluralizer\u003A\u003Aplural\u0028\u0029", + "name": "plural", + "summary": "Get\u0020the\u0020plural\u0020form\u0020of\u0020an\u0020English\u0020word.", + "url": "classes/Illuminate-Support-Pluralizer.html#method_plural" + }, { + "fqsen": "\\Illuminate\\Support\\Pluralizer\u003A\u003Asingular\u0028\u0029", + "name": "singular", + "summary": "Get\u0020the\u0020singular\u0020form\u0020of\u0020an\u0020English\u0020word.", + "url": "classes/Illuminate-Support-Pluralizer.html#method_singular" + }, { + "fqsen": "\\Illuminate\\Support\\Pluralizer\u003A\u003A\u0024uncountable", + "name": "uncountable", + "summary": "Uncountable\u0020word\u0020forms.", + "url": "classes/Illuminate-Support-Pluralizer.html#property_uncountable" + }, { + "fqsen": "\\Illuminate\\Support\\Pluralizer\u003A\u003AmatchCase\u0028\u0029", + "name": "matchCase", + "summary": "Attempt\u0020to\u0020match\u0020the\u0020case\u0020on\u0020two\u0020strings.", + "url": "classes/Illuminate-Support-Pluralizer.html#method_matchCase" + }, { + "fqsen": "\\Illuminate\\Support\\Pluralizer\u003A\u003Ainflector\u0028\u0029", + "name": "inflector", + "summary": "Get\u0020the\u0020inflector\u0020instance.", + "url": "classes/Illuminate-Support-Pluralizer.html#method_inflector" + }, { + "fqsen": "\\Illuminate\\Support\\ProcessUtils", + "name": "ProcessUtils", + "summary": "ProcessUtils\u0020is\u0020a\u0020bunch\u0020of\u0020utility\u0020methods.", + "url": "classes/Illuminate-Support-ProcessUtils.html" + }, { + "fqsen": "\\Illuminate\\Support\\ProcessUtils\u003A\u003AescapeArgument\u0028\u0029", + "name": "escapeArgument", + "summary": "Escapes\u0020a\u0020string\u0020to\u0020be\u0020used\u0020as\u0020a\u0020shell\u0020argument.", + "url": "classes/Illuminate-Support-ProcessUtils.html#method_escapeArgument" + }, { + "fqsen": "\\Illuminate\\Support\\ProcessUtils\u003A\u003AisSurroundedBy\u0028\u0029", + "name": "isSurroundedBy", + "summary": "Is\u0020the\u0020given\u0020string\u0020surrounded\u0020by\u0020the\u0020given\u0020character\u003F", + "url": "classes/Illuminate-Support-ProcessUtils.html#method_isSurroundedBy" + }, { + "fqsen": "\\Illuminate\\Support\\Reflector", + "name": "Reflector", + "summary": "", + "url": "classes/Illuminate-Support-Reflector.html" + }, { + "fqsen": "\\Illuminate\\Support\\Reflector\u003A\u003AisCallable\u0028\u0029", + "name": "isCallable", + "summary": "This\u0020is\u0020a\u0020PHP\u00207.4\u0020compatible\u0020implementation\u0020of\u0020is_callable.", + "url": "classes/Illuminate-Support-Reflector.html#method_isCallable" + }, { + "fqsen": "\\Illuminate\\Support\\Reflector\u003A\u003AgetParameterClassName\u0028\u0029", + "name": "getParameterClassName", + "summary": "Get\u0020the\u0020class\u0020name\u0020of\u0020the\u0020given\u0020parameter\u0027s\u0020type,\u0020if\u0020possible.", + "url": "classes/Illuminate-Support-Reflector.html#method_getParameterClassName" + }, { + "fqsen": "\\Illuminate\\Support\\Reflector\u003A\u003AgetParameterClassNames\u0028\u0029", + "name": "getParameterClassNames", + "summary": "Get\u0020the\u0020class\u0020names\u0020of\u0020the\u0020given\u0020parameter\u0027s\u0020type,\u0020including\u0020union\u0020types.", + "url": "classes/Illuminate-Support-Reflector.html#method_getParameterClassNames" + }, { + "fqsen": "\\Illuminate\\Support\\Reflector\u003A\u003AgetTypeName\u0028\u0029", + "name": "getTypeName", + "summary": "Get\u0020the\u0020given\u0020type\u0027s\u0020class\u0020name.", + "url": "classes/Illuminate-Support-Reflector.html#method_getTypeName" + }, { + "fqsen": "\\Illuminate\\Support\\Reflector\u003A\u003AisParameterSubclassOf\u0028\u0029", + "name": "isParameterSubclassOf", + "summary": "Determine\u0020if\u0020the\u0020parameter\u0027s\u0020type\u0020is\u0020a\u0020subclass\u0020of\u0020the\u0020given\u0020type.", + "url": "classes/Illuminate-Support-Reflector.html#method_isParameterSubclassOf" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider", + "name": "ServiceProvider", + "summary": "", + "url": "classes/Illuminate-Support-ServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020service\u0020provider\u0020instance.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020any\u0020application\u0020services.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003Abooting\u0028\u0029", + "name": "booting", + "summary": "Register\u0020a\u0020booting\u0020callback\u0020to\u0020be\u0020run\u0020before\u0020the\u0020\u0022boot\u0022\u0020method\u0020is\u0020called.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_booting" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003Abooted\u0028\u0029", + "name": "booted", + "summary": "Register\u0020a\u0020booted\u0020callback\u0020to\u0020be\u0020run\u0020after\u0020the\u0020\u0022boot\u0022\u0020method\u0020is\u0020called.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_booted" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AcallBootingCallbacks\u0028\u0029", + "name": "callBootingCallbacks", + "summary": "Call\u0020the\u0020registered\u0020booting\u0020callbacks.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_callBootingCallbacks" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AcallBootedCallbacks\u0028\u0029", + "name": "callBootedCallbacks", + "summary": "Call\u0020the\u0020registered\u0020booted\u0020callbacks.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_callBootedCallbacks" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AmergeConfigFrom\u0028\u0029", + "name": "mergeConfigFrom", + "summary": "Merge\u0020the\u0020given\u0020configuration\u0020with\u0020the\u0020existing\u0020configuration.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_mergeConfigFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadRoutesFrom\u0028\u0029", + "name": "loadRoutesFrom", + "summary": "Load\u0020the\u0020given\u0020routes\u0020file\u0020if\u0020routes\u0020are\u0020not\u0020already\u0020cached.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadRoutesFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadViewsFrom\u0028\u0029", + "name": "loadViewsFrom", + "summary": "Register\u0020a\u0020view\u0020file\u0020namespace.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadViewsFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadViewComponentsAs\u0028\u0029", + "name": "loadViewComponentsAs", + "summary": "Register\u0020the\u0020given\u0020view\u0020components\u0020with\u0020a\u0020custom\u0020prefix.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadViewComponentsAs" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadTranslationsFrom\u0028\u0029", + "name": "loadTranslationsFrom", + "summary": "Register\u0020a\u0020translation\u0020file\u0020namespace.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadTranslationsFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadJsonTranslationsFrom\u0028\u0029", + "name": "loadJsonTranslationsFrom", + "summary": "Register\u0020a\u0020JSON\u0020translation\u0020file\u0020path.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadJsonTranslationsFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadMigrationsFrom\u0028\u0029", + "name": "loadMigrationsFrom", + "summary": "Register\u0020database\u0020migration\u0020paths.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadMigrationsFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AloadFactoriesFrom\u0028\u0029", + "name": "loadFactoriesFrom", + "summary": "Register\u0020Eloquent\u0020model\u0020factory\u0020paths.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_loadFactoriesFrom" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AcallAfterResolving\u0028\u0029", + "name": "callAfterResolving", + "summary": "Setup\u0020an\u0020after\u0020resolving\u0020listener,\u0020or\u0020fire\u0020immediately\u0020if\u0020already\u0020resolved.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_callAfterResolving" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003A\u0024publishes", + "name": "publishes", + "summary": "The\u0020paths\u0020that\u0020should\u0020be\u0020published.", + "url": "classes/Illuminate-Support-ServiceProvider.html#property_publishes" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AensurePublishArrayInitialized\u0028\u0029", + "name": "ensurePublishArrayInitialized", + "summary": "Ensure\u0020the\u0020publish\u0020array\u0020for\u0020the\u0020service\u0020provider\u0020is\u0020initialized.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_ensurePublishArrayInitialized" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AaddPublishGroup\u0028\u0029", + "name": "addPublishGroup", + "summary": "Add\u0020a\u0020publish\u0020group\u0020\/\u0020tag\u0020to\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_addPublishGroup" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003ApathsToPublish\u0028\u0029", + "name": "pathsToPublish", + "summary": "Get\u0020the\u0020paths\u0020to\u0020publish.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_pathsToPublish" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003ApathsForProviderOrGroup\u0028\u0029", + "name": "pathsForProviderOrGroup", + "summary": "Get\u0020the\u0020paths\u0020for\u0020the\u0020provider\u0020or\u0020group\u0020\u0028or\u0020both\u0029.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_pathsForProviderOrGroup" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003ApathsForProviderAndGroup\u0028\u0029", + "name": "pathsForProviderAndGroup", + "summary": "Get\u0020the\u0020paths\u0020for\u0020the\u0020provider\u0020and\u0020group.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_pathsForProviderAndGroup" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003ApublishableProviders\u0028\u0029", + "name": "publishableProviders", + "summary": "Get\u0020the\u0020service\u0020providers\u0020available\u0020for\u0020publishing.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_publishableProviders" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003ApublishableGroups\u0028\u0029", + "name": "publishableGroups", + "summary": "Get\u0020the\u0020groups\u0020available\u0020for\u0020publishing.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_publishableGroups" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003Acommands\u0028\u0029", + "name": "commands", + "summary": "Register\u0020the\u0020package\u0027s\u0020custom\u0020Artisan\u0020commands.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_commands" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003Aprovides\u0028\u0029", + "name": "provides", + "summary": "Get\u0020the\u0020services\u0020provided\u0020by\u0020the\u0020provider.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_provides" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003Awhen\u0028\u0029", + "name": "when", + "summary": "Get\u0020the\u0020events\u0020that\u0020trigger\u0020this\u0020service\u0020provider\u0020to\u0020register.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_when" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003AisDeferred\u0028\u0029", + "name": "isDeferred", + "summary": "Determine\u0020if\u0020the\u0020provider\u0020is\u0020deferred.", + "url": "classes/Illuminate-Support-ServiceProvider.html#method_isDeferred" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003A\u0024app", + "name": "app", + "summary": "The\u0020application\u0020instance.", + "url": "classes/Illuminate-Support-ServiceProvider.html#property_app" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003A\u0024bootingCallbacks", + "name": "bootingCallbacks", + "summary": "All\u0020of\u0020the\u0020registered\u0020booting\u0020callbacks.", + "url": "classes/Illuminate-Support-ServiceProvider.html#property_bootingCallbacks" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003A\u0024bootedCallbacks", + "name": "bootedCallbacks", + "summary": "All\u0020of\u0020the\u0020registered\u0020booted\u0020callbacks.", + "url": "classes/Illuminate-Support-ServiceProvider.html#property_bootedCallbacks" + }, { + "fqsen": "\\Illuminate\\Support\\ServiceProvider\u003A\u003A\u0024publishGroups", + "name": "publishGroups", + "summary": "The\u0020paths\u0020that\u0020should\u0020be\u0020published\u0020by\u0020group.", + "url": "classes/Illuminate-Support-ServiceProvider.html#property_publishGroups" + }, { + "fqsen": "\\Illuminate\\Support\\Str", + "name": "Str", + "summary": "", + "url": "classes/Illuminate-Support-Str.html" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aof\u0028\u0029", + "name": "of", + "summary": "Get\u0020a\u0020new\u0020stringable\u0020object\u0020from\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_of" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aafter\u0028\u0029", + "name": "after", + "summary": "Return\u0020the\u0020remainder\u0020of\u0020a\u0020string\u0020after\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Str.html#method_after" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AafterLast\u0028\u0029", + "name": "afterLast", + "summary": "Return\u0020the\u0020remainder\u0020of\u0020a\u0020string\u0020after\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Str.html#method_afterLast" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aascii\u0028\u0029", + "name": "ascii", + "summary": "Transliterate\u0020a\u0020UTF\u002D8\u0020value\u0020to\u0020ASCII.", + "url": "classes/Illuminate-Support-Str.html#method_ascii" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Atransliterate\u0028\u0029", + "name": "transliterate", + "summary": "Transliterate\u0020a\u0020string\u0020to\u0020its\u0020closest\u0020ASCII\u0020representation.", + "url": "classes/Illuminate-Support-Str.html#method_transliterate" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Abefore\u0028\u0029", + "name": "before", + "summary": "Get\u0020the\u0020portion\u0020of\u0020a\u0020string\u0020before\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Str.html#method_before" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AbeforeLast\u0028\u0029", + "name": "beforeLast", + "summary": "Get\u0020the\u0020portion\u0020of\u0020a\u0020string\u0020before\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Str.html#method_beforeLast" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Abetween\u0028\u0029", + "name": "between", + "summary": "Get\u0020the\u0020portion\u0020of\u0020a\u0020string\u0020between\u0020two\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Str.html#method_between" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Acamel\u0028\u0029", + "name": "camel", + "summary": "Convert\u0020a\u0020value\u0020to\u0020camel\u0020case.", + "url": "classes/Illuminate-Support-Str.html#method_camel" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020contains\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Str.html#method_contains" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AcontainsAll\u0028\u0029", + "name": "containsAll", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020contains\u0020all\u0020array\u0020values.", + "url": "classes/Illuminate-Support-Str.html#method_containsAll" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020ends\u0020with\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Str.html#method_endsWith" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Afinish\u0028\u0029", + "name": "finish", + "summary": "Cap\u0020a\u0020string\u0020with\u0020a\u0020single\u0020instance\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Str.html#method_finish" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020matches\u0020a\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Str.html#method_is" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AisAscii\u0028\u0029", + "name": "isAscii", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020is\u00207\u0020bit\u0020ASCII.", + "url": "classes/Illuminate-Support-Str.html#method_isAscii" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AisUuid\u0028\u0029", + "name": "isUuid", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020is\u0020a\u0020valid\u0020UUID.", + "url": "classes/Illuminate-Support-Str.html#method_isUuid" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Akebab\u0028\u0029", + "name": "kebab", + "summary": "Convert\u0020a\u0020string\u0020to\u0020kebab\u0020case.", + "url": "classes/Illuminate-Support-Str.html#method_kebab" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "Return\u0020the\u0020length\u0020of\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_length" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Alimit\u0028\u0029", + "name": "limit", + "summary": "Limit\u0020the\u0020number\u0020of\u0020characters\u0020in\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_limit" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Alower\u0028\u0029", + "name": "lower", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020lower\u002Dcase.", + "url": "classes/Illuminate-Support-Str.html#method_lower" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Awords\u0028\u0029", + "name": "words", + "summary": "Limit\u0020the\u0020number\u0020of\u0020words\u0020in\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_words" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Amarkdown\u0028\u0029", + "name": "markdown", + "summary": "Converts\u0020GitHub\u0020flavored\u0020Markdown\u0020into\u0020HTML.", + "url": "classes/Illuminate-Support-Str.html#method_markdown" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Amask\u0028\u0029", + "name": "mask", + "summary": "Masks\u0020a\u0020portion\u0020of\u0020a\u0020string\u0020with\u0020a\u0020repeated\u0020character.", + "url": "classes/Illuminate-Support-Str.html#method_mask" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Get\u0020the\u0020string\u0020matching\u0020the\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Str.html#method_match" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AmatchAll\u0028\u0029", + "name": "matchAll", + "summary": "Get\u0020the\u0020string\u0020matching\u0020the\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Str.html#method_matchAll" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003ApadBoth\u0028\u0029", + "name": "padBoth", + "summary": "Pad\u0020both\u0020sides\u0020of\u0020a\u0020string\u0020with\u0020another.", + "url": "classes/Illuminate-Support-Str.html#method_padBoth" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003ApadLeft\u0028\u0029", + "name": "padLeft", + "summary": "Pad\u0020the\u0020left\u0020side\u0020of\u0020a\u0020string\u0020with\u0020another.", + "url": "classes/Illuminate-Support-Str.html#method_padLeft" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003ApadRight\u0028\u0029", + "name": "padRight", + "summary": "Pad\u0020the\u0020right\u0020side\u0020of\u0020a\u0020string\u0020with\u0020another.", + "url": "classes/Illuminate-Support-Str.html#method_padRight" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AparseCallback\u0028\u0029", + "name": "parseCallback", + "summary": "Parse\u0020a\u0020Class\u005B\u0040\u005Dmethod\u0020style\u0020callback\u0020into\u0020class\u0020and\u0020method.", + "url": "classes/Illuminate-Support-Str.html#method_parseCallback" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aplural\u0028\u0029", + "name": "plural", + "summary": "Get\u0020the\u0020plural\u0020form\u0020of\u0020an\u0020English\u0020word.", + "url": "classes/Illuminate-Support-Str.html#method_plural" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003ApluralStudly\u0028\u0029", + "name": "pluralStudly", + "summary": "Pluralize\u0020the\u0020last\u0020word\u0020of\u0020an\u0020English,\u0020studly\u0020caps\u0020case\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_pluralStudly" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Arandom\u0028\u0029", + "name": "random", + "summary": "Generate\u0020a\u0020more\u0020truly\u0020\u0022random\u0022\u0020alpha\u002Dnumeric\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_random" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Arepeat\u0028\u0029", + "name": "repeat", + "summary": "Repeat\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_repeat" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AreplaceArray\u0028\u0029", + "name": "replaceArray", + "summary": "Replace\u0020a\u0020given\u0020value\u0020in\u0020the\u0020string\u0020sequentially\u0020with\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Str.html#method_replaceArray" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Replace\u0020the\u0020given\u0020value\u0020in\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_replace" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AreplaceFirst\u0028\u0029", + "name": "replaceFirst", + "summary": "Replace\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020value\u0020in\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_replaceFirst" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AreplaceLast\u0028\u0029", + "name": "replaceLast", + "summary": "Replace\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020value\u0020in\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_replaceLast" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Remove\u0020any\u0020occurrence\u0020of\u0020the\u0020given\u0020string\u0020in\u0020the\u0020subject.", + "url": "classes/Illuminate-Support-Str.html#method_remove" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "Reverse\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_reverse" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Begin\u0020a\u0020string\u0020with\u0020a\u0020single\u0020instance\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Str.html#method_start" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aupper\u0028\u0029", + "name": "upper", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020upper\u002Dcase.", + "url": "classes/Illuminate-Support-Str.html#method_upper" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020title\u0020case.", + "url": "classes/Illuminate-Support-Str.html#method_title" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aheadline\u0028\u0029", + "name": "headline", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020title\u0020case\u0020for\u0020each\u0020word.", + "url": "classes/Illuminate-Support-Str.html#method_headline" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Asingular\u0028\u0029", + "name": "singular", + "summary": "Get\u0020the\u0020singular\u0020form\u0020of\u0020an\u0020English\u0020word.", + "url": "classes/Illuminate-Support-Str.html#method_singular" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aslug\u0028\u0029", + "name": "slug", + "summary": "Generate\u0020a\u0020URL\u0020friendly\u0020\u0022slug\u0022\u0020from\u0020a\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_slug" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Asnake\u0028\u0029", + "name": "snake", + "summary": "Convert\u0020a\u0020string\u0020to\u0020snake\u0020case.", + "url": "classes/Illuminate-Support-Str.html#method_snake" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020starts\u0020with\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Str.html#method_startsWith" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Astudly\u0028\u0029", + "name": "studly", + "summary": "Convert\u0020a\u0020value\u0020to\u0020studly\u0020caps\u0020case.", + "url": "classes/Illuminate-Support-Str.html#method_studly" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Asubstr\u0028\u0029", + "name": "substr", + "summary": "Returns\u0020the\u0020portion\u0020of\u0020the\u0020string\u0020specified\u0020by\u0020the\u0020start\u0020and\u0020length\u0020parameters.", + "url": "classes/Illuminate-Support-Str.html#method_substr" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AsubstrCount\u0028\u0029", + "name": "substrCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020substring\u0020occurrences.", + "url": "classes/Illuminate-Support-Str.html#method_substrCount" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AsubstrReplace\u0028\u0029", + "name": "substrReplace", + "summary": "Replace\u0020text\u0020within\u0020a\u0020portion\u0020of\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Str.html#method_substrReplace" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aswap\u0028\u0029", + "name": "swap", + "summary": "Swap\u0020multiple\u0020keywords\u0020in\u0020a\u0020string\u0020with\u0020other\u0020keywords.", + "url": "classes/Illuminate-Support-Str.html#method_swap" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aucfirst\u0028\u0029", + "name": "ucfirst", + "summary": "Make\u0020a\u0020string\u0027s\u0020first\u0020character\u0020uppercase.", + "url": "classes/Illuminate-Support-Str.html#method_ucfirst" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Aucsplit\u0028\u0029", + "name": "ucsplit", + "summary": "Split\u0020a\u0020string\u0020into\u0020pieces\u0020by\u0020uppercase\u0020characters.", + "url": "classes/Illuminate-Support-Str.html#method_ucsplit" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AwordCount\u0028\u0029", + "name": "wordCount", + "summary": "Get\u0020the\u0020number\u0020of\u0020words\u0020a\u0020string\u0020contains.", + "url": "classes/Illuminate-Support-Str.html#method_wordCount" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003Auuid\u0028\u0029", + "name": "uuid", + "summary": "Generate\u0020a\u0020UUID\u0020\u0028version\u00204\u0029.", + "url": "classes/Illuminate-Support-Str.html#method_uuid" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AorderedUuid\u0028\u0029", + "name": "orderedUuid", + "summary": "Generate\u0020a\u0020time\u002Dordered\u0020UUID\u0020\u0028version\u00204\u0029.", + "url": "classes/Illuminate-Support-Str.html#method_orderedUuid" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AcreateUuidsUsing\u0028\u0029", + "name": "createUuidsUsing", + "summary": "Set\u0020the\u0020callable\u0020that\u0020will\u0020be\u0020used\u0020to\u0020generate\u0020UUIDs.", + "url": "classes/Illuminate-Support-Str.html#method_createUuidsUsing" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AcreateUuidsNormally\u0028\u0029", + "name": "createUuidsNormally", + "summary": "Indicate\u0020that\u0020UUIDs\u0020should\u0020be\u0020created\u0020normally\u0020and\u0020not\u0020using\u0020a\u0020custom\u0020factory.", + "url": "classes/Illuminate-Support-Str.html#method_createUuidsNormally" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003AflushCache\u0028\u0029", + "name": "flushCache", + "summary": "Remove\u0020all\u0020strings\u0020from\u0020the\u0020casing\u0020caches.", + "url": "classes/Illuminate-Support-Str.html#method_flushCache" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003A\u0024snakeCache", + "name": "snakeCache", + "summary": "The\u0020cache\u0020of\u0020snake\u002Dcased\u0020words.", + "url": "classes/Illuminate-Support-Str.html#property_snakeCache" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003A\u0024camelCache", + "name": "camelCache", + "summary": "The\u0020cache\u0020of\u0020camel\u002Dcased\u0020words.", + "url": "classes/Illuminate-Support-Str.html#property_camelCache" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003A\u0024studlyCache", + "name": "studlyCache", + "summary": "The\u0020cache\u0020of\u0020studly\u002Dcased\u0020words.", + "url": "classes/Illuminate-Support-Str.html#property_studlyCache" + }, { + "fqsen": "\\Illuminate\\Support\\Str\u003A\u003A\u0024uuidFactory", + "name": "uuidFactory", + "summary": "The\u0020callback\u0020that\u0020should\u0020be\u0020used\u0020to\u0020generate\u0020UUIDs.", + "url": "classes/Illuminate-Support-Str.html#property_uuidFactory" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable", + "name": "Stringable", + "summary": "", + "url": "classes/Illuminate-Support-Stringable.html" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020class.", + "url": "classes/Illuminate-Support-Stringable.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aafter\u0028\u0029", + "name": "after", + "summary": "Return\u0020the\u0020remainder\u0020of\u0020a\u0020string\u0020after\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_after" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AafterLast\u0028\u0029", + "name": "afterLast", + "summary": "Return\u0020the\u0020remainder\u0020of\u0020a\u0020string\u0020after\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_afterLast" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Append\u0020the\u0020given\u0020values\u0020to\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_append" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aascii\u0028\u0029", + "name": "ascii", + "summary": "Transliterate\u0020a\u0020UTF\u002D8\u0020value\u0020to\u0020ASCII.", + "url": "classes/Illuminate-Support-Stringable.html#method_ascii" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Abasename\u0028\u0029", + "name": "basename", + "summary": "Get\u0020the\u0020trailing\u0020name\u0020component\u0020of\u0020the\u0020path.", + "url": "classes/Illuminate-Support-Stringable.html#method_basename" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AclassBasename\u0028\u0029", + "name": "classBasename", + "summary": "Get\u0020the\u0020basename\u0020of\u0020the\u0020class\u0020path.", + "url": "classes/Illuminate-Support-Stringable.html#method_classBasename" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Abefore\u0028\u0029", + "name": "before", + "summary": "Get\u0020the\u0020portion\u0020of\u0020a\u0020string\u0020before\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_before" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AbeforeLast\u0028\u0029", + "name": "beforeLast", + "summary": "Get\u0020the\u0020portion\u0020of\u0020a\u0020string\u0020before\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_beforeLast" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Abetween\u0028\u0029", + "name": "between", + "summary": "Get\u0020the\u0020portion\u0020of\u0020a\u0020string\u0020between\u0020two\u0020given\u0020values.", + "url": "classes/Illuminate-Support-Stringable.html#method_between" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Acamel\u0028\u0029", + "name": "camel", + "summary": "Convert\u0020a\u0020value\u0020to\u0020camel\u0020case.", + "url": "classes/Illuminate-Support-Stringable.html#method_camel" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020contains\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Stringable.html#method_contains" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AcontainsAll\u0028\u0029", + "name": "containsAll", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020contains\u0020all\u0020array\u0020values.", + "url": "classes/Illuminate-Support-Stringable.html#method_containsAll" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Adirname\u0028\u0029", + "name": "dirname", + "summary": "Get\u0020the\u0020parent\u0020directory\u0027s\u0020path.", + "url": "classes/Illuminate-Support-Stringable.html#method_dirname" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020ends\u0020with\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Stringable.html#method_endsWith" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aexactly\u0028\u0029", + "name": "exactly", + "summary": "Determine\u0020if\u0020the\u0020string\u0020is\u0020an\u0020exact\u0020match\u0020with\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_exactly" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aexplode\u0028\u0029", + "name": "explode", + "summary": "Explode\u0020the\u0020string\u0020into\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Stringable.html#method_explode" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "Split\u0020a\u0020string\u0020using\u0020a\u0020regular\u0020expression\u0020or\u0020by\u0020length.", + "url": "classes/Illuminate-Support-Stringable.html#method_split" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Afinish\u0028\u0029", + "name": "finish", + "summary": "Cap\u0020a\u0020string\u0020with\u0020a\u0020single\u0020instance\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_finish" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020matches\u0020a\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Stringable.html#method_is" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AisAscii\u0028\u0029", + "name": "isAscii", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020is\u00207\u0020bit\u0020ASCII.", + "url": "classes/Illuminate-Support-Stringable.html#method_isAscii" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AisUuid\u0028\u0029", + "name": "isUuid", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020is\u0020a\u0020valid\u0020UUID.", + "url": "classes/Illuminate-Support-Stringable.html#method_isUuid" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020given\u0020string\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-Stringable.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020given\u0020string\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Stringable.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Akebab\u0028\u0029", + "name": "kebab", + "summary": "Convert\u0020a\u0020string\u0020to\u0020kebab\u0020case.", + "url": "classes/Illuminate-Support-Stringable.html#method_kebab" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "Return\u0020the\u0020length\u0020of\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_length" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Alimit\u0028\u0029", + "name": "limit", + "summary": "Limit\u0020the\u0020number\u0020of\u0020characters\u0020in\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_limit" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Alower\u0028\u0029", + "name": "lower", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020lower\u002Dcase.", + "url": "classes/Illuminate-Support-Stringable.html#method_lower" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Amarkdown\u0028\u0029", + "name": "markdown", + "summary": "Convert\u0020GitHub\u0020flavored\u0020Markdown\u0020into\u0020HTML.", + "url": "classes/Illuminate-Support-Stringable.html#method_markdown" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Amask\u0028\u0029", + "name": "mask", + "summary": "Masks\u0020a\u0020portion\u0020of\u0020a\u0020string\u0020with\u0020a\u0020repeated\u0020character.", + "url": "classes/Illuminate-Support-Stringable.html#method_mask" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Get\u0020the\u0020string\u0020matching\u0020the\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Stringable.html#method_match" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AmatchAll\u0028\u0029", + "name": "matchAll", + "summary": "Get\u0020the\u0020string\u0020matching\u0020the\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Stringable.html#method_matchAll" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Atest\u0028\u0029", + "name": "test", + "summary": "Determine\u0020if\u0020the\u0020string\u0020matches\u0020the\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Stringable.html#method_test" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003ApadBoth\u0028\u0029", + "name": "padBoth", + "summary": "Pad\u0020both\u0020sides\u0020of\u0020the\u0020string\u0020with\u0020another.", + "url": "classes/Illuminate-Support-Stringable.html#method_padBoth" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003ApadLeft\u0028\u0029", + "name": "padLeft", + "summary": "Pad\u0020the\u0020left\u0020side\u0020of\u0020the\u0020string\u0020with\u0020another.", + "url": "classes/Illuminate-Support-Stringable.html#method_padLeft" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003ApadRight\u0028\u0029", + "name": "padRight", + "summary": "Pad\u0020the\u0020right\u0020side\u0020of\u0020the\u0020string\u0020with\u0020another.", + "url": "classes/Illuminate-Support-Stringable.html#method_padRight" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AparseCallback\u0028\u0029", + "name": "parseCallback", + "summary": "Parse\u0020a\u0020Class\u0040method\u0020style\u0020callback\u0020into\u0020class\u0020and\u0020method.", + "url": "classes/Illuminate-Support-Stringable.html#method_parseCallback" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Apipe\u0028\u0029", + "name": "pipe", + "summary": "Call\u0020the\u0020given\u0020callback\u0020and\u0020return\u0020a\u0020new\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_pipe" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aplural\u0028\u0029", + "name": "plural", + "summary": "Get\u0020the\u0020plural\u0020form\u0020of\u0020an\u0020English\u0020word.", + "url": "classes/Illuminate-Support-Stringable.html#method_plural" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003ApluralStudly\u0028\u0029", + "name": "pluralStudly", + "summary": "Pluralize\u0020the\u0020last\u0020word\u0020of\u0020an\u0020English,\u0020studly\u0020caps\u0020case\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_pluralStudly" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "Prepend\u0020the\u0020given\u0020values\u0020to\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_prepend" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Remove\u0020any\u0020occurrence\u0020of\u0020the\u0020given\u0020string\u0020in\u0020the\u0020subject.", + "url": "classes/Illuminate-Support-Stringable.html#method_remove" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "Reverse\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_reverse" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Arepeat\u0028\u0029", + "name": "repeat", + "summary": "Repeat\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_repeat" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Replace\u0020the\u0020given\u0020value\u0020in\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_replace" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AreplaceArray\u0028\u0029", + "name": "replaceArray", + "summary": "Replace\u0020a\u0020given\u0020value\u0020in\u0020the\u0020string\u0020sequentially\u0020with\u0020an\u0020array.", + "url": "classes/Illuminate-Support-Stringable.html#method_replaceArray" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AreplaceFirst\u0028\u0029", + "name": "replaceFirst", + "summary": "Replace\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020value\u0020in\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_replaceFirst" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AreplaceLast\u0028\u0029", + "name": "replaceLast", + "summary": "Replace\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020value\u0020in\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_replaceLast" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AreplaceMatches\u0028\u0029", + "name": "replaceMatches", + "summary": "Replace\u0020the\u0020patterns\u0020matching\u0020the\u0020given\u0020regular\u0020expression.", + "url": "classes/Illuminate-Support-Stringable.html#method_replaceMatches" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Ascan\u0028\u0029", + "name": "scan", + "summary": "Parse\u0020input\u0020from\u0020a\u0020string\u0020to\u0020a\u0020collection,\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Illuminate-Support-Stringable.html#method_scan" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Begin\u0020a\u0020string\u0020with\u0020a\u0020single\u0020instance\u0020of\u0020a\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_start" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AstripTags\u0028\u0029", + "name": "stripTags", + "summary": "Strip\u0020HTML\u0020and\u0020PHP\u0020tags\u0020from\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_stripTags" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aupper\u0028\u0029", + "name": "upper", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020upper\u002Dcase.", + "url": "classes/Illuminate-Support-Stringable.html#method_upper" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020title\u0020case.", + "url": "classes/Illuminate-Support-Stringable.html#method_title" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aheadline\u0028\u0029", + "name": "headline", + "summary": "Convert\u0020the\u0020given\u0020string\u0020to\u0020title\u0020case\u0020for\u0020each\u0020word.", + "url": "classes/Illuminate-Support-Stringable.html#method_headline" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Asingular\u0028\u0029", + "name": "singular", + "summary": "Get\u0020the\u0020singular\u0020form\u0020of\u0020an\u0020English\u0020word.", + "url": "classes/Illuminate-Support-Stringable.html#method_singular" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aslug\u0028\u0029", + "name": "slug", + "summary": "Generate\u0020a\u0020URL\u0020friendly\u0020\u0022slug\u0022\u0020from\u0020a\u0020given\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_slug" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Asnake\u0028\u0029", + "name": "snake", + "summary": "Convert\u0020a\u0020string\u0020to\u0020snake\u0020case.", + "url": "classes/Illuminate-Support-Stringable.html#method_snake" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "Determine\u0020if\u0020a\u0020given\u0020string\u0020starts\u0020with\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Stringable.html#method_startsWith" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Astudly\u0028\u0029", + "name": "studly", + "summary": "Convert\u0020a\u0020value\u0020to\u0020studly\u0020caps\u0020case.", + "url": "classes/Illuminate-Support-Stringable.html#method_studly" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Asubstr\u0028\u0029", + "name": "substr", + "summary": "Returns\u0020the\u0020portion\u0020of\u0020the\u0020string\u0020specified\u0020by\u0020the\u0020start\u0020and\u0020length\u0020parameters.", + "url": "classes/Illuminate-Support-Stringable.html#method_substr" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AsubstrCount\u0028\u0029", + "name": "substrCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020substring\u0020occurrences.", + "url": "classes/Illuminate-Support-Stringable.html#method_substrCount" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AsubstrReplace\u0028\u0029", + "name": "substrReplace", + "summary": "Replace\u0020text\u0020within\u0020a\u0020portion\u0020of\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_substrReplace" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aswap\u0028\u0029", + "name": "swap", + "summary": "Swap\u0020multiple\u0020keywords\u0020in\u0020a\u0020string\u0020with\u0020other\u0020keywords.", + "url": "classes/Illuminate-Support-Stringable.html#method_swap" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Atrim\u0028\u0029", + "name": "trim", + "summary": "Trim\u0020the\u0020string\u0020of\u0020the\u0020given\u0020characters.", + "url": "classes/Illuminate-Support-Stringable.html#method_trim" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Altrim\u0028\u0029", + "name": "ltrim", + "summary": "Left\u0020trim\u0020the\u0020string\u0020of\u0020the\u0020given\u0020characters.", + "url": "classes/Illuminate-Support-Stringable.html#method_ltrim" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Artrim\u0028\u0029", + "name": "rtrim", + "summary": "Right\u0020trim\u0020the\u0020string\u0020of\u0020the\u0020given\u0020characters.", + "url": "classes/Illuminate-Support-Stringable.html#method_rtrim" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aucfirst\u0028\u0029", + "name": "ucfirst", + "summary": "Make\u0020a\u0020string\u0027s\u0020first\u0020character\u0020uppercase.", + "url": "classes/Illuminate-Support-Stringable.html#method_ucfirst" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Aucsplit\u0028\u0029", + "name": "ucsplit", + "summary": "Split\u0020a\u0020string\u0020by\u0020uppercase\u0020characters.", + "url": "classes/Illuminate-Support-Stringable.html#method_ucsplit" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenContains\u0028\u0029", + "name": "whenContains", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020contains\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenContains" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenContainsAll\u0028\u0029", + "name": "whenContainsAll", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020contains\u0020all\u0020array\u0020values.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenContainsAll" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenEmpty\u0028\u0029", + "name": "whenEmpty", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020is\u0020empty.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenNotEmpty\u0028\u0029", + "name": "whenNotEmpty", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenNotEmpty" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenEndsWith\u0028\u0029", + "name": "whenEndsWith", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020ends\u0020with\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenEndsWith" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenExactly\u0028\u0029", + "name": "whenExactly", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020is\u0020an\u0020exact\u0020match\u0020with\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenExactly" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenIs\u0028\u0029", + "name": "whenIs", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020matches\u0020a\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenIs" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenIsAscii\u0028\u0029", + "name": "whenIsAscii", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020is\u00207\u0020bit\u0020ASCII.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenIsAscii" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenIsUuid\u0028\u0029", + "name": "whenIsUuid", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020is\u0020a\u0020valid\u0020UUID.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenIsUuid" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenStartsWith\u0028\u0029", + "name": "whenStartsWith", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020starts\u0020with\u0020a\u0020given\u0020substring.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenStartsWith" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwhenTest\u0028\u0029", + "name": "whenTest", + "summary": "Execute\u0020the\u0020given\u0020callback\u0020if\u0020the\u0020string\u0020matches\u0020the\u0020given\u0020pattern.", + "url": "classes/Illuminate-Support-Stringable.html#method_whenTest" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Awords\u0028\u0029", + "name": "words", + "summary": "Limit\u0020the\u0020number\u0020of\u0020words\u0020in\u0020a\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_words" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AwordCount\u0028\u0029", + "name": "wordCount", + "summary": "Get\u0020the\u0020number\u0020of\u0020words\u0020a\u0020string\u0020contains.", + "url": "classes/Illuminate-Support-Stringable.html#method_wordCount" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AtoHtmlString\u0028\u0029", + "name": "toHtmlString", + "summary": "Convert\u0020the\u0020string\u0020into\u0020a\u0020\u0060HtmlString\u0060\u0020instance.", + "url": "classes/Illuminate-Support-Stringable.html#method_toHtmlString" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020the\u0020string.", + "url": "classes/Illuminate-Support-Stringable.html#method_dump" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003Add\u0028\u0029", + "name": "dd", + "summary": "Dump\u0020the\u0020string\u0020and\u0020end\u0020the\u0020script.", + "url": "classes/Illuminate-Support-Stringable.html#method_dd" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Convert\u0020the\u0020object\u0020to\u0020a\u0020string\u0020when\u0020JSON\u0020encoded.", + "url": "classes/Illuminate-Support-Stringable.html#method_jsonSerialize" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Proxy\u0020dynamic\u0020properties\u0020onto\u0020methods.", + "url": "classes/Illuminate-Support-Stringable.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020raw\u0020string\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\Stringable\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020underlying\u0020string\u0020value.", + "url": "classes/Illuminate-Support-Stringable.html#property_value" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake", + "name": "BatchRepositoryFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieve\u0020a\u0020list\u0020of\u0020batches.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_get" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Retrieve\u0020information\u0020about\u0020an\u0020existing\u0020batch.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_find" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003Astore\u0028\u0029", + "name": "store", + "summary": "Store\u0020a\u0020new\u0020pending\u0020batch.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_store" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003AincrementTotalJobs\u0028\u0029", + "name": "incrementTotalJobs", + "summary": "Increment\u0020the\u0020total\u0020number\u0020of\u0020jobs\u0020within\u0020the\u0020batch.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_incrementTotalJobs" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003AdecrementPendingJobs\u0028\u0029", + "name": "decrementPendingJobs", + "summary": "Decrement\u0020the\u0020total\u0020number\u0020of\u0020pending\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_decrementPendingJobs" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003AincrementFailedJobs\u0028\u0029", + "name": "incrementFailedJobs", + "summary": "Increment\u0020the\u0020total\u0020number\u0020of\u0020failed\u0020jobs\u0020for\u0020the\u0020batch.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_incrementFailedJobs" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003AmarkAsFinished\u0028\u0029", + "name": "markAsFinished", + "summary": "Mark\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID\u0020as\u0020finished.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_markAsFinished" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003Acancel\u0028\u0029", + "name": "cancel", + "summary": "Cancel\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_cancel" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020the\u0020batch\u0020that\u0020has\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_delete" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BatchRepositoryFake\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Execute\u0020the\u0020given\u0020Closure\u0020within\u0020a\u0020storage\u0020specific\u0020transaction.", + "url": "classes/Illuminate-Support-Testing-Fakes-BatchRepositoryFake.html#method_transaction" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake", + "name": "BusFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020bus\u0020fake\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatched\u0028\u0029", + "name": "assertDispatched", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedTimes\u0028\u0029", + "name": "assertDispatchedTimes", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertNotDispatched\u0028\u0029", + "name": "assertNotDispatched", + "summary": "Determine\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertNotDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertNothingDispatched\u0028\u0029", + "name": "assertNothingDispatched", + "summary": "Assert\u0020that\u0020no\u0020jobs\u0020were\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertNothingDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedSync\u0028\u0029", + "name": "assertDispatchedSync", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020explicitly\u0020dispatched\u0020synchronously\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedSync" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedSyncTimes\u0028\u0029", + "name": "assertDispatchedSyncTimes", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020synchronously\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedSyncTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertNotDispatchedSync\u0028\u0029", + "name": "assertNotDispatchedSync", + "summary": "Determine\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertNotDispatchedSync" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedAfterResponse\u0028\u0029", + "name": "assertDispatchedAfterResponse", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020after\u0020the\u0020response\u0020was\u0020sent\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedAfterResponse" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedAfterResponseTimes\u0028\u0029", + "name": "assertDispatchedAfterResponseTimes", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020after\u0020the\u0020response\u0020was\u0020sent\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedAfterResponseTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertNotDispatchedAfterResponse\u0028\u0029", + "name": "assertNotDispatchedAfterResponse", + "summary": "Determine\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertNotDispatchedAfterResponse" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertChained\u0028\u0029", + "name": "assertChained", + "summary": "Assert\u0020if\u0020a\u0020chain\u0020of\u0020jobs\u0020was\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertChained" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AresetChainPropertiesToDefaults\u0028\u0029", + "name": "resetChainPropertiesToDefaults", + "summary": "Reset\u0020the\u0020chain\u0020properties\u0020to\u0020their\u0020default\u0020values\u0020on\u0020the\u0020job.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_resetChainPropertiesToDefaults" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedWithoutChain\u0028\u0029", + "name": "assertDispatchedWithoutChain", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020with\u0020an\u0020empty\u0020chain\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedWithoutChain" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedWithChainOfObjects\u0028\u0029", + "name": "assertDispatchedWithChainOfObjects", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020with\u0020chained\u0020jobs\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedWithChainOfObjects" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertDispatchedWithChainOfClasses\u0028\u0029", + "name": "assertDispatchedWithChainOfClasses", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020dispatched\u0020with\u0020chained\u0020jobs\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertDispatchedWithChainOfClasses" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AisChainOfObjects\u0028\u0029", + "name": "isChainOfObjects", + "summary": "Determine\u0020if\u0020the\u0020given\u0020chain\u0020is\u0020entirely\u0020composed\u0020of\u0020objects.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_isChainOfObjects" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertBatched\u0028\u0029", + "name": "assertBatched", + "summary": "Assert\u0020if\u0020a\u0020batch\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertBatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AassertBatchCount\u0028\u0029", + "name": "assertBatchCount", + "summary": "Assert\u0020the\u0020number\u0020of\u0020batches\u0020that\u0020have\u0020been\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_assertBatchCount" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003Adispatched\u0028\u0029", + "name": "dispatched", + "summary": "Get\u0020all\u0020of\u0020the\u0020jobs\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AdispatchedSync\u0028\u0029", + "name": "dispatchedSync", + "summary": "Get\u0020all\u0020of\u0020the\u0020jobs\u0020dispatched\u0020synchronously\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatchedSync" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AdispatchedAfterResponse\u0028\u0029", + "name": "dispatchedAfterResponse", + "summary": "Get\u0020all\u0020of\u0020the\u0020jobs\u0020dispatched\u0020after\u0020the\u0020response\u0020was\u0020sent\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatchedAfterResponse" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003Abatched\u0028\u0029", + "name": "batched", + "summary": "Get\u0020all\u0020of\u0020the\u0020pending\u0020batches\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_batched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AhasDispatched\u0028\u0029", + "name": "hasDispatched", + "summary": "Determine\u0020if\u0020there\u0020are\u0020any\u0020stored\u0020commands\u0020for\u0020a\u0020given\u0020class.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_hasDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AhasDispatchedSync\u0028\u0029", + "name": "hasDispatchedSync", + "summary": "Determine\u0020if\u0020there\u0020are\u0020any\u0020stored\u0020commands\u0020for\u0020a\u0020given\u0020class.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_hasDispatchedSync" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AhasDispatchedAfterResponse\u0028\u0029", + "name": "hasDispatchedAfterResponse", + "summary": "Determine\u0020if\u0020there\u0020are\u0020any\u0020stored\u0020commands\u0020for\u0020a\u0020given\u0020class.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_hasDispatchedAfterResponse" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AdispatchSync\u0028\u0029", + "name": "dispatchSync", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020in\u0020the\u0020current\u0020process.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatchSync" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AdispatchNow\u0028\u0029", + "name": "dispatchNow", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020in\u0020the\u0020current\u0020process.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatchNow" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AdispatchToQueue\u0028\u0029", + "name": "dispatchToQueue", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler\u0020behind\u0020a\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatchToQueue" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AdispatchAfterResponse\u0028\u0029", + "name": "dispatchAfterResponse", + "summary": "Dispatch\u0020a\u0020command\u0020to\u0020its\u0020appropriate\u0020handler.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_dispatchAfterResponse" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003Achain\u0028\u0029", + "name": "chain", + "summary": "Create\u0020a\u0020new\u0020chain\u0020of\u0020queueable\u0020jobs.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_chain" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AfindBatch\u0028\u0029", + "name": "findBatch", + "summary": "Attempt\u0020to\u0020find\u0020the\u0020batch\u0020with\u0020the\u0020given\u0020ID.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_findBatch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003Abatch\u0028\u0029", + "name": "batch", + "summary": "Create\u0020a\u0020new\u0020batch\u0020of\u0020queueable\u0020jobs.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_batch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003ArecordPendingBatch\u0028\u0029", + "name": "recordPendingBatch", + "summary": "Record\u0020the\u0020fake\u0020pending\u0020batch\u0020dispatch.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_recordPendingBatch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AshouldFakeJob\u0028\u0029", + "name": "shouldFakeJob", + "summary": "Determine\u0020if\u0020a\u0020command\u0020should\u0020be\u0020faked\u0020or\u0020actually\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_shouldFakeJob" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003ApipeThrough\u0028\u0029", + "name": "pipeThrough", + "summary": "Set\u0020the\u0020pipes\u0020commands\u0020should\u0020be\u0020piped\u0020through\u0020before\u0020dispatching.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_pipeThrough" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AhasCommandHandler\u0028\u0029", + "name": "hasCommandHandler", + "summary": "Determine\u0020if\u0020the\u0020given\u0020command\u0020has\u0020a\u0020handler.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_hasCommandHandler" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003AgetCommandHandler\u0028\u0029", + "name": "getCommandHandler", + "summary": "Retrieve\u0020the\u0020handler\u0020for\u0020a\u0020command.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_getCommandHandler" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020a\u0020command\u0020to\u0020a\u0020handler.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#method_map" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A\u0024dispatcher", + "name": "dispatcher", + "summary": "The\u0020original\u0020Bus\u0020dispatcher\u0020implementation.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#property_dispatcher" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A\u0024jobsToFake", + "name": "jobsToFake", + "summary": "The\u0020job\u0020types\u0020that\u0020should\u0020be\u0020intercepted\u0020instead\u0020of\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#property_jobsToFake" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A\u0024commands", + "name": "commands", + "summary": "The\u0020commands\u0020that\u0020have\u0020been\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#property_commands" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A\u0024commandsSync", + "name": "commandsSync", + "summary": "The\u0020commands\u0020that\u0020have\u0020been\u0020dispatched\u0020synchronously.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#property_commandsSync" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A\u0024commandsAfterResponse", + "name": "commandsAfterResponse", + "summary": "The\u0020commands\u0020that\u0020have\u0020been\u0020dispatched\u0020after\u0020the\u0020response\u0020has\u0020been\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#property_commandsAfterResponse" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\BusFake\u003A\u003A\u0024batches", + "name": "batches", + "summary": "The\u0020batches\u0020that\u0020have\u0020been\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-BusFake.html#property_batches" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake", + "name": "EventFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020event\u0020fake\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AassertListening\u0028\u0029", + "name": "assertListening", + "summary": "Assert\u0020if\u0020an\u0020event\u0020has\u0020a\u0020listener\u0020attached\u0020to\u0020it.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_assertListening" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AassertDispatched\u0028\u0029", + "name": "assertDispatched", + "summary": "Assert\u0020if\u0020an\u0020event\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_assertDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AassertDispatchedTimes\u0028\u0029", + "name": "assertDispatchedTimes", + "summary": "Assert\u0020if\u0020an\u0020event\u0020was\u0020dispatched\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_assertDispatchedTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AassertNotDispatched\u0028\u0029", + "name": "assertNotDispatched", + "summary": "Determine\u0020if\u0020an\u0020event\u0020was\u0020dispatched\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_assertNotDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AassertNothingDispatched\u0028\u0029", + "name": "assertNothingDispatched", + "summary": "Assert\u0020that\u0020no\u0020events\u0020were\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_assertNothingDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Adispatched\u0028\u0029", + "name": "dispatched", + "summary": "Get\u0020all\u0020of\u0020the\u0020events\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_dispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AhasDispatched\u0028\u0029", + "name": "hasDispatched", + "summary": "Determine\u0020if\u0020the\u0020given\u0020event\u0020has\u0020been\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_hasDispatched" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Alisten\u0028\u0029", + "name": "listen", + "summary": "Register\u0020an\u0020event\u0020listener\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_listen" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AhasListeners\u0028\u0029", + "name": "hasListeners", + "summary": "Determine\u0020if\u0020a\u0020given\u0020event\u0020has\u0020listeners.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_hasListeners" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Register\u0020an\u0020event\u0020and\u0020payload\u0020to\u0020be\u0020dispatched\u0020later.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_push" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Asubscribe\u0028\u0029", + "name": "subscribe", + "summary": "Register\u0020an\u0020event\u0020subscriber\u0020with\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_subscribe" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020a\u0020set\u0020of\u0020pushed\u0020events.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_flush" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Fire\u0020an\u0020event\u0020and\u0020call\u0020the\u0020listeners.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AshouldFakeEvent\u0028\u0029", + "name": "shouldFakeEvent", + "summary": "Determine\u0020if\u0020an\u0020event\u0020should\u0020be\u0020faked\u0020or\u0020actually\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_shouldFakeEvent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020a\u0020set\u0020of\u0020listeners\u0020from\u0020the\u0020dispatcher.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_forget" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003AforgetPushed\u0028\u0029", + "name": "forgetPushed", + "summary": "Forget\u0020all\u0020of\u0020the\u0020queued\u0020listeners.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_forgetPushed" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003Auntil\u0028\u0029", + "name": "until", + "summary": "Dispatch\u0020an\u0020event\u0020and\u0020call\u0020the\u0020listeners.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#method_until" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003A\u0024dispatcher", + "name": "dispatcher", + "summary": "The\u0020original\u0020event\u0020dispatcher.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#property_dispatcher" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003A\u0024eventsToFake", + "name": "eventsToFake", + "summary": "The\u0020event\u0020types\u0020that\u0020should\u0020be\u0020intercepted\u0020instead\u0020of\u0020dispatched.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#property_eventsToFake" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\EventFake\u003A\u003A\u0024events", + "name": "events", + "summary": "All\u0020of\u0020the\u0020events\u0020that\u0020have\u0020been\u0020intercepted\u0020keyed\u0020by\u0020type.", + "url": "classes/Illuminate-Support-Testing-Fakes-EventFake.html#property_events" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake", + "name": "MailFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertSent\u0028\u0029", + "name": "assertSent", + "summary": "Assert\u0020if\u0020a\u0020mailable\u0020was\u0020sent\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertSentTimes\u0028\u0029", + "name": "assertSentTimes", + "summary": "Assert\u0020if\u0020a\u0020mailable\u0020was\u0020sent\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertSentTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertNotOutgoing\u0028\u0029", + "name": "assertNotOutgoing", + "summary": "Determine\u0020if\u0020a\u0020mailable\u0020was\u0020not\u0020sent\u0020or\u0020queued\u0020to\u0020be\u0020sent\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertNotOutgoing" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertNotSent\u0028\u0029", + "name": "assertNotSent", + "summary": "Determine\u0020if\u0020a\u0020mailable\u0020was\u0020not\u0020sent\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertNotSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertNothingOutgoing\u0028\u0029", + "name": "assertNothingOutgoing", + "summary": "Assert\u0020that\u0020no\u0020mailables\u0020were\u0020sent\u0020or\u0020queued\u0020to\u0020be\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertNothingOutgoing" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertNothingSent\u0028\u0029", + "name": "assertNothingSent", + "summary": "Assert\u0020that\u0020no\u0020mailables\u0020were\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertNothingSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertQueued\u0028\u0029", + "name": "assertQueued", + "summary": "Assert\u0020if\u0020a\u0020mailable\u0020was\u0020queued\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertQueued" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertQueuedTimes\u0028\u0029", + "name": "assertQueuedTimes", + "summary": "Assert\u0020if\u0020a\u0020mailable\u0020was\u0020queued\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertQueuedTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertNotQueued\u0028\u0029", + "name": "assertNotQueued", + "summary": "Determine\u0020if\u0020a\u0020mailable\u0020was\u0020not\u0020queued\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertNotQueued" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AassertNothingQueued\u0028\u0029", + "name": "assertNothingQueued", + "summary": "Assert\u0020that\u0020no\u0020mailables\u0020were\u0020queued.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_assertNothingQueued" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Asent\u0028\u0029", + "name": "sent", + "summary": "Get\u0020all\u0020of\u0020the\u0020mailables\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_sent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AhasSent\u0028\u0029", + "name": "hasSent", + "summary": "Determine\u0020if\u0020the\u0020given\u0020mailable\u0020has\u0020been\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_hasSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Aqueued\u0028\u0029", + "name": "queued", + "summary": "Get\u0020all\u0020of\u0020the\u0020queued\u0020mailables\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_queued" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AhasQueued\u0028\u0029", + "name": "hasQueued", + "summary": "Determine\u0020if\u0020the\u0020given\u0020mailable\u0020has\u0020been\u0020queued.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_hasQueued" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AmailablesOf\u0028\u0029", + "name": "mailablesOf", + "summary": "Get\u0020all\u0020of\u0020the\u0020mailed\u0020mailables\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_mailablesOf" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AqueuedMailablesOf\u0028\u0029", + "name": "queuedMailablesOf", + "summary": "Get\u0020all\u0020of\u0020the\u0020mailed\u0020mailables\u0020for\u0020a\u0020given\u0020type.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_queuedMailablesOf" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Amailer\u0028\u0029", + "name": "mailer", + "summary": "Get\u0020a\u0020mailer\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_mailer" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Ato\u0028\u0029", + "name": "to", + "summary": "Begin\u0020the\u0020process\u0020of\u0020mailing\u0020a\u0020mailable\u0020class\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_to" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Abcc\u0028\u0029", + "name": "bcc", + "summary": "Begin\u0020the\u0020process\u0020of\u0020mailing\u0020a\u0020mailable\u0020class\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_bcc" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Araw\u0028\u0029", + "name": "raw", + "summary": "Send\u0020a\u0020new\u0020message\u0020with\u0020only\u0020a\u0020raw\u0020text\u0020part.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_raw" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020a\u0020new\u0020message\u0020using\u0020a\u0020view.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_send" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Queue\u0020a\u0020new\u0020e\u002Dmail\u0020message\u0020for\u0020sending.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Alater\u0028\u0029", + "name": "later", + "summary": "Queue\u0020a\u0020new\u0020e\u002Dmail\u0020message\u0020for\u0020sending\u0020after\u0020\u0028n\u0029\u0020seconds.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_later" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003Afailures\u0028\u0029", + "name": "failures", + "summary": "Get\u0020the\u0020array\u0020of\u0020failed\u0020recipients.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_failures" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AprepareMailableAndCallback\u0028\u0029", + "name": "prepareMailableAndCallback", + "summary": "Infer\u0020mailable\u0020class\u0020using\u0020reflection\u0020if\u0020a\u0020typehinted\u0020closure\u0020is\u0020passed\u0020to\u0020assertion.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_prepareMailableAndCallback" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003AforgetMailers\u0028\u0029", + "name": "forgetMailers", + "summary": "Forget\u0020all\u0020of\u0020the\u0020resolved\u0020mailer\u0020instances.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#method_forgetMailers" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003A\u0024currentMailer", + "name": "currentMailer", + "summary": "The\u0020mailer\u0020currently\u0020being\u0020used\u0020to\u0020send\u0020a\u0020message.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#property_currentMailer" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003A\u0024mailables", + "name": "mailables", + "summary": "All\u0020of\u0020the\u0020mailables\u0020that\u0020have\u0020been\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#property_mailables" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\MailFake\u003A\u003A\u0024queuedMailables", + "name": "queuedMailables", + "summary": "All\u0020of\u0020the\u0020mailables\u0020that\u0020have\u0020been\u0020queued.", + "url": "classes/Illuminate-Support-Testing-Fakes-MailFake.html#property_queuedMailables" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake", + "name": "NotificationFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertSentOnDemand\u0028\u0029", + "name": "assertSentOnDemand", + "summary": "Assert\u0020if\u0020a\u0020notification\u0020was\u0020sent\u0020on\u002Ddemand\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertSentOnDemand" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertSentTo\u0028\u0029", + "name": "assertSentTo", + "summary": "Assert\u0020if\u0020a\u0020notification\u0020was\u0020sent\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertSentTo" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertSentOnDemandTimes\u0028\u0029", + "name": "assertSentOnDemandTimes", + "summary": "Assert\u0020if\u0020a\u0020notification\u0020was\u0020sent\u0020on\u002Ddemand\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertSentOnDemandTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertSentToTimes\u0028\u0029", + "name": "assertSentToTimes", + "summary": "Assert\u0020if\u0020a\u0020notification\u0020was\u0020sent\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertSentToTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertNotSentTo\u0028\u0029", + "name": "assertNotSentTo", + "summary": "Determine\u0020if\u0020a\u0020notification\u0020was\u0020sent\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertNotSentTo" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertNothingSent\u0028\u0029", + "name": "assertNothingSent", + "summary": "Assert\u0020that\u0020no\u0020notifications\u0020were\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertNothingSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertSentTimes\u0028\u0029", + "name": "assertSentTimes", + "summary": "Assert\u0020the\u0020total\u0020amount\u0020of\u0020times\u0020a\u0020notification\u0020was\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertSentTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AassertTimesSent\u0028\u0029", + "name": "assertTimesSent", + "summary": "Assert\u0020the\u0020total\u0020amount\u0020of\u0020times\u0020a\u0020notification\u0020was\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_assertTimesSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003Asent\u0028\u0029", + "name": "sent", + "summary": "Get\u0020all\u0020of\u0020the\u0020notifications\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_sent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AhasSent\u0028\u0029", + "name": "hasSent", + "summary": "Determine\u0020if\u0020there\u0020are\u0020more\u0020notifications\u0020left\u0020to\u0020inspect.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_hasSent" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AnotificationsFor\u0028\u0029", + "name": "notificationsFor", + "summary": "Get\u0020all\u0020of\u0020the\u0020notifications\u0020for\u0020a\u0020notifiable\u0020entity\u0020by\u0020type.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_notificationsFor" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020the\u0020given\u0020notification\u0020to\u0020the\u0020given\u0020notifiable\u0020entities.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_send" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003AsendNow\u0028\u0029", + "name": "sendNow", + "summary": "Send\u0020the\u0020given\u0020notification\u0020immediately.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_sendNow" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003Achannel\u0028\u0029", + "name": "channel", + "summary": "Get\u0020a\u0020channel\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#method_channel" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003A\u0024locale", + "name": "locale", + "summary": "Locale\u0020used\u0020when\u0020sending\u0020notifications.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#property_locale" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\NotificationFake\u003A\u003A\u0024notifications", + "name": "notifications", + "summary": "All\u0020of\u0020the\u0020notifications\u0020that\u0020have\u0020been\u0020sent.", + "url": "classes/Illuminate-Support-Testing-Fakes-NotificationFake.html#property_notifications" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingBatchFake", + "name": "PendingBatchFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingBatchFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingBatchFake\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020pending\u0020batch\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingBatchFake.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingBatchFake\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020the\u0020batch.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingBatchFake.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingBatchFake\u003A\u003A\u0024bus", + "name": "bus", + "summary": "The\u0020fake\u0020bus\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingBatchFake.html#property_bus" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingChainFake", + "name": "PendingChainFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingChainFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingChainFake\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020pending\u0020chain\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingChainFake.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingChainFake\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020the\u0020job\u0020with\u0020the\u0020given\u0020arguments.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingChainFake.html#method_dispatch" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingChainFake\u003A\u003A\u0024bus", + "name": "bus", + "summary": "The\u0020fake\u0020bus\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingChainFake.html#property_bus" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingMailFake", + "name": "PendingMailFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingMailFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingMailFake\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingMailFake.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingMailFake\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020a\u0020new\u0020mailable\u0020message\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingMailFake.html#method_send" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\PendingMailFake\u003A\u003Aqueue\u0028\u0029", + "name": "queue", + "summary": "Push\u0020the\u0020given\u0020mailable\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-PendingMailFake.html#method_queue" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake", + "name": "QueueFake", + "summary": "", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushed\u0028\u0029", + "name": "assertPushed", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushed" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushedTimes\u0028\u0029", + "name": "assertPushedTimes", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020a\u0020number\u0020of\u0020times.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushedTimes" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushedOn\u0028\u0029", + "name": "assertPushedOn", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushedOn" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushedWithChain\u0028\u0029", + "name": "assertPushedWithChain", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020with\u0020chained\u0020jobs\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushedWithChain" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushedWithoutChain\u0028\u0029", + "name": "assertPushedWithoutChain", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020with\u0020an\u0020empty\u0020chain\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushedWithoutChain" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushedWithChainOfObjects\u0028\u0029", + "name": "assertPushedWithChainOfObjects", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020with\u0020chained\u0020jobs\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushedWithChainOfObjects" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertPushedWithChainOfClasses\u0028\u0029", + "name": "assertPushedWithChainOfClasses", + "summary": "Assert\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020with\u0020chained\u0020jobs\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertPushedWithChainOfClasses" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AisChainOfObjects\u0028\u0029", + "name": "isChainOfObjects", + "summary": "Determine\u0020if\u0020the\u0020given\u0020chain\u0020is\u0020entirely\u0020composed\u0020of\u0020objects.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_isChainOfObjects" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertNotPushed\u0028\u0029", + "name": "assertNotPushed", + "summary": "Determine\u0020if\u0020a\u0020job\u0020was\u0020pushed\u0020based\u0020on\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertNotPushed" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AassertNothingPushed\u0028\u0029", + "name": "assertNothingPushed", + "summary": "Assert\u0020that\u0020no\u0020jobs\u0020were\u0020pushed.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_assertNothingPushed" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Apushed\u0028\u0029", + "name": "pushed", + "summary": "Get\u0020all\u0020of\u0020the\u0020jobs\u0020matching\u0020a\u0020truth\u002Dtest\u0020callback.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_pushed" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AhasPushed\u0028\u0029", + "name": "hasPushed", + "summary": "Determine\u0020if\u0020there\u0020are\u0020any\u0020stored\u0020jobs\u0020for\u0020a\u0020given\u0020class.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_hasPushed" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Resolve\u0020a\u0020queue\u0020connection\u0020instance.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_connection" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020size\u0020of\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_size" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_push" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003ApushRaw\u0028\u0029", + "name": "pushRaw", + "summary": "Push\u0020a\u0020raw\u0020payload\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_pushRaw" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Alater\u0028\u0029", + "name": "later", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue\u0020after\u0020a\u0020delay.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_later" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003ApushOn\u0028\u0029", + "name": "pushOn", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_pushOn" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AlaterOn\u0028\u0029", + "name": "laterOn", + "summary": "Push\u0020a\u0020new\u0020job\u0020onto\u0020the\u0020queue\u0020after\u0020a\u0020delay.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_laterOn" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Apop\u0028\u0029", + "name": "pop", + "summary": "Pop\u0020the\u0020next\u0020job\u0020off\u0020of\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_pop" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003Abulk\u0028\u0029", + "name": "bulk", + "summary": "Push\u0020an\u0020array\u0020of\u0020jobs\u0020onto\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_bulk" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003ApushedJobs\u0028\u0029", + "name": "pushedJobs", + "summary": "Get\u0020the\u0020jobs\u0020that\u0020have\u0020been\u0020pushed.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_pushedJobs" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AgetConnectionName\u0028\u0029", + "name": "getConnectionName", + "summary": "Get\u0020the\u0020connection\u0020name\u0020for\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_getConnectionName" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003AsetConnectionName\u0028\u0029", + "name": "setConnectionName", + "summary": "Set\u0020the\u0020connection\u0020name\u0020for\u0020the\u0020queue.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method_setConnectionName" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Override\u0020the\u0020QueueManager\u0020to\u0020prevent\u0020circular\u0020dependency.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes\\QueueFake\u003A\u003A\u0024jobs", + "name": "jobs", + "summary": "All\u0020of\u0020the\u0020jobs\u0020that\u0020have\u0020been\u0020pushed.", + "url": "classes/Illuminate-Support-Testing-Fakes-QueueFake.html#property_jobs" + }, { + "fqsen": "\\Illuminate\\Support\\Timebox", + "name": "Timebox", + "summary": "", + "url": "classes/Illuminate-Support-Timebox.html" + }, { + "fqsen": "\\Illuminate\\Support\\Timebox\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Invoke\u0020the\u0020given\u0020callback\u0020within\u0020the\u0020specified\u0020timebox\u0020minimum.", + "url": "classes/Illuminate-Support-Timebox.html#method_call" + }, { + "fqsen": "\\Illuminate\\Support\\Timebox\u003A\u003AreturnEarly\u0028\u0029", + "name": "returnEarly", + "summary": "Indicate\u0020that\u0020the\u0020timebox\u0020can\u0020return\u0020early.", + "url": "classes/Illuminate-Support-Timebox.html#method_returnEarly" + }, { + "fqsen": "\\Illuminate\\Support\\Timebox\u003A\u003AdontReturnEarly\u0028\u0029", + "name": "dontReturnEarly", + "summary": "Indicate\u0020that\u0020the\u0020timebox\u0020cannot\u0020return\u0020early.", + "url": "classes/Illuminate-Support-Timebox.html#method_dontReturnEarly" + }, { + "fqsen": "\\Illuminate\\Support\\Timebox\u003A\u003Ausleep\u0028\u0029", + "name": "usleep", + "summary": "Sleep\u0020for\u0020the\u0020specified\u0020number\u0020of\u0020microseconds.", + "url": "classes/Illuminate-Support-Timebox.html#method_usleep" + }, { + "fqsen": "\\Illuminate\\Support\\Timebox\u003A\u003A\u0024earlyReturn", + "name": "earlyReturn", + "summary": "Indicates\u0020if\u0020the\u0020timebox\u0020is\u0020allowed\u0020to\u0020return\u0020early.", + "url": "classes/Illuminate-Support-Timebox.html#property_earlyReturn" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait", + "name": "CapsuleManagerTrait", + "summary": "", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait\u003A\u003AsetupContainer\u0028\u0029", + "name": "setupContainer", + "summary": "Setup\u0020the\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html#method_setupContainer" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait\u003A\u003AsetAsGlobal\u0028\u0029", + "name": "setAsGlobal", + "summary": "Make\u0020this\u0020capsule\u0020instance\u0020available\u0020globally.", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html#method_setAsGlobal" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait\u003A\u003AgetContainer\u0028\u0029", + "name": "getContainer", + "summary": "Get\u0020the\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html#method_getContainer" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "Set\u0020the\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html#method_setContainer" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait\u003A\u003A\u0024instance", + "name": "instance", + "summary": "The\u0020current\u0020globally\u0020used\u0020instance.", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html#property_instance" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\CapsuleManagerTrait\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020container\u0020instance.", + "url": "classes/Illuminate-Support-Traits-CapsuleManagerTrait.html#property_container" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Conditionable", + "name": "Conditionable", + "summary": "", + "url": "classes/Illuminate-Support-Traits-Conditionable.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Conditionable\u003A\u003Awhen\u0028\u0029", + "name": "when", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020given\u0020\u0022value\u0022\u0020is\u0020truthy.", + "url": "classes/Illuminate-Support-Traits-Conditionable.html#method_when" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Conditionable\u003A\u003Aunless\u0028\u0029", + "name": "unless", + "summary": "Apply\u0020the\u0020callback\u0020if\u0020the\u0020given\u0020\u0022value\u0022\u0020is\u0020falsy.", + "url": "classes/Illuminate-Support-Traits-Conditionable.html#method_unless" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ForwardsCalls", + "name": "ForwardsCalls", + "summary": "", + "url": "classes/Illuminate-Support-Traits-ForwardsCalls.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ForwardsCalls\u003A\u003AforwardCallTo\u0028\u0029", + "name": "forwardCallTo", + "summary": "Forward\u0020a\u0020method\u0020call\u0020to\u0020the\u0020given\u0020object.", + "url": "classes/Illuminate-Support-Traits-ForwardsCalls.html#method_forwardCallTo" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ForwardsCalls\u003A\u003AforwardDecoratedCallTo\u0028\u0029", + "name": "forwardDecoratedCallTo", + "summary": "Forward\u0020a\u0020method\u0020call\u0020to\u0020the\u0020given\u0020object,\u0020returning\u0020\u0024this\u0020if\u0020the\u0020forwarded\u0020call\u0020returned\u0020itself.", + "url": "classes/Illuminate-Support-Traits-ForwardsCalls.html#method_forwardDecoratedCallTo" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ForwardsCalls\u003A\u003AthrowBadMethodCallException\u0028\u0029", + "name": "throwBadMethodCallException", + "summary": "Throw\u0020a\u0020bad\u0020method\u0020call\u0020exception\u0020for\u0020the\u0020given\u0020method.", + "url": "classes/Illuminate-Support-Traits-ForwardsCalls.html#method_throwBadMethodCallException" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Localizable", + "name": "Localizable", + "summary": "", + "url": "classes/Illuminate-Support-Traits-Localizable.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Localizable\u003A\u003AwithLocale\u0028\u0029", + "name": "withLocale", + "summary": "Run\u0020the\u0020callback\u0020with\u0020the\u0020given\u0020locale.", + "url": "classes/Illuminate-Support-Traits-Localizable.html#method_withLocale" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ReflectsClosures", + "name": "ReflectsClosures", + "summary": "", + "url": "classes/Illuminate-Support-Traits-ReflectsClosures.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ReflectsClosures\u003A\u003AfirstClosureParameterType\u0028\u0029", + "name": "firstClosureParameterType", + "summary": "Get\u0020the\u0020class\u0020name\u0020of\u0020the\u0020first\u0020parameter\u0020of\u0020the\u0020given\u0020Closure.", + "url": "classes/Illuminate-Support-Traits-ReflectsClosures.html#method_firstClosureParameterType" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ReflectsClosures\u003A\u003AfirstClosureParameterTypes\u0028\u0029", + "name": "firstClosureParameterTypes", + "summary": "Get\u0020the\u0020class\u0020names\u0020of\u0020the\u0020first\u0020parameter\u0020of\u0020the\u0020given\u0020Closure,\u0020including\u0020union\u0020types.", + "url": "classes/Illuminate-Support-Traits-ReflectsClosures.html#method_firstClosureParameterTypes" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\ReflectsClosures\u003A\u003AclosureParameterTypes\u0028\u0029", + "name": "closureParameterTypes", + "summary": "Get\u0020the\u0020class\u0020names\u0020\/\u0020types\u0020of\u0020the\u0020parameters\u0020of\u0020the\u0020given\u0020Closure.", + "url": "classes/Illuminate-Support-Traits-ReflectsClosures.html#method_closureParameterTypes" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Tappable", + "name": "Tappable", + "summary": "", + "url": "classes/Illuminate-Support-Traits-Tappable.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits\\Tappable\u003A\u003Atap\u0028\u0029", + "name": "tap", + "summary": "Call\u0020the\u0020given\u0020Closure\u0020with\u0020this\u0020instance\u0020then\u0020return\u0020the\u0020instance.", + "url": "classes/Illuminate-Support-Traits-Tappable.html#method_tap" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput", + "name": "ValidatedInput", + "summary": "", + "url": "classes/Illuminate-Support-ValidatedInput.html" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020validated\u0020input\u0020container.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method___construct" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Get\u0020a\u0020subset\u0020containing\u0020the\u0020provided\u0020keys\u0020with\u0020values\u0020from\u0020the\u0020input\u0020data.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_only" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Get\u0020all\u0020of\u0020the\u0020input\u0020except\u0020for\u0020a\u0020specified\u0020array\u0020of\u0020items.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_except" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020the\u0020validated\u0020input\u0020with\u0020the\u0020given\u0020array\u0020of\u0020additional\u0020data.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_merge" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "Get\u0020the\u0020input\u0020as\u0020a\u0020collection.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_collect" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020the\u0020raw,\u0020underlying\u0020input\u0020array.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_all" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020the\u0020instance\u0020as\u0020an\u0020array.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_toArray" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020input\u0020data.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Dynamically\u0020set\u0020input\u0020data.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method___set" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Determine\u0020if\u0020an\u0020input\u0020key\u0020is\u0020set.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method___isset" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003A__unset\u0028\u0029", + "name": "__unset", + "summary": "Remove\u0020an\u0020input\u0020key.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method___unset" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020an\u0020item\u0020exists\u0020at\u0020an\u0020offset.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020an\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020the\u0020item\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020an\u0020iterator\u0020for\u0020the\u0020input.", + "url": "classes/Illuminate-Support-ValidatedInput.html#method_getIterator" + }, { + "fqsen": "\\Illuminate\\Support\\ValidatedInput\u003A\u003A\u0024input", + "name": "input", + "summary": "The\u0020underlying\u0020input.", + "url": "classes/Illuminate-Support-ValidatedInput.html#property_input" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag", + "name": "ViewErrorBag", + "summary": "", + "url": "classes/Illuminate-Support-ViewErrorBag.html" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003AhasBag\u0028\u0029", + "name": "hasBag", + "summary": "Checks\u0020if\u0020a\u0020named\u0020MessageBag\u0020exists\u0020in\u0020the\u0020bags.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method_hasBag" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003AgetBag\u0028\u0029", + "name": "getBag", + "summary": "Get\u0020a\u0020MessageBag\u0020instance\u0020from\u0020the\u0020bags.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method_getBag" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003AgetBags\u0028\u0029", + "name": "getBags", + "summary": "Get\u0020all\u0020the\u0020bags.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method_getBags" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Add\u0020a\u0020new\u0020MessageBag\u0020instance\u0020to\u0020the\u0020bags.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method_put" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003Aany\u0028\u0029", + "name": "any", + "summary": "Determine\u0020if\u0020the\u0020default\u0020message\u0020bag\u0020has\u0020any\u0020messages.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method_any" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Get\u0020the\u0020number\u0020of\u0020messages\u0020in\u0020the\u0020default\u0020bag.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method_count" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020call\u0020methods\u0020on\u0020the\u0020default\u0020bag.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method___call" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020access\u0020a\u0020view\u0020error\u0020bag.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method___get" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Dynamically\u0020set\u0020a\u0020view\u0020error\u0020bag.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method___set" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Convert\u0020the\u0020default\u0020bag\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#method___toString" + }, { + "fqsen": "\\Illuminate\\Support\\ViewErrorBag\u003A\u003A\u0024bags", + "name": "bags", + "summary": "The\u0020array\u0020of\u0020the\u0020view\u0020error\u0020bags.", + "url": "classes/Illuminate-Support-ViewErrorBag.html#property_bags" + }, { + "fqsen": "\\Illuminate\\View\\AnonymousComponent", + "name": "AnonymousComponent", + "summary": "", + "url": "classes/Illuminate-View-AnonymousComponent.html" + }, { + "fqsen": "\\Illuminate\\View\\AnonymousComponent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020anonymous\u0020component\u0020instance.", + "url": "classes/Illuminate-View-AnonymousComponent.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\AnonymousComponent\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Get\u0020the\u0020view\u0020\/\u0020view\u0020contents\u0020that\u0020represent\u0020the\u0020component.", + "url": "classes/Illuminate-View-AnonymousComponent.html#method_render" + }, { + "fqsen": "\\Illuminate\\View\\AnonymousComponent\u003A\u003A\u0024data", + "name": "data", + "summary": "The\u0020component\u0020data.", + "url": "classes/Illuminate-View-AnonymousComponent.html#property_data" + }, { + "fqsen": "\\Illuminate\\View\\AnonymousComponent\u003A\u003A\u0024view", + "name": "view", + "summary": "The\u0020component\u0020view.", + "url": "classes/Illuminate-View-AnonymousComponent.html#property_view" + }, { + "fqsen": "\\Illuminate\\View\\AppendableAttributeValue", + "name": "AppendableAttributeValue", + "summary": "", + "url": "classes/Illuminate-View-AppendableAttributeValue.html" + }, { + "fqsen": "\\Illuminate\\View\\AppendableAttributeValue\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020appendable\u0020attribute\u0020value.", + "url": "classes/Illuminate-View-AppendableAttributeValue.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\AppendableAttributeValue\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020string\u0020value.", + "url": "classes/Illuminate-View-AppendableAttributeValue.html#method___toString" + }, { + "fqsen": "\\Illuminate\\View\\AppendableAttributeValue\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020attribute\u0020value.", + "url": "classes/Illuminate-View-AppendableAttributeValue.html#property_value" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler", + "name": "BladeCompiler", + "summary": "", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Acompile\u0028\u0029", + "name": "compile", + "summary": "Compile\u0020the\u0020view\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_compile" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AappendFilePath\u0028\u0029", + "name": "appendFilePath", + "summary": "Append\u0020the\u0020file\u0020path\u0020to\u0020the\u0020compiled\u0020string.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_appendFilePath" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetOpenAndClosingPhpTokens\u0028\u0029", + "name": "getOpenAndClosingPhpTokens", + "summary": "Get\u0020the\u0020open\u0020and\u0020closing\u0020PHP\u0020tag\u0020tokens\u0020from\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getOpenAndClosingPhpTokens" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "Get\u0020the\u0020path\u0020currently\u0020being\u0020compiled.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getPath" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AsetPath\u0028\u0029", + "name": "setPath", + "summary": "Set\u0020the\u0020path\u0020currently\u0020being\u0020compiled.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_setPath" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcompileString\u0028\u0029", + "name": "compileString", + "summary": "Compile\u0020the\u0020given\u0020Blade\u0020template\u0020contents.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_compileString" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Evaluate\u0020and\u0020render\u0020a\u0020Blade\u0020string\u0020to\u0020HTML.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_render" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003ArenderComponent\u0028\u0029", + "name": "renderComponent", + "summary": "Render\u0020a\u0020component\u0020instance\u0020to\u0020HTML.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_renderComponent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AstoreUncompiledBlocks\u0028\u0029", + "name": "storeUncompiledBlocks", + "summary": "Store\u0020the\u0020blocks\u0020that\u0020do\u0020not\u0020receive\u0020compilation.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_storeUncompiledBlocks" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AstoreVerbatimBlocks\u0028\u0029", + "name": "storeVerbatimBlocks", + "summary": "Store\u0020the\u0020verbatim\u0020blocks\u0020and\u0020replace\u0020them\u0020with\u0020a\u0020temporary\u0020placeholder.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_storeVerbatimBlocks" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AstorePhpBlocks\u0028\u0029", + "name": "storePhpBlocks", + "summary": "Store\u0020the\u0020PHP\u0020blocks\u0020and\u0020replace\u0020them\u0020with\u0020a\u0020temporary\u0020placeholder.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_storePhpBlocks" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AstoreRawBlock\u0028\u0029", + "name": "storeRawBlock", + "summary": "Store\u0020a\u0020raw\u0020block\u0020and\u0020return\u0020a\u0020unique\u0020raw\u0020placeholder.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_storeRawBlock" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcompileComponentTags\u0028\u0029", + "name": "compileComponentTags", + "summary": "Compile\u0020the\u0020component\u0020tags.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_compileComponentTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003ArestoreRawContent\u0028\u0029", + "name": "restoreRawContent", + "summary": "Replace\u0020the\u0020raw\u0020placeholders\u0020with\u0020the\u0020original\u0020code\u0020stored\u0020in\u0020the\u0020raw\u0020blocks.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_restoreRawContent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetRawPlaceholder\u0028\u0029", + "name": "getRawPlaceholder", + "summary": "Get\u0020a\u0020placeholder\u0020to\u0020temporarily\u0020mark\u0020the\u0020position\u0020of\u0020raw\u0020blocks.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getRawPlaceholder" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AaddFooters\u0028\u0029", + "name": "addFooters", + "summary": "Add\u0020the\u0020stored\u0020footers\u0020onto\u0020the\u0020given\u0020content.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_addFooters" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AparseToken\u0028\u0029", + "name": "parseToken", + "summary": "Parse\u0020the\u0020tokens\u0020from\u0020the\u0020template.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_parseToken" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcompileExtensions\u0028\u0029", + "name": "compileExtensions", + "summary": "Execute\u0020the\u0020user\u0020defined\u0020extensions.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_compileExtensions" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcompileStatements\u0028\u0029", + "name": "compileStatements", + "summary": "Compile\u0020Blade\u0020statements\u0020that\u0020start\u0020with\u0020\u0022\u0040\u0022.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_compileStatements" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcompileStatement\u0028\u0029", + "name": "compileStatement", + "summary": "Compile\u0020a\u0020single\u0020Blade\u0020\u0040\u0020statement.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_compileStatement" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcallCustomDirective\u0028\u0029", + "name": "callCustomDirective", + "summary": "Call\u0020the\u0020given\u0020directive\u0020with\u0020the\u0020given\u0020value.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_callCustomDirective" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AstripParentheses\u0028\u0029", + "name": "stripParentheses", + "summary": "Strip\u0020the\u0020parentheses\u0020from\u0020the\u0020given\u0020expression.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_stripParentheses" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Register\u0020a\u0020custom\u0020Blade\u0020compiler.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_extend" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetExtensions\u0028\u0029", + "name": "getExtensions", + "summary": "Get\u0020the\u0020extensions\u0020used\u0020by\u0020the\u0020compiler.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getExtensions" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Aif\u0028\u0029", + "name": "if", + "summary": "Register\u0020an\u0020\u0022if\u0022\u0020statement\u0020directive.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_if" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Acheck\u0028\u0029", + "name": "check", + "summary": "Check\u0020the\u0020result\u0020of\u0020a\u0020condition.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_check" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Acomponent\u0028\u0029", + "name": "component", + "summary": "Register\u0020a\u0020class\u002Dbased\u0020component\u0020alias\u0020directive.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_component" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Acomponents\u0028\u0029", + "name": "components", + "summary": "Register\u0020an\u0020array\u0020of\u0020class\u002Dbased\u0020components.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_components" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetClassComponentAliases\u0028\u0029", + "name": "getClassComponentAliases", + "summary": "Get\u0020the\u0020registered\u0020class\u0020component\u0020aliases.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getClassComponentAliases" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AcomponentNamespace\u0028\u0029", + "name": "componentNamespace", + "summary": "Register\u0020a\u0020class\u002Dbased\u0020component\u0020namespace.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_componentNamespace" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetClassComponentNamespaces\u0028\u0029", + "name": "getClassComponentNamespaces", + "summary": "Get\u0020the\u0020registered\u0020class\u0020component\u0020namespaces.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getClassComponentNamespaces" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AaliasComponent\u0028\u0029", + "name": "aliasComponent", + "summary": "Register\u0020a\u0020component\u0020alias\u0020directive.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_aliasComponent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Ainclude\u0028\u0029", + "name": "include", + "summary": "Register\u0020an\u0020include\u0020alias\u0020directive.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_include" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AaliasInclude\u0028\u0029", + "name": "aliasInclude", + "summary": "Register\u0020an\u0020include\u0020alias\u0020directive.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_aliasInclude" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Adirective\u0028\u0029", + "name": "directive", + "summary": "Register\u0020a\u0020handler\u0020for\u0020custom\u0020directives.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_directive" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AgetCustomDirectives\u0028\u0029", + "name": "getCustomDirectives", + "summary": "Get\u0020the\u0020list\u0020of\u0020custom\u0020directives.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_getCustomDirectives" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003Aprecompiler\u0028\u0029", + "name": "precompiler", + "summary": "Register\u0020a\u0020new\u0020precompiler.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_precompiler" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AsetEchoFormat\u0028\u0029", + "name": "setEchoFormat", + "summary": "Set\u0020the\u0020echo\u0020format\u0020to\u0020be\u0020used\u0020by\u0020the\u0020compiler.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_setEchoFormat" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AwithDoubleEncoding\u0028\u0029", + "name": "withDoubleEncoding", + "summary": "Set\u0020the\u0020\u0022echo\u0022\u0020format\u0020to\u0020double\u0020encode\u0020entities.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_withDoubleEncoding" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AwithoutDoubleEncoding\u0028\u0029", + "name": "withoutDoubleEncoding", + "summary": "Set\u0020the\u0020\u0022echo\u0022\u0020format\u0020to\u0020not\u0020double\u0020encode\u0020entities.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_withoutDoubleEncoding" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003AwithoutComponentTags\u0028\u0029", + "name": "withoutComponentTags", + "summary": "Indicate\u0020that\u0020component\u0020tags\u0020should\u0020not\u0020be\u0020compiled.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#method_withoutComponentTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024extensions", + "name": "extensions", + "summary": "All\u0020of\u0020the\u0020registered\u0020extensions.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_extensions" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024customDirectives", + "name": "customDirectives", + "summary": "All\u0020custom\u0020\u0022directive\u0022\u0020handlers.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_customDirectives" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024conditions", + "name": "conditions", + "summary": "All\u0020custom\u0020\u0022condition\u0022\u0020handlers.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_conditions" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024precompilers", + "name": "precompilers", + "summary": "All\u0020of\u0020the\u0020registered\u0020precompilers.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_precompilers" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024path", + "name": "path", + "summary": "The\u0020file\u0020currently\u0020being\u0020compiled.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_path" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024compilers", + "name": "compilers", + "summary": "All\u0020of\u0020the\u0020available\u0020compiler\u0020functions.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_compilers" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024rawTags", + "name": "rawTags", + "summary": "Array\u0020of\u0020opening\u0020and\u0020closing\u0020tags\u0020for\u0020raw\u0020echos.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_rawTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024contentTags", + "name": "contentTags", + "summary": "Array\u0020of\u0020opening\u0020and\u0020closing\u0020tags\u0020for\u0020regular\u0020echos.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_contentTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024escapedTags", + "name": "escapedTags", + "summary": "Array\u0020of\u0020opening\u0020and\u0020closing\u0020tags\u0020for\u0020escaped\u0020echos.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_escapedTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024echoFormat", + "name": "echoFormat", + "summary": "The\u0020\u0022regular\u0022\u0020\/\u0020legacy\u0020echo\u0020string\u0020format.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_echoFormat" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024footer", + "name": "footer", + "summary": "Array\u0020of\u0020footer\u0020lines\u0020to\u0020be\u0020added\u0020to\u0020the\u0020template.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_footer" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024rawBlocks", + "name": "rawBlocks", + "summary": "Array\u0020to\u0020temporarily\u0020store\u0020the\u0020raw\u0020blocks\u0020found\u0020in\u0020the\u0020template.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_rawBlocks" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024classComponentAliases", + "name": "classComponentAliases", + "summary": "The\u0020array\u0020of\u0020class\u0020component\u0020aliases\u0020and\u0020their\u0020class\u0020names.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_classComponentAliases" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024classComponentNamespaces", + "name": "classComponentNamespaces", + "summary": "The\u0020array\u0020of\u0020class\u0020component\u0020namespaces\u0020to\u0020autoload\u0020from.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_classComponentNamespaces" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\BladeCompiler\u003A\u003A\u0024compilesComponentTags", + "name": "compilesComponentTags", + "summary": "Indicates\u0020if\u0020component\u0020tags\u0020should\u0020be\u0020compiled.", + "url": "classes/Illuminate-View-Compilers-BladeCompiler.html#property_compilesComponentTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler", + "name": "Compiler", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Compiler.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020compiler\u0020instance.", + "url": "classes/Illuminate-View-Compilers-Compiler.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler\u003A\u003AgetCompiledPath\u0028\u0029", + "name": "getCompiledPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020compiled\u0020version\u0020of\u0020a\u0020view.", + "url": "classes/Illuminate-View-Compilers-Compiler.html#method_getCompiledPath" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler\u003A\u003AisExpired\u0028\u0029", + "name": "isExpired", + "summary": "Determine\u0020if\u0020the\u0020view\u0020at\u0020the\u0020given\u0020path\u0020is\u0020expired.", + "url": "classes/Illuminate-View-Compilers-Compiler.html#method_isExpired" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler\u003A\u003AensureCompiledDirectoryExists\u0028\u0029", + "name": "ensureCompiledDirectoryExists", + "summary": "Create\u0020the\u0020compiled\u0020file\u0020directory\u0020if\u0020necessary.", + "url": "classes/Illuminate-View-Compilers-Compiler.html#method_ensureCompiledDirectoryExists" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020Filesystem\u0020instance.", + "url": "classes/Illuminate-View-Compilers-Compiler.html#property_files" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Compiler\u003A\u003A\u0024cachePath", + "name": "cachePath", + "summary": "Get\u0020the\u0020cache\u0020path\u0020for\u0020the\u0020compiled\u0020views.", + "url": "classes/Illuminate-View-Compilers-Compiler.html#property_cachePath" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\CompilerInterface", + "name": "CompilerInterface", + "summary": "", + "url": "classes/Illuminate-View-Compilers-CompilerInterface.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\CompilerInterface\u003A\u003AgetCompiledPath\u0028\u0029", + "name": "getCompiledPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020compiled\u0020version\u0020of\u0020a\u0020view.", + "url": "classes/Illuminate-View-Compilers-CompilerInterface.html#method_getCompiledPath" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\CompilerInterface\u003A\u003AisExpired\u0028\u0029", + "name": "isExpired", + "summary": "Determine\u0020if\u0020the\u0020given\u0020view\u0020is\u0020expired.", + "url": "classes/Illuminate-View-Compilers-CompilerInterface.html#method_isExpired" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\CompilerInterface\u003A\u003Acompile\u0028\u0029", + "name": "compile", + "summary": "Compile\u0020the\u0020view\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-View-Compilers-CompilerInterface.html#method_compile" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler", + "name": "ComponentTagCompiler", + "summary": "", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020component\u0020tag\u0020compiler.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003Acompile\u0028\u0029", + "name": "compile", + "summary": "Compile\u0020the\u0020component\u0020and\u0020slot\u0020tags\u0020within\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compile" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcompileTags\u0028\u0029", + "name": "compileTags", + "summary": "Compile\u0020the\u0020tags\u0020within\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compileTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcompileOpeningTags\u0028\u0029", + "name": "compileOpeningTags", + "summary": "Compile\u0020the\u0020opening\u0020tags\u0020within\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compileOpeningTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcompileSelfClosingTags\u0028\u0029", + "name": "compileSelfClosingTags", + "summary": "Compile\u0020the\u0020self\u002Dclosing\u0020tags\u0020within\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compileSelfClosingTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcomponentString\u0028\u0029", + "name": "componentString", + "summary": "Compile\u0020the\u0020Blade\u0020component\u0020string\u0020for\u0020the\u0020given\u0020component\u0020and\u0020attributes.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_componentString" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcomponentClass\u0028\u0029", + "name": "componentClass", + "summary": "Get\u0020the\u0020component\u0020class\u0020for\u0020a\u0020given\u0020component\u0020alias.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_componentClass" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AfindClassByComponent\u0028\u0029", + "name": "findClassByComponent", + "summary": "Find\u0020the\u0020class\u0020for\u0020the\u0020given\u0020component\u0020using\u0020the\u0020registered\u0020namespaces.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_findClassByComponent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AguessClassName\u0028\u0029", + "name": "guessClassName", + "summary": "Guess\u0020the\u0020class\u0020name\u0020for\u0020the\u0020given\u0020component.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_guessClassName" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AformatClassName\u0028\u0029", + "name": "formatClassName", + "summary": "Format\u0020the\u0020class\u0020name\u0020for\u0020the\u0020given\u0020component.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_formatClassName" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AguessViewName\u0028\u0029", + "name": "guessViewName", + "summary": "Guess\u0020the\u0020view\u0020name\u0020for\u0020the\u0020given\u0020component.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_guessViewName" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003ApartitionDataAndAttributes\u0028\u0029", + "name": "partitionDataAndAttributes", + "summary": "Partition\u0020the\u0020data\u0020and\u0020extra\u0020attributes\u0020from\u0020the\u0020given\u0020array\u0020of\u0020attributes.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_partitionDataAndAttributes" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcompileClosingTags\u0028\u0029", + "name": "compileClosingTags", + "summary": "Compile\u0020the\u0020closing\u0020tags\u0020within\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compileClosingTags" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcompileSlots\u0028\u0029", + "name": "compileSlots", + "summary": "Compile\u0020the\u0020slot\u0020tags\u0020within\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compileSlots" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AgetAttributesFromAttributeString\u0028\u0029", + "name": "getAttributesFromAttributeString", + "summary": "Get\u0020an\u0020array\u0020of\u0020attributes\u0020from\u0020the\u0020given\u0020attribute\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_getAttributesFromAttributeString" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AparseAttributeBag\u0028\u0029", + "name": "parseAttributeBag", + "summary": "Parse\u0020the\u0020attribute\u0020bag\u0020in\u0020a\u0020given\u0020attribute\u0020string\u0020into\u0020its\u0020fully\u002Dqualified\u0020syntax.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_parseAttributeBag" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AparseBindAttributes\u0028\u0029", + "name": "parseBindAttributes", + "summary": "Parse\u0020the\u0020\u0022bind\u0022\u0020attributes\u0020in\u0020a\u0020given\u0020attribute\u0020string\u0020into\u0020their\u0020fully\u002Dqualified\u0020syntax.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_parseBindAttributes" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AcompileAttributeEchos\u0028\u0029", + "name": "compileAttributeEchos", + "summary": "Compile\u0020any\u0020Blade\u0020echo\u0020statements\u0020that\u0020are\u0020present\u0020in\u0020the\u0020attribute\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_compileAttributeEchos" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AescapeSingleQuotesOutsideOfPhpBlocks\u0028\u0029", + "name": "escapeSingleQuotesOutsideOfPhpBlocks", + "summary": "Escape\u0020the\u0020single\u0020quotes\u0020in\u0020the\u0020given\u0020string\u0020that\u0020are\u0020outside\u0020of\u0020PHP\u0020blocks.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_escapeSingleQuotesOutsideOfPhpBlocks" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AattributesToString\u0028\u0029", + "name": "attributesToString", + "summary": "Convert\u0020an\u0020array\u0020of\u0020attributes\u0020to\u0020a\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_attributesToString" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003AstripQuotes\u0028\u0029", + "name": "stripQuotes", + "summary": "Strip\u0020any\u0020quotes\u0020from\u0020the\u0020given\u0020string.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#method_stripQuotes" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003A\u0024blade", + "name": "blade", + "summary": "The\u0020Blade\u0020compiler\u0020instance.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#property_blade" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "The\u0020component\u0020class\u0020aliases.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#property_aliases" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003A\u0024namespaces", + "name": "namespaces", + "summary": "The\u0020component\u0020class\u0020namespaces.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#property_namespaces" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\ComponentTagCompiler\u003A\u003A\u0024boundAttributes", + "name": "boundAttributes", + "summary": "The\u0020\u0022bind\u003A\u0022\u0020attributes\u0020that\u0020have\u0020been\u0020compiled\u0020for\u0020the\u0020current\u0020component.", + "url": "classes/Illuminate-View-Compilers-ComponentTagCompiler.html#property_boundAttributes" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations", + "name": "CompilesAuthorizations", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileCan\u0028\u0029", + "name": "compileCan", + "summary": "Compile\u0020the\u0020can\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileCan" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileCannot\u0028\u0029", + "name": "compileCannot", + "summary": "Compile\u0020the\u0020cannot\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileCannot" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileCanany\u0028\u0029", + "name": "compileCanany", + "summary": "Compile\u0020the\u0020canany\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileCanany" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileElsecan\u0028\u0029", + "name": "compileElsecan", + "summary": "Compile\u0020the\u0020else\u002Dcan\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileElsecan" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileElsecannot\u0028\u0029", + "name": "compileElsecannot", + "summary": "Compile\u0020the\u0020else\u002Dcannot\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileElsecannot" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileElsecanany\u0028\u0029", + "name": "compileElsecanany", + "summary": "Compile\u0020the\u0020else\u002Dcanany\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileElsecanany" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileEndcan\u0028\u0029", + "name": "compileEndcan", + "summary": "Compile\u0020the\u0020end\u002Dcan\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileEndcan" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileEndcannot\u0028\u0029", + "name": "compileEndcannot", + "summary": "Compile\u0020the\u0020end\u002Dcannot\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileEndcannot" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesAuthorizations\u003A\u003AcompileEndcanany\u0028\u0029", + "name": "compileEndcanany", + "summary": "Compile\u0020the\u0020end\u002Dcanany\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesAuthorizations.html#method_compileEndcanany" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesClasses", + "name": "CompilesClasses", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesClasses.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesClasses\u003A\u003AcompileClass\u0028\u0029", + "name": "compileClass", + "summary": "Compile\u0020the\u0020conditional\u0020class\u0020statement\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesClasses.html#method_compileClass" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComments", + "name": "CompilesComments", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComments.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComments\u003A\u003AcompileComments\u0028\u0029", + "name": "compileComments", + "summary": "Compile\u0020Blade\u0020comments\u0020into\u0020an\u0020empty\u0020string.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComments.html#method_compileComments" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents", + "name": "CompilesComponents", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileComponent\u0028\u0029", + "name": "compileComponent", + "summary": "Compile\u0020the\u0020component\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileComponent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AnewComponentHash\u0028\u0029", + "name": "newComponentHash", + "summary": "Get\u0020a\u0020new\u0020component\u0020hash\u0020for\u0020a\u0020component\u0020name.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_newComponentHash" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileClassComponentOpening\u0028\u0029", + "name": "compileClassComponentOpening", + "summary": "Compile\u0020a\u0020class\u0020component\u0020opening.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileClassComponentOpening" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileEndComponent\u0028\u0029", + "name": "compileEndComponent", + "summary": "Compile\u0020the\u0020end\u002Dcomponent\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileEndComponent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileEndComponentClass\u0028\u0029", + "name": "compileEndComponentClass", + "summary": "Compile\u0020the\u0020end\u002Dcomponent\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileEndComponentClass" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileSlot\u0028\u0029", + "name": "compileSlot", + "summary": "Compile\u0020the\u0020slot\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileSlot" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileEndSlot\u0028\u0029", + "name": "compileEndSlot", + "summary": "Compile\u0020the\u0020end\u002Dslot\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileEndSlot" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileComponentFirst\u0028\u0029", + "name": "compileComponentFirst", + "summary": "Compile\u0020the\u0020component\u002Dfirst\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileComponentFirst" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileEndComponentFirst\u0028\u0029", + "name": "compileEndComponentFirst", + "summary": "Compile\u0020the\u0020end\u002Dcomponent\u002Dfirst\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileEndComponentFirst" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileProps\u0028\u0029", + "name": "compileProps", + "summary": "Compile\u0020the\u0020prop\u0020statement\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileProps" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AcompileAware\u0028\u0029", + "name": "compileAware", + "summary": "Compile\u0020the\u0020aware\u0020statement\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_compileAware" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003AsanitizeComponentAttribute\u0028\u0029", + "name": "sanitizeComponentAttribute", + "summary": "Sanitize\u0020the\u0020given\u0020component\u0020attribute\u0020value.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#method_sanitizeComponentAttribute" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesComponents\u003A\u003A\u0024componentHashStack", + "name": "componentHashStack", + "summary": "The\u0020component\u0020name\u0020hash\u0020stack.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesComponents.html#property_componentHashStack" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals", + "name": "CompilesConditionals", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileAuth\u0028\u0029", + "name": "compileAuth", + "summary": "Compile\u0020the\u0020if\u002Dauth\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileAuth" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileElseAuth\u0028\u0029", + "name": "compileElseAuth", + "summary": "Compile\u0020the\u0020else\u002Dauth\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileElseAuth" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndAuth\u0028\u0029", + "name": "compileEndAuth", + "summary": "Compile\u0020the\u0020end\u002Dauth\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndAuth" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEnv\u0028\u0029", + "name": "compileEnv", + "summary": "Compile\u0020the\u0020env\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEnv" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndEnv\u0028\u0029", + "name": "compileEndEnv", + "summary": "Compile\u0020the\u0020end\u002Denv\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndEnv" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileProduction\u0028\u0029", + "name": "compileProduction", + "summary": "Compile\u0020the\u0020production\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileProduction" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndProduction\u0028\u0029", + "name": "compileEndProduction", + "summary": "Compile\u0020the\u0020end\u002Dproduction\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndProduction" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileGuest\u0028\u0029", + "name": "compileGuest", + "summary": "Compile\u0020the\u0020if\u002Dguest\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileGuest" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileElseGuest\u0028\u0029", + "name": "compileElseGuest", + "summary": "Compile\u0020the\u0020else\u002Dguest\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileElseGuest" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndGuest\u0028\u0029", + "name": "compileEndGuest", + "summary": "Compile\u0020the\u0020end\u002Dguest\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndGuest" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileHasSection\u0028\u0029", + "name": "compileHasSection", + "summary": "Compile\u0020the\u0020has\u002Dsection\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileHasSection" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileSectionMissing\u0028\u0029", + "name": "compileSectionMissing", + "summary": "Compile\u0020the\u0020section\u002Dmissing\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileSectionMissing" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileIf\u0028\u0029", + "name": "compileIf", + "summary": "Compile\u0020the\u0020if\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileIf" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileUnless\u0028\u0029", + "name": "compileUnless", + "summary": "Compile\u0020the\u0020unless\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileUnless" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileElseif\u0028\u0029", + "name": "compileElseif", + "summary": "Compile\u0020the\u0020else\u002Dif\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileElseif" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileElse\u0028\u0029", + "name": "compileElse", + "summary": "Compile\u0020the\u0020else\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileElse" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndif\u0028\u0029", + "name": "compileEndif", + "summary": "Compile\u0020the\u0020end\u002Dif\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndif" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndunless\u0028\u0029", + "name": "compileEndunless", + "summary": "Compile\u0020the\u0020end\u002Dunless\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndunless" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileIsset\u0028\u0029", + "name": "compileIsset", + "summary": "Compile\u0020the\u0020if\u002Disset\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileIsset" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndIsset\u0028\u0029", + "name": "compileEndIsset", + "summary": "Compile\u0020the\u0020end\u002Disset\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndIsset" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileSwitch\u0028\u0029", + "name": "compileSwitch", + "summary": "Compile\u0020the\u0020switch\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileSwitch" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileCase\u0028\u0029", + "name": "compileCase", + "summary": "Compile\u0020the\u0020case\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileCase" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileDefault\u0028\u0029", + "name": "compileDefault", + "summary": "Compile\u0020the\u0020default\u0020statements\u0020in\u0020switch\u0020case\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileDefault" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndSwitch\u0028\u0029", + "name": "compileEndSwitch", + "summary": "Compile\u0020the\u0020end\u0020switch\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndSwitch" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileOnce\u0028\u0029", + "name": "compileOnce", + "summary": "Compile\u0020a\u0020once\u0020block\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileOnce" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003AcompileEndOnce\u0028\u0029", + "name": "compileEndOnce", + "summary": "Compile\u0020an\u0020end\u002Donce\u0020block\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#method_compileEndOnce" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesConditionals\u003A\u003A\u0024firstCaseInSwitch", + "name": "firstCaseInSwitch", + "summary": "Identifier\u0020for\u0020the\u0020first\u0020case\u0020in\u0020the\u0020switch\u0020statement.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesConditionals.html#property_firstCaseInSwitch" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos", + "name": "CompilesEchos", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003Astringable\u0028\u0029", + "name": "stringable", + "summary": "Add\u0020a\u0020handler\u0020to\u0020be\u0020executed\u0020before\u0020echoing\u0020a\u0020given\u0020class.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_stringable" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AcompileEchos\u0028\u0029", + "name": "compileEchos", + "summary": "Compile\u0020Blade\u0020echos\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_compileEchos" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AgetEchoMethods\u0028\u0029", + "name": "getEchoMethods", + "summary": "Get\u0020the\u0020echo\u0020methods\u0020in\u0020the\u0020proper\u0020order\u0020for\u0020compilation.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_getEchoMethods" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AcompileRawEchos\u0028\u0029", + "name": "compileRawEchos", + "summary": "Compile\u0020the\u0020\u0022raw\u0022\u0020echo\u0020statements.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_compileRawEchos" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AcompileRegularEchos\u0028\u0029", + "name": "compileRegularEchos", + "summary": "Compile\u0020the\u0020\u0022regular\u0022\u0020echo\u0020statements.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_compileRegularEchos" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AcompileEscapedEchos\u0028\u0029", + "name": "compileEscapedEchos", + "summary": "Compile\u0020the\u0020escaped\u0020echo\u0020statements.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_compileEscapedEchos" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AaddBladeCompilerVariable\u0028\u0029", + "name": "addBladeCompilerVariable", + "summary": "Add\u0020an\u0020instance\u0020of\u0020the\u0020blade\u0020echo\u0020handler\u0020to\u0020the\u0020start\u0020of\u0020the\u0020compiled\u0020string.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_addBladeCompilerVariable" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AwrapInEchoHandler\u0028\u0029", + "name": "wrapInEchoHandler", + "summary": "Wrap\u0020the\u0020echoable\u0020value\u0020in\u0020an\u0020echo\u0020handler\u0020if\u0020applicable.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_wrapInEchoHandler" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003AapplyEchoHandler\u0028\u0029", + "name": "applyEchoHandler", + "summary": "Apply\u0020the\u0020echo\u0020handler\u0020for\u0020the\u0020value\u0020if\u0020it\u0020exists.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#method_applyEchoHandler" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesEchos\u003A\u003A\u0024echoHandlers", + "name": "echoHandlers", + "summary": "Custom\u0020rendering\u0020callbacks\u0020for\u0020stringable\u0020objects.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesEchos.html#property_echoHandlers" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesErrors", + "name": "CompilesErrors", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesErrors.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesErrors\u003A\u003AcompileError\u0028\u0029", + "name": "compileError", + "summary": "Compile\u0020the\u0020error\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesErrors.html#method_compileError" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesErrors\u003A\u003AcompileEnderror\u0028\u0029", + "name": "compileEnderror", + "summary": "Compile\u0020the\u0020enderror\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesErrors.html#method_compileEnderror" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesHelpers", + "name": "CompilesHelpers", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesHelpers.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesHelpers\u003A\u003AcompileCsrf\u0028\u0029", + "name": "compileCsrf", + "summary": "Compile\u0020the\u0020CSRF\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesHelpers.html#method_compileCsrf" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesHelpers\u003A\u003AcompileDd\u0028\u0029", + "name": "compileDd", + "summary": "Compile\u0020the\u0020\u0022dd\u0022\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesHelpers.html#method_compileDd" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesHelpers\u003A\u003AcompileDump\u0028\u0029", + "name": "compileDump", + "summary": "Compile\u0020the\u0020\u0022dump\u0022\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesHelpers.html#method_compileDump" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesHelpers\u003A\u003AcompileMethod\u0028\u0029", + "name": "compileMethod", + "summary": "Compile\u0020the\u0020method\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesHelpers.html#method_compileMethod" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes", + "name": "CompilesIncludes", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes\u003A\u003AcompileEach\u0028\u0029", + "name": "compileEach", + "summary": "Compile\u0020the\u0020each\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html#method_compileEach" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes\u003A\u003AcompileInclude\u0028\u0029", + "name": "compileInclude", + "summary": "Compile\u0020the\u0020include\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html#method_compileInclude" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes\u003A\u003AcompileIncludeIf\u0028\u0029", + "name": "compileIncludeIf", + "summary": "Compile\u0020the\u0020include\u002Dif\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html#method_compileIncludeIf" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes\u003A\u003AcompileIncludeWhen\u0028\u0029", + "name": "compileIncludeWhen", + "summary": "Compile\u0020the\u0020include\u002Dwhen\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html#method_compileIncludeWhen" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes\u003A\u003AcompileIncludeUnless\u0028\u0029", + "name": "compileIncludeUnless", + "summary": "Compile\u0020the\u0020include\u002Dunless\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html#method_compileIncludeUnless" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesIncludes\u003A\u003AcompileIncludeFirst\u0028\u0029", + "name": "compileIncludeFirst", + "summary": "Compile\u0020the\u0020include\u002Dfirst\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesIncludes.html#method_compileIncludeFirst" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesInjections", + "name": "CompilesInjections", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesInjections.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesInjections\u003A\u003AcompileInject\u0028\u0029", + "name": "compileInject", + "summary": "Compile\u0020the\u0020inject\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesInjections.html#method_compileInject" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesJs", + "name": "CompilesJs", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesJs.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesJs\u003A\u003AcompileJs\u0028\u0029", + "name": "compileJs", + "summary": "Compile\u0020the\u0020\u0022\u0040js\u0022\u0020directive\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesJs.html#method_compileJs" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesJson", + "name": "CompilesJson", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesJson.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesJson\u003A\u003AcompileJson\u0028\u0029", + "name": "compileJson", + "summary": "Compile\u0020the\u0020JSON\u0020statement\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesJson.html#method_compileJson" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesJson\u003A\u003A\u0024encodingOptions", + "name": "encodingOptions", + "summary": "The\u0020default\u0020JSON\u0020encoding\u0020options.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesJson.html#property_encodingOptions" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts", + "name": "CompilesLayouts", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileExtends\u0028\u0029", + "name": "compileExtends", + "summary": "Compile\u0020the\u0020extends\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileExtends" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileExtendsFirst\u0028\u0029", + "name": "compileExtendsFirst", + "summary": "Compile\u0020the\u0020extends\u002Dfirst\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileExtendsFirst" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileSection\u0028\u0029", + "name": "compileSection", + "summary": "Compile\u0020the\u0020section\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileSection" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileParent\u0028\u0029", + "name": "compileParent", + "summary": "Replace\u0020the\u0020\u0040parent\u0020directive\u0020to\u0020a\u0020placeholder.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileParent" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileYield\u0028\u0029", + "name": "compileYield", + "summary": "Compile\u0020the\u0020yield\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileYield" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileShow\u0028\u0029", + "name": "compileShow", + "summary": "Compile\u0020the\u0020show\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileShow" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileAppend\u0028\u0029", + "name": "compileAppend", + "summary": "Compile\u0020the\u0020append\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileAppend" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileOverwrite\u0028\u0029", + "name": "compileOverwrite", + "summary": "Compile\u0020the\u0020overwrite\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileOverwrite" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileStop\u0028\u0029", + "name": "compileStop", + "summary": "Compile\u0020the\u0020stop\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileStop" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003AcompileEndsection\u0028\u0029", + "name": "compileEndsection", + "summary": "Compile\u0020the\u0020end\u002Dsection\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#method_compileEndsection" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLayouts\u003A\u003A\u0024lastSection", + "name": "lastSection", + "summary": "The\u0020name\u0020of\u0020the\u0020last\u0020section\u0020that\u0020was\u0020started.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLayouts.html#property_lastSection" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops", + "name": "CompilesLoops", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileForelse\u0028\u0029", + "name": "compileForelse", + "summary": "Compile\u0020the\u0020for\u002Delse\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileForelse" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileEmpty\u0028\u0029", + "name": "compileEmpty", + "summary": "Compile\u0020the\u0020for\u002Delse\u002Dempty\u0020and\u0020empty\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileEmpty" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileEndforelse\u0028\u0029", + "name": "compileEndforelse", + "summary": "Compile\u0020the\u0020end\u002Dfor\u002Delse\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileEndforelse" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileEndEmpty\u0028\u0029", + "name": "compileEndEmpty", + "summary": "Compile\u0020the\u0020end\u002Dempty\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileEndEmpty" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileFor\u0028\u0029", + "name": "compileFor", + "summary": "Compile\u0020the\u0020for\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileFor" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileForeach\u0028\u0029", + "name": "compileForeach", + "summary": "Compile\u0020the\u0020for\u002Deach\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileForeach" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileBreak\u0028\u0029", + "name": "compileBreak", + "summary": "Compile\u0020the\u0020break\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileBreak" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileContinue\u0028\u0029", + "name": "compileContinue", + "summary": "Compile\u0020the\u0020continue\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileContinue" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileEndfor\u0028\u0029", + "name": "compileEndfor", + "summary": "Compile\u0020the\u0020end\u002Dfor\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileEndfor" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileEndforeach\u0028\u0029", + "name": "compileEndforeach", + "summary": "Compile\u0020the\u0020end\u002Dfor\u002Deach\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileEndforeach" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileWhile\u0028\u0029", + "name": "compileWhile", + "summary": "Compile\u0020the\u0020while\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileWhile" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003AcompileEndwhile\u0028\u0029", + "name": "compileEndwhile", + "summary": "Compile\u0020the\u0020end\u002Dwhile\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#method_compileEndwhile" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesLoops\u003A\u003A\u0024forElseCounter", + "name": "forElseCounter", + "summary": "Counter\u0020to\u0020keep\u0020track\u0020of\u0020nested\u0020forelse\u0020statements.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesLoops.html#property_forElseCounter" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesRawPhp", + "name": "CompilesRawPhp", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesRawPhp.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesRawPhp\u003A\u003AcompilePhp\u0028\u0029", + "name": "compilePhp", + "summary": "Compile\u0020the\u0020raw\u0020PHP\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesRawPhp.html#method_compilePhp" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesRawPhp\u003A\u003AcompileUnset\u0028\u0029", + "name": "compileUnset", + "summary": "Compile\u0020the\u0020unset\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesRawPhp.html#method_compileUnset" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesStacks", + "name": "CompilesStacks", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesStacks.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesStacks\u003A\u003AcompileStack\u0028\u0029", + "name": "compileStack", + "summary": "Compile\u0020the\u0020stack\u0020statements\u0020into\u0020the\u0020content.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesStacks.html#method_compileStack" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesStacks\u003A\u003AcompilePush\u0028\u0029", + "name": "compilePush", + "summary": "Compile\u0020the\u0020push\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesStacks.html#method_compilePush" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesStacks\u003A\u003AcompileEndpush\u0028\u0029", + "name": "compileEndpush", + "summary": "Compile\u0020the\u0020end\u002Dpush\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesStacks.html#method_compileEndpush" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesStacks\u003A\u003AcompilePrepend\u0028\u0029", + "name": "compilePrepend", + "summary": "Compile\u0020the\u0020prepend\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesStacks.html#method_compilePrepend" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesStacks\u003A\u003AcompileEndprepend\u0028\u0029", + "name": "compileEndprepend", + "summary": "Compile\u0020the\u0020end\u002Dprepend\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesStacks.html#method_compileEndprepend" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesTranslations", + "name": "CompilesTranslations", + "summary": "", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesTranslations.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesTranslations\u003A\u003AcompileLang\u0028\u0029", + "name": "compileLang", + "summary": "Compile\u0020the\u0020lang\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesTranslations.html#method_compileLang" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesTranslations\u003A\u003AcompileEndlang\u0028\u0029", + "name": "compileEndlang", + "summary": "Compile\u0020the\u0020end\u002Dlang\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesTranslations.html#method_compileEndlang" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns\\CompilesTranslations\u003A\u003AcompileChoice\u0028\u0029", + "name": "compileChoice", + "summary": "Compile\u0020the\u0020choice\u0020statements\u0020into\u0020valid\u0020PHP.", + "url": "classes/Illuminate-View-Compilers-Concerns-CompilesTranslations.html#method_compileChoice" + }, { + "fqsen": "\\Illuminate\\View\\Component", + "name": "Component", + "summary": "", + "url": "classes/Illuminate-View-Component.html" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Get\u0020the\u0020view\u0020\/\u0020view\u0020contents\u0020that\u0020represent\u0020the\u0020component.", + "url": "classes/Illuminate-View-Component.html#method_render" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AresolveView\u0028\u0029", + "name": "resolveView", + "summary": "Resolve\u0020the\u0020Blade\u0020view\u0020or\u0020view\u0020file\u0020that\u0020should\u0020be\u0020used\u0020when\u0020rendering\u0020the\u0020component.", + "url": "classes/Illuminate-View-Component.html#method_resolveView" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AcreateBladeViewFromString\u0028\u0029", + "name": "createBladeViewFromString", + "summary": "Create\u0020a\u0020Blade\u0020view\u0020with\u0020the\u0020raw\u0020component\u0020string\u0020content.", + "url": "classes/Illuminate-View-Component.html#method_createBladeViewFromString" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003Adata\u0028\u0029", + "name": "data", + "summary": "Get\u0020the\u0020data\u0020that\u0020should\u0020be\u0020supplied\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-Component.html#method_data" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AextractPublicProperties\u0028\u0029", + "name": "extractPublicProperties", + "summary": "Extract\u0020the\u0020public\u0020properties\u0020for\u0020the\u0020component.", + "url": "classes/Illuminate-View-Component.html#method_extractPublicProperties" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AextractPublicMethods\u0028\u0029", + "name": "extractPublicMethods", + "summary": "Extract\u0020the\u0020public\u0020methods\u0020for\u0020the\u0020component.", + "url": "classes/Illuminate-View-Component.html#method_extractPublicMethods" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AcreateVariableFromMethod\u0028\u0029", + "name": "createVariableFromMethod", + "summary": "Create\u0020a\u0020callable\u0020variable\u0020from\u0020the\u0020given\u0020method.", + "url": "classes/Illuminate-View-Component.html#method_createVariableFromMethod" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AcreateInvokableVariable\u0028\u0029", + "name": "createInvokableVariable", + "summary": "Create\u0020an\u0020invokable,\u0020toStringable\u0020variable\u0020for\u0020the\u0020given\u0020component\u0020method.", + "url": "classes/Illuminate-View-Component.html#method_createInvokableVariable" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AshouldIgnore\u0028\u0029", + "name": "shouldIgnore", + "summary": "Determine\u0020if\u0020the\u0020given\u0020property\u0020\/\u0020method\u0020should\u0020be\u0020ignored.", + "url": "classes/Illuminate-View-Component.html#method_shouldIgnore" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AignoredMethods\u0028\u0029", + "name": "ignoredMethods", + "summary": "Get\u0020the\u0020methods\u0020that\u0020should\u0020be\u0020ignored.", + "url": "classes/Illuminate-View-Component.html#method_ignoredMethods" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AwithName\u0028\u0029", + "name": "withName", + "summary": "Set\u0020the\u0020component\u0020alias\u0020name.", + "url": "classes/Illuminate-View-Component.html#method_withName" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AwithAttributes\u0028\u0029", + "name": "withAttributes", + "summary": "Set\u0020the\u0020extra\u0020attributes\u0020that\u0020the\u0020component\u0020should\u0020make\u0020available.", + "url": "classes/Illuminate-View-Component.html#method_withAttributes" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AnewAttributeBag\u0028\u0029", + "name": "newAttributeBag", + "summary": "Get\u0020a\u0020new\u0020attribute\u0020bag\u0020instance.", + "url": "classes/Illuminate-View-Component.html#method_newAttributeBag" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003AshouldRender\u0028\u0029", + "name": "shouldRender", + "summary": "Determine\u0020if\u0020the\u0020component\u0020should\u0020be\u0020rendered.", + "url": "classes/Illuminate-View-Component.html#method_shouldRender" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003A\u0024propertyCache", + "name": "propertyCache", + "summary": "The\u0020cache\u0020of\u0020public\u0020property\u0020names,\u0020keyed\u0020by\u0020class.", + "url": "classes/Illuminate-View-Component.html#property_propertyCache" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003A\u0024methodCache", + "name": "methodCache", + "summary": "The\u0020cache\u0020of\u0020public\u0020method\u0020names,\u0020keyed\u0020by\u0020class.", + "url": "classes/Illuminate-View-Component.html#property_methodCache" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003A\u0024except", + "name": "except", + "summary": "The\u0020properties\u0020\/\u0020methods\u0020that\u0020should\u0020not\u0020be\u0020exposed\u0020to\u0020the\u0020component.", + "url": "classes/Illuminate-View-Component.html#property_except" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003A\u0024componentName", + "name": "componentName", + "summary": "The\u0020component\u0020alias\u0020name.", + "url": "classes/Illuminate-View-Component.html#property_componentName" + }, { + "fqsen": "\\Illuminate\\View\\Component\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "The\u0020component\u0020attributes.", + "url": "classes/Illuminate-View-Component.html#property_attributes" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag", + "name": "ComponentAttributeBag", + "summary": "", + "url": "classes/Illuminate-View-ComponentAttributeBag.html" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020component\u0020attribute\u0020bag\u0020instance.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020attribute\u0027s\u0020value.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_first" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020given\u0020attribute\u0020from\u0020the\u0020attribute\u0020array.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_get" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020a\u0020given\u0020attribute\u0020exists\u0020in\u0020the\u0020attribute\u0020array.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_has" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Aonly\u0028\u0029", + "name": "only", + "summary": "Only\u0020include\u0020the\u0020given\u0020attribute\u0020from\u0020the\u0020attribute\u0020array.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_only" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Aexcept\u0028\u0029", + "name": "except", + "summary": "Exclude\u0020the\u0020given\u0020attribute\u0020from\u0020the\u0020attribute\u0020array.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_except" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Filter\u0020the\u0020attributes,\u0020returning\u0020a\u0020bag\u0020of\u0020attributes\u0020that\u0020pass\u0020the\u0020filter.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_filter" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AwhereStartsWith\u0028\u0029", + "name": "whereStartsWith", + "summary": "Return\u0020a\u0020bag\u0020of\u0020attributes\u0020that\u0020have\u0020keys\u0020starting\u0020with\u0020the\u0020given\u0020value\u0020\/\u0020pattern.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_whereStartsWith" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AwhereDoesntStartWith\u0028\u0029", + "name": "whereDoesntStartWith", + "summary": "Return\u0020a\u0020bag\u0020of\u0020attributes\u0020with\u0020keys\u0020that\u0020do\u0020not\u0020start\u0020with\u0020the\u0020given\u0020value\u0020\/\u0020pattern.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_whereDoesntStartWith" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AthatStartWith\u0028\u0029", + "name": "thatStartWith", + "summary": "Return\u0020a\u0020bag\u0020of\u0020attributes\u0020that\u0020have\u0020keys\u0020starting\u0020with\u0020the\u0020given\u0020value\u0020\/\u0020pattern.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_thatStartWith" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AexceptProps\u0028\u0029", + "name": "exceptProps", + "summary": "Exclude\u0020the\u0020given\u0020attribute\u0020from\u0020the\u0020attribute\u0020array.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_exceptProps" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Aclass\u0028\u0029", + "name": "class", + "summary": "Conditionally\u0020merge\u0020classes\u0020into\u0020the\u0020attribute\u0020bag.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_class" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Amerge\u0028\u0029", + "name": "merge", + "summary": "Merge\u0020additional\u0020attributes\u0020\/\u0020values\u0020into\u0020the\u0020attribute\u0020bag.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_merge" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AshouldEscapeAttributeValue\u0028\u0029", + "name": "shouldEscapeAttributeValue", + "summary": "Determine\u0020if\u0020the\u0020specific\u0020attribute\u0020value\u0020should\u0020be\u0020escaped.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_shouldEscapeAttributeValue" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003Aprepends\u0028\u0029", + "name": "prepends", + "summary": "Create\u0020a\u0020new\u0020appendable\u0020attribute\u0020value.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_prepends" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AresolveAppendableAttributeDefault\u0028\u0029", + "name": "resolveAppendableAttributeDefault", + "summary": "Resolve\u0020an\u0020appendable\u0020attribute\u0020value\u0020default\u0020value.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_resolveAppendableAttributeDefault" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AgetAttributes\u0028\u0029", + "name": "getAttributes", + "summary": "Get\u0020all\u0020of\u0020the\u0020raw\u0020attributes.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_getAttributes" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AsetAttributes\u0028\u0029", + "name": "setAttributes", + "summary": "Set\u0020the\u0020underlying\u0020attributes.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_setAttributes" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AtoHtml\u0028\u0029", + "name": "toHtml", + "summary": "Get\u0020content\u0020as\u0020a\u0020string\u0020of\u0020HTML.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_toHtml" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "Merge\u0020additional\u0020attributes\u0020\/\u0020values\u0020into\u0020the\u0020attribute\u0020bag.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method___invoke" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020the\u0020given\u0020offset\u0020exists.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020the\u0020value\u0020at\u0020the\u0020given\u0020offset.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020the\u0020value\u0020at\u0020a\u0020given\u0020offset.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Remove\u0020the\u0020value\u0020at\u0020the\u0020given\u0020offset.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020an\u0020iterator\u0020for\u0020the\u0020items.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method_getIterator" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Implode\u0020the\u0020attributes\u0020into\u0020a\u0020single\u0020HTML\u0020ready\u0020string.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#method___toString" + }, { + "fqsen": "\\Illuminate\\View\\ComponentAttributeBag\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "The\u0020raw\u0020array\u0020of\u0020attributes.", + "url": "classes/Illuminate-View-ComponentAttributeBag.html#property_attributes" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot", + "name": "ComponentSlot", + "summary": "", + "url": "classes/Illuminate-View-ComponentSlot.html" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020slot\u0020instance.", + "url": "classes/Illuminate-View-ComponentSlot.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003AwithAttributes\u0028\u0029", + "name": "withAttributes", + "summary": "Set\u0020the\u0020extra\u0020attributes\u0020that\u0020the\u0020slot\u0020should\u0020make\u0020available.", + "url": "classes/Illuminate-View-ComponentSlot.html#method_withAttributes" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003AtoHtml\u0028\u0029", + "name": "toHtml", + "summary": "Get\u0020the\u0020slot\u0027s\u0020HTML\u0020string.", + "url": "classes/Illuminate-View-ComponentSlot.html#method_toHtml" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Determine\u0020if\u0020the\u0020slot\u0020is\u0020empty.", + "url": "classes/Illuminate-View-ComponentSlot.html#method_isEmpty" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003AisNotEmpty\u0028\u0029", + "name": "isNotEmpty", + "summary": "Determine\u0020if\u0020the\u0020slot\u0020is\u0020not\u0020empty.", + "url": "classes/Illuminate-View-ComponentSlot.html#method_isNotEmpty" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020slot\u0027s\u0020HTML\u0020string.", + "url": "classes/Illuminate-View-ComponentSlot.html#method___toString" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "The\u0020slot\u0020attribute\u0020bag.", + "url": "classes/Illuminate-View-ComponentSlot.html#property_attributes" + }, { + "fqsen": "\\Illuminate\\View\\ComponentSlot\u003A\u003A\u0024contents", + "name": "contents", + "summary": "The\u0020slot\u0020contents.", + "url": "classes/Illuminate-View-ComponentSlot.html#property_contents" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents", + "name": "ManagesComponents", + "summary": "", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003AstartComponent\u0028\u0029", + "name": "startComponent", + "summary": "Start\u0020a\u0020component\u0020rendering\u0020process.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_startComponent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003AstartComponentFirst\u0028\u0029", + "name": "startComponentFirst", + "summary": "Get\u0020the\u0020first\u0020view\u0020that\u0020actually\u0020exists\u0020from\u0020the\u0020given\u0020list,\u0020and\u0020start\u0020a\u0020component.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_startComponentFirst" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003ArenderComponent\u0028\u0029", + "name": "renderComponent", + "summary": "Render\u0020the\u0020current\u0020component.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_renderComponent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003A\u0024componentData", + "name": "componentData", + "summary": "The\u0020original\u0020data\u0020passed\u0020to\u0020the\u0020component.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#property_componentData" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003AgetConsumableComponentData\u0028\u0029", + "name": "getConsumableComponentData", + "summary": "Get\u0020an\u0020item\u0020from\u0020the\u0020component\u0020data\u0020that\u0020exists\u0020above\u0020the\u0020current\u0020component.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_getConsumableComponentData" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003Aslot\u0028\u0029", + "name": "slot", + "summary": "Start\u0020the\u0020slot\u0020rendering\u0020process.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_slot" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003AendSlot\u0028\u0029", + "name": "endSlot", + "summary": "Save\u0020the\u0020slot\u0020content\u0020for\u0020rendering.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_endSlot" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003AcurrentComponent\u0028\u0029", + "name": "currentComponent", + "summary": "Get\u0020the\u0020index\u0020for\u0020the\u0020current\u0020component.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_currentComponent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003AflushComponents\u0028\u0029", + "name": "flushComponents", + "summary": "Flush\u0020all\u0020of\u0020the\u0020component\u0020state.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#method_flushComponents" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003A\u0024componentStack", + "name": "componentStack", + "summary": "The\u0020components\u0020being\u0020rendered.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#property_componentStack" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003A\u0024currentComponentData", + "name": "currentComponentData", + "summary": "The\u0020component\u0020data\u0020for\u0020the\u0020component\u0020that\u0020is\u0020currently\u0020being\u0020rendered.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#property_currentComponentData" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003A\u0024slots", + "name": "slots", + "summary": "The\u0020slot\u0020contents\u0020for\u0020the\u0020component.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#property_slots" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesComponents\u003A\u003A\u0024slotStack", + "name": "slotStack", + "summary": "The\u0020names\u0020of\u0020the\u0020slots\u0020being\u0020rendered.", + "url": "classes/Illuminate-View-Concerns-ManagesComponents.html#property_slotStack" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents", + "name": "ManagesEvents", + "summary": "", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003Acreator\u0028\u0029", + "name": "creator", + "summary": "Register\u0020a\u0020view\u0020creator\u0020event.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_creator" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003Acomposers\u0028\u0029", + "name": "composers", + "summary": "Register\u0020multiple\u0020view\u0020composers\u0020via\u0020an\u0020array.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_composers" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003Acomposer\u0028\u0029", + "name": "composer", + "summary": "Register\u0020a\u0020view\u0020composer\u0020event.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_composer" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AaddViewEvent\u0028\u0029", + "name": "addViewEvent", + "summary": "Add\u0020an\u0020event\u0020for\u0020a\u0020given\u0020view.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_addViewEvent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AaddClassEvent\u0028\u0029", + "name": "addClassEvent", + "summary": "Register\u0020a\u0020class\u0020based\u0020view\u0020composer.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_addClassEvent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AbuildClassEventCallback\u0028\u0029", + "name": "buildClassEventCallback", + "summary": "Build\u0020a\u0020class\u0020based\u0020container\u0020callback\u0020Closure.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_buildClassEventCallback" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AparseClassEvent\u0028\u0029", + "name": "parseClassEvent", + "summary": "Parse\u0020a\u0020class\u0020based\u0020composer\u0020name.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_parseClassEvent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AclassEventMethodForPrefix\u0028\u0029", + "name": "classEventMethodForPrefix", + "summary": "Determine\u0020the\u0020class\u0020event\u0020method\u0020based\u0020on\u0020the\u0020given\u0020prefix.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_classEventMethodForPrefix" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AaddEventListener\u0028\u0029", + "name": "addEventListener", + "summary": "Add\u0020a\u0020listener\u0020to\u0020the\u0020event\u0020dispatcher.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_addEventListener" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AcallComposer\u0028\u0029", + "name": "callComposer", + "summary": "Call\u0020the\u0020composer\u0020for\u0020a\u0020given\u0020view.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_callComposer" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesEvents\u003A\u003AcallCreator\u0028\u0029", + "name": "callCreator", + "summary": "Call\u0020the\u0020creator\u0020for\u0020a\u0020given\u0020view.", + "url": "classes/Illuminate-View-Concerns-ManagesEvents.html#method_callCreator" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts", + "name": "ManagesLayouts", + "summary": "", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AstartSection\u0028\u0029", + "name": "startSection", + "summary": "Start\u0020injecting\u0020content\u0020into\u0020a\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_startSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003Ainject\u0028\u0029", + "name": "inject", + "summary": "Inject\u0020inline\u0020content\u0020into\u0020a\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_inject" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AyieldSection\u0028\u0029", + "name": "yieldSection", + "summary": "Stop\u0020injecting\u0020content\u0020into\u0020a\u0020section\u0020and\u0020return\u0020its\u0020contents.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_yieldSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AstopSection\u0028\u0029", + "name": "stopSection", + "summary": "Stop\u0020injecting\u0020content\u0020into\u0020a\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_stopSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AappendSection\u0028\u0029", + "name": "appendSection", + "summary": "Stop\u0020injecting\u0020content\u0020into\u0020a\u0020section\u0020and\u0020append\u0020it.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_appendSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AextendSection\u0028\u0029", + "name": "extendSection", + "summary": "Append\u0020content\u0020to\u0020a\u0020given\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_extendSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AyieldContent\u0028\u0029", + "name": "yieldContent", + "summary": "Get\u0020the\u0020string\u0020contents\u0020of\u0020a\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_yieldContent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003A\u0024parentPlaceholder", + "name": "parentPlaceholder", + "summary": "The\u0020parent\u0020placeholder\u0020for\u0020the\u0020request.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#property_parentPlaceholder" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003A\u0024parentPlaceholderSalt", + "name": "parentPlaceholderSalt", + "summary": "The\u0020parent\u0020placeholder\u0020salt\u0020for\u0020the\u0020request.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#property_parentPlaceholderSalt" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AhasSection\u0028\u0029", + "name": "hasSection", + "summary": "Check\u0020if\u0020section\u0020exists.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_hasSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AsectionMissing\u0028\u0029", + "name": "sectionMissing", + "summary": "Check\u0020if\u0020section\u0020does\u0020not\u0020exist.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_sectionMissing" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AgetSection\u0028\u0029", + "name": "getSection", + "summary": "Get\u0020the\u0020contents\u0020of\u0020a\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_getSection" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AgetSections\u0028\u0029", + "name": "getSections", + "summary": "Get\u0020the\u0020entire\u0020array\u0020of\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_getSections" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003AflushSections\u0028\u0029", + "name": "flushSections", + "summary": "Flush\u0020all\u0020of\u0020the\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#method_flushSections" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003A\u0024sections", + "name": "sections", + "summary": "All\u0020of\u0020the\u0020finished,\u0020captured\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#property_sections" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLayouts\u003A\u003A\u0024sectionStack", + "name": "sectionStack", + "summary": "The\u0020stack\u0020of\u0020in\u002Dprogress\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesLayouts.html#property_sectionStack" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops", + "name": "ManagesLoops", + "summary": "", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops\u003A\u003AaddLoop\u0028\u0029", + "name": "addLoop", + "summary": "Add\u0020new\u0020loop\u0020to\u0020the\u0020stack.", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html#method_addLoop" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops\u003A\u003AincrementLoopIndices\u0028\u0029", + "name": "incrementLoopIndices", + "summary": "Increment\u0020the\u0020top\u0020loop\u0027s\u0020indices.", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html#method_incrementLoopIndices" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops\u003A\u003ApopLoop\u0028\u0029", + "name": "popLoop", + "summary": "Pop\u0020a\u0020loop\u0020from\u0020the\u0020top\u0020of\u0020the\u0020loop\u0020stack.", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html#method_popLoop" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops\u003A\u003AgetLastLoop\u0028\u0029", + "name": "getLastLoop", + "summary": "Get\u0020an\u0020instance\u0020of\u0020the\u0020last\u0020loop\u0020in\u0020the\u0020stack.", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html#method_getLastLoop" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops\u003A\u003AgetLoopStack\u0028\u0029", + "name": "getLoopStack", + "summary": "Get\u0020the\u0020entire\u0020loop\u0020stack.", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html#method_getLoopStack" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesLoops\u003A\u003A\u0024loopsStack", + "name": "loopsStack", + "summary": "The\u0020stack\u0020of\u0020in\u002Dprogress\u0020loops.", + "url": "classes/Illuminate-View-Concerns-ManagesLoops.html#property_loopsStack" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks", + "name": "ManagesStacks", + "summary": "", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AstartPush\u0028\u0029", + "name": "startPush", + "summary": "Start\u0020injecting\u0020content\u0020into\u0020a\u0020push\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_startPush" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AstopPush\u0028\u0029", + "name": "stopPush", + "summary": "Stop\u0020injecting\u0020content\u0020into\u0020a\u0020push\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_stopPush" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AextendPush\u0028\u0029", + "name": "extendPush", + "summary": "Append\u0020content\u0020to\u0020a\u0020given\u0020push\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_extendPush" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AstartPrepend\u0028\u0029", + "name": "startPrepend", + "summary": "Start\u0020prepending\u0020content\u0020into\u0020a\u0020push\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_startPrepend" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AstopPrepend\u0028\u0029", + "name": "stopPrepend", + "summary": "Stop\u0020prepending\u0020content\u0020into\u0020a\u0020push\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_stopPrepend" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AextendPrepend\u0028\u0029", + "name": "extendPrepend", + "summary": "Prepend\u0020content\u0020to\u0020a\u0020given\u0020stack.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_extendPrepend" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AyieldPushContent\u0028\u0029", + "name": "yieldPushContent", + "summary": "Get\u0020the\u0020string\u0020contents\u0020of\u0020a\u0020push\u0020section.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_yieldPushContent" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003AflushStacks\u0028\u0029", + "name": "flushStacks", + "summary": "Flush\u0020all\u0020of\u0020the\u0020stacks.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#method_flushStacks" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003A\u0024pushes", + "name": "pushes", + "summary": "All\u0020of\u0020the\u0020finished,\u0020captured\u0020push\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#property_pushes" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003A\u0024prepends", + "name": "prepends", + "summary": "All\u0020of\u0020the\u0020finished,\u0020captured\u0020prepend\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#property_prepends" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesStacks\u003A\u003A\u0024pushStack", + "name": "pushStack", + "summary": "The\u0020stack\u0020of\u0020in\u002Dprogress\u0020push\u0020sections.", + "url": "classes/Illuminate-View-Concerns-ManagesStacks.html#property_pushStack" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesTranslations", + "name": "ManagesTranslations", + "summary": "", + "url": "classes/Illuminate-View-Concerns-ManagesTranslations.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesTranslations\u003A\u003AstartTranslation\u0028\u0029", + "name": "startTranslation", + "summary": "Start\u0020a\u0020translation\u0020block.", + "url": "classes/Illuminate-View-Concerns-ManagesTranslations.html#method_startTranslation" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesTranslations\u003A\u003ArenderTranslation\u0028\u0029", + "name": "renderTranslation", + "summary": "Render\u0020the\u0020current\u0020translation.", + "url": "classes/Illuminate-View-Concerns-ManagesTranslations.html#method_renderTranslation" + }, { + "fqsen": "\\Illuminate\\View\\Concerns\\ManagesTranslations\u003A\u003A\u0024translationReplacements", + "name": "translationReplacements", + "summary": "The\u0020translation\u0020replacements\u0020for\u0020the\u0020translation\u0020being\u0020rendered.", + "url": "classes/Illuminate-View-Concerns-ManagesTranslations.html#property_translationReplacements" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent", + "name": "DynamicComponent", + "summary": "", + "url": "classes/Illuminate-View-DynamicComponent.html" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020component\u0020instance.", + "url": "classes/Illuminate-View-DynamicComponent.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Get\u0020the\u0020view\u0020\/\u0020contents\u0020that\u0020represent\u0020the\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#method_render" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003AcompileProps\u0028\u0029", + "name": "compileProps", + "summary": "Compile\u0020the\u0020\u0040props\u0020directive\u0020for\u0020the\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#method_compileProps" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003AcompileBindings\u0028\u0029", + "name": "compileBindings", + "summary": "Compile\u0020the\u0020bindings\u0020for\u0020the\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#method_compileBindings" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003AcompileSlots\u0028\u0029", + "name": "compileSlots", + "summary": "Compile\u0020the\u0020slots\u0020for\u0020the\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#method_compileSlots" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003AclassForComponent\u0028\u0029", + "name": "classForComponent", + "summary": "Get\u0020the\u0020class\u0020for\u0020the\u0020current\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#method_classForComponent" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003Abindings\u0028\u0029", + "name": "bindings", + "summary": "Get\u0020the\u0020names\u0020of\u0020the\u0020variables\u0020that\u0020should\u0020be\u0020bound\u0020to\u0020the\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#method_bindings" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003A\u0024compiler", + "name": "compiler", + "summary": "The\u0020component\u0020tag\u0020compiler\u0020instance.", + "url": "classes/Illuminate-View-DynamicComponent.html#property_compiler" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003A\u0024component", + "name": "component", + "summary": "The\u0020name\u0020of\u0020the\u0020component.", + "url": "classes/Illuminate-View-DynamicComponent.html#property_component" + }, { + "fqsen": "\\Illuminate\\View\\DynamicComponent\u003A\u003A\u0024componentClasses", + "name": "componentClasses", + "summary": "The\u0020cached\u0020component\u0020classes.", + "url": "classes/Illuminate-View-DynamicComponent.html#property_componentClasses" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine", + "name": "CompilerEngine", + "summary": "", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020compiler\u0020engine\u0020instance.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#method_get" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003AhandleViewException\u0028\u0029", + "name": "handleViewException", + "summary": "Handle\u0020a\u0020view\u0020exception.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#method_handleViewException" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003AgetMessage\u0028\u0029", + "name": "getMessage", + "summary": "Get\u0020the\u0020exception\u0020message\u0020for\u0020an\u0020exception.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#method_getMessage" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003AgetCompiler\u0028\u0029", + "name": "getCompiler", + "summary": "Get\u0020the\u0020compiler\u0020implementation.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#method_getCompiler" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003A\u0024compiler", + "name": "compiler", + "summary": "The\u0020Blade\u0020compiler\u0020instance.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#property_compiler" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\CompilerEngine\u003A\u003A\u0024lastCompiled", + "name": "lastCompiled", + "summary": "A\u0020stack\u0020of\u0020the\u0020last\u0020compiled\u0020templates.", + "url": "classes/Illuminate-View-Engines-CompilerEngine.html#property_lastCompiled" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\Engine", + "name": "Engine", + "summary": "", + "url": "classes/Illuminate-View-Engines-Engine.html" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\Engine\u003A\u003AgetLastRendered\u0028\u0029", + "name": "getLastRendered", + "summary": "Get\u0020the\u0020last\u0020view\u0020that\u0020was\u0020rendered.", + "url": "classes/Illuminate-View-Engines-Engine.html#method_getLastRendered" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\Engine\u003A\u003A\u0024lastRendered", + "name": "lastRendered", + "summary": "The\u0020view\u0020that\u0020was\u0020last\u0020to\u0020be\u0020rendered.", + "url": "classes/Illuminate-View-Engines-Engine.html#property_lastRendered" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\EngineResolver", + "name": "EngineResolver", + "summary": "", + "url": "classes/Illuminate-View-Engines-EngineResolver.html" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\EngineResolver\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020a\u0020new\u0020engine\u0020resolver.", + "url": "classes/Illuminate-View-Engines-EngineResolver.html#method_register" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\EngineResolver\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020an\u0020engine\u0020instance\u0020by\u0020name.", + "url": "classes/Illuminate-View-Engines-EngineResolver.html#method_resolve" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\EngineResolver\u003A\u003Aforget\u0028\u0029", + "name": "forget", + "summary": "Remove\u0020a\u0020resolved\u0020engine.", + "url": "classes/Illuminate-View-Engines-EngineResolver.html#method_forget" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\EngineResolver\u003A\u003A\u0024resolvers", + "name": "resolvers", + "summary": "The\u0020array\u0020of\u0020engine\u0020resolvers.", + "url": "classes/Illuminate-View-Engines-EngineResolver.html#property_resolvers" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\EngineResolver\u003A\u003A\u0024resolved", + "name": "resolved", + "summary": "The\u0020resolved\u0020engine\u0020instances.", + "url": "classes/Illuminate-View-Engines-EngineResolver.html#property_resolved" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\FileEngine", + "name": "FileEngine", + "summary": "", + "url": "classes/Illuminate-View-Engines-FileEngine.html" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\FileEngine\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020file\u0020engine\u0020instance.", + "url": "classes/Illuminate-View-Engines-FileEngine.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\FileEngine\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-Engines-FileEngine.html#method_get" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\FileEngine\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-View-Engines-FileEngine.html#property_files" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\PhpEngine", + "name": "PhpEngine", + "summary": "", + "url": "classes/Illuminate-View-Engines-PhpEngine.html" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\PhpEngine\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020file\u0020engine\u0020instance.", + "url": "classes/Illuminate-View-Engines-PhpEngine.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\PhpEngine\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-Engines-PhpEngine.html#method_get" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\PhpEngine\u003A\u003AevaluatePath\u0028\u0029", + "name": "evaluatePath", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020view\u0020at\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-View-Engines-PhpEngine.html#method_evaluatePath" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\PhpEngine\u003A\u003AhandleViewException\u0028\u0029", + "name": "handleViewException", + "summary": "Handle\u0020a\u0020view\u0020exception.", + "url": "classes/Illuminate-View-Engines-PhpEngine.html#method_handleViewException" + }, { + "fqsen": "\\Illuminate\\View\\Engines\\PhpEngine\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-View-Engines-PhpEngine.html#property_files" + }, { + "fqsen": "\\Illuminate\\View\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Illuminate-View-Factory.html" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020view\u0020factory\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003Afile\u0028\u0029", + "name": "file", + "summary": "Get\u0020the\u0020evaluated\u0020view\u0020contents\u0020for\u0020the\u0020given\u0020view.", + "url": "classes/Illuminate-View-Factory.html#method_file" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Get\u0020the\u0020evaluated\u0020view\u0020contents\u0020for\u0020the\u0020given\u0020view.", + "url": "classes/Illuminate-View-Factory.html#method_make" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Get\u0020the\u0020first\u0020view\u0020that\u0020actually\u0020exists\u0020from\u0020the\u0020given\u0020list.", + "url": "classes/Illuminate-View-Factory.html#method_first" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003ArenderWhen\u0028\u0029", + "name": "renderWhen", + "summary": "Get\u0020the\u0020rendered\u0020content\u0020of\u0020the\u0020view\u0020based\u0020on\u0020a\u0020given\u0020condition.", + "url": "classes/Illuminate-View-Factory.html#method_renderWhen" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003ArenderUnless\u0028\u0029", + "name": "renderUnless", + "summary": "Get\u0020the\u0020rendered\u0020content\u0020of\u0020the\u0020view\u0020based\u0020on\u0020the\u0020negation\u0020of\u0020a\u0020given\u0020condition.", + "url": "classes/Illuminate-View-Factory.html#method_renderUnless" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003ArenderEach\u0028\u0029", + "name": "renderEach", + "summary": "Get\u0020the\u0020rendered\u0020contents\u0020of\u0020a\u0020partial\u0020from\u0020a\u0020loop.", + "url": "classes/Illuminate-View-Factory.html#method_renderEach" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AnormalizeName\u0028\u0029", + "name": "normalizeName", + "summary": "Normalize\u0020a\u0020view\u0020name.", + "url": "classes/Illuminate-View-Factory.html#method_normalizeName" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AparseData\u0028\u0029", + "name": "parseData", + "summary": "Parse\u0020the\u0020given\u0020data\u0020into\u0020a\u0020raw\u0020array.", + "url": "classes/Illuminate-View-Factory.html#method_parseData" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AviewInstance\u0028\u0029", + "name": "viewInstance", + "summary": "Create\u0020a\u0020new\u0020view\u0020instance\u0020from\u0020the\u0020given\u0020arguments.", + "url": "classes/Illuminate-View-Factory.html#method_viewInstance" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020a\u0020given\u0020view\u0020exists.", + "url": "classes/Illuminate-View-Factory.html#method_exists" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetEngineFromPath\u0028\u0029", + "name": "getEngineFromPath", + "summary": "Get\u0020the\u0020appropriate\u0020view\u0020engine\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Illuminate-View-Factory.html#method_getEngineFromPath" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Get\u0020the\u0020extension\u0020used\u0020by\u0020the\u0020view\u0020file.", + "url": "classes/Illuminate-View-Factory.html#method_getExtension" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003Ashare\u0028\u0029", + "name": "share", + "summary": "Add\u0020a\u0020piece\u0020of\u0020shared\u0020data\u0020to\u0020the\u0020environment.", + "url": "classes/Illuminate-View-Factory.html#method_share" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AincrementRender\u0028\u0029", + "name": "incrementRender", + "summary": "Increment\u0020the\u0020rendering\u0020counter.", + "url": "classes/Illuminate-View-Factory.html#method_incrementRender" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AdecrementRender\u0028\u0029", + "name": "decrementRender", + "summary": "Decrement\u0020the\u0020rendering\u0020counter.", + "url": "classes/Illuminate-View-Factory.html#method_decrementRender" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AdoneRendering\u0028\u0029", + "name": "doneRendering", + "summary": "Check\u0020if\u0020there\u0020are\u0020no\u0020active\u0020render\u0020operations.", + "url": "classes/Illuminate-View-Factory.html#method_doneRendering" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AhasRenderedOnce\u0028\u0029", + "name": "hasRenderedOnce", + "summary": "Determine\u0020if\u0020the\u0020given\u0020once\u0020token\u0020has\u0020been\u0020rendered.", + "url": "classes/Illuminate-View-Factory.html#method_hasRenderedOnce" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AmarkAsRenderedOnce\u0028\u0029", + "name": "markAsRenderedOnce", + "summary": "Mark\u0020the\u0020given\u0020once\u0020token\u0020as\u0020having\u0020been\u0020rendered.", + "url": "classes/Illuminate-View-Factory.html#method_markAsRenderedOnce" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AaddLocation\u0028\u0029", + "name": "addLocation", + "summary": "Add\u0020a\u0020location\u0020to\u0020the\u0020array\u0020of\u0020view\u0020locations.", + "url": "classes/Illuminate-View-Factory.html#method_addLocation" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AaddNamespace\u0028\u0029", + "name": "addNamespace", + "summary": "Add\u0020a\u0020new\u0020namespace\u0020to\u0020the\u0020loader.", + "url": "classes/Illuminate-View-Factory.html#method_addNamespace" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AprependNamespace\u0028\u0029", + "name": "prependNamespace", + "summary": "Prepend\u0020a\u0020new\u0020namespace\u0020to\u0020the\u0020loader.", + "url": "classes/Illuminate-View-Factory.html#method_prependNamespace" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AreplaceNamespace\u0028\u0029", + "name": "replaceNamespace", + "summary": "Replace\u0020the\u0020namespace\u0020hints\u0020for\u0020the\u0020given\u0020namespace.", + "url": "classes/Illuminate-View-Factory.html#method_replaceNamespace" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AaddExtension\u0028\u0029", + "name": "addExtension", + "summary": "Register\u0020a\u0020valid\u0020view\u0020extension\u0020and\u0020its\u0020engine.", + "url": "classes/Illuminate-View-Factory.html#method_addExtension" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AflushState\u0028\u0029", + "name": "flushState", + "summary": "Flush\u0020all\u0020of\u0020the\u0020factory\u0020state\u0020like\u0020sections\u0020and\u0020stacks.", + "url": "classes/Illuminate-View-Factory.html#method_flushState" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AflushStateIfDoneRendering\u0028\u0029", + "name": "flushStateIfDoneRendering", + "summary": "Flush\u0020all\u0020of\u0020the\u0020section\u0020contents\u0020if\u0020done\u0020rendering.", + "url": "classes/Illuminate-View-Factory.html#method_flushStateIfDoneRendering" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetExtensions\u0028\u0029", + "name": "getExtensions", + "summary": "Get\u0020the\u0020extension\u0020to\u0020engine\u0020bindings.", + "url": "classes/Illuminate-View-Factory.html#method_getExtensions" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetEngineResolver\u0028\u0029", + "name": "getEngineResolver", + "summary": "Get\u0020the\u0020engine\u0020resolver\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_getEngineResolver" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetFinder\u0028\u0029", + "name": "getFinder", + "summary": "Get\u0020the\u0020view\u0020finder\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_getFinder" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AsetFinder\u0028\u0029", + "name": "setFinder", + "summary": "Set\u0020the\u0020view\u0020finder\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_setFinder" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AflushFinderCache\u0028\u0029", + "name": "flushFinderCache", + "summary": "Flush\u0020the\u0020cache\u0020of\u0020views\u0020located\u0020by\u0020the\u0020finder.", + "url": "classes/Illuminate-View-Factory.html#method_flushFinderCache" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetDispatcher\u0028\u0029", + "name": "getDispatcher", + "summary": "Get\u0020the\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_getDispatcher" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AsetDispatcher\u0028\u0029", + "name": "setDispatcher", + "summary": "Set\u0020the\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_setDispatcher" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetContainer\u0028\u0029", + "name": "getContainer", + "summary": "Get\u0020the\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_getContainer" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "Set\u0020the\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#method_setContainer" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024shared", + "name": "shared", + "summary": "Data\u0020that\u0020should\u0020be\u0020available\u0020to\u0020all\u0020templates.", + "url": "classes/Illuminate-View-Factory.html#property_shared" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003AgetShared\u0028\u0029", + "name": "getShared", + "summary": "Get\u0020all\u0020of\u0020the\u0020shared\u0020data\u0020for\u0020the\u0020environment.", + "url": "classes/Illuminate-View-Factory.html#method_getShared" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024engines", + "name": "engines", + "summary": "The\u0020engine\u0020implementation.", + "url": "classes/Illuminate-View-Factory.html#property_engines" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024finder", + "name": "finder", + "summary": "The\u0020view\u0020finder\u0020implementation.", + "url": "classes/Illuminate-View-Factory.html#property_finder" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024events", + "name": "events", + "summary": "The\u0020event\u0020dispatcher\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#property_events" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024container", + "name": "container", + "summary": "The\u0020IoC\u0020container\u0020instance.", + "url": "classes/Illuminate-View-Factory.html#property_container" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024extensions", + "name": "extensions", + "summary": "The\u0020extension\u0020to\u0020engine\u0020bindings.", + "url": "classes/Illuminate-View-Factory.html#property_extensions" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024composers", + "name": "composers", + "summary": "The\u0020view\u0020composer\u0020events.", + "url": "classes/Illuminate-View-Factory.html#property_composers" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024renderCount", + "name": "renderCount", + "summary": "The\u0020number\u0020of\u0020active\u0020rendering\u0020operations.", + "url": "classes/Illuminate-View-Factory.html#property_renderCount" + }, { + "fqsen": "\\Illuminate\\View\\Factory\u003A\u003A\u0024renderedOnce", + "name": "renderedOnce", + "summary": "The\u0020\u0022once\u0022\u0020block\u0020IDs\u0020that\u0020have\u0020been\u0020rendered.", + "url": "classes/Illuminate-View-Factory.html#property_renderedOnce" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder", + "name": "FileViewFinder", + "summary": "", + "url": "classes/Illuminate-View-FileViewFinder.html" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020file\u0020view\u0020loader\u0020instance.", + "url": "classes/Illuminate-View-FileViewFinder.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020location\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_find" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AfindNamespacedView\u0028\u0029", + "name": "findNamespacedView", + "summary": "Get\u0020the\u0020path\u0020to\u0020a\u0020template\u0020with\u0020a\u0020named\u0020path.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_findNamespacedView" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AparseNamespaceSegments\u0028\u0029", + "name": "parseNamespaceSegments", + "summary": "Get\u0020the\u0020segments\u0020of\u0020a\u0020template\u0020with\u0020a\u0020named\u0020path.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_parseNamespaceSegments" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AfindInPaths\u0028\u0029", + "name": "findInPaths", + "summary": "Find\u0020the\u0020given\u0020view\u0020in\u0020the\u0020list\u0020of\u0020paths.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_findInPaths" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AgetPossibleViewFiles\u0028\u0029", + "name": "getPossibleViewFiles", + "summary": "Get\u0020an\u0020array\u0020of\u0020possible\u0020view\u0020files.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_getPossibleViewFiles" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AaddLocation\u0028\u0029", + "name": "addLocation", + "summary": "Add\u0020a\u0020location\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_addLocation" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AprependLocation\u0028\u0029", + "name": "prependLocation", + "summary": "Prepend\u0020a\u0020location\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_prependLocation" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AresolvePath\u0028\u0029", + "name": "resolvePath", + "summary": "Resolve\u0020the\u0020path.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_resolvePath" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AaddNamespace\u0028\u0029", + "name": "addNamespace", + "summary": "Add\u0020a\u0020namespace\u0020hint\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_addNamespace" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AprependNamespace\u0028\u0029", + "name": "prependNamespace", + "summary": "Prepend\u0020a\u0020namespace\u0020hint\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_prependNamespace" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AreplaceNamespace\u0028\u0029", + "name": "replaceNamespace", + "summary": "Replace\u0020the\u0020namespace\u0020hints\u0020for\u0020the\u0020given\u0020namespace.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_replaceNamespace" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AaddExtension\u0028\u0029", + "name": "addExtension", + "summary": "Register\u0020an\u0020extension\u0020with\u0020the\u0020view\u0020finder.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_addExtension" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AhasHintInformation\u0028\u0029", + "name": "hasHintInformation", + "summary": "Returns\u0020whether\u0020or\u0020not\u0020the\u0020view\u0020name\u0020has\u0020any\u0020hint\u0020information.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_hasHintInformation" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020the\u0020cache\u0020of\u0020located\u0020views.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_flush" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AgetFilesystem\u0028\u0029", + "name": "getFilesystem", + "summary": "Get\u0020the\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_getFilesystem" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AsetPaths\u0028\u0029", + "name": "setPaths", + "summary": "Set\u0020the\u0020active\u0020view\u0020paths.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_setPaths" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AgetPaths\u0028\u0029", + "name": "getPaths", + "summary": "Get\u0020the\u0020active\u0020view\u0020paths.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_getPaths" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AgetViews\u0028\u0029", + "name": "getViews", + "summary": "Get\u0020the\u0020views\u0020that\u0020have\u0020been\u0020located.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_getViews" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AgetHints\u0028\u0029", + "name": "getHints", + "summary": "Get\u0020the\u0020namespace\u0020to\u0020file\u0020path\u0020hints.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_getHints" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003AgetExtensions\u0028\u0029", + "name": "getExtensions", + "summary": "Get\u0020registered\u0020extensions.", + "url": "classes/Illuminate-View-FileViewFinder.html#method_getExtensions" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003A\u0024files", + "name": "files", + "summary": "The\u0020filesystem\u0020instance.", + "url": "classes/Illuminate-View-FileViewFinder.html#property_files" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003A\u0024paths", + "name": "paths", + "summary": "The\u0020array\u0020of\u0020active\u0020view\u0020paths.", + "url": "classes/Illuminate-View-FileViewFinder.html#property_paths" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003A\u0024views", + "name": "views", + "summary": "The\u0020array\u0020of\u0020views\u0020that\u0020have\u0020been\u0020located.", + "url": "classes/Illuminate-View-FileViewFinder.html#property_views" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003A\u0024hints", + "name": "hints", + "summary": "The\u0020namespace\u0020to\u0020file\u0020path\u0020hints.", + "url": "classes/Illuminate-View-FileViewFinder.html#property_hints" + }, { + "fqsen": "\\Illuminate\\View\\FileViewFinder\u003A\u003A\u0024extensions", + "name": "extensions", + "summary": "Register\u0020a\u0020view\u0020extension\u0020with\u0020the\u0020finder.", + "url": "classes/Illuminate-View-FileViewFinder.html#property_extensions" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable", + "name": "InvokableComponentVariable", + "summary": "", + "url": "classes/Illuminate-View-InvokableComponentVariable.html" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020variable\u0020instance.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003AresolveDisplayableValue\u0028\u0029", + "name": "resolveDisplayableValue", + "summary": "Resolve\u0020the\u0020displayable\u0020value\u0020that\u0020the\u0020class\u0020is\u0020deferring.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method_resolveDisplayableValue" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020an\u0020interator\u0020instance\u0020for\u0020the\u0020variable.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method_getIterator" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Dynamically\u0020proxy\u0020attribute\u0020access\u0020to\u0020the\u0020variable.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method___get" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020proxy\u0020method\u0020access\u0020to\u0020the\u0020variable.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method___call" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "Resolve\u0020the\u0020variable.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method___invoke" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Resolve\u0020the\u0020variable\u0020as\u0020a\u0020string.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#method___toString" + }, { + "fqsen": "\\Illuminate\\View\\InvokableComponentVariable\u003A\u003A\u0024callable", + "name": "callable", + "summary": "The\u0020callable\u0020instance\u0020to\u0020resolve\u0020the\u0020variable\u0020value.", + "url": "classes/Illuminate-View-InvokableComponentVariable.html#property_callable" + }, { + "fqsen": "\\Illuminate\\View\\Middleware\\ShareErrorsFromSession", + "name": "ShareErrorsFromSession", + "summary": "", + "url": "classes/Illuminate-View-Middleware-ShareErrorsFromSession.html" + }, { + "fqsen": "\\Illuminate\\View\\Middleware\\ShareErrorsFromSession\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020error\u0020binder\u0020instance.", + "url": "classes/Illuminate-View-Middleware-ShareErrorsFromSession.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\Middleware\\ShareErrorsFromSession\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Handle\u0020an\u0020incoming\u0020request.", + "url": "classes/Illuminate-View-Middleware-ShareErrorsFromSession.html#method_handle" + }, { + "fqsen": "\\Illuminate\\View\\Middleware\\ShareErrorsFromSession\u003A\u003A\u0024view", + "name": "view", + "summary": "The\u0020view\u0020factory\u0020implementation.", + "url": "classes/Illuminate-View-Middleware-ShareErrorsFromSession.html#property_view" + }, { + "fqsen": "\\Illuminate\\View\\View", + "name": "View", + "summary": "", + "url": "classes/Illuminate-View-View.html" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020view\u0020instance.", + "url": "classes/Illuminate-View-View.html#method___construct" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Get\u0020the\u0020string\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_render" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003ArenderContents\u0028\u0029", + "name": "renderContents", + "summary": "Get\u0020the\u0020contents\u0020of\u0020the\u0020view\u0020instance.", + "url": "classes/Illuminate-View-View.html#method_renderContents" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgetContents\u0028\u0029", + "name": "getContents", + "summary": "Get\u0020the\u0020evaluated\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_getContents" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgatherData\u0028\u0029", + "name": "gatherData", + "summary": "Get\u0020the\u0020data\u0020bound\u0020to\u0020the\u0020view\u0020instance.", + "url": "classes/Illuminate-View-View.html#method_gatherData" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003ArenderSections\u0028\u0029", + "name": "renderSections", + "summary": "Get\u0020the\u0020sections\u0020of\u0020the\u0020rendered\u0020view.", + "url": "classes/Illuminate-View-View.html#method_renderSections" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Add\u0020a\u0020piece\u0020of\u0020data\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_with" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003Anest\u0028\u0029", + "name": "nest", + "summary": "Add\u0020a\u0020view\u0020instance\u0020to\u0020the\u0020view\u0020data.", + "url": "classes/Illuminate-View-View.html#method_nest" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AwithErrors\u0028\u0029", + "name": "withErrors", + "summary": "Add\u0020validation\u0020errors\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_withErrors" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AformatErrors\u0028\u0029", + "name": "formatErrors", + "summary": "Parse\u0020the\u0020given\u0020errors\u0020into\u0020an\u0020appropriate\u0020value.", + "url": "classes/Illuminate-View-View.html#method_formatErrors" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_name" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020the\u0020name\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_getName" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgetData\u0028\u0029", + "name": "getData", + "summary": "Get\u0020the\u0020array\u0020of\u0020view\u0020data.", + "url": "classes/Illuminate-View-View.html#method_getData" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020view\u0020file.", + "url": "classes/Illuminate-View-View.html#method_getPath" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AsetPath\u0028\u0029", + "name": "setPath", + "summary": "Set\u0020the\u0020path\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_setPath" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgetFactory\u0028\u0029", + "name": "getFactory", + "summary": "Get\u0020the\u0020view\u0020factory\u0020instance.", + "url": "classes/Illuminate-View-View.html#method_getFactory" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AgetEngine\u0028\u0029", + "name": "getEngine", + "summary": "Get\u0020the\u0020view\u0027s\u0020rendering\u0020engine.", + "url": "classes/Illuminate-View-View.html#method_getEngine" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Determine\u0020if\u0020a\u0020piece\u0020of\u0020data\u0020is\u0020bound.", + "url": "classes/Illuminate-View-View.html#method_offsetExists" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020a\u0020piece\u0020of\u0020bound\u0020data\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_offsetGet" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Set\u0020a\u0020piece\u0020of\u0020data\u0020on\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_offsetSet" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Unset\u0020a\u0020piece\u0020of\u0020data\u0020from\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method_offsetUnset" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Get\u0020a\u0020piece\u0020of\u0020data\u0020from\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method___get" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Set\u0020a\u0020piece\u0020of\u0020data\u0020on\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method___set" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Check\u0020if\u0020a\u0020piece\u0020of\u0020data\u0020is\u0020bound\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method___isset" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__unset\u0028\u0029", + "name": "__unset", + "summary": "Remove\u0020a\u0020piece\u0020of\u0020bound\u0020data\u0020from\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method___unset" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020bind\u0020parameters\u0020to\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method___call" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003AtoHtml\u0028\u0029", + "name": "toHtml", + "summary": "Get\u0020content\u0020as\u0020a\u0020string\u0020of\u0020HTML.", + "url": "classes/Illuminate-View-View.html#method_toHtml" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020the\u0020string\u0020contents\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#method___toString" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A\u0024factory", + "name": "factory", + "summary": "The\u0020view\u0020factory\u0020instance.", + "url": "classes/Illuminate-View-View.html#property_factory" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A\u0024engine", + "name": "engine", + "summary": "The\u0020engine\u0020implementation.", + "url": "classes/Illuminate-View-View.html#property_engine" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A\u0024view", + "name": "view", + "summary": "The\u0020name\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-View.html#property_view" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A\u0024data", + "name": "data", + "summary": "The\u0020array\u0020of\u0020view\u0020data.", + "url": "classes/Illuminate-View-View.html#property_data" + }, { + "fqsen": "\\Illuminate\\View\\View\u003A\u003A\u0024path", + "name": "path", + "summary": "The\u0020path\u0020to\u0020the\u0020view\u0020file.", + "url": "classes/Illuminate-View-View.html#property_path" + }, { + "fqsen": "\\Illuminate\\View\\ViewException", + "name": "ViewException", + "summary": "", + "url": "classes/Illuminate-View-ViewException.html" + }, { + "fqsen": "\\Illuminate\\View\\ViewException\u003A\u003Areport\u0028\u0029", + "name": "report", + "summary": "Report\u0020the\u0020exception.", + "url": "classes/Illuminate-View-ViewException.html#method_report" + }, { + "fqsen": "\\Illuminate\\View\\ViewException\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020the\u0020exception\u0020into\u0020an\u0020HTTP\u0020response.", + "url": "classes/Illuminate-View-ViewException.html#method_render" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface", + "name": "ViewFinderInterface", + "summary": "", + "url": "classes/Illuminate-View-ViewFinderInterface.html" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Get\u0020the\u0020fully\u0020qualified\u0020location\u0020of\u0020the\u0020view.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_find" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003AaddLocation\u0028\u0029", + "name": "addLocation", + "summary": "Add\u0020a\u0020location\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_addLocation" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003AaddNamespace\u0028\u0029", + "name": "addNamespace", + "summary": "Add\u0020a\u0020namespace\u0020hint\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_addNamespace" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003AprependNamespace\u0028\u0029", + "name": "prependNamespace", + "summary": "Prepend\u0020a\u0020namespace\u0020hint\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_prependNamespace" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003AreplaceNamespace\u0028\u0029", + "name": "replaceNamespace", + "summary": "Replace\u0020the\u0020namespace\u0020hints\u0020for\u0020the\u0020given\u0020namespace.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_replaceNamespace" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003AaddExtension\u0028\u0029", + "name": "addExtension", + "summary": "Add\u0020a\u0020valid\u0020view\u0020extension\u0020to\u0020the\u0020finder.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_addExtension" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020the\u0020cache\u0020of\u0020located\u0020views.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#method_flush" + }, { + "fqsen": "\\Illuminate\\View\\ViewFinderInterface\u003A\u003AHINT_PATH_DELIMITER", + "name": "HINT_PATH_DELIMITER", + "summary": "Hint\u0020path\u0020delimiter\u0020value.", + "url": "classes/Illuminate-View-ViewFinderInterface.html#constant_HINT_PATH_DELIMITER" + }, { + "fqsen": "\\Illuminate\\View\\ViewName", + "name": "ViewName", + "summary": "", + "url": "classes/Illuminate-View-ViewName.html" + }, { + "fqsen": "\\Illuminate\\View\\ViewName\u003A\u003Anormalize\u0028\u0029", + "name": "normalize", + "summary": "Normalize\u0020the\u0020given\u0020view\u0020name.", + "url": "classes/Illuminate-View-ViewName.html#method_normalize" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider", + "name": "ViewServiceProvider", + "summary": "", + "url": "classes/Illuminate-View-ViewServiceProvider.html" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020the\u0020service\u0020provider.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_register" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterFactory\u0028\u0029", + "name": "registerFactory", + "summary": "Register\u0020the\u0020view\u0020environment.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerFactory" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AcreateFactory\u0028\u0029", + "name": "createFactory", + "summary": "Create\u0020a\u0020new\u0020Factory\u0020Instance.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_createFactory" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterViewFinder\u0028\u0029", + "name": "registerViewFinder", + "summary": "Register\u0020the\u0020view\u0020finder\u0020implementation.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerViewFinder" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterBladeCompiler\u0028\u0029", + "name": "registerBladeCompiler", + "summary": "Register\u0020the\u0020Blade\u0020compiler\u0020implementation.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerBladeCompiler" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterEngineResolver\u0028\u0029", + "name": "registerEngineResolver", + "summary": "Register\u0020the\u0020engine\u0020resolver\u0020instance.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerEngineResolver" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterFileEngine\u0028\u0029", + "name": "registerFileEngine", + "summary": "Register\u0020the\u0020file\u0020engine\u0020implementation.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerFileEngine" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterPhpEngine\u0028\u0029", + "name": "registerPhpEngine", + "summary": "Register\u0020the\u0020PHP\u0020engine\u0020implementation.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerPhpEngine" + }, { + "fqsen": "\\Illuminate\\View\\ViewServiceProvider\u003A\u003AregisterBladeEngine\u0028\u0029", + "name": "registerBladeEngine", + "summary": "Register\u0020the\u0020Blade\u0020engine\u0020implementation.", + "url": "classes/Illuminate-View-ViewServiceProvider.html#method_registerBladeEngine" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade", + "name": "Blade", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#method___construct" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#method_render" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Get\u0020the\u0020evaluated\u0020view\u0020contents\u0020for\u0020the\u0020given\u0020view.", + "url": "classes/Jenssegers-Blade-Blade.html#method_make" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003A\u0024compiler", + "name": "compiler", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#property_compiler" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Adirective\u0028\u0029", + "name": "directive", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#method_directive" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Aif\u0028\u0029", + "name": "if", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#method_if" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Determine\u0020if\u0020a\u0020given\u0020view\u0020exists.", + "url": "classes/Jenssegers-Blade-Blade.html#method_exists" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Afile\u0028\u0029", + "name": "file", + "summary": "Get\u0020the\u0020evaluated\u0020view\u0020contents\u0020for\u0020the\u0020given\u0020path.", + "url": "classes/Jenssegers-Blade-Blade.html#method_file" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Ashare\u0028\u0029", + "name": "share", + "summary": "Add\u0020a\u0020piece\u0020of\u0020shared\u0020data\u0020to\u0020the\u0020environment.", + "url": "classes/Jenssegers-Blade-Blade.html#method_share" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Acomposer\u0028\u0029", + "name": "composer", + "summary": "Register\u0020a\u0020view\u0020composer\u0020event.", + "url": "classes/Jenssegers-Blade-Blade.html#method_composer" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003Acreator\u0028\u0029", + "name": "creator", + "summary": "Register\u0020a\u0020view\u0020creator\u0020event.", + "url": "classes/Jenssegers-Blade-Blade.html#method_creator" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003AaddNamespace\u0028\u0029", + "name": "addNamespace", + "summary": "Add\u0020a\u0020new\u0020namespace\u0020to\u0020the\u0020loader.", + "url": "classes/Jenssegers-Blade-Blade.html#method_addNamespace" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003AreplaceNamespace\u0028\u0029", + "name": "replaceNamespace", + "summary": "Replace\u0020the\u0020namespace\u0020hints\u0020for\u0020the\u0020given\u0020namespace.", + "url": "classes/Jenssegers-Blade-Blade.html#method_replaceNamespace" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#method___call" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003AsetupContainer\u0028\u0029", + "name": "setupContainer", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#method_setupContainer" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#property_container" + }, { + "fqsen": "\\Jenssegers\\Blade\\Blade\u003A\u003A\u0024factory", + "name": "factory", + "summary": "", + "url": "classes/Jenssegers-Blade-Blade.html#property_factory" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\EjectCommand", + "name": "EjectCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Leaf-Alchemy-Commands-EjectCommand.html" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\EjectCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020the\u0020command\u0020options.", + "url": "classes/Leaf-Alchemy-Commands-EjectCommand.html#method_configure" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\EjectCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Execute\u0020the\u0020command.", + "url": "classes/Leaf-Alchemy-Commands-EjectCommand.html#method_execute" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\InstallCommand", + "name": "InstallCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Leaf-Alchemy-Commands-InstallCommand.html" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\InstallCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020the\u0020command\u0020options.", + "url": "classes/Leaf-Alchemy-Commands-InstallCommand.html#method_configure" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\InstallCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Execute\u0020the\u0020command.", + "url": "classes/Leaf-Alchemy-Commands-InstallCommand.html#method_execute" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\InstallCommand\u003A\u003AupdateComposerJson\u0028\u0029", + "name": "updateComposerJson", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-InstallCommand.html#method_updateComposerJson" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\InstallCommand\u003A\u003AupdateGitIgnore\u0028\u0029", + "name": "updateGitIgnore", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-InstallCommand.html#method_updateGitIgnore" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand", + "name": "SetupCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020the\u0020command\u0020options.", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#method_configure" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Execute\u0020the\u0020command.", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#method_execute" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003ArunTests\u0028\u0029", + "name": "runTests", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#method_runTests" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003ArunLinter\u0028\u0029", + "name": "runLinter", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#method_runLinter" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003AgenerateActions\u0028\u0029", + "name": "generateActions", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#method_generateActions" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#property_output" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands\\SetupCommand\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Leaf-Alchemy-Commands-SetupCommand.html#property_input" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core", + "name": "Core", + "summary": "Container\u0020for\u0020Alchemy\u0020config", + "url": "classes/Leaf-Alchemy-Core.html" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020Alchemy\u0020config", + "url": "classes/Leaf-Alchemy-Core.html#method_set" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020Alchemy\u0020config", + "url": "classes/Leaf-Alchemy-Core.html#method_get" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core\u003A\u003AunJsonify\u0028\u0029", + "name": "unJsonify", + "summary": "", + "url": "classes/Leaf-Alchemy-Core.html#method_unJsonify" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core\u003A\u003AgenerateTestFiles\u0028\u0029", + "name": "generateTestFiles", + "summary": "", + "url": "classes/Leaf-Alchemy-Core.html#method_generateTestFiles" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core\u003A\u003AgenerateLintFiles\u0028\u0029", + "name": "generateLintFiles", + "summary": "", + "url": "classes/Leaf-Alchemy-Core.html#method_generateLintFiles" + }, { + "fqsen": "\\Leaf\\Alchemy\\Core\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Alchemy-Core.html#property_config" + }, { + "fqsen": "\\StackTest", + "name": "StackTest", + "summary": "", + "url": "classes/StackTest.html" + }, { + "fqsen": "\\StackTest\u003A\u003AtestPushAndPop\u0028\u0029", + "name": "testPushAndPop", + "summary": "", + "url": "classes/StackTest.html#method_testPushAndPop" + }, { + "fqsen": "\\Leaf\\Console\\Utils\\Package", + "name": "Package", + "summary": "Package\n\u002D\u002D\u002D\u002D\nMeta\u0020info\u0020on\u0020leaf\u0020cli", + "url": "classes/Leaf-Console-Utils-Package.html" + }, { + "fqsen": "\\Leaf\\Console\\Utils\\Package\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Check\u0020current\u0020version", + "url": "classes/Leaf-Console-Utils-Package.html#method_info" + }, { + "fqsen": "\\Leaf\\Console\\Utils\\Package\u003A\u003Aversion\u0028\u0029", + "name": "version", + "summary": "Check\u0020current\u0020version", + "url": "classes/Leaf-Console-Utils-Package.html#method_version" + }, { + "fqsen": "\\Leaf\\Console\\Utils\\Package\u003A\u003AltsInfo\u0028\u0029", + "name": "ltsInfo", + "summary": "Find\u0020latest\u0020stable\u0020version", + "url": "classes/Leaf-Console-Utils-Package.html#method_ltsInfo" + }, { + "fqsen": "\\Leaf\\Console\\Utils\\Package\u003A\u003AltsVersion\u0028\u0029", + "name": "ltsVersion", + "summary": "Find\u0020latest\u0020stable\u0020version", + "url": "classes/Leaf-Console-Utils-Package.html#method_ltsVersion" + }, { + "fqsen": "\\Leaf\\Console\\Utils\\Package\u003A\u003AupdateAvailable\u0028\u0029", + "name": "updateAvailable", + "summary": "Check\u0020if\u0020there\u0020is\u0020an\u0020update\u0020available", + "url": "classes/Leaf-Console-Utils-Package.html#method_updateAvailable" + }, { + "fqsen": "\\something\u0028\u0029", + "name": "something", + "summary": "", + "url": "namespaces/default.html#function_something" + }, { + "fqsen": "\\Aloe\\Command\\AppDownCommand", + "name": "AppDownCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-AppDownCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\AppDownCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-AppDownCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\AppDownCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-AppDownCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\AppDownCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-AppDownCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\AppDownCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-AppDownCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\AppUpCommand", + "name": "AppUpCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-AppUpCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\AppUpCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-AppUpCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\AppUpCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-AppUpCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\AppUpCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-AppUpCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\AppUpCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-AppUpCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\Config", + "name": "Config", + "summary": "", + "url": "classes/Aloe-Command-Config.html" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "Get\u0020or\u0020generate\u0020aloe\u0020config", + "url": "classes/Aloe-Command-Config.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003Apaths\u0028\u0029", + "name": "paths", + "summary": "Get\u0020or\u0020generate\u0020aloe\u0020paths", + "url": "classes/Aloe-Command-Config.html#method_paths" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003Arootpath\u0028\u0029", + "name": "rootpath", + "summary": "Get\u0020project\u0020rootpath", + "url": "classes/Aloe-Command-Config.html#method_rootpath" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003A\u0024env", + "name": "env", + "summary": "", + "url": "classes/Aloe-Command-Config.html#property_env" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003A\u0024configBlueprint", + "name": "configBlueprint", + "summary": "", + "url": "classes/Aloe-Command-Config.html#property_configBlueprint" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003A\u0024pathsConfig", + "name": "pathsConfig", + "summary": "", + "url": "classes/Aloe-Command-Config.html#property_pathsConfig" + }, { + "fqsen": "\\Aloe\\Command\\Config\u003A\u003A\u0024seeder", + "name": "seeder", + "summary": "", + "url": "classes/Aloe-Command-Config.html#property_seeder" + }, { + "fqsen": "\\Aloe\\Command\\ConfigLibCommand", + "name": "ConfigLibCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-ConfigLibCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ConfigLibCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ConfigLibCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\ConfigLibCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ConfigLibCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ConfigLibCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-ConfigLibCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\ConfigLibCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-ConfigLibCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\ConfigPublishCommand", + "name": "ConfigPublishCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-ConfigPublishCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ConfigPublishCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-ConfigPublishCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\ConfigPublishCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ConfigPublishCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\ConfigPublishCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ConfigPublishCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ConfigPublishCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-ConfigPublishCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\ConfigPublishCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-ConfigPublishCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand", + "name": "DatabaseMigrationCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand\u003A\u003AcreateDatabase\u0028\u0029", + "name": "createDatabase", + "summary": "", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html#method_createDatabase" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseMigrationCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseMigrationCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseResetCommand", + "name": "DatabaseResetCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DatabaseResetCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseResetCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DatabaseResetCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseResetCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DatabaseResetCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseResetCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DatabaseResetCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseResetCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseResetCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseResetCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseResetCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseRollbackCommand", + "name": "DatabaseRollbackCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DatabaseRollbackCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseRollbackCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DatabaseRollbackCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseRollbackCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DatabaseRollbackCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseRollbackCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DatabaseRollbackCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseRollbackCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseRollbackCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseRollbackCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseRollbackCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseSeedCommand", + "name": "DatabaseSeedCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DatabaseSeedCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseSeedCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DatabaseSeedCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseSeedCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DatabaseSeedCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseSeedCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DatabaseSeedCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseSeedCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseSeedCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DatabaseSeedCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DatabaseSeedCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DeleteConsoleCommand", + "name": "DeleteConsoleCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DeleteConsoleCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DeleteConsoleCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DeleteConsoleCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DeleteConsoleCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DeleteConsoleCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DeleteConsoleCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DeleteConsoleCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DeleteConsoleCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DeleteConsoleCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DeleteConsoleCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DeleteConsoleCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DeleteControllerCommand", + "name": "DeleteControllerCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DeleteControllerCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DeleteControllerCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DeleteControllerCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DeleteControllerCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DeleteControllerCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DeleteControllerCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DeleteControllerCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DeleteControllerCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DeleteControllerCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DeleteControllerCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DeleteControllerCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DeleteModelCommand", + "name": "DeleteModelCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DeleteModelCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DeleteModelCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-DeleteModelCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\DeleteModelCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DeleteModelCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DeleteModelCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DeleteModelCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DeleteModelCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DeleteModelCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DeleteModelCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DeleteModelCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\DevToolsCommand", + "name": "DevToolsCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-DevToolsCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\DevToolsCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-DevToolsCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\DevToolsCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-DevToolsCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\DevToolsCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-DevToolsCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\DevToolsCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-DevToolsCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\EnvGenerateCommand", + "name": "EnvGenerateCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-EnvGenerateCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\EnvGenerateCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-EnvGenerateCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\EnvGenerateCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-EnvGenerateCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\EnvGenerateCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-EnvGenerateCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\EnvGenerateCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-EnvGenerateCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand", + "name": "GenerateConsoleCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand\u003A\u003AmapNames\u0028\u0029", + "name": "mapNames", + "summary": "", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html#method_mapNames" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateConsoleCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateConsoleCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand", + "name": "GenerateControllerCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateControllerCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003AgenerateController\u0028\u0029", + "name": "generateController", + "summary": "", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#method_generateController" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003AgenerateExtraFiles\u0028\u0029", + "name": "generateExtraFiles", + "summary": "", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#method_generateExtraFiles" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateControllerCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateControllerCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand", + "name": "GenerateHelperCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateHelperCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateHelperCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateHelperCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand\u003A\u003AmapNames\u0028\u0029", + "name": "mapNames", + "summary": "", + "url": "classes/Aloe-Command-GenerateHelperCommand.html#method_mapNames" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateHelperCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateHelperCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateHelperCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateHelperCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMailerCommand", + "name": "GenerateMailerCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateMailerCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMailerCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateMailerCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMailerCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateMailerCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMailerCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateMailerCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMailerCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateMailerCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMailerCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateMailerCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMiddlewareCommand", + "name": "GenerateMiddlewareCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateMiddlewareCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMiddlewareCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateMiddlewareCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMiddlewareCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateMiddlewareCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMiddlewareCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateMiddlewareCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMiddlewareCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateMiddlewareCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateMiddlewareCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateMiddlewareCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateModelCommand", + "name": "GenerateModelCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateModelCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateModelCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateModelCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateModelCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateModelCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateModelCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateModelCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateModelCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateModelCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateModelCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateModelCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand", + "name": "GenerateSchemaCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand\u003A\u003AgenerateExtraFiles\u0028\u0029", + "name": "generateExtraFiles", + "summary": "", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html#method_generateExtraFiles" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateSchemaCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateSchemaCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand", + "name": "GenerateTemplateCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003AgetTemplateName\u0028\u0029", + "name": "getTemplateName", + "summary": "", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#method_getTemplateName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003AgenerateTemplateData\u0028\u0029", + "name": "generateTemplateData", + "summary": "", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#method_generateTemplateData" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\GenerateTemplateCommand\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/Aloe-Command-GenerateTemplateCommand.html#property_type" + }, { + "fqsen": "\\Leaf\\Console\\InstallCommand", + "name": "InstallCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Leaf-Console-InstallCommand.html" + }, { + "fqsen": "\\Leaf\\Console\\InstallCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Leaf-Console-InstallCommand.html#method_configure" + }, { + "fqsen": "\\Leaf\\Console\\InstallCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Leaf-Console-InstallCommand.html#method_execute" + }, { + "fqsen": "\\Leaf\\Console\\InstallCommand\u003A\u003AinstallDependencies\u0028\u0029", + "name": "installDependencies", + "summary": "", + "url": "classes/Leaf-Console-InstallCommand.html#method_installDependencies" + }, { + "fqsen": "\\Leaf\\Console\\InstallCommand\u003A\u003Ainstall\u0028\u0029", + "name": "install", + "summary": "Install\u0020packages", + "url": "classes/Leaf-Console-InstallCommand.html#method_install" + }, { + "fqsen": "\\Leaf\\Console\\InstallCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Leaf-Console-InstallCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\InteractCommand", + "name": "InteractCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-InteractCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\InteractCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-InteractCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\InteractCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-InteractCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\InteractCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-InteractCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\InteractCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-InteractCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\KeyGenerateCommand", + "name": "KeyGenerateCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Aloe-Command-KeyGenerateCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\KeyGenerateCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-KeyGenerateCommand.html#method_configure" + }, { + "fqsen": "\\Aloe\\Command\\KeyGenerateCommand\u003A\u003AgenerateKey\u0028\u0029", + "name": "generateKey", + "summary": "", + "url": "classes/Aloe-Command-KeyGenerateCommand.html#method_generateKey" + }, { + "fqsen": "\\Aloe\\Command\\KeyGenerateCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-KeyGenerateCommand.html#method_execute" + }, { + "fqsen": "\\Aloe\\Command\\KeyGenerateCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-KeyGenerateCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\LinkCommand", + "name": "LinkCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-LinkCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\LinkCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-LinkCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\LinkCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-LinkCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\LinkCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-LinkCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\LinkCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-LinkCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldAuthCommand", + "name": "ScaffoldAuthCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-ScaffoldAuthCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldAuthCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-ScaffoldAuthCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldAuthCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ScaffoldAuthCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldAuthCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ScaffoldAuthCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldAuthCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-ScaffoldAuthCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldAuthCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-ScaffoldAuthCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldMailCommand", + "name": "ScaffoldMailCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-ScaffoldMailCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldMailCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ScaffoldMailCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldMailCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ScaffoldMailCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldMailCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-ScaffoldMailCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\ScaffoldMailCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-ScaffoldMailCommand.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\\ServeCommand", + "name": "ServeCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command-ServeCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ServeCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command-ServeCommand.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\\ServeCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ServeCommand.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\\ServeCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ServeCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ServeCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command-ServeCommand.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\\ServeCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command-ServeCommand.html#property_help" + }, { + "fqsen": "\\App\\Controllers\\Auth\\AccountController", + "name": "AccountController", + "summary": "This\u0020is\u0020a\u0020base\u0020controller\u0020for\u0020the\u0020auth\u0020namespace", + "url": "classes/App-Controllers-Auth-AccountController.html" + }, { + "fqsen": "\\App\\Controllers\\Auth\\AccountController\u003A\u003Aindex\u0028\u0029", + "name": "index", + "summary": "", + "url": "classes/App-Controllers-Auth-AccountController.html#method_index" + }, { + "fqsen": "\\App\\Controllers\\Auth\\AccountController\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "", + "url": "classes/App-Controllers-Auth-AccountController.html#method_update" + }, { + "fqsen": "\\App\\Mailers\\ExampleMailer", + "name": "ExampleMailer", + "summary": "", + "url": "classes/App-Mailers-ExampleMailer.html" + }, { + "fqsen": "\\App\\Mailers\\ExampleMailer\u003A\u003Aexample\u0028\u0029", + "name": "example", + "summary": "", + "url": "classes/App-Mailers-ExampleMailer.html#method_example" + }, { + "fqsen": "\\App\\Mailers\\ExampleMailer\u003A\u003AexampleWithTemplate\u0028\u0029", + "name": "exampleWithTemplate", + "summary": "", + "url": "classes/App-Mailers-ExampleMailer.html#method_exampleWithTemplate" + }, { + "fqsen": "\\App\\Mailers\\ExampleMailer\u003A\u003AexampleWithAttachments\u0028\u0029", + "name": "exampleWithAttachments", + "summary": "", + "url": "classes/App-Mailers-ExampleMailer.html#method_exampleWithAttachments" + }, { + "fqsen": "\\Aloe\\Command\\ViewBuildCommand", + "name": "ViewBuildCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Aloe-Command-ViewBuildCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ViewBuildCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ViewBuildCommand.html#method_configure" + }, { + "fqsen": "\\Aloe\\Command\\ViewBuildCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ViewBuildCommand.html#method_execute" + }, { + "fqsen": "\\Aloe\\Command\\ViewBuildCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ViewBuildCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ViewDevCommand", + "name": "ViewDevCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Aloe-Command-ViewDevCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ViewDevCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ViewDevCommand.html#method_configure" + }, { + "fqsen": "\\Aloe\\Command\\ViewDevCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ViewDevCommand.html#method_execute" + }, { + "fqsen": "\\Aloe\\Command\\ViewDevCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ViewDevCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand", + "name": "ViewInstallCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Aloe-Command-ViewInstallCommand.html" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ViewInstallCommand.html#method_configure" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command-ViewInstallCommand.html#method_execute" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003AinstallReact\u0028\u0029", + "name": "installReact", + "summary": "Install\u0020react", + "url": "classes/Aloe-Command-ViewInstallCommand.html#method_installReact" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003AinstallSvelte\u0028\u0029", + "name": "installSvelte", + "summary": "Install\u0020svelte", + "url": "classes/Aloe-Command-ViewInstallCommand.html#method_installSvelte" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003AinstallTailwind\u0028\u0029", + "name": "installTailwind", + "summary": "Install\u0020tailwind", + "url": "classes/Aloe-Command-ViewInstallCommand.html#method_installTailwind" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003AinstallVue\u0028\u0029", + "name": "installVue", + "summary": "Install\u0020vue", + "url": "classes/Aloe-Command-ViewInstallCommand.html#method_installVue" + }, { + "fqsen": "\\Aloe\\Command\\ViewInstallCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command-ViewInstallCommand.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command", + "name": "Command", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Aloe-Command.html" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command.html#method_configure" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Aloe-Command.html#method_config" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command.html#method_execute" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Aloe-Command.html#method_handle" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020the\u0020command.", + "url": "classes/Aloe-Command.html#method_run" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024input", + "name": "input", + "summary": "The\u0020input\u0020object", + "url": "classes/Aloe-Command.html#property_input" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024output", + "name": "output", + "summary": "The\u0020output\u0020object", + "url": "classes/Aloe-Command.html#property_output" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AsetArgument\u0028\u0029", + "name": "setArgument", + "summary": "Add\u0020a\u0020new\u0020argument", + "url": "classes/Aloe-Command.html#method_setArgument" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aargument\u0028\u0029", + "name": "argument", + "summary": "Returns\u0020the\u0020argument\u0020value\u0020for\u0020a\u0020given\u0020argument\u0020name.", + "url": "classes/Aloe-Command.html#method_argument" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aarguments\u0028\u0029", + "name": "arguments", + "summary": "Returns\u0020all\u0020the\u0020given\u0020arguments\u0020merged\u0020with\u0020the\u0020default\u0020values.", + "url": "classes/Aloe-Command.html#method_arguments" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", + "summary": "Add\u0020a\u0020new\u0020option", + "url": "classes/Aloe-Command.html#method_setOption" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aoption\u0028\u0029", + "name": "option", + "summary": "Get\u0020an\u0020input\u0020option", + "url": "classes/Aloe-Command.html#method_option" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aoptions\u0028\u0029", + "name": "options", + "summary": "Get\u0020all\u0020input\u0020options", + "url": "classes/Aloe-Command.html#method_options" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aask\u0028\u0029", + "name": "ask", + "summary": "Ask\u0020a\u0020question", + "url": "classes/Aloe-Command.html#method_ask" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AaskRaw\u0028\u0029", + "name": "askRaw", + "summary": "Ask\u0020a\u0020question", + "url": "classes/Aloe-Command.html#method_askRaw" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AaskMultiline\u0028\u0029", + "name": "askMultiline", + "summary": "Ask\u0020a\u0020question", + "url": "classes/Aloe-Command.html#method_askMultiline" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AautoComplete\u0028\u0029", + "name": "autoComplete", + "summary": "Ask\u0020a\u0020question\u0020with\u0020auto\u0020completion", + "url": "classes/Aloe-Command.html#method_autoComplete" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Achoice\u0028\u0029", + "name": "choice", + "summary": "Ask\u0020a\u0020question\u0020with\u0020possible\u0020answers", + "url": "classes/Aloe-Command.html#method_choice" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AmultiChoice\u0028\u0029", + "name": "multiChoice", + "summary": "Ask\u0020a\u0020question\u0020with\u0020possible\u0020answers\u0020\u002B\u0020multiple\u0020choice", + "url": "classes/Aloe-Command.html#method_multiChoice" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Asecret\u0028\u0029", + "name": "secret", + "summary": "Prompt\u0020user\u0020for\u0020input\u0020but\u0020hide\u0020keystrokes", + "url": "classes/Aloe-Command.html#method_secret" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aconfirm\u0028\u0029", + "name": "confirm", + "summary": "Prompt\u0020user\u0020for\u0020confirmation", + "url": "classes/Aloe-Command.html#method_confirm" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Output\u0020some\u0020data", + "url": "classes/Aloe-Command.html#method_write" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Awriteln\u0028\u0029", + "name": "writeln", + "summary": "Output\u0020some\u0020data", + "url": "classes/Aloe-Command.html#method_writeln" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Acomment\u0028\u0029", + "name": "comment", + "summary": "Output\u0020some\u0020data\u0020as\u0020a\u0020comment", + "url": "classes/Aloe-Command.html#method_comment" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Output\u0020some\u0020data\u0020as\u0020a\u0020info", + "url": "classes/Aloe-Command.html#method_info" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Output\u0020some\u0020data\u0020as\u0020a\u0020error", + "url": "classes/Aloe-Command.html#method_error" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Aquestion\u0028\u0029", + "name": "question", + "summary": "Output\u0020some\u0020data\u0020as\u0020a\u0020question", + "url": "classes/Aloe-Command.html#method_question" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003Alink\u0028\u0029", + "name": "link", + "summary": "Output\u0020some\u0020data\u0020as\u0020a\u0020link", + "url": "classes/Aloe-Command.html#method_link" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003ArunProcess\u0028\u0029", + "name": "runProcess", + "summary": "Run\u0020a\u0020new\u0020cli\u0020process", + "url": "classes/Aloe-Command.html#method_runProcess" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003ASUCCESS", + "name": "SUCCESS", + "summary": "", + "url": "classes/Aloe-Command.html#constant_SUCCESS" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003AFAILURE", + "name": "FAILURE", + "summary": "", + "url": "classes/Aloe-Command.html#constant_FAILURE" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Aloe-Command.html#property_defaultName" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020name\u0020of\u0020command\u0020to\u0020run\u0020in\u0020console", + "url": "classes/Aloe-Command.html#property_name" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Aloe-Command.html#property_description" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Aloe-Command.html#property_help" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024application", + "name": "application", + "summary": "", + "url": "classes/Aloe-Command.html#property_application" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024processTitle", + "name": "processTitle", + "summary": "", + "url": "classes/Aloe-Command.html#property_processTitle" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "", + "url": "classes/Aloe-Command.html#property_aliases" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024definition", + "name": "definition", + "summary": "", + "url": "classes/Aloe-Command.html#property_definition" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024hidden", + "name": "hidden", + "summary": "", + "url": "classes/Aloe-Command.html#property_hidden" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024fullDefinition", + "name": "fullDefinition", + "summary": "", + "url": "classes/Aloe-Command.html#property_fullDefinition" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024ignoreValidationErrors", + "name": "ignoreValidationErrors", + "summary": "", + "url": "classes/Aloe-Command.html#property_ignoreValidationErrors" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024code", + "name": "code", + "summary": "", + "url": "classes/Aloe-Command.html#property_code" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024synopsis", + "name": "synopsis", + "summary": "", + "url": "classes/Aloe-Command.html#property_synopsis" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024usages", + "name": "usages", + "summary": "", + "url": "classes/Aloe-Command.html#property_usages" + }, { + "fqsen": "\\Aloe\\Command\u003A\u003A\u0024helperSet", + "name": "helperSet", + "summary": "", + "url": "classes/Aloe-Command.html#property_helperSet" + }, { + "fqsen": "\\Aloe\\Console", + "name": "Console", + "summary": "Aloe\u0020CLI\n\u002D\u002D\u002D\u002D\u002D\nSmart\u0020and\u0020interactive\u0020console\/generator\nfor\u0020your\u0020leaf\u0020MVC\u0020applications", + "url": "classes/Aloe-Console.html" + }, { + "fqsen": "\\Aloe\\Console\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Aloe-Console.html#method___construct" + }, { + "fqsen": "\\Aloe\\Console\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020a\u0020custom\u0020command", + "url": "classes/Aloe-Console.html#method_register" + }, { + "fqsen": "\\Aloe\\Console\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Run\u0020the\u0020console\u0020app", + "url": "classes/Aloe-Console.html#method_run" + }, { + "fqsen": "\\Aloe\\Console\u003A\u003A\u0024app", + "name": "app", + "summary": "Instance\u0020of\u0020symfony\u0020console\u0020app", + "url": "classes/Aloe-Console.html#property_app" + }, { + "fqsen": "\\Aloe\\Core", + "name": "Core", + "summary": "", + "url": "classes/Aloe-Core.html" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Run\u0020a\u0020shell\u0020process\u0020with\u0020the\u0020output.", + "url": "classes/Aloe-Core.html#method_run" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AfindComposer\u0028\u0029", + "name": "findComposer", + "summary": "Get\u0020the\u0020composer\u0020command\u0020for\u0020the\u0020environment.", + "url": "classes/Aloe-Core.html#method_findComposer" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AfindGit\u0028\u0029", + "name": "findGit", + "summary": "Get\u0020the\u0020git\u0020command\u0020for\u0020the\u0020environment.", + "url": "classes/Aloe-Core.html#method_findGit" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AfindNodeJS\u0028\u0029", + "name": "findNodeJS", + "summary": "Get\u0020the\u0020node\u0020command\u0020for\u0020the\u0020environment.", + "url": "classes/Aloe-Core.html#method_findNodeJS" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AfindNpm\u0028\u0029", + "name": "findNpm", + "summary": "Get\u0020the\u0020node\u0020command\u0020for\u0020the\u0020environment.", + "url": "classes/Aloe-Core.html#method_findNpm" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AfindLeaf\u0028\u0029", + "name": "findLeaf", + "summary": "Get\u0020the\u0020leaf\u0020CLI\u0020bin.", + "url": "classes/Aloe-Core.html#method_findLeaf" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AfindWatcher\u0028\u0029", + "name": "findWatcher", + "summary": "Get\u0020the\u0020leaf\u0020watcher\u0020bin.", + "url": "classes/Aloe-Core.html#method_findWatcher" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AcommandExists\u0028\u0029", + "name": "commandExists", + "summary": "Check\u0020if\u0020a\u0020system\u0020command\u0020exists", + "url": "classes/Aloe-Core.html#method_commandExists" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AisBladeProject\u0028\u0029", + "name": "isBladeProject", + "summary": "Check\u0020if\u0020a\u0020project\u0020is\u0020a\u0020blade\u0020project", + "url": "classes/Aloe-Core.html#method_isBladeProject" + }, { + "fqsen": "\\Aloe\\Core\u003A\u003AisMVCProject\u0028\u0029", + "name": "isMVCProject", + "summary": "Check\u0020if\u0020a\u0020project\u0020is\u0020an\u0020MVC\u0020project", + "url": "classes/Aloe-Core.html#method_isMVCProject" + }, { + "fqsen": "\\asQuestion\u0028\u0029", + "name": "asQuestion", + "summary": "Apply\u0020CLI\u0020question\u0020styles\u0020to\u0020text", + "url": "namespaces/default.html#function_asQuestion" + }, { + "fqsen": "\\asComment\u0028\u0029", + "name": "asComment", + "summary": "Apply\u0020CLI\u0020comment\u0020styles\u0020to\u0020text", + "url": "namespaces/default.html#function_asComment" + }, { + "fqsen": "\\asInfo\u0028\u0029", + "name": "asInfo", + "summary": "Apply\u0020CLI\u0020info\u0020styles\u0020to\u0020text", + "url": "namespaces/default.html#function_asInfo" + }, { + "fqsen": "\\asError\u0028\u0029", + "name": "asError", + "summary": "Apply\u0020CLI\u0020error\u0020styles\u0020to\u0020text", + "url": "namespaces/default.html#function_asError" + }, { + "fqsen": "\\asLink\u0028\u0029", + "name": "asLink", + "summary": "Output\u0020text\u0020as\u0020a\u0020link", + "url": "namespaces/default.html#function_asLink" + }, { + "fqsen": "\\Aloe\\Installer", + "name": "Installer", + "summary": "Aloe\u0020Installer\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nQuickly\u0020install\u0020directories\u0020and\u0020files\u0020in\na\u0020leaf\u0020workspace", + "url": "classes/Aloe-Installer.html" + }, { + "fqsen": "\\Aloe\\Installer\u003A\u003AmagicCopy\u0028\u0029", + "name": "magicCopy", + "summary": "Auto\u002Dmagically\u0020copy\u0020all\u0020files\u0020and\u0020folders\u0020from\nspecified\u0020folder\u0020into\u0020Leaf\u0020workspace", + "url": "classes/Aloe-Installer.html#method_magicCopy" + }, { + "fqsen": "\\Aloe\\Installer\u003A\u003AinstallRoutes\u0028\u0029", + "name": "installRoutes", + "summary": "Install\u0020routes\u0020from\u0020routes\u0020folder\u0020into\u0020leaf\u0020workspace", + "url": "classes/Aloe-Installer.html#method_installRoutes" + }, { + "fqsen": "\\Aloe\\Installer\u003A\u003AinstallPackages\u0028\u0029", + "name": "installPackages", + "summary": "Install\u0020package\u0020from\u0020composer", + "url": "classes/Aloe-Installer.html#method_installPackages" + }, { + "fqsen": "\\Aloe\\Package", + "name": "Package", + "summary": "Package\n\u002D\u002D\u002D\u002D\nMeta\u0020info\u0020on\u0020aloe\u0020cli", + "url": "classes/Aloe-Package.html" + }, { + "fqsen": "\\Aloe\\Package\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Check\u0020current\u0020version", + "url": "classes/Aloe-Package.html#method_info" + }, { + "fqsen": "\\Aloe\\Package\u003A\u003Aversion\u0028\u0029", + "name": "version", + "summary": "Check\u0020current\u0020version", + "url": "classes/Aloe-Package.html#method_version" + }, { + "fqsen": "\\Aloe\\Package\u003A\u003AltsInfo\u0028\u0029", + "name": "ltsInfo", + "summary": "Find\u0020latest\u0020stable\u0020version", + "url": "classes/Aloe-Package.html#method_ltsInfo" + }, { + "fqsen": "\\Aloe\\Package\u003A\u003AltsVersion\u0028\u0029", + "name": "ltsVersion", + "summary": "Find\u0020latest\u0020stable\u0020version", + "url": "classes/Aloe-Package.html#method_ltsVersion" + }, { + "fqsen": "\\Aloe\\Package\u003A\u003AfindUpdates\u0028\u0029", + "name": "findUpdates", + "summary": "Check\u0020if\u0020there\u0020is\u0020an\u0020update\u0020available", + "url": "classes/Aloe-Package.html#method_findUpdates" + }, { + "fqsen": "\\Leaf\\Anchor", + "name": "Anchor", + "summary": "Leaf\u0020Security\u0020Module\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nSimple\u0020to\u0020use\u0020security\u0020based\u0020utility\u0020methods", + "url": "classes/Leaf-Anchor.html" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Anchor.html#property_config" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003Asanitize\u0028\u0029", + "name": "sanitize", + "summary": "Escape\u0020malicious\u0020characters", + "url": "classes/Leaf-Anchor.html#method_sanitize" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003AdeepGet\u0028\u0029", + "name": "deepGet", + "summary": "Get\u0020an\u0020item\u0020or\u0020items\u0020from\u0020an\u0020array\u0020of\u0020data.", + "url": "classes/Leaf-Anchor.html#method_deepGet" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003AdeepGetDot\u0028\u0029", + "name": "deepGetDot", + "summary": "Deep\u0020get\u0020an\u0020item\u0020or\u0020items\u0020from\u0020an\u0020array\u0020of\u0020data\u0020using\u0020dot\u0020notation.", + "url": "classes/Leaf-Anchor.html#method_deepGetDot" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003AdeepSetDot\u0028\u0029", + "name": "deepSetDot", + "summary": "Deep\u0020set\u0020an\u0020item\u0020or\u0020items\u0020in\u0020an\u0020array\u0020of\u0020data\u0020using\u0020dot\u0020notation.", + "url": "classes/Leaf-Anchor.html#method_deepSetDot" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003AdeepUnsetDot\u0028\u0029", + "name": "deepUnsetDot", + "summary": "Deep\u0020unset\u0020an\u0020item\u0020or\u0020items\u0020in\u0020an\u0020array\u0020of\u0020data\u0020using\u0020dot\u0020notation.", + "url": "classes/Leaf-Anchor.html#method_deepUnsetDot" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003AtoBool\u0028\u0029", + "name": "toBool", + "summary": "Convert\u0020string\u0020to\u0020boolean.\u0020Created\u0020due\u0020to\u0020inconsistencies\u0020in\u0020PHP\u0027s\u0020boolval\u0020and\u0020\u0028bool\u0029", + "url": "classes/Leaf-Anchor.html#method_toBool" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003AgenerateToken\u0028\u0029", + "name": "generateToken", + "summary": "Generate\u0020a\u0020token\u0020for\u0020identifying\u0020your\u0020application", + "url": "classes/Leaf-Anchor.html#method_generateToken" + }, { + "fqsen": "\\Leaf\\Anchor\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/Leaf-Anchor.html#property_errors" + }, { + "fqsen": "\\Leaf\\Auth\\Config", + "name": "Config", + "summary": "Config\u0020for\u0020Leaf\u0020Auth\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nSet\/Get\u0020config\u0020to\u0020match\u0020your\u0020app", + "url": "classes/Leaf-Auth-Config.html" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020Leaf\u0020Auth\u0020config", + "url": "classes/Leaf-Auth-Config.html#method_set" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003Aoverwrite\u0028\u0029", + "name": "overwrite", + "summary": "Overwrite\u0020Leaf\u0020Auth\u0020config", + "url": "classes/Leaf-Auth-Config.html#method_overwrite" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020Leaf\u0020Auth\u0020config", + "url": "classes/Leaf-Auth-Config.html#method_get" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003AsetUserCache\u0028\u0029", + "name": "setUserCache", + "summary": "Set\u0020user\u0020cache", + "url": "classes/Leaf-Auth-Config.html#method_setUserCache" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003AgetUserCache\u0028\u0029", + "name": "getUserCache", + "summary": "Get\u0020user\u0020cache", + "url": "classes/Leaf-Auth-Config.html#method_getUserCache" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003A\u0024config", + "name": "config", + "summary": "configuration\u0020for\u0020Leaf\u0020Auth", + "url": "classes/Leaf-Auth-Config.html#property_config" + }, { + "fqsen": "\\Leaf\\Auth\\Config\u003A\u003A\u0024userCache", + "name": "userCache", + "summary": "Additional\u0020user\u0020information\u0020for\u0020cache", + "url": "classes/Leaf-Auth-Config.html#property_userCache" + }, { + "fqsen": "\\Leaf\\Auth\\Model", + "name": "Model", + "summary": "Auth\u0020User\u0020Model\n\u002D\u002D\u002D\u002D\nTiny\u0020model\u0020class\u0020for\u0020the\u0020user.\u0020Provides\u0020bare\u0020minimum\nfunctionality\u0020for\u0020user\u0020and\u0020user\u0020data\u0020manipulation.", + "url": "classes/Leaf-Auth-Model.html" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Auth-Model.html#method___construct" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020model\u0020resource", + "url": "classes/Leaf-Auth-Model.html#method_create" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Update\u0020a\u0020model\u0020resource", + "url": "classes/Leaf-Auth-Model.html#method_update" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020model\u0020resource", + "url": "classes/Leaf-Auth-Model.html#method_delete" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A\u0024table", + "name": "table", + "summary": "DB\u0020table\u0020name", + "url": "classes/Leaf-Auth-Model.html#property_table" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Save\u0020a\u0020model\u0020resource", + "url": "classes/Leaf-Auth-Model.html#method_save" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "", + "url": "classes/Leaf-Auth-Model.html#method___set" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Leaf-Auth-Model.html#method___call" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A\u0024user", + "name": "user", + "summary": "User\u0020Information", + "url": "classes/Leaf-Auth-Model.html#property_user" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A\u0024db", + "name": "db", + "summary": "DB\u0020connection", + "url": "classes/Leaf-Auth-Model.html#property_db" + }, { + "fqsen": "\\Leaf\\Auth\\Model\u003A\u003A\u0024dataToSave", + "name": "dataToSave", + "summary": "User\u0020data\u0020to\u0020save", + "url": "classes/Leaf-Auth-Model.html#property_dataToSave" + }, { + "fqsen": "\\Leaf\\Auth\\User", + "name": "User", + "summary": "Auth\u0020User\n\u002D\u002D\u002D\u002D\nClass\u0020representing\u0020a\u0020user", + "url": "classes/Leaf-Auth-User.html" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method___construct" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "Return\u0020the\u0020id\u0020of\u0020current\u0020user", + "url": "classes/Leaf-Auth-User.html#method_id" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003AgetAuthInfo\u0028\u0029", + "name": "getAuthInfo", + "summary": "Get\u0020auth\u0020information\u0020to\u0020be\u0020sent\u0020to\u0020the\u0020client", + "url": "classes/Leaf-Auth-User.html#method_getAuthInfo" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A\u0024tokens", + "name": "tokens", + "summary": "User\u0020Tokens", + "url": "classes/Leaf-Auth-User.html#property_tokens" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003AgenerateToken\u0028\u0029", + "name": "generateToken", + "summary": "Generate\u0020a\u0020new\u0020JWT\u0020for\u0020the\u0020user", + "url": "classes/Leaf-Auth-User.html#method_generateToken" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003AgenerateVerificationToken\u0028\u0029", + "name": "generateVerificationToken", + "summary": "Generate\u0020a\u0020verification\u0020token\u0020for\u0020the\u0020user", + "url": "classes/Leaf-Auth-User.html#method_generateVerificationToken" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003AisVerified\u0028\u0029", + "name": "isVerified", + "summary": "Check\u0020if\u0020email\u0020is\u0020verified", + "url": "classes/Leaf-Auth-User.html#method_isVerified" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003AverifyEmail\u0028\u0029", + "name": "verifyEmail", + "summary": "Verify\u0020user\u0027s\u0020email", + "url": "classes/Leaf-Auth-User.html#method_verifyEmail" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method_get" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003AsetDb\u0028\u0029", + "name": "setDb", + "summary": "Set\u0020user\u0020db\u0020instance", + "url": "classes/Leaf-Auth-User.html#method_setDb" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method___toString" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method___get" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method___set" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method___isset" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__unset\u0028\u0029", + "name": "__unset", + "summary": "", + "url": "classes/Leaf-Auth-User.html#method___unset" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Get\u0020a\u0020\u0022user\u0020to\u0020many\u0022\u0020table\u0020relation", + "url": "classes/Leaf-Auth-User.html#method___call" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A\u0024db", + "name": "db", + "summary": "Internal\u0020instance\u0020of\u0020Leaf\u0020database", + "url": "classes/Leaf-Auth-User.html#property_db" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A\u0024session", + "name": "session", + "summary": "Internal\u0020instance\u0020of\u0020Leaf\u0020session", + "url": "classes/Leaf-Auth-User.html#property_session" + }, { + "fqsen": "\\Leaf\\Auth\\User\u003A\u003A\u0024data", + "name": "data", + "summary": "User\u0020Information", + "url": "classes/Leaf-Auth-User.html#property_data" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles", + "name": "UsesRoles", + "summary": "Functionality\u0020for\u0020user\u0020permissions\n\u002D\u002D\u002D\u002D\nAddition\u0020to\u0020user\u0020class", + "url": "classes/Leaf-Auth-UsesRoles.html" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003Aassign\u0028\u0029", + "name": "assign", + "summary": "Assign\u0020new\u0020role\u0020to\u0020user", + "url": "classes/Leaf-Auth-UsesRoles.html#method_assign" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003Acan\u0028\u0029", + "name": "can", + "summary": "Check\u0020if\u0020user\u0020has\u0020a\u0020permission", + "url": "classes/Leaf-Auth-UsesRoles.html#method_can" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003Acannot\u0028\u0029", + "name": "cannot", + "summary": "Check\u0020if\u0020a\u0020user\u0020does\u0020not\u0020have\u0020a\u0020permission", + "url": "classes/Leaf-Auth-UsesRoles.html#method_cannot" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Check\u0020if\u0020user\u0020has\u0020a\u0020role", + "url": "classes/Leaf-Auth-UsesRoles.html#method_is" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003AisNot\u0028\u0029", + "name": "isNot", + "summary": "Check\u0020if\u0020user\u0020does\u0020not\u0020have\u0020a\u0020role", + "url": "classes/Leaf-Auth-UsesRoles.html#method_isNot" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003A\u0024roles", + "name": "roles", + "summary": "User\u0020Roles", + "url": "classes/Leaf-Auth-UsesRoles.html#property_roles" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003A\u0024permissions", + "name": "permissions", + "summary": "User\u0020Permissions", + "url": "classes/Leaf-Auth-UsesRoles.html#property_permissions" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003Aunassign\u0028\u0029", + "name": "unassign", + "summary": "Remove\u0020a\u0020role\u0020from\u0020a\u0020user", + "url": "classes/Leaf-Auth-UsesRoles.html#method_unassign" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003AsetRolesAndPermissions\u0028\u0029", + "name": "setRolesAndPermissions", + "summary": "Set\u0020the\u0020roles\u0020and\u0020permissions\u0020for\u0020a\u0020user", + "url": "classes/Leaf-Auth-UsesRoles.html#method_setRolesAndPermissions" + }, { + "fqsen": "\\Leaf\\Auth\\UsesRoles\u003A\u003AgetRolePermissions\u0028\u0029", + "name": "getRolePermissions", + "summary": "Get\u0020the\u0020permissions\u0020for\u0020a\u0020role", + "url": "classes/Leaf-Auth-UsesRoles.html#method_getRolePermissions" + }, { + "fqsen": "\\Leaf\\Auth", + "name": "Auth", + "summary": "Leaf\u0020Simple\u0020Auth\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nSimple,\u0020lightweight\u0020authentication.", + "url": "classes/Leaf-Auth.html" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Auth.html#method___construct" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020leaf\u0020auth\u0020to\u0020the\u0020database", + "url": "classes/Leaf-Auth.html#method_connect" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AautoConnect\u0028\u0029", + "name": "autoConnect", + "summary": "Connect\u0020to\u0020database\u0020using\u0020environment\u0020variables", + "url": "classes/Leaf-Auth.html#method_autoConnect" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AdbConnection\u0028\u0029", + "name": "dbConnection", + "summary": "Pass\u0020in\u0020db\u0020connection\u0020instance\u0020directly", + "url": "classes/Leaf-Auth.html#method_dbConnection" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "Get\/Set\u0020Leaf\u0020Auth\u0020config", + "url": "classes/Leaf-Auth.html#method_config" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AcreateRoles\u0028\u0029", + "name": "createRoles", + "summary": "Create\u0020roles\u0020and\u0020permissions", + "url": "classes/Leaf-Auth.html#method_createRoles" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aroles\u0028\u0029", + "name": "roles", + "summary": "Return\u0020all\u0020roles\u0020and\u0020their\u0020permissions", + "url": "classes/Leaf-Auth.html#method_roles" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Alogin\u0028\u0029", + "name": "login", + "summary": "Sign\u0020a\u0020user\u0020in\n\u002D\u002D\u002D\nVerify\u0020user\u0020credentials\u0020and\u0020sign\u0020them\u0020in\u0020with\u0020token\u0020or\u0020session", + "url": "classes/Leaf-Auth.html#method_login" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020a\u0020new\u0020user\n\u002D\u002D\u002D\nSave\u0020a\u0020new\u0020user\u0020to\u0020the\u0020database", + "url": "classes/Leaf-Auth.html#method_register" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Update\u0020user\u0020data\n\u002D\u002D\u002D\nUpdate\u0020user\u0020data\u0020in\u0020the\u0020database", + "url": "classes/Leaf-Auth.html#method_update" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AupdatePassword\u0028\u0029", + "name": "updatePassword", + "summary": "Update\u0020user\u0020password\n\u002D\u002D\u002D\nUpdate\u0020user\u0020password\u0020in\u0020the\u0020database", + "url": "classes/Leaf-Auth.html#method_updatePassword" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AfromOAuth\u0028\u0029", + "name": "fromOAuth", + "summary": "Create\u0020a\u0020new\u0020user\u0020from\u0020OAuth", + "url": "classes/Leaf-Auth.html#method_fromOAuth" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Find\u0020a\u0020user\u0020by\u0020id\n\u002D\u002D\u002D\nSelect\u0020and\u0020return\u0020an\u0020existing\u0020user\u0020from\u0020db", + "url": "classes/Leaf-Auth.html#method_find" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AcreateUserFor\u0028\u0029", + "name": "createUserFor", + "summary": "Create\u0020a\u0020new\u0020user\n\u002D\u002D\u002D\nCreate\u0020an\u0020account\u0020for\u0020another\u0020user", + "url": "classes/Leaf-Auth.html#method_createUserFor" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AoauthToken\u0028\u0029", + "name": "oauthToken", + "summary": "Get\u0020saved\u0020OAuth\u0020token", + "url": "classes/Leaf-Auth.html#method_oauthToken" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Alogout\u0028\u0029", + "name": "logout", + "summary": "Sign\u0020a\u0020user\u0020out\n\u002D\u002D\u002D\nSign\u0020out\u0020the\u0020currently\u0020authenticated\u0020user", + "url": "classes/Leaf-Auth.html#method_logout" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "Get\u0020the\u0020id\u0020of\u0020the\u0020currently\u0020authenticated\u0020user", + "url": "classes/Leaf-Auth.html#method_id" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003A\u0024user", + "name": "user", + "summary": "The\u0020currently\u0020authenticated\u0020user", + "url": "classes/Leaf-Auth.html#property_user" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Adata\u0028\u0029", + "name": "data", + "summary": "Get\u0020data\u0020generated\u0020on\u0020user\u0020login", + "url": "classes/Leaf-Auth.html#method_data" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Atokens\u0028\u0029", + "name": "tokens", + "summary": "Get\u0020generated\u0020access\u0020tokens", + "url": "classes/Leaf-Auth.html#method_tokens" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Amiddleware\u0028\u0029", + "name": "middleware", + "summary": "Register\u0020auth\u0020middleware\u0020for\u0020your\u0020Leaf\u0020apps", + "url": "classes/Leaf-Auth.html#method_middleware" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AparseToken\u0028\u0029", + "name": "parseToken", + "summary": "Parse\u0020the\u0020current\u0020user\u0027s\u0020token", + "url": "classes/Leaf-Auth.html#method_parseToken" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AverifyToken\u0028\u0029", + "name": "verifyToken", + "summary": "Verify\u0020a\u0020user\u0027s\u0020token", + "url": "classes/Leaf-Auth.html#method_verifyToken" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003A\u0024db", + "name": "db", + "summary": "Internal\u0020instance\u0020of\u0020Leaf\u0020DB", + "url": "classes/Leaf-Auth.html#property_db" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AcheckDbConnection\u0028\u0029", + "name": "checkDbConnection", + "summary": "", + "url": "classes/Leaf-Auth.html#method_checkDbConnection" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AgetFromSession\u0028\u0029", + "name": "getFromSession", + "summary": "", + "url": "classes/Leaf-Auth.html#method_getFromSession" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AsessionCheck\u0028\u0029", + "name": "sessionCheck", + "summary": "", + "url": "classes/Leaf-Auth.html#method_sessionCheck" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AcheckAndExpireSession\u0028\u0029", + "name": "checkAndExpireSession", + "summary": "", + "url": "classes/Leaf-Auth.html#method_checkAndExpireSession" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AgetTokenFromRequest\u0028\u0029", + "name": "getTokenFromRequest", + "summary": "", + "url": "classes/Leaf-Auth.html#method_getTokenFromRequest" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AgetTokenFromSession\u0028\u0029", + "name": "getTokenFromSession", + "summary": "", + "url": "classes/Leaf-Auth.html#method_getTokenFromSession" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003AclearErrors\u0028\u0029", + "name": "clearErrors", + "summary": "Clear\u0020all\u0020errors\u0020caught", + "url": "classes/Leaf-Auth.html#method_clearErrors" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Return\u0020all\u0020errors\u0020caught", + "url": "classes/Leaf-Auth.html#method_errors" + }, { + "fqsen": "\\Leaf\\Auth\u003A\u003A\u0024errorsArray", + "name": "errorsArray", + "summary": "All\u0020errors\u0020caught", + "url": "classes/Leaf-Auth.html#property_errorsArray" + }, { + "fqsen": "\\auth\u0028\u0029", + "name": "auth", + "summary": "Return\u0020the\u0020leaf\u0020auth\u0020object", + "url": "namespaces/default.html#function_auth" + }, { + "fqsen": "\\getDatabaseConnection\u0028\u0029", + "name": "getDatabaseConnection", + "summary": "", + "url": "namespaces/default.html#function_getDatabaseConnection" + }, { + "fqsen": "\\dbInstance\u0028\u0029", + "name": "dbInstance", + "summary": "", + "url": "namespaces/default.html#function_dbInstance" + }, { + "fqsen": "\\authInstance\u0028\u0029", + "name": "authInstance", + "summary": "", + "url": "namespaces/default.html#function_authInstance" + }, { + "fqsen": "\\deleteUser\u0028\u0029", + "name": "deleteUser", + "summary": "", + "url": "namespaces/default.html#function_deleteUser" + }, { + "fqsen": "\\createTableForUsers\u0028\u0029", + "name": "createTableForUsers", + "summary": "", + "url": "namespaces/default.html#function_createTableForUsers" + }, { + "fqsen": "\\Leaf\\BareUI", + "name": "BareUI", + "summary": "Bare\u0020UI\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nLeaf\u0020templating\u0020language\u0020focused\u0020on\u0020speed,\u0020speed\u0020and\u0020more\u0020speed.", + "url": "classes/Leaf-BareUI.html" + }, { + "fqsen": "\\Leaf\\BareUI\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-BareUI.html#property_config" + }, { + "fqsen": "\\Leaf\\BareUI\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020a\u0020bare\u0020UI", + "url": "classes/Leaf-BareUI.html#method_render" + }, { + "fqsen": "\\Leaf\\BareUI\u003A\u003AgetView\u0028\u0029", + "name": "getView", + "summary": "", + "url": "classes/Leaf-BareUI.html#method_getView" + }, { + "fqsen": "\\Leaf\\Blade", + "name": "Blade", + "summary": "", + "url": "classes/Leaf-Blade.html" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Blade.html#method___construct" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020your\u0020view\u0020and\u0020cache\u0020directories", + "url": "classes/Leaf-Blade.html#method_configure" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "Configure\u0020your\u0020view\u0020and\u0020cache\u0020directories", + "url": "classes/Leaf-Blade.html#method_config" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020your\u0020blade\u0020template,", + "url": "classes/Leaf-Blade.html#method_render" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Render\u0020your\u0020blade\u0020template,", + "url": "classes/Leaf-Blade.html#method_make" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003Adirective\u0028\u0029", + "name": "directive", + "summary": "Add\u0020a\u0020new\u0020namespace\u0020to\u0020the\u0020loader", + "url": "classes/Leaf-Blade.html#method_directive" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003A\u0024blade", + "name": "blade", + "summary": "", + "url": "classes/Leaf-Blade.html#property_blade" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003Acompiler\u0028\u0029", + "name": "compiler", + "summary": "Hook\u0020into\u0020the\u0020blade\u0020compiler", + "url": "classes/Leaf-Blade.html#method_compiler" + }, { + "fqsen": "\\Leaf\\Blade\u003A\u003AsetupDefaultDirectives\u0028\u0029", + "name": "setupDefaultDirectives", + "summary": "Setup\u0020default\u0020directives", + "url": "classes/Leaf-Blade.html#method_setupDefaultDirectives" + }, { + "fqsen": "\\Leaf\\Http\\Cors", + "name": "Cors", + "summary": "Leaf\u0020CORS\u0020Module\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nCORS\u0020simplified.\u0020Enable\u0020CORS\u0020with\u0020various\u0020options.", + "url": "classes/Leaf-Http-Cors.html" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#property_config" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AconfigureMethods\u0028\u0029", + "name": "configureMethods", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_configureMethods" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AconfigureOrigin\u0028\u0029", + "name": "configureOrigin", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_configureOrigin" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AconfigureHeaders\u0028\u0029", + "name": "configureHeaders", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_configureHeaders" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AconfigureExposedHeaders\u0028\u0029", + "name": "configureExposedHeaders", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_configureExposedHeaders" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AconfigureMaxAge\u0028\u0029", + "name": "configureMaxAge", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_configureMaxAge" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AconfigureCredentials\u0028\u0029", + "name": "configureCredentials", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_configureCredentials" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003AisOriginAllowed\u0028\u0029", + "name": "isOriginAllowed", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#method_isOriginAllowed" + }, { + "fqsen": "\\Leaf\\Http\\Cors\u003A\u003A\u0024defaultConfig", + "name": "defaultConfig", + "summary": "", + "url": "classes/Leaf-Http-Cors.html#property_defaultConfig" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF", + "name": "CSRF", + "summary": "Leaf\u0020CSRF\u0020Module\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nAdd\u0020CSRF\u0020protection\u0020to\u0020your\u0020app", + "url": "classes/Leaf-Anchor-CSRF.html" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF\u003A\u003Ainit\u0028\u0029", + "name": "init", + "summary": "", + "url": "classes/Leaf-Anchor-CSRF.html#method_init" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF\u003A\u003AgetPathExpression\u0028\u0029", + "name": "getPathExpression", + "summary": "", + "url": "classes/Leaf-Anchor-CSRF.html#method_getPathExpression" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "Validate\u0020the\u0020CSRF\u0020token", + "url": "classes/Leaf-Anchor-CSRF.html#method_verify" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validate\u0020the\u0020CSRF\u0020token\u0020and\u0020run\u0020associated\u0020handler", + "url": "classes/Leaf-Anchor-CSRF.html#method_validate" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF\u003A\u003Atoken\u0028\u0029", + "name": "token", + "summary": "", + "url": "classes/Leaf-Anchor-CSRF.html#method_token" + }, { + "fqsen": "\\Leaf\\Anchor\\CSRF\u003A\u003Aform\u0028\u0029", + "name": "form", + "summary": "", + "url": "classes/Leaf-Anchor-CSRF.html#method_form" + }, { + "fqsen": "\\csrf\u0028\u0029", + "name": "csrf", + "summary": "Return\u0020the\u0020leaf\u0020csrf\u0020object", + "url": "namespaces/default.html#function_csrf" + }, { + "fqsen": "\\Leaf\\Date", + "name": "Date", + "summary": "Leaf\u0020Date\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nQuick\u0020date\/time\u0020manipulation\u0020with\u0020Leaf", + "url": "classes/Leaf-Date.html" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Date.html#method___construct" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Anow\u0028\u0029", + "name": "now", + "summary": "Get\u0020the\u0020current\u0020date", + "url": "classes/Leaf-Date.html#method_now" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Atick\u0028\u0029", + "name": "tick", + "summary": "Base\u0020method\u0020for\u0020all\u0020date\/time\u0020operations", + "url": "classes/Leaf-Date.html#method_tick" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Set\u0020default\u0020date\u0020timezone", + "url": "classes/Leaf-Date.html#method_setTimezone" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020a\u0020duration\u0020to\u0020the\u0020current\u0020date", + "url": "classes/Leaf-Date.html#method_add" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Asubtract\u0028\u0029", + "name": "subtract", + "summary": "Subtract\u0020a\u0020duration\u0020to\u0020the\u0020current\u0020date", + "url": "classes/Leaf-Date.html#method_subtract" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AstartOf\u0028\u0029", + "name": "startOf", + "summary": "Get\u0020the\u0020start\u0020of\u0020a\u0020time\u0020unit", + "url": "classes/Leaf-Date.html#method_startOf" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AendOf\u0028\u0029", + "name": "endOf", + "summary": "Get\u0020the\u0020end\u0020of\u0020a\u0020time\u0020unit", + "url": "classes/Leaf-Date.html#method_endOf" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Generic\u0020setter,\u0020accepting\u0020unit\u0020as\u0020first\u0020argument,\u0020and\u0020value\u0020as\u0020second,\u0020returns\u0020a\u0020new\u0020instance\u0020with\u0020the\u0020applied\u0020changes.", + "url": "classes/Leaf-Date.html#method_set" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "String\u0020getter,\u0020returns\u0020the\u0020corresponding\u0020information\u0020getting\u0020from\u0020the\u0020date\u0020instance.", + "url": "classes/Leaf-Date.html#method_get" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Amillisecond\u0028\u0029", + "name": "millisecond", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020millisecond", + "url": "classes/Leaf-Date.html#method_millisecond" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Asecond\u0028\u0029", + "name": "second", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020second", + "url": "classes/Leaf-Date.html#method_second" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Aminute\u0028\u0029", + "name": "minute", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020minute", + "url": "classes/Leaf-Date.html#method_minute" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Ahour\u0028\u0029", + "name": "hour", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020hour", + "url": "classes/Leaf-Date.html#method_hour" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Aday\u0028\u0029", + "name": "day", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020day", + "url": "classes/Leaf-Date.html#method_day" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Amonth\u0028\u0029", + "name": "month", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020month", + "url": "classes/Leaf-Date.html#method_month" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Ayear\u0028\u0029", + "name": "year", + "summary": "Gets\u0020or\u0020sets\u0020the\u0020year", + "url": "classes/Leaf-Date.html#method_year" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Get\u0020the\u0020formatted\u0020date\u0020according\u0020to\u0020the\u0020string\u0020of\u0020tokens\u0020passed\u0020in.", + "url": "classes/Leaf-Date.html#method_format" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003Afrom\u0028\u0029", + "name": "from", + "summary": "Returns\u0020the\u0020string\u0020of\u0020relative\u0020time\u0020from\u0020a\u0020date.", + "url": "classes/Leaf-Date.html#method_from" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AfromNow\u0028\u0029", + "name": "fromNow", + "summary": "Returns\u0020the\u0020string\u0020of\u0020relative\u0020time\u0020from\u0020now.", + "url": "classes/Leaf-Date.html#method_fromNow" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AtoNow\u0028\u0029", + "name": "toNow", + "summary": "Returns\u0020the\u0020string\u0020of\u0020relative\u0020time\u0020from\u0020now.", + "url": "classes/Leaf-Date.html#method_toNow" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AtoDateTime\u0028\u0029", + "name": "toDateTime", + "summary": "Return\u0020as\u0020PHP\u0020DateTime\u0020object", + "url": "classes/Leaf-Date.html#method_toDateTime" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AtoDateTimeString\u0028\u0029", + "name": "toDateTimeString", + "summary": "Return\u0020as\u0020PHP\u0020DateTime\u0020object", + "url": "classes/Leaf-Date.html#method_toDateTimeString" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AtoDateString\u0028\u0029", + "name": "toDateString", + "summary": "Return\u0020as\u0020PHP\u0020DateTime\u0020object", + "url": "classes/Leaf-Date.html#method_toDateString" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AtoTimeString\u0028\u0029", + "name": "toTimeString", + "summary": "Return\u0020as\u0020PHP\u0020DateTime\u0020object", + "url": "classes/Leaf-Date.html#method_toTimeString" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AtoIsoString\u0028\u0029", + "name": "toIsoString", + "summary": "Return\u0020as\u0020PHP\u0020DateTime\u0020object", + "url": "classes/Leaf-Date.html#method_toIsoString" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisBefore\u0028\u0029", + "name": "isBefore", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020before\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isBefore" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisAfter\u0028\u0029", + "name": "isAfter", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020after\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isAfter" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisBetween\u0028\u0029", + "name": "isBetween", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020between\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isBetween" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisBetweenOrEqual\u0028\u0029", + "name": "isBetweenOrEqual", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020between\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isBetweenOrEqual" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisSame\u0028\u0029", + "name": "isSame", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020the\u0020same\u0020as\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isSame" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisSameDay\u0028\u0029", + "name": "isSameDay", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020the\u0020same\u0020as\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isSameDay" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisSameMonth\u0028\u0029", + "name": "isSameMonth", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020the\u0020same\u0020as\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isSameMonth" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisSameYear\u0028\u0029", + "name": "isSameYear", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020the\u0020same\u0020as\u0020the\u0020other\u0020supplied\u0020date\u002Dtime.", + "url": "classes/Leaf-Date.html#method_isSameYear" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisLeapYear\u0028\u0029", + "name": "isLeapYear", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020a\u0020leap\u0020year.", + "url": "classes/Leaf-Date.html#method_isLeapYear" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003AisDateTime\u0028\u0029", + "name": "isDateTime", + "summary": "This\u0020indicates\u0020whether\u0020the\u0020date\u0020object\u0020is\u0020a\u0020datetime", + "url": "classes/Leaf-Date.html#method_isDateTime" + }, { + "fqsen": "\\Leaf\\Date\u003A\u003A\u0024date", + "name": "date", + "summary": "", + "url": "classes/Leaf-Date.html#property_date" + }, { + "fqsen": "\\tick\u0028\u0029", + "name": "tick", + "summary": "Return\u0020the\u0020leaf\u0020date\u0020instance", + "url": "namespaces/default.html#function_tick" + }, { + "fqsen": "\\Leaf\\Db\\Builder", + "name": "Builder", + "summary": "Leaf\u0020Db\u0020Query\u0020Builder\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nFunctionality\u0020of\u0020leaf\u0020query\u0020builder.", + "url": "classes/Leaf-Db-Builder.html" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003AorderBy\u0028\u0029", + "name": "orderBy", + "summary": "Order\u0020query\u0020results\u0020by\u0020a\u0020column", + "url": "classes/Leaf-Db-Builder.html#method_orderBy" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Group\u0020query\u0020results\u0020by\u0020a\u0020column", + "url": "classes/Leaf-Db-Builder.html#method_groupBy" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003Alimit\u0028\u0029", + "name": "limit", + "summary": "Limit\u0020query\u0020to\u0020specific\u0020number\u0020of\u0020values\u0020to\u0020return", + "url": "classes/Leaf-Db-Builder.html#method_limit" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003Aoffset\u0028\u0029", + "name": "offset", + "summary": "Offset\u0020query\u0020items\u0020by\u0020a\u0020specific\u0020number", + "url": "classes/Leaf-Db-Builder.html#method_offset" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Controls\u0020inner\u0020workings\u0020of\u0020all\u0020where\u0020blocks", + "url": "classes/Leaf-Db-Builder.html#method_where" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003Aparams\u0028\u0029", + "name": "params", + "summary": "Builder\u0020for\u0020params\u0020block", + "url": "classes/Leaf-Db-Builder.html#method_params" + }, { + "fqsen": "\\Leaf\\Db\\Builder\u003A\u003A\u0024bindings", + "name": "bindings", + "summary": "Params\u0020bound\u0020to\u0020query", + "url": "classes/Leaf-Db-Builder.html#property_bindings" + }, { + "fqsen": "\\Leaf\\Db\\Core", + "name": "Core", + "summary": "Leaf\u0020Db\u0020\u005BCore\u005D\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nCore\u0020functionality\u0020of\u0020leaf\u0020db.", + "url": "classes/Leaf-Db-Core.html" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initialize\u0020leaf\u0020db\u0020with\u0020a\u0020database\u0020connection", + "url": "classes/Leaf-Db-Core.html#method___construct" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AconnectSync\u0028\u0029", + "name": "connectSync", + "summary": "Connect\u0020to\u0020database\u0020immediately", + "url": "classes/Leaf-Db-Core.html#method_connectSync" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020database", + "url": "classes/Leaf-Db-Core.html#method_connect" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AaddConnections\u0028\u0029", + "name": "addConnections", + "summary": "Add\u0020a\u0020list\u0020of\u0020database\u0020connections", + "url": "classes/Leaf-Db-Core.html#method_addConnections" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Alias\u0020for\u0020connect", + "url": "classes/Leaf-Db-Core.html#method_load" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AautoConnect\u0028\u0029", + "name": "autoConnect", + "summary": "Connect\u0020to\u0020database\u0020using\u0020environment\u0020variables", + "url": "classes/Leaf-Db-Core.html#method_autoConnect" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aenv\u0028\u0029", + "name": "env", + "summary": "Returns\u0020the\u0020value\u0020of\u0020the\u0020environment\u0020variable\u0020by\u0020using\u0020Leaf\u0027s\u0020\u0060_env\u0060\u0020primarily.", + "url": "classes/Leaf-Db-Core.html#method_env" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Adsn\u0028\u0029", + "name": "dsn", + "summary": "", + "url": "classes/Leaf-Db-Core.html#method_dsn" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Ause\u0028\u0029", + "name": "use", + "summary": "Set\u0020the\u0020current\u0020connection\u0020to\u0020use\u0020for\u0020queries", + "url": "classes/Leaf-Db-Core.html#method_use" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Return\u0020the\u0020database\u0020connection", + "url": "classes/Leaf-Db-Core.html#method_connection" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Closes\u0020Db\u0020connection", + "url": "classes/Leaf-Db-Core.html#method_close" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AlastInsertId\u0028\u0029", + "name": "lastInsertId", + "summary": "Returns\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020inserted\u0020row\u0020or\u0020sequence\u0020value", + "url": "classes/Leaf-Db-Core.html#method_lastInsertId" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024table", + "name": "table", + "summary": "Db\u0020table\u0020to\u0020peform\u0020operations\u0020on", + "url": "classes/Leaf-Db-Core.html#property_table" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024config", + "name": "config", + "summary": "Config\u0020for\u0020leaf\u0020db", + "url": "classes/Leaf-Db-Core.html#property_config" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024query", + "name": "query", + "summary": "Actual\u0020query\u0020to\u0020run", + "url": "classes/Leaf-Db-Core.html#property_query" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Bind\u0020parameters\u0020to\u0020a\u0020query", + "url": "classes/Leaf-Db-Core.html#method_bind" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Execute\u0020a\u0020generated\u0020query", + "url": "classes/Leaf-Db-Core.html#method_execute" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aresult\u0028\u0029", + "name": "result", + "summary": "Get\u0020raw\u0020result\u0020of\u0020last\u0020query", + "url": "classes/Leaf-Db-Core.html#method_result" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Acolumn\u0028\u0029", + "name": "column", + "summary": "Fetch\u0020column\u0020from\u0020results", + "url": "classes/Leaf-Db-Core.html#method_column" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Get\u0020the\u0020current\u0020count\u0020of\u0020objects\u0020in\u0020query", + "url": "classes/Leaf-Db-Core.html#method_count" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aassoc\u0028\u0029", + "name": "assoc", + "summary": "Alias\u0020for\u0020fetchAssoc", + "url": "classes/Leaf-Db-Core.html#method_assoc" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AfetchAssoc\u0028\u0029", + "name": "fetchAssoc", + "summary": "Fetch\u0020the\u0020items\u0020returned\u0020by\u0020query", + "url": "classes/Leaf-Db-Core.html#method_fetchAssoc" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aobj\u0028\u0029", + "name": "obj", + "summary": "Alias\u0020for\u0020fetchObj", + "url": "classes/Leaf-Db-Core.html#method_obj" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AfetchObj\u0028\u0029", + "name": "fetchObj", + "summary": "Fetch\u0020the\u0020items\u0020returned\u0020by\u0020query", + "url": "classes/Leaf-Db-Core.html#method_fetchObj" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AfetchAll\u0028\u0029", + "name": "fetchAll", + "summary": "Fetch\u0020the\u0020items\u0020returned\u0020by\u0020query", + "url": "classes/Leaf-Db-Core.html#method_fetchAll" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Alias\u0020for\u0020fetchAll", + "url": "classes/Leaf-Db-Core.html#method_all" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Alias\u0020for\u0020fetchAll", + "url": "classes/Leaf-Db-Core.html#method_get" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AcopyState\u0028\u0029", + "name": "copyState", + "summary": "Copy\u0020internal\u0020state", + "url": "classes/Leaf-Db-Core.html#method_copyState" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003AclearState\u0028\u0029", + "name": "clearState", + "summary": "Prepare\u0020leaf\u0020db\u0020to\u0020handle\u0020next\u0020query", + "url": "classes/Leaf-Db-Core.html#method_clearState" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003Adebug\u0028\u0029", + "name": "debug", + "summary": "Get\u0020the\u0020current\u0020snapshot\u0020of\u0020leaf\u0020db\u0020internals", + "url": "classes/Leaf-Db-Core.html#method_debug" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024errors", + "name": "errors", + "summary": "Errors\u0020caught\u0020in\u0020leaf\u0020db", + "url": "classes/Leaf-Db-Core.html#property_errors" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024currentConnection", + "name": "currentConnection", + "summary": "Current\u0020connection\u0020to\u0020use\u0020for\u0020db", + "url": "classes/Leaf-Db-Core.html#property_currentConnection" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024connections", + "name": "connections", + "summary": "List\u0020of\u0020connected\u0020db\u0020instances", + "url": "classes/Leaf-Db-Core.html#property_connections" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024params", + "name": "params", + "summary": "Full\u0020list\u0020of\u0020params\u0020passed\u0020into\u0020leaf\u0020db", + "url": "classes/Leaf-Db-Core.html#property_params" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024bindings", + "name": "bindings", + "summary": "Params\u0020bound\u0020to\u0020query", + "url": "classes/Leaf-Db-Core.html#property_bindings" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024hidden", + "name": "hidden", + "summary": "Items\u0020to\u0020hide\u0020from\u0020query\u0020results", + "url": "classes/Leaf-Db-Core.html#property_hidden" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024added", + "name": "added", + "summary": "Items\u0020to\u0020add\u0020to\u0020query\u0020results", + "url": "classes/Leaf-Db-Core.html#property_added" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024uniques", + "name": "uniques", + "summary": "Items\u0020which\u0020should\u0020be\u0020unique\u0020in\u0020db", + "url": "classes/Leaf-Db-Core.html#property_uniques" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024eager", + "name": "eager", + "summary": "Items\u0020to\u0020eager\u0020load", + "url": "classes/Leaf-Db-Core.html#property_eager" + }, { + "fqsen": "\\Leaf\\Db\\Core\u003A\u003A\u0024queryResult", + "name": "queryResult", + "summary": "Query\u0020result", + "url": "classes/Leaf-Db-Core.html#property_queryResult" + }, { + "fqsen": "\\Leaf\\Db\\Utils", + "name": "Utils", + "summary": "Leaf\u0020Db\u0020Utils\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nCore\u0020utilities\u0020for\u0020leaf\u0020db.", + "url": "classes/Leaf-Db-Utils.html" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Flatten\u0020multidimensional\u0020array\u0020into\u0020a\u0020single\u0020array", + "url": "classes/Leaf-Db-Utils.html#method_flatten" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003AbeginsWith\u0028\u0029", + "name": "beginsWith", + "summary": "Construct\u0020search\u0020that\u0020begins\u0020with\u0020a\u0020phrase\u0020in\u0020db", + "url": "classes/Leaf-Db-Utils.html#method_beginsWith" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "Construct\u0020search\u0020that\u0020ends\u0020with\u0020a\u0020phrase\u0020in\u0020db", + "url": "classes/Leaf-Db-Utils.html#method_endsWith" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003Aincludes\u0028\u0029", + "name": "includes", + "summary": "Construct\u0020search\u0020that\u0020includes\u0020a\u0020phrase\u0020in\u0020db", + "url": "classes/Leaf-Db-Utils.html#method_includes" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003Aword\u0028\u0029", + "name": "word", + "summary": "Construct\u0020search\u0020that\u0020begins\u0020and\u0020ends\u0020with\u0020a\u0020phrase\u0020in\u0020db", + "url": "classes/Leaf-Db-Utils.html#method_word" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003AbasicPluralize\u0028\u0029", + "name": "basicPluralize", + "summary": "Pluralizes\u0020a\u0020given\u0020singular\u0020noun\u0020based\u0020on\u0020common\u0020English\u0020rules.", + "url": "classes/Leaf-Db-Utils.html#method_basicPluralize" + }, { + "fqsen": "\\Leaf\\Db\\Utils\u003A\u003AbasicSingularize\u0028\u0029", + "name": "basicSingularize", + "summary": "Singularizes\u0020a\u0020given\u0020plural\u0020noun\u0020based\u0020on\u0020common\u0020English\u0020rules.", + "url": "classes/Leaf-Db-Utils.html#method_basicSingularize" + }, { + "fqsen": "\\Leaf\\Db", + "name": "Db", + "summary": "Leaf\u0020Db\n\u002D\u002D\u002D\u002D\u002D\nSimple\u0020database\u0020interactions", + "url": "classes/Leaf-Db.html" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020database\u0020if\u0020it\u0020doesn\u0027t\u0020exist", + "url": "classes/Leaf-Db.html#method_create" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Adrop\u0028\u0029", + "name": "drop", + "summary": "Drop\u0020a\u0020database\u0020if\u0020it\u0020exists", + "url": "classes/Leaf-Db.html#method_drop" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AtableExists\u0028\u0029", + "name": "tableExists", + "summary": "Check\u0020if\u0020a\u0020database\u0020table\u0020exists", + "url": "classes/Leaf-Db.html#method_tableExists" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AcreateTable\u0028\u0029", + "name": "createTable", + "summary": "Create\u0020database\u0020table", + "url": "classes/Leaf-Db.html#method_createTable" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AcreateTableIfNotExists\u0028\u0029", + "name": "createTableIfNotExists", + "summary": "Create\u0020database\u0020table", + "url": "classes/Leaf-Db.html#method_createTableIfNotExists" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AdropTable\u0028\u0029", + "name": "dropTable", + "summary": "Drop\u0020a\u0020database\u0020table", + "url": "classes/Leaf-Db.html#method_dropTable" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Abackup\u0028\u0029", + "name": "backup", + "summary": "Backup\u0020a\u0020database", + "url": "classes/Leaf-Db.html#method_backup" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Add\u0020a\u0020find\u0020by\u0020id\u0020clause\u0020to\u0020query", + "url": "classes/Leaf-Db.html#method_find" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Find\u0020the\u0020first\u0020matching\u0020item\u0020for\u0020current\u0020query", + "url": "classes/Leaf-Db.html#method_first" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Alast\u0028\u0029", + "name": "last", + "summary": "Find\u0020the\u0020last\u0020matching\u0020item\u0020for\u0020current\u0020query", + "url": "classes/Leaf-Db.html#method_last" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AorderBy\u0028\u0029", + "name": "orderBy", + "summary": "Order\u0020query\u0020items\u0020by\u0020a\u0020specific", + "url": "classes/Leaf-Db.html#method_orderBy" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AgroupBy\u0028\u0029", + "name": "groupBy", + "summary": "Group\u0020query\u0020results\u0020by\u0020a\u0020column", + "url": "classes/Leaf-Db.html#method_groupBy" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Alimit\u0028\u0029", + "name": "limit", + "summary": "Limit\u0020query\u0020items\u0020by\u0020a\u0020specific\u0020number", + "url": "classes/Leaf-Db.html#method_limit" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Aoffset\u0028\u0029", + "name": "offset", + "summary": "Offset\u0020query\u0020items\u0020by\u0020a\u0020specific\u0020number", + "url": "classes/Leaf-Db.html#method_offset" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "Retrieve\u0020a\u0020row\u0020from\u0020table", + "url": "classes/Leaf-Db.html#method_select" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Ainsert\u0028\u0029", + "name": "insert", + "summary": "Add\u0020a\u0020new\u0020row\u0020in\u0020a\u0020db\u0020table", + "url": "classes/Leaf-Db.html#method_insert" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Aupdate\u0028\u0029", + "name": "update", + "summary": "Update\u0020a\u0020row\u0020in\u0020a\u0020db\u0020table", + "url": "classes/Leaf-Db.html#method_update" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020table\u0027s\u0020records", + "url": "classes/Leaf-Db.html#method_delete" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Aparams\u0028\u0029", + "name": "params", + "summary": "Pass\u0020in\u0020parameters\u0020into\u0020your\u0020query", + "url": "classes/Leaf-Db.html#method_params" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Awhere\u0028\u0029", + "name": "where", + "summary": "Add\u0020a\u0020where\u0020clause\u0020to\u0020db\u0020query", + "url": "classes/Leaf-Db.html#method_where" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AorWhere\u0028\u0029", + "name": "orWhere", + "summary": "Add\u0020a\u0020where\u0020clause\u0020with\u0020OR\u0020comparator\u0020to\u0020db\u0020query", + "url": "classes/Leaf-Db.html#method_orWhere" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AwhereJson\u0028\u0029", + "name": "whereJson", + "summary": "Add\u0020a\u0020JSON\u0020where\u0020clause\u0020to\u0020the\u0020query", + "url": "classes/Leaf-Db.html#method_whereJson" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AorWhereJson\u0028\u0029", + "name": "orWhereJson", + "summary": "Add\u0020a\u0020JSON\u0020where\u0020clause\u0020with\u0020OR\u0020comparator\u0020to\u0020the\u0020query", + "url": "classes/Leaf-Db.html#method_orWhereJson" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AwhereJsonContains\u0028\u0029", + "name": "whereJsonContains", + "summary": "Add\u0020a\u0020JSON\u0020contains\u0020clause\u0020to\u0020the\u0020query", + "url": "classes/Leaf-Db.html#method_whereJsonContains" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AorWhereJsonContains\u0028\u0029", + "name": "orWhereJsonContains", + "summary": "Add\u0020a\u0020JSON\u0020contains\u0020clause\u0020with\u0020OR\u0020comparator\u0020to\u0020the\u0020query", + "url": "classes/Leaf-Db.html#method_orWhereJsonContains" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Fetch\u0020current\u0020query\u0020with\u0020all\u0020related\u0020data", + "url": "classes/Leaf-Db.html#method_with" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Ahidden\u0028\u0029", + "name": "hidden", + "summary": "Hide\u0020particular\u0020fields\u0020from\u0020the\u0020final\u0020value\u0020returned", + "url": "classes/Leaf-Db.html#method_hidden" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Aunique\u0028\u0029", + "name": "unique", + "summary": "Make\u0020sure\u0020a\u0020value\u0020doesn\u0027t\u0020already\u0020exist\u0020in\u0020a\u0020table\u0020to\u0020avoid\u0020duplicates.", + "url": "classes/Leaf-Db.html#method_unique" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020particular\u0020fields\u0020to\u0020the\u0020final\u0020value\u0020returned", + "url": "classes/Leaf-Db.html#method_add" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Asearch\u0028\u0029", + "name": "search", + "summary": "Search\u0020a\u0020db\u0020table\u0020for\u0020a\u0020value", + "url": "classes/Leaf-Db.html#method_search" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003AbeginTransaction\u0028\u0029", + "name": "beginTransaction", + "summary": "Begin\u0020a\u0020database\u0020transaction", + "url": "classes/Leaf-Db.html#method_beginTransaction" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Commit\u0020the\u0020current\u0020transaction", + "url": "classes/Leaf-Db.html#method_commit" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Arollback\u0028\u0029", + "name": "rollback", + "summary": "Rollback\u0020the\u0020current\u0020transaction", + "url": "classes/Leaf-Db.html#method_rollback" + }, { + "fqsen": "\\Leaf\\Db\u003A\u003Atransaction\u0028\u0029", + "name": "transaction", + "summary": "Run\u0020a\u0020database\u0020transaction", + "url": "classes/Leaf-Db.html#method_transaction" + }, { + "fqsen": "\\db\u0028\u0029", + "name": "db", + "summary": "Return\u0020the\u0020database\u0020object", + "url": "namespaces/default.html#function_db" + }, { + "fqsen": "\\Leaf\\Exception\\General", + "name": "General", + "summary": "Stop\u0020Exception", + "url": "classes/Leaf-Exception-General.html" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exception-General.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020exception\u0020handler", + "url": "classes/Leaf-Exception-General.html#method_configure" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AhandleException\u0028\u0029", + "name": "handleException", + "summary": "Handles\u0020an\u0020exception", + "url": "classes/Leaf-Exception-General.html#method_handleException" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AhandleErrors\u0028\u0029", + "name": "handleErrors", + "summary": "Convert\u0020errors\u0020into\u0020ErrorException\u0020objects", + "url": "classes/Leaf-Exception-General.html#method_handleErrors" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AtoException\u0028\u0029", + "name": "toException", + "summary": "Returns\u0020ErrorException\u0020objects\u0020from\u0020errors", + "url": "classes/Leaf-Exception-General.html#method_toException" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003ArenderBody\u0028\u0029", + "name": "renderBody", + "summary": "Render\u0020response\u0020body", + "url": "classes/Leaf-Exception-General.html#method_renderBody" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AerrorMarkup\u0028\u0029", + "name": "errorMarkup", + "summary": "Generate\u0020diagnostic\u0020template\u0020markup", + "url": "classes/Leaf-Exception-General.html#method_errorMarkup" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AexceptionMarkup\u0028\u0029", + "name": "exceptionMarkup", + "summary": "Generate\u0020diagnostic\u0020template\u0020markup", + "url": "classes/Leaf-Exception-General.html#method_exceptionMarkup" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AdefaultDown\u0028\u0029", + "name": "defaultDown", + "summary": "Default\u0020Not\u0020Found\u0020handler", + "url": "classes/Leaf-Exception-General.html#method_defaultDown" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003Adefault404\u0028\u0029", + "name": "default404", + "summary": "Default\u0020Not\u0020Found\u0020handler", + "url": "classes/Leaf-Exception-General.html#method_default404" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003Acsrf\u0028\u0029", + "name": "csrf", + "summary": "CSRF\u0020error", + "url": "classes/Leaf-Exception-General.html#method_csrf" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Generic\u0020error\u0020page", + "url": "classes/Leaf-Exception-General.html#method_error" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003AdefaultError\u0028\u0029", + "name": "defaultError", + "summary": "Default\u0020Error\u0020handler", + "url": "classes/Leaf-Exception-General.html#method_defaultError" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003A\u0024response", + "name": "response", + "summary": "", + "url": "classes/Leaf-Exception-General.html#property_response" + }, { + "fqsen": "\\Leaf\\Exception\\General\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Exception-General.html#property_config" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CallbackHandler", + "name": "CallbackHandler", + "summary": "Wrapper\u0020for\u0020Closures\u0020passed\u0020as\u0020handlers.\u0020Can\u0020be\u0020used\ndirectly,\u0020or\u0020will\u0020be\u0020instantiated\u0020automagically\u0020by\u0020Whoops\\Run\nif\u0020passed\u0020to\u0020Run\u003A\u003ApushHandler", + "url": "classes/Leaf-Exception-Handler-CallbackHandler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CallbackHandler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exception-Handler-CallbackHandler.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CallbackHandler\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-CallbackHandler.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CallbackHandler\u003A\u003A\u0024callable", + "name": "callable", + "summary": "", + "url": "classes/Leaf-Exception-Handler-CallbackHandler.html#property_callable" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CustomHandler", + "name": "CustomHandler", + "summary": "Abstract\u0020implementation\u0020of\u0020a\u0020Handler.", + "url": "classes/Leaf-Exception-Handler-CustomHandler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CustomHandler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Leaf-Exception-Handler-CustomHandler.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CustomHandler\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-CustomHandler.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CustomHandler\u003A\u003A\u0024templateHelper", + "name": "templateHelper", + "summary": "", + "url": "classes/Leaf-Exception-Handler-CustomHandler.html#property_templateHelper" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\CustomHandler\u003A\u003A\u0024handler", + "name": "handler", + "summary": "", + "url": "classes/Leaf-Exception-Handler-CustomHandler.html#property_handler" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler", + "name": "Handler", + "summary": "Abstract\u0020implementation\u0020of\u0020a\u0020Handler.", + "url": "classes/Leaf-Exception-Handler-Handler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AsetRun\u0028\u0029", + "name": "setRun", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#method_setRun" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AgetRun\u0028\u0029", + "name": "getRun", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#method_getRun" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AsetInspector\u0028\u0029", + "name": "setInspector", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#method_setInspector" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AgetInspector\u0028\u0029", + "name": "getInspector", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#method_getInspector" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AsetException\u0028\u0029", + "name": "setException", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#method_setException" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AgetException\u0028\u0029", + "name": "getException", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#method_getException" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003ADONE", + "name": "DONE", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#constant_DONE" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003ALAST_HANDLER", + "name": "LAST_HANDLER", + "summary": "The\u0020Handler\u0020has\u0020handled\u0020the\u0020Throwable\u0020in\u0020some\u0020way,\u0020and\u0020wishes\u0020to\u0020skip\u0020any\u0020other\u0020Handler.", + "url": "classes/Leaf-Exception-Handler-Handler.html#constant_LAST_HANDLER" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003AQUIT", + "name": "QUIT", + "summary": "The\u0020Handler\u0020has\u0020handled\u0020the\u0020Throwable\u0020in\u0020some\u0020way,\u0020and\u0020wishes\u0020to\u0020quit\/stop\u0020execution", + "url": "classes/Leaf-Exception-Handler-Handler.html#constant_QUIT" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003A\u0024run", + "name": "run", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#property_run" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003A\u0024inspector", + "name": "inspector", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#property_inspector" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\Handler\u003A\u003A\u0024exception", + "name": "exception", + "summary": "", + "url": "classes/Leaf-Exception-Handler-Handler.html#property_exception" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\HandlerInterface", + "name": "HandlerInterface", + "summary": "", + "url": "classes/Leaf-Exception-Handler-HandlerInterface.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\HandlerInterface\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-HandlerInterface.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\HandlerInterface\u003A\u003AsetRun\u0028\u0029", + "name": "setRun", + "summary": "", + "url": "classes/Leaf-Exception-Handler-HandlerInterface.html#method_setRun" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\HandlerInterface\u003A\u003AsetException\u0028\u0029", + "name": "setException", + "summary": "", + "url": "classes/Leaf-Exception-Handler-HandlerInterface.html#method_setException" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\HandlerInterface\u003A\u003AsetInspector\u0028\u0029", + "name": "setInspector", + "summary": "", + "url": "classes/Leaf-Exception-Handler-HandlerInterface.html#method_setInspector" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler", + "name": "JsonResponseHandler", + "summary": "Catches\u0020an\u0020exception\u0020and\u0020converts\u0020it\u0020to\u0020a\u0020JSON\nresponse.\u0020Additionally\u0020can\u0020also\u0020return\u0020exception\nframes\u0020for\u0020consumption\u0020by\u0020an\u0020API.", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler\u003A\u003AsetJsonApi\u0028\u0029", + "name": "setJsonApi", + "summary": "Returns\u0020errors\u005B\u005B\u005D\u005D\u0020instead\u0020of\u0020error\u005B\u005D\u0020to\u0020be\u0020in\u0020compliance\u0020with\u0020the\u0020json\u003Aapi\u0020spec", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html#method_setJsonApi" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler\u003A\u003AaddTraceToOutput\u0028\u0029", + "name": "addTraceToOutput", + "summary": "", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html#method_addTraceToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler\u003A\u003AcontentType\u0028\u0029", + "name": "contentType", + "summary": "", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html#method_contentType" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler\u003A\u003A\u0024returnFrames", + "name": "returnFrames", + "summary": "", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html#property_returnFrames" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\JsonResponseHandler\u003A\u003A\u0024jsonApi", + "name": "jsonApi", + "summary": "", + "url": "classes/Leaf-Exception-Handler-JsonResponseHandler.html#property_jsonApi" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler", + "name": "PlainTextHandler", + "summary": "Handler\u0020outputing\u0020plaintext\u0020error\u0020messages.\u0020Can\u0020be\u0020used\ndirectly,\u0020or\u0020will\u0020be\u0020instantiated\u0020automagically\u0020by\u0020Whoops\\Run\nif\u0020passed\u0020to\u0020Run\u003A\u003ApushHandler", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AsetLogger\u0028\u0029", + "name": "setLogger", + "summary": "Set\u0020the\u0020output\u0020logger\u0020interface.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_setLogger" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AgetLogger\u0028\u0029", + "name": "getLogger", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_getLogger" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AsetDumper\u0028\u0029", + "name": "setDumper", + "summary": "Set\u0020var\u0020dumper\u0020callback\u0020function.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_setDumper" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024addTraceToOutput", + "name": "addTraceToOutput", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_addTraceToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024addPreviousToOutput", + "name": "addPreviousToOutput", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_addPreviousToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024addTraceFunctionArgsToOutput", + "name": "addTraceFunctionArgsToOutput", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_addTraceFunctionArgsToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AsetTraceFunctionArgsOutputLimit\u0028\u0029", + "name": "setTraceFunctionArgsOutputLimit", + "summary": "Set\u0020the\u0020size\u0020limit\u0020in\u0020bytes\u0020of\u0020frame\u0020arguments\u0020var_dump\u0020output.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_setTraceFunctionArgsOutputLimit" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AgenerateResponse\u0028\u0029", + "name": "generateResponse", + "summary": "Create\u0020plain\u0020text\u0020response\u0020and\u0020return\u0020it\u0020as\u0020a\u0020string", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_generateResponse" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AgetTraceFunctionArgsOutputLimit\u0028\u0029", + "name": "getTraceFunctionArgsOutputLimit", + "summary": "Get\u0020the\u0020size\u0020limit\u0020in\u0020bytes\u0020of\u0020frame\u0020arguments\u0020var_dump\u0020output.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_getTraceFunctionArgsOutputLimit" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024loggerOnly", + "name": "loggerOnly", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_loggerOnly" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AcanOutput\u0028\u0029", + "name": "canOutput", + "summary": "Test\u0020if\u0020handler\u0020can\u0020output\u0020to\u0020stdout.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_canOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AgetFrameArgsOutput\u0028\u0029", + "name": "getFrameArgsOutput", + "summary": "Get\u0020the\u0020frame\u0020args\u0020var_dump.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_getFrameArgsOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dump\u0020variable.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_dump" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AgetTraceOutput\u0028\u0029", + "name": "getTraceOutput", + "summary": "Get\u0020the\u0020exception\u0020trace\u0020as\u0020plain\u0020text.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_getTraceOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AgetExceptionOutput\u0028\u0029", + "name": "getExceptionOutput", + "summary": "Get\u0020the\u0020exception\u0020as\u0020plain\u0020text.", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_getExceptionOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AcontentType\u0028\u0029", + "name": "contentType", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#method_contentType" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003AVAR_DUMP_PREFIX", + "name": "VAR_DUMP_PREFIX", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#constant_VAR_DUMP_PREFIX" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_logger" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024dumper", + "name": "dumper", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_dumper" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PlainTextHandler\u003A\u003A\u0024traceFunctionArgsOutputLimit", + "name": "traceFunctionArgsOutputLimit", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PlainTextHandler.html#property_traceFunctionArgsOutputLimit" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler", + "name": "PrettyPageHandler", + "summary": "Abstract\u0020implementation\u0020of\u0020a\u0020Handler.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetExceptionFrames\u0028\u0029", + "name": "getExceptionFrames", + "summary": "Get\u0020the\u0020stack\u0020trace\u0020frames\u0020of\u0020the\u0020exception\u0020currently\u0020being\u0020handled.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getExceptionFrames" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetExceptionCode\u0028\u0029", + "name": "getExceptionCode", + "summary": "Get\u0020the\u0020code\u0020of\u0020the\u0020exception\u0020currently\u0020being\u0020handled.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getExceptionCode" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AcontentType\u0028\u0029", + "name": "contentType", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_contentType" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AaddDataTable\u0028\u0029", + "name": "addDataTable", + "summary": "Adds\u0020an\u0020entry\u0020to\u0020the\u0020list\u0020of\u0020tables\u0020displayed\u0020in\u0020the\u0020template.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_addDataTable" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AaddDataTableCallback\u0028\u0029", + "name": "addDataTableCallback", + "summary": "Lazily\u0020adds\u0020an\u0020entry\u0020to\u0020the\u0020list\u0020of\u0020tables\u0020displayed\u0020in\u0020the\u0020table.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_addDataTableCallback" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetDataTables\u0028\u0029", + "name": "getDataTables", + "summary": "Returns\u0020all\u0020the\u0020extra\u0020data\u0020tables\u0020registered\u0020with\u0020this\u0020handler.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getDataTables" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024handleUnconditionally", + "name": "handleUnconditionally", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_handleUnconditionally" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AisLocal\u0028\u0029", + "name": "isLocal", + "summary": "is\u0020Local\u0020Environment\nCheck\u0020if\u0020the\u0020application\u0020is\u0020running\u0020in\u0020a\u0020local\u0020environment.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_isLocal" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AaddEditor\u0028\u0029", + "name": "addEditor", + "summary": "Adds\u0020an\u0020editor\u0020resolver.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_addEditor" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AsetEditor\u0028\u0029", + "name": "setEditor", + "summary": "Set\u0020the\u0020editor\u0020to\u0020use\u0020to\u0020open\u0020referenced\u0020files.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_setEditor" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetEditorHref\u0028\u0029", + "name": "getEditorHref", + "summary": "Get\u0020the\u0020editor\u0020href\u0020for\u0020a\u0020given\u0020file\u0020and\u0020line,\u0020if\u0020available.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getEditorHref" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetEditorAjax\u0028\u0029", + "name": "getEditorAjax", + "summary": "Determine\u0020if\u0020the\u0020editor\u0020link\u0020should\u0020act\u0020as\u0020an\u0020Ajax\u0020request.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getEditorAjax" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetEditor\u0028\u0029", + "name": "getEditor", + "summary": "Determines\u0020both\u0020the\u0020editor\u0020and\u0020if\u0020ajax\u0020should\u0020be\u0020used.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getEditor" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AsetPageTitle\u0028\u0029", + "name": "setPageTitle", + "summary": "Set\u0020the\u0020page\u0020title.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_setPageTitle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetPageTitle\u0028\u0029", + "name": "getPageTitle", + "summary": "Get\u0020the\u0020page\u0020title.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getPageTitle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AaddResourcePath\u0028\u0029", + "name": "addResourcePath", + "summary": "Adds\u0020a\u0020path\u0020to\u0020the\u0020list\u0020of\u0020paths\u0020to\u0020be\u0020searched\u0020for\u0020resources.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_addResourcePath" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AaddCustomCss\u0028\u0029", + "name": "addCustomCss", + "summary": "Adds\u0020a\u0020custom\u0020css\u0020file\u0020to\u0020be\u0020loaded.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_addCustomCss" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AaddCustomJs\u0028\u0029", + "name": "addCustomJs", + "summary": "Adds\u0020a\u0020custom\u0020js\u0020file\u0020to\u0020be\u0020loaded.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_addCustomJs" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetResourcePaths\u0028\u0029", + "name": "getResourcePaths", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getResourcePaths" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetResource\u0028\u0029", + "name": "getResource", + "summary": "Finds\u0020a\u0020resource,\u0020by\u0020its\u0020relative\u0020path,\u0020in\u0020all\u0020available\u0020search\u0020paths.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getResource" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetResourcesPath\u0028\u0029", + "name": "getResourcesPath", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getResourcesPath" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AsetResourcesPath\u0028\u0029", + "name": "setResourcesPath", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_setResourcesPath" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AgetApplicationPaths\u0028\u0029", + "name": "getApplicationPaths", + "summary": "Return\u0020the\u0020application\u0020paths.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_getApplicationPaths" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AsetApplicationPaths\u0028\u0029", + "name": "setApplicationPaths", + "summary": "Set\u0020the\u0020application\u0020paths.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_setApplicationPaths" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AsetApplicationRootPath\u0028\u0029", + "name": "setApplicationRootPath", + "summary": "Set\u0020the\u0020application\u0020root\u0020path.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_setApplicationRootPath" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024blacklist", + "name": "blacklist", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_blacklist" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AhideSuperglobalKey\u0028\u0029", + "name": "hideSuperglobalKey", + "summary": "Hide\u0020a\u0020sensitive\u0020value\u0020within\u0020one\u0020of\u0020the\u0020superglobal\u0020arrays.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_hideSuperglobalKey" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003Amasked\u0028\u0029", + "name": "masked", + "summary": "Checks\u0020all\u0020values\u0020within\u0020the\u0020given\u0020superGlobal\u0020array.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#method_masked" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_SUBLIME", + "name": "EDITOR_SUBLIME", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_SUBLIME" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_TEXTMATE", + "name": "EDITOR_TEXTMATE", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_TEXTMATE" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_EMACS", + "name": "EDITOR_EMACS", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_EMACS" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_MACVIM", + "name": "EDITOR_MACVIM", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_MACVIM" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_PHPSTORM", + "name": "EDITOR_PHPSTORM", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_PHPSTORM" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_IDEA", + "name": "EDITOR_IDEA", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_IDEA" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_VSCODE", + "name": "EDITOR_VSCODE", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_VSCODE" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_ATOM", + "name": "EDITOR_ATOM", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_ATOM" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_ESPRESSO", + "name": "EDITOR_ESPRESSO", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_ESPRESSO" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_XDEBUG", + "name": "EDITOR_XDEBUG", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_XDEBUG" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003AEDITOR_NETBEANS", + "name": "EDITOR_NETBEANS", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#constant_EDITOR_NETBEANS" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024searchPaths", + "name": "searchPaths", + "summary": "Search\u0020paths\u0020to\u0020be\u0020scanned\u0020for\u0020resources.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_searchPaths" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024resourceCache", + "name": "resourceCache", + "summary": "Fast\u0020lookup\u0020cache\u0020for\u0020known\u0020resource\u0020locations.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_resourceCache" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024customCss", + "name": "customCss", + "summary": "The\u0020name\u0020of\u0020the\u0020custom\u0020css\u0020file.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_customCss" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024customJs", + "name": "customJs", + "summary": "The\u0020name\u0020of\u0020the\u0020custom\u0020js\u0020file.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_customJs" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024extraTables", + "name": "extraTables", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_extraTables" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024pageTitle", + "name": "pageTitle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_pageTitle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024applicationPaths", + "name": "applicationPaths", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_applicationPaths" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024editor", + "name": "editor", + "summary": "An\u0020identifier\u0020for\u0020a\u0020known\u0020IDE\/text\u0020editor.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_editor" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024editors", + "name": "editors", + "summary": "A\u0020list\u0020of\u0020known\u0020editor\u0020strings.", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_editors" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\PrettyPageHandler\u003A\u003A\u0024templateHelper", + "name": "templateHelper", + "summary": "", + "url": "classes/Leaf-Exception-Handler-PrettyPageHandler.html#property_templateHelper" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler", + "name": "XmlResponseHandler", + "summary": "Catches\u0020an\u0020exception\u0020and\u0020converts\u0020it\u0020to\u0020an\u0020XML\nresponse.\u0020Additionally\u0020can\u0020also\u0020return\u0020exception\nframes\u0020for\u0020consumption\u0020by\u0020an\u0020API.", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler\u003A\u003AaddTraceToOutput\u0028\u0029", + "name": "addTraceToOutput", + "summary": "", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html#method_addTraceToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html#method_handle" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler\u003A\u003AcontentType\u0028\u0029", + "name": "contentType", + "summary": "", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html#method_contentType" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler\u003A\u003AaddDataToNode\u0028\u0029", + "name": "addDataToNode", + "summary": "", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html#method_addDataToNode" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler\u003A\u003AtoXml\u0028\u0029", + "name": "toXml", + "summary": "The\u0020main\u0020function\u0020for\u0020converting\u0020to\u0020an\u0020XML\u0020document.", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html#method_toXml" + }, { + "fqsen": "\\Leaf\\Exception\\Handler\\XmlResponseHandler\u003A\u003A\u0024returnFrames", + "name": "returnFrames", + "summary": "", + "url": "classes/Leaf-Exception-Handler-XmlResponseHandler.html#property_returnFrames" + }, { + "fqsen": "\\Leaf\\Exception\\Run", + "name": "Run", + "summary": "", + "url": "classes/Leaf-Exception-Run.html" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AappendHandler\u0028\u0029", + "name": "appendHandler", + "summary": "Explicitly\u0020request\u0020your\u0020handler\u0020runs\u0020as\u0020the\u0020last\u0020of\u0020all\u0020currently\u0020registered\u0020handlers.", + "url": "classes/Leaf-Exception-Run.html#method_appendHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AprependHandler\u0028\u0029", + "name": "prependHandler", + "summary": "Explicitly\u0020request\u0020your\u0020handler\u0020runs\u0020as\u0020the\u0020first\u0020of\u0020all\u0020currently\u0020registered\u0020handlers.", + "url": "classes/Leaf-Exception-Run.html#method_prependHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003ApushHandler\u0028\u0029", + "name": "pushHandler", + "summary": "Register\u0020your\u0020handler\u0020as\u0020the\u0020last\u0020of\u0020all\u0020currently\u0020registered\u0020handlers\u0020\u0028to\u0020be\u0020executed\u0020first\u0029.", + "url": "classes/Leaf-Exception-Run.html#method_pushHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003ApopHandler\u0028\u0029", + "name": "popHandler", + "summary": "Removes\u0020and\u0020returns\u0020the\u0020last\u0020handler\u0020pushed\u0020to\u0020the\u0020handler\u0020stack.", + "url": "classes/Leaf-Exception-Run.html#method_popHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AremoveFirstHandler\u0028\u0029", + "name": "removeFirstHandler", + "summary": "Removes\u0020the\u0020first\u0020handler.", + "url": "classes/Leaf-Exception-Run.html#method_removeFirstHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AremoveLastHandler\u0028\u0029", + "name": "removeLastHandler", + "summary": "Removes\u0020the\u0020last\u0020handler.", + "url": "classes/Leaf-Exception-Run.html#method_removeLastHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AgetHandlers\u0028\u0029", + "name": "getHandlers", + "summary": "Returns\u0020an\u0020array\u0020with\u0020all\u0020handlers,\u0020in\u0020the\u0020order\u0020they\u0020were\u0020added\u0020to\u0020the\u0020stack.", + "url": "classes/Leaf-Exception-Run.html#method_getHandlers" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AclearHandlers\u0028\u0029", + "name": "clearHandlers", + "summary": "Clears\u0020all\u0020handlers\u0020in\u0020the\u0020handlerStack,\u0020including\u0020the\u0020default\u0020PrettyPage\u0020handler.", + "url": "classes/Leaf-Exception-Run.html#method_clearHandlers" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Registers\u0020this\u0020instance\u0020as\u0020an\u0020error\u0020handler.", + "url": "classes/Leaf-Exception-Run.html#method_register" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003Aunregister\u0028\u0029", + "name": "unregister", + "summary": "Unregisters\u0020all\u0020handlers\u0020registered\u0020by\u0020this\u0020Whoops\\Run\u0020instance.", + "url": "classes/Leaf-Exception-Run.html#method_unregister" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024allowQuit", + "name": "allowQuit", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_allowQuit" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AsilenceErrorsInPaths\u0028\u0029", + "name": "silenceErrorsInPaths", + "summary": "Silence\u0020particular\u0020errors\u0020in\u0020particular\u0020files.", + "url": "classes/Leaf-Exception-Run.html#method_silenceErrorsInPaths" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AgetSilenceErrorsInPaths\u0028\u0029", + "name": "getSilenceErrorsInPaths", + "summary": "Returns\u0020an\u0020array\u0020with\u0020silent\u0020errors\u0020in\u0020path\u0020configuration.", + "url": "classes/Leaf-Exception-Run.html#method_getSilenceErrorsInPaths" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024sendHttpCode", + "name": "sendHttpCode", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_sendHttpCode" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024sendExitCode", + "name": "sendExitCode", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_sendExitCode" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AwriteToOutput\u0028\u0029", + "name": "writeToOutput", + "summary": "Should\u0020Whoops\u0020push\u0020output\u0020directly\u0020to\u0020the\u0020client\u003F\nIf\u0020this\u0020is\u0020false,\u0020output\u0020will\u0020be\u0020returned\u0020by\u0020handleException.", + "url": "classes/Leaf-Exception-Run.html#method_writeToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AhandleException\u0028\u0029", + "name": "handleException", + "summary": "Handles\u0020an\u0020exception,\u0020ultimately\u0020generating\u0020a\u0020Whoops\u0020error\u0020page.", + "url": "classes/Leaf-Exception-Run.html#method_handleException" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AhandleError\u0028\u0029", + "name": "handleError", + "summary": "Converts\u0020generic\u0020PHP\u0020errors\u0020to\u0020\\ErrorException\u0020instances,\u0020before\u0020passing\u0020them\u0020off\u0020to\u0020be\u0020handled.", + "url": "classes/Leaf-Exception-Run.html#method_handleError" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AhandleShutdown\u0028\u0029", + "name": "handleShutdown", + "summary": "Special\u0020case\u0020to\u0020deal\u0020with\u0020Fatal\u0020errors\u0020and\u0020the\u0020like.", + "url": "classes/Leaf-Exception-Run.html#method_handleShutdown" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AgetInspector\u0028\u0029", + "name": "getInspector", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#method_getInspector" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AresolveHandler\u0028\u0029", + "name": "resolveHandler", + "summary": "Resolves\u0020the\u0020giving\u0020handler.", + "url": "classes/Leaf-Exception-Run.html#method_resolveHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003AwriteToOutputNow\u0028\u0029", + "name": "writeToOutputNow", + "summary": "Echo\u0020something\u0020to\u0020the\u0020browser.", + "url": "classes/Leaf-Exception-Run.html#method_writeToOutputNow" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024isRegistered", + "name": "isRegistered", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_isRegistered" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024sendOutput", + "name": "sendOutput", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_sendOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024handlerStack", + "name": "handlerStack", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_handlerStack" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024silencedPatterns", + "name": "silencedPatterns", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_silencedPatterns" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024system", + "name": "system", + "summary": "", + "url": "classes/Leaf-Exception-Run.html#property_system" + }, { + "fqsen": "\\Leaf\\Exception\\Run\u003A\u003A\u0024canThrowExceptions", + "name": "canThrowExceptions", + "summary": "In\u0020certain\u0020scenarios,\u0020like\u0020in\u0020shutdown\u0020handler,\u0020we\u0020can\u0020not\u0020throw\u0020exceptions.", + "url": "classes/Leaf-Exception-Run.html#property_canThrowExceptions" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface", + "name": "RunInterface", + "summary": "", + "url": "classes/Leaf-Exception-RunInterface.html" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003ApushHandler\u0028\u0029", + "name": "pushHandler", + "summary": "Pushes\u0020a\u0020handler\u0020to\u0020the\u0020end\u0020of\u0020the\u0020stack", + "url": "classes/Leaf-Exception-RunInterface.html#method_pushHandler" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003ApopHandler\u0028\u0029", + "name": "popHandler", + "summary": "Removes\u0020the\u0020last\u0020handler\u0020in\u0020the\u0020stack\u0020and\u0020returns\u0020it.", + "url": "classes/Leaf-Exception-RunInterface.html#method_popHandler" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AgetHandlers\u0028\u0029", + "name": "getHandlers", + "summary": "Returns\u0020an\u0020array\u0020with\u0020all\u0020handlers,\u0020in\u0020the\norder\u0020they\u0020were\u0020added\u0020to\u0020the\u0020stack.", + "url": "classes/Leaf-Exception-RunInterface.html#method_getHandlers" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AclearHandlers\u0028\u0029", + "name": "clearHandlers", + "summary": "Clears\u0020all\u0020handlers\u0020in\u0020the\u0020handlerStack,\u0020including\nthe\u0020default\u0020PrettyPage\u0020handler.", + "url": "classes/Leaf-Exception-RunInterface.html#method_clearHandlers" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Registers\u0020this\u0020instance\u0020as\u0020an\u0020error\u0020handler.", + "url": "classes/Leaf-Exception-RunInterface.html#method_register" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003Aunregister\u0028\u0029", + "name": "unregister", + "summary": "Unregisters\u0020all\u0020handlers\u0020registered\u0020by\u0020this\u0020Whoops\\Run\u0020instance", + "url": "classes/Leaf-Exception-RunInterface.html#method_unregister" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AallowQuit\u0028\u0029", + "name": "allowQuit", + "summary": "Should\u0020Whoops\u0020allow\u0020Handlers\u0020to\u0020force\u0020the\u0020script\u0020to\u0020quit\u003F", + "url": "classes/Leaf-Exception-RunInterface.html#method_allowQuit" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AsilenceErrorsInPaths\u0028\u0029", + "name": "silenceErrorsInPaths", + "summary": "Silence\u0020particular\u0020errors\u0020in\u0020particular\u0020files", + "url": "classes/Leaf-Exception-RunInterface.html#method_silenceErrorsInPaths" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AsendHttpCode\u0028\u0029", + "name": "sendHttpCode", + "summary": "Should\u0020Whoops\u0020send\u0020HTTP\u0020error\u0020code\u0020to\u0020the\u0020browser\u0020if\u0020possible\u003F\nWhoops\u0020will\u0020by\u0020default\u0020send\u0020HTTP\u0020code\u0020500,\u0020but\u0020you\u0020may\u0020wish\u0020to\nuse\u0020502,\u0020503,\u0020or\u0020another\u00205xx\u0020family\u0020code.", + "url": "classes/Leaf-Exception-RunInterface.html#method_sendHttpCode" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AsendExitCode\u0028\u0029", + "name": "sendExitCode", + "summary": "Should\u0020Whoops\u0020exit\u0020with\u0020a\u0020specific\u0020code\u0020on\u0020the\u0020CLI\u0020if\u0020possible\u003F\nWhoops\u0020will\u0020exit\u0020with\u00201\u0020by\u0020default,\u0020but\u0020you\u0020can\u0020specify\u0020something\u0020else.", + "url": "classes/Leaf-Exception-RunInterface.html#method_sendExitCode" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AwriteToOutput\u0028\u0029", + "name": "writeToOutput", + "summary": "Should\u0020Whoops\u0020push\u0020output\u0020directly\u0020to\u0020the\u0020client\u003F\nIf\u0020this\u0020is\u0020false,\u0020output\u0020will\u0020be\u0020returned\u0020by\u0020handleException", + "url": "classes/Leaf-Exception-RunInterface.html#method_writeToOutput" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AhandleException\u0028\u0029", + "name": "handleException", + "summary": "Handles\u0020an\u0020exception,\u0020ultimately\u0020generating\u0020a\u0020Whoops\u0020error\npage.", + "url": "classes/Leaf-Exception-RunInterface.html#method_handleException" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AhandleError\u0028\u0029", + "name": "handleError", + "summary": "Converts\u0020generic\u0020PHP\u0020errors\u0020to\u0020\\ErrorException\ninstances,\u0020before\u0020passing\u0020them\u0020off\u0020to\u0020be\u0020handled.", + "url": "classes/Leaf-Exception-RunInterface.html#method_handleError" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AhandleShutdown\u0028\u0029", + "name": "handleShutdown", + "summary": "Special\u0020case\u0020to\u0020deal\u0020with\u0020Fatal\u0020errors\u0020and\u0020the\u0020like.", + "url": "classes/Leaf-Exception-RunInterface.html#method_handleShutdown" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AEXCEPTION_HANDLER", + "name": "EXCEPTION_HANDLER", + "summary": "", + "url": "classes/Leaf-Exception-RunInterface.html#constant_EXCEPTION_HANDLER" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003AERROR_HANDLER", + "name": "ERROR_HANDLER", + "summary": "", + "url": "classes/Leaf-Exception-RunInterface.html#constant_ERROR_HANDLER" + }, { + "fqsen": "\\Leaf\\Exception\\RunInterface\u003A\u003ASHUTDOWN_HANDLER", + "name": "SHUTDOWN_HANDLER", + "summary": "", + "url": "classes/Leaf-Exception-RunInterface.html#constant_SHUTDOWN_HANDLER" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\HtmlDumperOutput", + "name": "HtmlDumperOutput", + "summary": "Used\u0020as\u0020output\u0020callable\u0020for\u0020Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003Adump\u0028\u0029", + "url": "classes/Leaf-Exception-Util-HtmlDumperOutput.html" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\HtmlDumperOutput\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "", + "url": "classes/Leaf-Exception-Util-HtmlDumperOutput.html#method___invoke" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\HtmlDumperOutput\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "", + "url": "classes/Leaf-Exception-Util-HtmlDumperOutput.html#method_getOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\HtmlDumperOutput\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "", + "url": "classes/Leaf-Exception-Util-HtmlDumperOutput.html#method_clear" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\HtmlDumperOutput\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Leaf-Exception-Util-HtmlDumperOutput.html#property_output" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\Misc", + "name": "Misc", + "summary": "", + "url": "classes/Leaf-Exception-Util-Misc.html" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\Misc\u003A\u003AcanSendHeaders\u0028\u0029", + "name": "canSendHeaders", + "summary": "Can\u0020we\u0020at\u0020this\u0020point\u0020in\u0020time\u0020send\u0020HTTP\u0020headers\u003F", + "url": "classes/Leaf-Exception-Util-Misc.html#method_canSendHeaders" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\Misc\u003A\u003AisAjaxRequest\u0028\u0029", + "name": "isAjaxRequest", + "summary": "", + "url": "classes/Leaf-Exception-Util-Misc.html#method_isAjaxRequest" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\Misc\u003A\u003AisCommandLine\u0028\u0029", + "name": "isCommandLine", + "summary": "Check,\u0020if\u0020possible,\u0020that\u0020this\u0020execution\u0020was\u0020triggered\u0020by\u0020a\u0020command\u0020line.", + "url": "classes/Leaf-Exception-Util-Misc.html#method_isCommandLine" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\Misc\u003A\u003AtranslateErrorCode\u0028\u0029", + "name": "translateErrorCode", + "summary": "Translate\u0020ErrorException\u0020code\u0020into\u0020the\u0020represented\u0020constant.", + "url": "classes/Leaf-Exception-Util-Misc.html#method_translateErrorCode" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\Misc\u003A\u003AisLevelFatal\u0028\u0029", + "name": "isLevelFatal", + "summary": "Determine\u0020if\u0020an\u0020error\u0020level\u0020is\u0020fatal\u0020\u0028halts\u0020execution\u0029", + "url": "classes/Leaf-Exception-Util-Misc.html#method_isLevelFatal" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade", + "name": "SystemFacade", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AstartOutputBuffering\u0028\u0029", + "name": "startOutputBuffering", + "summary": "Turns\u0020on\u0020output\u0020buffering.", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_startOutputBuffering" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AsetErrorHandler\u0028\u0029", + "name": "setErrorHandler", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_setErrorHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AsetExceptionHandler\u0028\u0029", + "name": "setExceptionHandler", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_setExceptionHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003ArestoreExceptionHandler\u0028\u0029", + "name": "restoreExceptionHandler", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_restoreExceptionHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003ArestoreErrorHandler\u0028\u0029", + "name": "restoreErrorHandler", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_restoreErrorHandler" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AregisterShutdownFunction\u0028\u0029", + "name": "registerShutdownFunction", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_registerShutdownFunction" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AcleanOutputBuffer\u0028\u0029", + "name": "cleanOutputBuffer", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_cleanOutputBuffer" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AgetOutputBufferLevel\u0028\u0029", + "name": "getOutputBufferLevel", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_getOutputBufferLevel" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AendOutputBuffering\u0028\u0029", + "name": "endOutputBuffering", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_endOutputBuffering" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AflushOutputBuffer\u0028\u0029", + "name": "flushOutputBuffer", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_flushOutputBuffer" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AgetErrorReportingLevel\u0028\u0029", + "name": "getErrorReportingLevel", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_getErrorReportingLevel" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AgetLastError\u0028\u0029", + "name": "getLastError", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_getLastError" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AsetHttpResponseCode\u0028\u0029", + "name": "setHttpResponseCode", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_setHttpResponseCode" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\SystemFacade\u003A\u003AstopExecution\u0028\u0029", + "name": "stopExecution", + "summary": "", + "url": "classes/Leaf-Exception-Util-SystemFacade.html#method_stopExecution" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper", + "name": "TemplateHelper", + "summary": "Exposes\u0020useful\u0020tools\u0020for\u0020working\u0020with\/in\u0020templates", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003Aescape\u0028\u0029", + "name": "escape", + "summary": "Escapes\u0020a\u0020string\u0020for\u0020output\u0020in\u0020an\u0020HTML\u0020document", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_escape" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AescapeButPreserveUris\u0028\u0029", + "name": "escapeButPreserveUris", + "summary": "Escapes\u0020a\u0020string\u0020for\u0020output\u0020in\u0020an\u0020HTML\u0020document,\u0020but\u0020preserves\nURIs\u0020within\u0020it,\u0020and\u0020converts\u0020them\u0020to\u0020clickable\u0020anchor\u0020elements.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_escapeButPreserveUris" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AbreakOnDelimiter\u0028\u0029", + "name": "breakOnDelimiter", + "summary": "Makes\u0020sure\u0020that\u0020the\u0020given\u0020string\u0020breaks\u0020on\u0020the\u0020delimiter.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_breakOnDelimiter" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003Ashorten\u0028\u0029", + "name": "shorten", + "summary": "Replace\u0020the\u0020part\u0020of\u0020the\u0020path\u0020that\u0020all\u0020files\u0020have\u0020in\u0020common.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_shorten" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AgetDumper\u0028\u0029", + "name": "getDumper", + "summary": "", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_getDumper" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Format\u0020the\u0020given\u0020value\u0020into\u0020a\u0020human\u0020readable\u0020string.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_dump" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AdumpArgs\u0028\u0029", + "name": "dumpArgs", + "summary": "Format\u0020the\u0020args\u0020of\u0020the\u0020given\u0020Frame\u0020as\u0020a\u0020human\u0020readable\u0020html\u0020string", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_dumpArgs" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003Aslug\u0028\u0029", + "name": "slug", + "summary": "Convert\u0020a\u0020string\u0020to\u0020a\u0020slug\u0020version\u0020of\u0020itself", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_slug" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Given\u0020a\u0020template\u0020path,\u0020render\u0020it\u0020within\u0020its\u0020own\u0020scope.\u0020This\nmethod\u0020also\u0020accepts\u0020an\u0020array\u0020of\u0020additional\u0020variables\u0020to\u0020be\npassed\u0020to\u0020the\u0020template.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_render" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AsetVariables\u0028\u0029", + "name": "setVariables", + "summary": "Sets\u0020the\u0020variables\u0020to\u0020be\u0020passed\u0020to\u0020all\u0020templates\u0020rendered\nby\u0020this\u0020template\u0020helper.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_setVariables" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AsetVariable\u0028\u0029", + "name": "setVariable", + "summary": "Sets\u0020a\u0020single\u0020template\u0020variable,\u0020by\u0020its\u0020name\u003A", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_setVariable" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AgetVariable\u0028\u0029", + "name": "getVariable", + "summary": "Gets\u0020a\u0020single\u0020template\u0020variable,\u0020by\u0020its\u0020name,\u0020or\n\u0024defaultValue\u0020if\u0020the\u0020variable\u0020does\u0020not\u0020exist", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_getVariable" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AdelVariable\u0028\u0029", + "name": "delVariable", + "summary": "Unsets\u0020a\u0020single\u0020template\u0020variable,\u0020by\u0020its\u0020name", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_delVariable" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AgetVariables\u0028\u0029", + "name": "getVariables", + "summary": "Returns\u0020all\u0020variables\u0020for\u0020this\u0020helper", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_getVariables" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AsetCloner\u0028\u0029", + "name": "setCloner", + "summary": "Set\u0020the\u0020cloner\u0020used\u0020for\u0020dumping\u0020variables.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_setCloner" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AgetCloner\u0028\u0029", + "name": "getCloner", + "summary": "Get\u0020the\u0020cloner\u0020used\u0020for\u0020dumping\u0020variables.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_getCloner" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AsetApplicationRootPath\u0028\u0029", + "name": "setApplicationRootPath", + "summary": "Set\u0020the\u0020application\u0020root\u0020path.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_setApplicationRootPath" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003AgetApplicationRootPath\u0028\u0029", + "name": "getApplicationRootPath", + "summary": "Return\u0020the\u0020application\u0020root\u0020path.", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#method_getApplicationRootPath" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003A\u0024variables", + "name": "variables", + "summary": "An\u0020array\u0020of\u0020variables\u0020to\u0020be\u0020passed\u0020to\u0020all\u0020templates", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#property_variables" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003A\u0024htmlDumper", + "name": "htmlDumper", + "summary": "", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#property_htmlDumper" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003A\u0024htmlDumperOutput", + "name": "htmlDumperOutput", + "summary": "", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#property_htmlDumperOutput" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003A\u0024cloner", + "name": "cloner", + "summary": "", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#property_cloner" + }, { + "fqsen": "\\Leaf\\Exception\\Util\\TemplateHelper\u003A\u003A\u0024applicationRootPath", + "name": "applicationRootPath", + "summary": "", + "url": "classes/Leaf-Exception-Util-TemplateHelper.html#property_applicationRootPath" + }, { + "fqsen": "\\Leaf\\Exceptions\\ErrorException", + "name": "ErrorException", + "summary": "Wraps\u0020ErrorException\u003B\u0020mostly\u0020used\u0020for\u0020typing\u0020\u0028at\u0020least\u0020now\u0029\nto\u0020easily\u0020cleanup\u0020the\u0020stack\u0020trace\u0020of\u0020redundant\u0020info.", + "url": "classes/Leaf-Exceptions-ErrorException.html" + }, { + "fqsen": "\\Leaf\\Exceptions\\Formatter", + "name": "Formatter", + "summary": "", + "url": "classes/Leaf-Exceptions-Formatter.html" + }, { + "fqsen": "\\Leaf\\Exceptions\\Formatter\u003A\u003AformatExceptionAsDataArray\u0028\u0029", + "name": "formatExceptionAsDataArray", + "summary": "Returns\u0020all\u0020basic\u0020information\u0020about\u0020the\u0020exception\u0020in\u0020a\u0020simple\u0020array\nfor\u0020further\u0020convertion\u0020to\u0020other\u0020languages", + "url": "classes/Leaf-Exceptions-Formatter.html#method_formatExceptionAsDataArray" + }, { + "fqsen": "\\Leaf\\Exceptions\\Formatter\u003A\u003AformatExceptionPlain\u0028\u0029", + "name": "formatExceptionPlain", + "summary": "", + "url": "classes/Leaf-Exceptions-Formatter.html#method_formatExceptionPlain" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame", + "name": "Frame", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetFile\u0028\u0029", + "name": "getFile", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#method_getFile" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetLine\u0028\u0029", + "name": "getLine", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#method_getLine" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#method_getClass" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetFunction\u0028\u0029", + "name": "getFunction", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#method_getFunction" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetArgs\u0028\u0029", + "name": "getArgs", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#method_getArgs" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetFileContents\u0028\u0029", + "name": "getFileContents", + "summary": "Returns\u0020the\u0020full\u0020contents\u0020of\u0020the\u0020file\u0020for\u0020this\u0020frame,\nif\u0020it\u0027s\u0020known.", + "url": "classes/Leaf-Exceptions-Frame.html#method_getFileContents" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AaddComment\u0028\u0029", + "name": "addComment", + "summary": "Adds\u0020a\u0020comment\u0020to\u0020this\u0020frame,\u0020that\u0020can\u0020be\u0020received\u0020and\nused\u0020by\u0020other\u0020handlers.\u0020For\u0020example,\u0020the\u0020PrettyPage\u0020handler\ncan\u0020attach\u0020these\u0020comments\u0020under\u0020the\u0020code\u0020for\u0020each\u0020frame.", + "url": "classes/Leaf-Exceptions-Frame.html#method_addComment" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetComments\u0028\u0029", + "name": "getComments", + "summary": "Returns\u0020all\u0020comments\u0020for\u0020this\u0020frame.\u0020Optionally\u0020allows\na\u0020filter\u0020to\u0020only\u0020retrieve\u0020comments\u0020from\u0020a\u0020specific\ncontext.", + "url": "classes/Leaf-Exceptions-Frame.html#method_getComments" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetRawFrame\u0028\u0029", + "name": "getRawFrame", + "summary": "Returns\u0020the\u0020array\u0020containing\u0020the\u0020raw\u0020frame\u0020data\u0020from\u0020which\nthis\u0020Frame\u0020object\u0020was\u0020built", + "url": "classes/Leaf-Exceptions-Frame.html#method_getRawFrame" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AgetFileLines\u0028\u0029", + "name": "getFileLines", + "summary": "Returns\u0020the\u0020contents\u0020of\u0020the\u0020file\u0020for\u0020this\u0020frame\u0020as\u0020an\narray\u0020of\u0020lines,\u0020and\u0020optionally\u0020as\u0020a\u0020clamped\u0020range\u0020of\u0020lines.", + "url": "classes/Leaf-Exceptions-Frame.html#method_getFileLines" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003Aserialize\u0028\u0029", + "name": "serialize", + "summary": "Implements\u0020the\u0020Serializable\u0020interface,\u0020with\u0020special\nsteps\u0020to\u0020also\u0020save\u0020the\u0020existing\u0020comments.", + "url": "classes/Leaf-Exceptions-Frame.html#method_serialize" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003Aunserialize\u0028\u0029", + "name": "unserialize", + "summary": "Unserializes\u0020the\u0020frame\u0020data,\u0020while\u0020also\u0020preserving\nany\u0020existing\u0020comment\u0020data.", + "url": "classes/Leaf-Exceptions-Frame.html#method_unserialize" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003Aequals\u0028\u0029", + "name": "equals", + "summary": "Compares\u0020Frame\u0020against\u0020one\u0020another", + "url": "classes/Leaf-Exceptions-Frame.html#method_equals" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AisApplication\u0028\u0029", + "name": "isApplication", + "summary": "Returns\u0020whether\u0020this\u0020frame\u0020belongs\u0020to\u0020the\u0020application\u0020or\u0020not.", + "url": "classes/Leaf-Exceptions-Frame.html#method_isApplication" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003AsetApplication\u0028\u0029", + "name": "setApplication", + "summary": "Mark\u0020as\u0020an\u0020frame\u0020belonging\u0020to\u0020the\u0020application.", + "url": "classes/Leaf-Exceptions-Frame.html#method_setApplication" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003A\u0024frame", + "name": "frame", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#property_frame" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003A\u0024fileContentsCache", + "name": "fileContentsCache", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#property_fileContentsCache" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003A\u0024comments", + "name": "comments", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#property_comments" + }, { + "fqsen": "\\Leaf\\Exceptions\\Frame\u003A\u003A\u0024application", + "name": "application", + "summary": "", + "url": "classes/Leaf-Exceptions-Frame.html#property_application" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection", + "name": "FrameCollection", + "summary": "Exposes\u0020a\u0020fluent\u0020interface\u0020for\u0020dealing\u0020with\u0020an\u0020ordered\u0020list\nof\u0020stack\u002Dtrace\u0020frames.", + "url": "classes/Leaf-Exceptions-FrameCollection.html" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Filters\u0020frames\u0020using\u0020a\u0020callable,\u0020returns\u0020the\u0020same\u0020FrameCollection", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_filter" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Map\u0020the\u0020collection\u0020of\u0020frames", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_map" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AgetArray\u0028\u0029", + "name": "getArray", + "summary": "Returns\u0020an\u0020array\u0020with\u0020all\u0020frames,\u0020does\u0020not\u0020affect\nthe\u0020internal\u0020array.", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_getArray" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_getIterator" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_offsetExists" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_offsetGet" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_offsetSet" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_offsetUnset" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_count" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AcountIsApplication\u0028\u0029", + "name": "countIsApplication", + "summary": "Count\u0020the\u0020frames\u0020that\u0020belongs\u0020to\u0020the\u0020application.", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_countIsApplication" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003Aserialize\u0028\u0029", + "name": "serialize", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_serialize" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003Aunserialize\u0028\u0029", + "name": "unserialize", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_unserialize" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AprependFrames\u0028\u0029", + "name": "prependFrames", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_prependFrames" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003AtopDiff\u0028\u0029", + "name": "topDiff", + "summary": "Gets\u0020the\u0020innermost\u0020part\u0020of\u0020stack\u0020trace\u0020that\u0020is\u0020not\u0020the\u0020same\u0020as\u0020that\u0020of\u0020outer\u0020exception", + "url": "classes/Leaf-Exceptions-FrameCollection.html#method_topDiff" + }, { + "fqsen": "\\Leaf\\Exceptions\\FrameCollection\u003A\u003A\u0024frames", + "name": "frames", + "summary": "", + "url": "classes/Leaf-Exceptions-FrameCollection.html#property_frames" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector", + "name": "Inspector", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method___construct" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetException\u0028\u0029", + "name": "getException", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getException" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetExceptionName\u0028\u0029", + "name": "getExceptionName", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getExceptionName" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetExceptionMessage\u0028\u0029", + "name": "getExceptionMessage", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getExceptionMessage" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetPreviousExceptionMessages\u0028\u0029", + "name": "getPreviousExceptionMessages", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getPreviousExceptionMessages" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetPreviousExceptionCodes\u0028\u0029", + "name": "getPreviousExceptionCodes", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getPreviousExceptionCodes" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetExceptionDocrefUrl\u0028\u0029", + "name": "getExceptionDocrefUrl", + "summary": "Returns\u0020a\u0020url\u0020to\u0020the\u0020php\u002Dmanual\u0020related\u0020to\u0020the\u0020underlying\u0020error\u0020\u002D\u0020when\u0020available.", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getExceptionDocrefUrl" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AextractDocrefUrl\u0028\u0029", + "name": "extractDocrefUrl", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#method_extractDocrefUrl" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AhasPreviousException\u0028\u0029", + "name": "hasPreviousException", + "summary": "Does\u0020the\u0020wrapped\u0020Exception\u0020has\u0020a\u0020previous\u0020Exception\u003F", + "url": "classes/Leaf-Exceptions-Inspector.html#method_hasPreviousException" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetPreviousExceptionInspector\u0028\u0029", + "name": "getPreviousExceptionInspector", + "summary": "Returns\u0020an\u0020Inspector\u0020for\u0020a\u0020previous\u0020Exception,\u0020if\u0020any.", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getPreviousExceptionInspector" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetPreviousExceptions\u0028\u0029", + "name": "getPreviousExceptions", + "summary": "Returns\u0020an\u0020array\u0020of\u0020all\u0020previous\u0020exceptions\u0020for\u0020this\u0020inspector\u0027s\u0020exception", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getPreviousExceptions" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetFrames\u0028\u0029", + "name": "getFrames", + "summary": "Returns\u0020an\u0020iterator\u0020for\u0020the\u0020inspected\u0020exception\u0027s\nframes.", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getFrames" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetTrace\u0028\u0029", + "name": "getTrace", + "summary": "Gets\u0020the\u0020backtrace\u0020from\u0020an\u0020exception.", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getTrace" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetFrameFromException\u0028\u0029", + "name": "getFrameFromException", + "summary": "Given\u0020an\u0020exception,\u0020generates\u0020an\u0020array\u0020in\u0020the\u0020format\ngenerated\u0020by\u0020Exception\u003A\u003AgetTrace\u0028\u0029", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getFrameFromException" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AgetFrameFromError\u0028\u0029", + "name": "getFrameFromError", + "summary": "Given\u0020an\u0020error,\u0020generates\u0020an\u0020array\u0020in\u0020the\u0020format\ngenerated\u0020by\u0020ErrorException", + "url": "classes/Leaf-Exceptions-Inspector.html#method_getFrameFromError" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003AisValidNextFrame\u0028\u0029", + "name": "isValidNextFrame", + "summary": "Determine\u0020if\u0020the\u0020frame\u0020can\u0020be\u0020used\u0020to\u0020fill\u0020in\u0020previous\u0020frame\u0027s\u0020missing\u0020info\nhappens\u0020for\u0020call_user_func\u0020and\u0020call_user_func_array\u0020usages\u0020\u0028PHP\u0020Bug\u0020\u002344428\u0029", + "url": "classes/Leaf-Exceptions-Inspector.html#method_isValidNextFrame" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003A\u0024exception", + "name": "exception", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#property_exception" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003A\u0024frames", + "name": "frames", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#property_frames" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003A\u0024previousExceptionInspector", + "name": "previousExceptionInspector", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#property_previousExceptionInspector" + }, { + "fqsen": "\\Leaf\\Exceptions\\Inspector\u003A\u003A\u0024previousExceptions", + "name": "previousExceptions", + "summary": "", + "url": "classes/Leaf-Exceptions-Inspector.html#property_previousExceptions" + }, { + "fqsen": "\\Leaf\\Fetch", + "name": "Fetch", + "summary": "Leaf\u0020Fetch\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nPlain\u0020simple\u0020PHP\u0020http\u0020client.", + "url": "classes/Leaf-Fetch.html" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AbaseUrl\u0028\u0029", + "name": "baseUrl", + "summary": "", + "url": "classes/Leaf-Fetch.html#method_baseUrl" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Arequest\u0028\u0029", + "name": "request", + "summary": "Base\u0020method\u0020for\u0020network\u0020requests", + "url": "classes/Leaf-Fetch.html#method_request" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Make\u0020a\u0020get\u0020request", + "url": "classes/Leaf-Fetch.html#method_get" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Apost\u0028\u0029", + "name": "post", + "summary": "Make\u0020a\u0020post\u0020request", + "url": "classes/Leaf-Fetch.html#method_post" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Make\u0020a\u0020put\u0020request", + "url": "classes/Leaf-Fetch.html#method_put" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Apatch\u0028\u0029", + "name": "patch", + "summary": "Make\u0020a\u0020patch\u0020request", + "url": "classes/Leaf-Fetch.html#method_patch" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Make\u0020a\u0020delete\u0020request", + "url": "classes/Leaf-Fetch.html#method_delete" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003A\u0024options", + "name": "options", + "summary": "Default\u0020fetch\u0020options", + "url": "classes/Leaf-Fetch.html#property_options" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "", + "url": "classes/Leaf-Fetch.html#method_call" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AparseHeaders\u0028\u0029", + "name": "parseHeaders", + "summary": "if\u0020PECL_HTTP\u0020is\u0020not\u0020available\u0020use\u0020a\u0020fall\u0020back\u0020function", + "url": "classes/Leaf-Fetch.html#method_parseHeaders" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AgetInfo\u0028\u0029", + "name": "getInfo", + "summary": "", + "url": "classes/Leaf-Fetch.html#method_getInfo" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AbuildHTTPCurlQuery\u0028\u0029", + "name": "buildHTTPCurlQuery", + "summary": "This\u0020function\u0020is\u0020useful\u0020for\u0020serializing\u0020multidimensional\u0020arrays,\u0020and\u0020avoid\u0020getting\nthe\u0020\u0027Array\u0020to\u0020string\u0020conversion\u0027\u0020notice", + "url": "classes/Leaf-Fetch.html#method_buildHTTPCurlQuery" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AHEAD", + "name": "HEAD", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_HEAD" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AGET", + "name": "GET", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_GET" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003APOST", + "name": "POST", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_POST" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003APUT", + "name": "PUT", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_PUT" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003APATCH", + "name": "PATCH", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_PATCH" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003ADELETE", + "name": "DELETE", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_DELETE" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AOPTIONS", + "name": "OPTIONS", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_OPTIONS" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003AOVERRIDE", + "name": "OVERRIDE", + "summary": "", + "url": "classes/Leaf-Fetch.html#constant_OVERRIDE" + }, { + "fqsen": "\\Leaf\\Fetch\u003A\u003A\u0024handler", + "name": "handler", + "summary": "", + "url": "classes/Leaf-Fetch.html#property_handler" + }, { + "fqsen": "\\fetch\u0028\u0029", + "name": "fetch", + "summary": "Shortcut\u0020method\u0020for\u0020making\u0020network\u0020requests.", + "url": "namespaces/default.html#function_fetch" + }, { + "fqsen": "\\Leaf\\Form", + "name": "Form", + "summary": "Leaf\u0020Form\n\u002D\u002D\u002D\u002D\nLeaf\u0027s\u0020form\u0020validation\u0020library", + "url": "classes/Leaf-Form.html" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Form.html#method___construct" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003Atest\u0028\u0029", + "name": "test", + "summary": "", + "url": "classes/Leaf-Form.html#method_test" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AvalidateRule\u0028\u0029", + "name": "validateRule", + "summary": "Validate\u0020a\u0020single\u0020rule", + "url": "classes/Leaf-Form.html#method_validateRule" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validate\u0020form\u0020data", + "url": "classes/Leaf-Form.html#method_validate" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AaddRule\u0028\u0029", + "name": "addRule", + "summary": "Add\u0020custom\u0020validation\u0020rule", + "url": "classes/Leaf-Form.html#method_addRule" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003Arule\u0028\u0029", + "name": "rule", + "summary": "Alias\u0020for\u0020addRule", + "url": "classes/Leaf-Form.html#method_rule" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AaddErrorMessage\u0028\u0029", + "name": "addErrorMessage", + "summary": "Add\u0020validation\u0020error\u0020message", + "url": "classes/Leaf-Form.html#method_addErrorMessage" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AaddMessage\u0028\u0029", + "name": "addMessage", + "summary": "Add\u0020validation\u0020error\u0020message", + "url": "classes/Leaf-Form.html#method_addMessage" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003Asubmit\u0028\u0029", + "name": "submit", + "summary": "Directly\u0020\u0027submit\u0027\u0020a\u0020form\u0020without\u0020having\u0020to\u0020work\u0020with\u0020any\u0020mark\u002Dup", + "url": "classes/Leaf-Form.html#method_submit" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AisEmail\u0028\u0029", + "name": "isEmail", + "summary": "", + "url": "classes/Leaf-Form.html#method_isEmail" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003Amessage\u0028\u0029", + "name": "message", + "summary": "Alias\u0020for\u0020addMessage", + "url": "classes/Leaf-Form.html#method_message" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AaddError\u0028\u0029", + "name": "addError", + "summary": "Add\u0020validation\u0020error", + "url": "classes/Leaf-Form.html#method_addError" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003AsupportedRules\u0028\u0029", + "name": "supportedRules", + "summary": "Get\u0020a\u0020list\u0020of\u0020all\u0020supported\u0020rules.", + "url": "classes/Leaf-Form.html#method_supportedRules" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003A\u0024errors", + "name": "errors", + "summary": "Validation\u0020errors", + "url": "classes/Leaf-Form.html#property_errors" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003A\u0024rules", + "name": "rules", + "summary": "Validation\u0020rules", + "url": "classes/Leaf-Form.html#property_rules" + }, { + "fqsen": "\\Leaf\\Form\u003A\u003A\u0024messages", + "name": "messages", + "summary": "Validation\u0020error\u0020messages", + "url": "classes/Leaf-Form.html#property_messages" + }, { + "fqsen": "\\form\u0028\u0029", + "name": "form", + "summary": "Return\u0020leaf\u0020form\u0020object", + "url": "namespaces/default.html#function_form" + }, { + "fqsen": "\\validator\u0028\u0029", + "name": "validator", + "summary": "", + "url": "namespaces/default.html#function_validator" + }, { + "fqsen": "\\Cache", + "name": "Cache", + "summary": "", + "url": "classes/Cache.html" + }, { + "fqsen": "\\Cache\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "", + "url": "classes/Cache.html#method_set" + }, { + "fqsen": "\\Cache\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "", + "url": "classes/Cache.html#method_get" + }, { + "fqsen": "\\Cache\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Cache.html#property_cache" + }, { + "fqsen": "\\Leaf\\FS\\Directory", + "name": "Directory", + "summary": "Directory\u0020operations\n\u002D\u002D\u002D\u002D\nThis\u0020class\u0020provides\u0020a\u0020set\u0020of\u0020methods\u0020for\u0020local\u0020directory\u0020operations", + "url": "classes/Leaf-FS-Directory.html" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020directory\u0020exists", + "url": "classes/Leaf-FS-Directory.html#method_exists" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_create" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "List\u0020all\u0020files\u0020and\u0020folders\u0020in\u0020a\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_read" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Check\u0020if\u0020a\u0020directory\u0020is\u0020empty", + "url": "classes/Leaf-FS-Directory.html#method_isEmpty" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Adirs\u0028\u0029", + "name": "dirs", + "summary": "Get\u0020all\u0020directories\u0020in\u0020a\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_dirs" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Get\u0020all\u0020files\u0020in\u0020a\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_files" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_delete" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020a\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_copy" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020directory\u0020to\u0020a\u0020new\u0020location", + "url": "classes/Leaf-FS-Directory.html#method_move" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Get\u0020a\u0020summary\u0020of\u0020the\u0020dir\u0020information", + "url": "classes/Leaf-FS-Directory.html#method_info" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020total\u0020size\u0020of\u0020a\u0020directory", + "url": "classes/Leaf-FS-Directory.html#method_size" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Return\u0020all\u0020errors\u0020that\u0020occurred\u0020during\u0020dir\u0020operations", + "url": "classes/Leaf-FS-Directory.html#method_errors" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003A\u0024errorsArray", + "name": "errorsArray", + "summary": "", + "url": "classes/Leaf-FS-Directory.html#property_errorsArray" + }, { + "fqsen": "\\Leaf\\FS\\Directory\u003A\u003A\u0024dirCreateOptions", + "name": "dirCreateOptions", + "summary": "", + "url": "classes/Leaf-FS-Directory.html#property_dirCreateOptions" + }, { + "fqsen": "\\Leaf\\FS\\File", + "name": "File", + "summary": "File\u0020operations\n\u002D\u002D\u002D\u002D\nThis\u0020class\u0020provides\u0020a\u0020set\u0020of\u0020methods\u0020for\u0020local\u0020file\u0020operations", + "url": "classes/Leaf-FS-File.html" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020file\u0020exists", + "url": "classes/Leaf-FS-File.html#method_exists" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020file", + "url": "classes/Leaf-FS-File.html#method_create" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020the\u0020content\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_read" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020content\u0020to\u0020an\u0020existing\u0020file", + "url": "classes/Leaf-FS-File.html#method_write" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_delete" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Check\u0020if\u0020a\u0020file\u0020is\u0020empty", + "url": "classes/Leaf-FS-File.html#method_isEmpty" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_copy" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_move" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Get\u0020a\u0020summary\u0020of\u0020the\u0020file\u0020information", + "url": "classes/Leaf-FS-File.html#method_info" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020size\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_size" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003AsystemType\u0028\u0029", + "name": "systemType", + "summary": "Get\u0020the\u0020system\u0020file\u0020type\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_systemType" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Atype\u0028\u0029", + "name": "type", + "summary": "Get\u0020the\u0020human\u0020readable\u0020file\u0020type\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_type" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Aupload\u0028\u0029", + "name": "upload", + "summary": "Upload\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_upload" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003AmimeType\u0028\u0029", + "name": "mimeType", + "summary": "Get\u0020the\u0020mime\u0020type\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_mimeType" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003AlastModified\u0028\u0029", + "name": "lastModified", + "summary": "Get\u0020the\u0020last\u0020modified\u0020date\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-File.html#method_lastModified" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Return\u0020all\u0020errors\u0020that\u0020occured\u0020during\u0020file\u0020operations", + "url": "classes/Leaf-FS-File.html#method_errors" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003A\u0024errorsArray", + "name": "errorsArray", + "summary": "", + "url": "classes/Leaf-FS-File.html#property_errorsArray" + }, { + "fqsen": "\\Leaf\\FS\\File\u003A\u003A\u0024fileCreateOptions", + "name": "fileCreateOptions", + "summary": "", + "url": "classes/Leaf-FS-File.html#property_fileCreateOptions" + }, { + "fqsen": "\\Leaf\\FS\\Path", + "name": "Path", + "summary": "", + "url": "classes/Leaf-FS-Path.html" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-FS-Path.html#method___construct" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003Adirname\u0028\u0029", + "name": "dirname", + "summary": "Return\u0020the\u0020parent\u0020directory\u0020of\u0020the\u0020path", + "url": "classes/Leaf-FS-Path.html#method_dirname" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003Abasename\u0028\u0029", + "name": "basename", + "summary": "Return\u0020the\u0020last\u0020part\u0020of\u0020the\u0020path", + "url": "classes/Leaf-FS-Path.html#method_basename" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003Aextension\u0028\u0029", + "name": "extension", + "summary": "Return\u0020the\u0020extension\u0020of\u0020the\u0020path", + "url": "classes/Leaf-FS-Path.html#method_extension" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "Join\u0020multiple\u0020path\u0020parts\u0020using\u0020the\u0020correct\u0020directory\u0020separator", + "url": "classes/Leaf-FS-Path.html#method_join" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003Anormalize\u0028\u0029", + "name": "normalize", + "summary": "Fix\u0020the\u0020path\u0020to\u0020use\u0020the\u0020correct\u0020directory\u0020separator", + "url": "classes/Leaf-FS-Path.html#method_normalize" + }, { + "fqsen": "\\Leaf\\FS\\Path\u003A\u003A\u0024pathToParse", + "name": "pathToParse", + "summary": "", + "url": "classes/Leaf-FS-Path.html#property_pathToParse" + }, { + "fqsen": "\\Leaf\\FS\\Storage", + "name": "Storage", + "summary": "", + "url": "classes/Leaf-FS-Storage.html" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AcreateFile\u0028\u0029", + "name": "createFile", + "summary": "Create\u0020a\u0020new\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_createFile" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020the\u0020content\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_read" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AwriteFile\u0028\u0029", + "name": "writeFile", + "summary": "Write\u0020content\u0020to\u0020a\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_writeFile" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Get\u0020a\u0020summary\u0020of\u0020the\u0020file\/directory\u0020information", + "url": "classes/Leaf-FS-Storage.html#method_info" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Get\u0020the\u0020size\u0020of\u0020a\u0020file\/folder", + "url": "classes/Leaf-FS-Storage.html#method_size" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Atype\u0028\u0029", + "name": "type", + "summary": "Get\u0020the\u0020human\u0020readable\u0020file\u0020type\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_type" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AlastModified\u0028\u0029", + "name": "lastModified", + "summary": "Get\u0020the\u0020last\u0020modified\u0020date\u0020of\u0020a\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_lastModified" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Aextension\u0028\u0029", + "name": "extension", + "summary": "Return\u0020the\u0020extension\u0020of\u0020the\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_extension" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Abasename\u0028\u0029", + "name": "basename", + "summary": "Return\u0020the\u0020last\u0020part\u0020of\u0020the\u0020path", + "url": "classes/Leaf-FS-Storage.html#method_basename" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Adirname\u0028\u0029", + "name": "dirname", + "summary": "Return\u0020the\u0020parent\u0020directory\u0020of\u0020the\u0020path", + "url": "classes/Leaf-FS-Storage.html#method_dirname" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020file\/directory\u0020exists", + "url": "classes/Leaf-FS-Storage.html#method_exists" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Aupload\u0028\u0029", + "name": "upload", + "summary": "Upload\u0020a\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_upload" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AcreateFolder\u0028\u0029", + "name": "createFolder", + "summary": "Create\u0020a\u0020new\u0020directory", + "url": "classes/Leaf-FS-Storage.html#method_createFolder" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Check\u0020if\u0020a\u0020file\u0020or\u0020directory\u0020is\u0020empty", + "url": "classes/Leaf-FS-Storage.html#method_isEmpty" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Alist\u0028\u0029", + "name": "list", + "summary": "", + "url": "classes/Leaf-FS-Storage.html#method_list" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file\u0020or\u0020directory", + "url": "classes/Leaf-FS-Storage.html#method_move" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020a\u0020file\u0020or\u0020directory", + "url": "classes/Leaf-FS-Storage.html#method_copy" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Arename\u0028\u0029", + "name": "rename", + "summary": "Rename\u0020a\u0020file\u0020or\u0020directory", + "url": "classes/Leaf-FS-Storage.html#method_rename" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020file\u0020or\u0020directory", + "url": "classes/Leaf-FS-Storage.html#method_delete" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Achmod\u0028\u0029", + "name": "chmod", + "summary": "Get\u0020or\u0020set\u0020UNIX\u0020mode\u0020of\u0020a\u0020file\u0020or\u0020directory.", + "url": "classes/Leaf-FS-Storage.html#method_chmod" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Alink\u0028\u0029", + "name": "link", + "summary": "Create\u0020a\u0020symlink\u0020to\u0020the\u0020target\u0020file\u0020or\u0020directory.\u0020On\u0020Windows,\u0020a\u0020hard\u0020link\u0020is\u0020created\u0020if\u0020the\u0020target\u0020is\u0020a\u0020file.", + "url": "classes/Leaf-FS-Storage.html#method_link" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AisFile\u0028\u0029", + "name": "isFile", + "summary": "Check\u0020if\u0020a\u0020path\u0020is\u0020a\u0020file", + "url": "classes/Leaf-FS-Storage.html#method_isFile" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003AisDir\u0028\u0029", + "name": "isDir", + "summary": "Check\u0020if\u0020a\u0020path\u0020is\u0020a\u0020directory", + "url": "classes/Leaf-FS-Storage.html#method_isDir" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Return\u0020all\u0020errors\u0020that\u0020occurred", + "url": "classes/Leaf-FS-Storage.html#method_errors" + }, { + "fqsen": "\\Leaf\\FS\\Storage\u003A\u003A\u0024errorsArray", + "name": "errorsArray", + "summary": "", + "url": "classes/Leaf-FS-Storage.html#property_errorsArray" + }, { + "fqsen": "\\path\u0028\u0029", + "name": "path", + "summary": "Return\u0020the\u0020Leaf\u0020instance", + "url": "namespaces/default.html#function_path" + }, { + "fqsen": "\\storage\u0028\u0029", + "name": "storage", + "summary": "Return\u0020the\u0020Leaf\u0020instance", + "url": "namespaces/default.html#function_storage" + }, { + "fqsen": "\\TEST_PATH", + "name": "TEST_PATH", + "summary": "", + "url": "namespaces/default.html#constant_TEST_PATH" + }, { + "fqsen": "\\Leaf\\Http\\Cache", + "name": "Cache", + "summary": "Leaf\u0020Http\u0020Caching\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nHTTP\u0020Caching\u0020made\u0020simple\u0020with\u0020Leaf", + "url": "classes/Leaf-Http-Cache.html" + }, { + "fqsen": "\\Leaf\\Http\\Cache\u003A\u003AlastModified\u0028\u0029", + "name": "lastModified", + "summary": "Set\u0020Last\u002DModified\u0020HTTP\u0020Response\u0020Header", + "url": "classes/Leaf-Http-Cache.html#method_lastModified" + }, { + "fqsen": "\\Leaf\\Http\\Cache\u003A\u003Aetag\u0028\u0029", + "name": "etag", + "summary": "Set\u0020ETag\u0020HTTP\u0020Response\u0020Header", + "url": "classes/Leaf-Http-Cache.html#method_etag" + }, { + "fqsen": "\\Leaf\\Http\\Cache\u003A\u003Aexpires\u0028\u0029", + "name": "expires", + "summary": "Set\u0020Expires\u0020HTTP\u0020response\u0020header", + "url": "classes/Leaf-Http-Cache.html#method_expires" + }, { + "fqsen": "\\request\u0028\u0029", + "name": "request", + "summary": "Return\u0020request\u0020or\u0020request\u0020data", + "url": "namespaces/default.html#function_request" + }, { + "fqsen": "\\response\u0028\u0029", + "name": "response", + "summary": "Return\u0020response\u0020or\u0020set\u0020response\u0020data", + "url": "namespaces/default.html#function_response" + }, { + "fqsen": "\\Leaf\\Http\\Headers", + "name": "Headers", + "summary": "HTTP\u0020Headers\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nResponse\u0020header\u0020management\u0020made\u0020simple\u0020with\u0020Leaf", + "url": "classes/Leaf-Http-Headers.html" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003Astatus\u0028\u0029", + "name": "status", + "summary": "Get\u0020or\u0020Set\u0020an\u0020HTTP\u0020code\u0020for\u0020response", + "url": "classes/Leaf-Http-Headers.html#method_status" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AresetStatus\u0028\u0029", + "name": "resetStatus", + "summary": "Force\u0020an\u0020HTTP\u0020code\u0020for\u0020response\u0020using\u0020PHP\u0027s\u0020\u0060http_response_code\u0060", + "url": "classes/Leaf-Http-Headers.html#method_resetStatus" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020headers\u0020passed\u0020into\u0020application", + "url": "classes/Leaf-Http-Headers.html#method_all" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Return\u0020a\u0020particular\u0020header\u0020passed\u0020into\u0020app", + "url": "classes/Leaf-Http-Headers.html#method_get" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020new\u0020header", + "url": "classes/Leaf-Http-Headers.html#method_set" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Remove\u0020a\u0020header", + "url": "classes/Leaf-Http-Headers.html#method_remove" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Check\u0020if\u0020a\u0020header\u0020is\u0020present", + "url": "classes/Leaf-Http-Headers.html#method_has" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AcontentPlain\u0028\u0029", + "name": "contentPlain", + "summary": "Set\u0020the\u0020content\u002Dtype\u0020to\u0020plain\u0020text", + "url": "classes/Leaf-Http-Headers.html#method_contentPlain" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AcontentHtml\u0028\u0029", + "name": "contentHtml", + "summary": "Set\u0020the\u0020content\u002Dtype\u0020to\u0020html", + "url": "classes/Leaf-Http-Headers.html#method_contentHtml" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AcontentXml\u0028\u0029", + "name": "contentXml", + "summary": "Set\u0020the\u0020content\u002Dtype\u0020to\u0020xml", + "url": "classes/Leaf-Http-Headers.html#method_contentXml" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AcontentJSON\u0028\u0029", + "name": "contentJSON", + "summary": "Set\u0020the\u0020content\u002Dtype\u0020to\u0020json", + "url": "classes/Leaf-Http-Headers.html#method_contentJSON" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AaccessControl\u0028\u0029", + "name": "accessControl", + "summary": "Quickly\u0020set\u0020an\u0020access\u0020control\u0020header", + "url": "classes/Leaf-Http-Headers.html#method_accessControl" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003AfindHeaders\u0028\u0029", + "name": "findHeaders", + "summary": "", + "url": "classes/Leaf-Http-Headers.html#method_findHeaders" + }, { + "fqsen": "\\Leaf\\Http\\Headers\u003A\u003A\u0024httpCode", + "name": "httpCode", + "summary": "", + "url": "classes/Leaf-Http-Headers.html#property_httpCode" + }, { + "fqsen": "\\Leaf\\Http\\Request", + "name": "Request", + "summary": "Leaf\u0020HTTP\u0020Request\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D", + "url": "classes/Leaf-Http-Request.html" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Http-Request.html#method___construct" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetMethod\u0028\u0029", + "name": "getMethod", + "summary": "Get\u0020HTTP\u0020method", + "url": "classes/Leaf-Http-Request.html#method_getMethod" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetOriginalMethod\u0028\u0029", + "name": "getOriginalMethod", + "summary": "Get\u0020original\u0020method", + "url": "classes/Leaf-Http-Request.html#method_getOriginalMethod" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AmethodOverride\u0028\u0029", + "name": "methodOverride", + "summary": "Is\u0020this\u0020a\u0020method\u0020override\u0020request\u003F", + "url": "classes/Leaf-Http-Request.html#method_methodOverride" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AtypeIs\u0028\u0029", + "name": "typeIs", + "summary": "Check\u0020for\u0020request\u0020method\u0020type", + "url": "classes/Leaf-Http-Request.html#method_typeIs" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AhasHeader\u0028\u0029", + "name": "hasHeader", + "summary": "Find\u0020if\u0020request\u0020has\u0020a\u0020particular\u0020header", + "url": "classes/Leaf-Http-Request.html#method_hasHeader" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AisAjax\u0028\u0029", + "name": "isAjax", + "summary": "Is\u0020this\u0020an\u0020AJAX\u0020request\u003F", + "url": "classes/Leaf-Http-Request.html#method_isAjax" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AisXhr\u0028\u0029", + "name": "isXhr", + "summary": "Is\u0020this\u0020an\u0020XHR\u0020request\u003F\u0020\u0028alias\u0020of\u0020Leaf_Http_Request\u003A\u003AisAjax\u0029", + "url": "classes/Leaf-Http-Request.html#method_isXhr" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Ainput\u0028\u0029", + "name": "input", + "summary": "Access\u0020stream\u0020that\u0020allows\u0020you\u0020to\u0020read\u0020raw\u0020data\u0020from\u0020the\u0020request\u0020body.\u0020\u002A\u002AThis\u0020is\u0020not\u0020for\u0020form\u0020data\u002A\u002A", + "url": "classes/Leaf-Http-Request.html#method_input" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Atry\u0028\u0029", + "name": "try", + "summary": "Attempt\u0020to\u0020retrieve\u0020data\u0020from\u0020the\u0020request.", + "url": "classes/Leaf-Http-Request.html#method_try" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003ArawData\u0028\u0029", + "name": "rawData", + "summary": "Get\u0020raw\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_rawData" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AurlData\u0028\u0029", + "name": "urlData", + "summary": "Return\u0020only\u0020get\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_urlData" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aquery\u0028\u0029", + "name": "query", + "summary": "Return\u0020only\u0020get\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_query" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003ApostData\u0028\u0029", + "name": "postData", + "summary": "Return\u0020only\u0020get\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_postData" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Returns\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_get" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aparams\u0028\u0029", + "name": "params", + "summary": "Returns\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_params" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetOrDefault\u0028\u0029", + "name": "getOrDefault", + "summary": "Returns\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_getOrDefault" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Abody\u0028\u0029", + "name": "body", + "summary": "Get\u0020all\u0020the\u0020request\u0020data\u0020as\u0020an\u0020associative\u0020array", + "url": "classes/Leaf-Http-Request.html#method_body" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Get\u0020all\u0020files\u0020passed\u0020into\u0020the\u0020request.", + "url": "classes/Leaf-Http-Request.html#method_files" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Acookies\u0028\u0029", + "name": "cookies", + "summary": "Fetch\u0020COOKIE\u0020data", + "url": "classes/Leaf-Http-Request.html#method_cookies" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aflash\u0028\u0029", + "name": "flash", + "summary": "Display\u0020a\u0020flash\u0020message\u0020from\u0020the\u0020previous\u0020request", + "url": "classes/Leaf-Http-Request.html#method_flash" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AisFormData\u0028\u0029", + "name": "isFormData", + "summary": "Does\u0020the\u0020Request\u0020body\u0020contain\u0020parsed\u0020form\u0020data\u003F", + "url": "classes/Leaf-Http-Request.html#method_isFormData" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aheaders\u0028\u0029", + "name": "headers", + "summary": "Get\u0020Headers", + "url": "classes/Leaf-Http-Request.html#method_headers" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validate\u0020the\u0020request\u0020data", + "url": "classes/Leaf-Http-Request.html#method_validate" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003A\u0024validator", + "name": "validator", + "summary": "Internal\u0020instance\u0020of\u0020Leaf\u0020Form", + "url": "classes/Leaf-Http-Request.html#property_validator" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aauth\u0028\u0029", + "name": "auth", + "summary": "Return\u0020the\u0020auth\u0020instance", + "url": "classes/Leaf-Http-Request.html#method_auth" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Auser\u0028\u0029", + "name": "user", + "summary": "Get\u0020the\u0020authenticated\u0020user", + "url": "classes/Leaf-Http-Request.html#method_user" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "Get\u0020data\u0020passed\u0020from\u0020the\u0020previous\u0020middleware", + "url": "classes/Leaf-Http-Request.html#method_next" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003Aupload\u0028\u0029", + "name": "upload", + "summary": "Store\u0020a\u0020file\u0020from\u0020the\u0020request.", + "url": "classes/Leaf-Http-Request.html#method_upload" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AuploadAs\u0028\u0029", + "name": "uploadAs", + "summary": "Store\u0020a\u0020file\u0020from\u0020the\u0020request\u0020with\u0020a\u0020given\u0020name", + "url": "classes/Leaf-Http-Request.html#method_uploadAs" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetContentType\u0028\u0029", + "name": "getContentType", + "summary": "Get\u0020Content\u0020Type", + "url": "classes/Leaf-Http-Request.html#method_getContentType" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetMediaType\u0028\u0029", + "name": "getMediaType", + "summary": "Get\u0020Media\u0020Type\u0020\u0028type\/subtype\u0020within\u0020Content\u0020Type\u0020header\u0029", + "url": "classes/Leaf-Http-Request.html#method_getMediaType" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetMediaTypeParams\u0028\u0029", + "name": "getMediaTypeParams", + "summary": "Get\u0020Media\u0020Type\u0020Params", + "url": "classes/Leaf-Http-Request.html#method_getMediaTypeParams" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetContentCharset\u0028\u0029", + "name": "getContentCharset", + "summary": "Get\u0020Content\u0020Charset", + "url": "classes/Leaf-Http-Request.html#method_getContentCharset" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetContentLength\u0028\u0029", + "name": "getContentLength", + "summary": "Get\u0020Content\u002DLength", + "url": "classes/Leaf-Http-Request.html#method_getContentLength" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetHost\u0028\u0029", + "name": "getHost", + "summary": "Get\u0020Host", + "url": "classes/Leaf-Http-Request.html#method_getHost" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetHostWithPort\u0028\u0029", + "name": "getHostWithPort", + "summary": "Get\u0020Host\u0020with\u0020Port", + "url": "classes/Leaf-Http-Request.html#method_getHostWithPort" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetPort\u0028\u0029", + "name": "getPort", + "summary": "Get\u0020Port", + "url": "classes/Leaf-Http-Request.html#method_getPort" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetScheme\u0028\u0029", + "name": "getScheme", + "summary": "Get\u0020Scheme\u0020\u0028https\u0020or\u0020http\u0029", + "url": "classes/Leaf-Http-Request.html#method_getScheme" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetScriptName\u0028\u0029", + "name": "getScriptName", + "summary": "Get\u0020Script\u0020Name", + "url": "classes/Leaf-Http-Request.html#method_getScriptName" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetPhysicalPath\u0028\u0029", + "name": "getPhysicalPath", + "summary": "Get\u0020physical\u0020path", + "url": "classes/Leaf-Http-Request.html#method_getPhysicalPath" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "Get\u0020Path", + "url": "classes/Leaf-Http-Request.html#method_getPath" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetPathInfo\u0028\u0029", + "name": "getPathInfo", + "summary": "Get\u0020Path\u0020Info\u0020\u0028virtual\u0020path\u0029", + "url": "classes/Leaf-Http-Request.html#method_getPathInfo" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetQueryString\u0028\u0029", + "name": "getQueryString", + "summary": "Get\u0020query\u0020string", + "url": "classes/Leaf-Http-Request.html#method_getQueryString" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetUrl\u0028\u0029", + "name": "getUrl", + "summary": "Get\u0020URL\u0020\u0028scheme\u0020\u002B\u0020host\u0020\u005B\u0020\u002B\u0020port\u0020if\u0020non\u002Dstandard\u0020\u005D\u0029", + "url": "classes/Leaf-Http-Request.html#method_getUrl" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetFullUrl\u0028\u0029", + "name": "getFullUrl", + "summary": "Get\u0020Full\u0020URL\u0020\u0028scheme\u0020\u002B\u0020host\u0020\u005B\u0020\u002B\u0020port\u0020if\u0020non\u002Dstandard\u0020\u005D\u0020\u002B\u0020path\u0020\u002B\u0020query\u0020string\u0029", + "url": "classes/Leaf-Http-Request.html#method_getFullUrl" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetIp\u0028\u0029", + "name": "getIp", + "summary": "Get\u0020IP", + "url": "classes/Leaf-Http-Request.html#method_getIp" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetReferrer\u0028\u0029", + "name": "getReferrer", + "summary": "Get\u0020Referrer", + "url": "classes/Leaf-Http-Request.html#method_getReferrer" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetReferer\u0028\u0029", + "name": "getReferer", + "summary": "Get\u0020Referer\u0020\u0028for\u0020those\u0020who\u0020can\u0027t\u0020spell\u0029", + "url": "classes/Leaf-Http-Request.html#method_getReferer" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AgetUserAgent\u0028\u0029", + "name": "getUserAgent", + "summary": "Get\u0020User\u0020Agent", + "url": "classes/Leaf-Http-Request.html#method_getUserAgent" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/Leaf-Http-Request.html#property_errors" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_HEAD", + "name": "METHOD_HEAD", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_HEAD" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_GET", + "name": "METHOD_GET", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_GET" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_POST", + "name": "METHOD_POST", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_POST" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_PUT", + "name": "METHOD_PUT", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_PUT" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_PATCH", + "name": "METHOD_PATCH", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_PATCH" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_DELETE", + "name": "METHOD_DELETE", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_DELETE" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_OPTIONS", + "name": "METHOD_OPTIONS", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_OPTIONS" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003AMETHOD_OVERRIDE", + "name": "METHOD_OVERRIDE", + "summary": "", + "url": "classes/Leaf-Http-Request.html#constant_METHOD_OVERRIDE" + }, { + "fqsen": "\\Leaf\\Http\\Request\u003A\u003A\u0024formDataMediaTypes", + "name": "formDataMediaTypes", + "summary": "", + "url": "classes/Leaf-Http-Request.html#property_formDataMediaTypes" + }, { + "fqsen": "\\Leaf\\Http\\Response", + "name": "Response", + "summary": "Leaf\u0020HTTP\u0020Response\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nThis\u0020is\u0020a\u0020simple\u0020abstraction\u0020over\u0020top\u0020an\u0020HTTP\u0020response.\u0020This\nprovides\u0020methods\u0020to\u0020set\u0020the\u0020HTTP\u0020status,\u0020the\u0020HTTP\u0020headers,\nand\u0020the\u0020HTTP\u0020body.", + "url": "classes/Leaf-Http-Response.html" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AhttpVersion\u0028\u0029", + "name": "httpVersion", + "summary": "Get\/Set\u0020Http\u0020Version", + "url": "classes/Leaf-Http-Response.html#method_httpVersion" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Aecho\u0028\u0029", + "name": "echo", + "summary": "Alias\u0020of\u0020custom", + "url": "classes/Leaf-Http-Response.html#method_echo" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Acustom\u0028\u0029", + "name": "custom", + "summary": "Output\u0020any\u0020text", + "url": "classes/Leaf-Http-Response.html#method_custom" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Aplain\u0028\u0029", + "name": "plain", + "summary": "Output\u0020plain\u0020text", + "url": "classes/Leaf-Http-Response.html#method_plain" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Axml\u0028\u0029", + "name": "xml", + "summary": "Output\u0020xml\u0020text", + "url": "classes/Leaf-Http-Response.html#method_xml" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Ajs\u0028\u0029", + "name": "js", + "summary": "Output\u0020js\u0020script", + "url": "classes/Leaf-Http-Response.html#method_js" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Ajson\u0028\u0029", + "name": "json", + "summary": "Output\u0020json\u0020encoded\u0020data\u0020with\u0020an\u0020HTTP\u0020code\/message", + "url": "classes/Leaf-Http-Response.html#method_json" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Apage\u0028\u0029", + "name": "page", + "summary": "Output\u0020data\u0020from\u0020an\u0020HTML\u0020or\u0020PHP\u0020file", + "url": "classes/Leaf-Http-Response.html#method_page" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Amarkup\u0028\u0029", + "name": "markup", + "summary": "Output\u0020some\u0020html\/PHP", + "url": "classes/Leaf-Http-Response.html#method_markup" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Adownload\u0028\u0029", + "name": "download", + "summary": "Output\u0020plain\u0020text", + "url": "classes/Leaf-Http-Response.html#method_download" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AnoContent\u0028\u0029", + "name": "noContent", + "summary": "The\u0020HTTP\u0020204\u0020No\u0020Content\u0020success\u0020status\u0020response\u0020code\u0020indicates\nthat\u0020a\u0020request\u0020has\u0020succeeded,\u0020but\u0020that\u0020the\u0020client\u0020doesn\u0027t\nneed\u0020to\u0020navigate\u0020away\u0020from\u0020its\u0020current\u0020page.", + "url": "classes/Leaf-Http-Response.html#method_noContent" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Aview\u0028\u0029", + "name": "view", + "summary": "Render\u0020a\u0020view\u0020file\u0020if\u0020a\u0020view\u0020engine\u0020is\u0020available", + "url": "classes/Leaf-Http-Response.html#method_view" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020a\u0020view\u0020file\u0020if\u0020a\u0020view\u0020engine\u0020is\u0020available", + "url": "classes/Leaf-Http-Response.html#method_render" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Ainertia\u0028\u0029", + "name": "inertia", + "summary": "Render\u0020an\u0020inertia\u0020view\u0020file\u0020if\u0020inertia\u0020is\u0020installed", + "url": "classes/Leaf-Http-Response.html#method_inertia" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Aexit\u0028\u0029", + "name": "exit", + "summary": "Output\u0020some\u0020data\u0020and\u0020break\u0020the\u0020application", + "url": "classes/Leaf-Http-Response.html#method_exit" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Adie\u0028\u0029", + "name": "die", + "summary": "Output\u0020some\u0020data\u0020and\u0020break\u0020the\u0020application", + "url": "classes/Leaf-Http-Response.html#method_die" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Aredirect\u0028\u0029", + "name": "redirect", + "summary": "Redirect", + "url": "classes/Leaf-Http-Response.html#method_redirect" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "Pass\u0020data\u0020to\u0020the\u0020route\u0020handler", + "url": "classes/Leaf-Http-Response.html#method_next" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003A\u0024status", + "name": "status", + "summary": "", + "url": "classes/Leaf-Http-Response.html#property_status" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AwithHeader\u0028\u0029", + "name": "withHeader", + "summary": "set\u0020header", + "url": "classes/Leaf-Http-Response.html#method_withHeader" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AwithCookie\u0028\u0029", + "name": "withCookie", + "summary": "Shorthand\u0020method\u0020of\u0020setting\u0020a\u0020cookie\u0020\u002B\u0020value\u0020\u002B\u0020expire\u0020time", + "url": "classes/Leaf-Http-Response.html#method_withCookie" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AwithoutCookie\u0028\u0029", + "name": "withoutCookie", + "summary": "Delete\u0020cookie", + "url": "classes/Leaf-Http-Response.html#method_withoutCookie" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AwithFlash\u0028\u0029", + "name": "withFlash", + "summary": "Flash\u0020a\u0020piece\u0020of\u0020data\u0020to\u0020the\u0020session.", + "url": "classes/Leaf-Http-Response.html#method_withFlash" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AgetMessageForCode\u0028\u0029", + "name": "getMessageForCode", + "summary": "Get\u0020message\u0020for\u0020HTTP\u0020status\u0020code", + "url": "classes/Leaf-Http-Response.html#method_getMessageForCode" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AsendHeaders\u0028\u0029", + "name": "sendHeaders", + "summary": "Sends\u0020HTTP\u0020headers.", + "url": "classes/Leaf-Http-Response.html#method_sendHeaders" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AsendCookies\u0028\u0029", + "name": "sendCookies", + "summary": "Send\u0020cookies", + "url": "classes/Leaf-Http-Response.html#method_sendCookies" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AsendContent\u0028\u0029", + "name": "sendContent", + "summary": "Sends\u0020content\u0020for\u0020the\u0020current\u0020web\u0020response.", + "url": "classes/Leaf-Http-Response.html#method_sendContent" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020the\u0020Http\u0020headers\u0020and\u0020content", + "url": "classes/Leaf-Http-Response.html#method_send" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003AcloseOutputBuffers\u0028\u0029", + "name": "closeOutputBuffers", + "summary": "Cleans\u0020or\u0020flushes\u0020output\u0020buffers\u0020up\u0020to\u0020target\u0020level.", + "url": "classes/Leaf-Http-Response.html#method_closeOutputBuffers" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003A\u0024headers", + "name": "headers", + "summary": "", + "url": "classes/Leaf-Http-Response.html#property_headers" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003A\u0024cookies", + "name": "cookies", + "summary": "", + "url": "classes/Leaf-Http-Response.html#property_cookies" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003A\u0024content", + "name": "content", + "summary": "", + "url": "classes/Leaf-Http-Response.html#property_content" + }, { + "fqsen": "\\Leaf\\Http\\Response\u003A\u003A\u0024version", + "name": "version", + "summary": "", + "url": "classes/Leaf-Http-Response.html#property_version" + }, { + "fqsen": "\\Leaf\\Http\\Status", + "name": "Status", + "summary": "Leaf\u0020Status\u0020Code\u0020Helper", + "url": "classes/Leaf-Http-Status.html" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_CONTINUE", + "name": "HTTP_CONTINUE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_CONTINUE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_SWITCHING_PROTOCOLS", + "name": "HTTP_SWITCHING_PROTOCOLS", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_SWITCHING_PROTOCOLS" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PROCESSING", + "name": "HTTP_PROCESSING", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PROCESSING" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_EARLY_HINTS", + "name": "HTTP_EARLY_HINTS", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_EARLY_HINTS" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_OK", + "name": "HTTP_OK", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_OK" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_CREATED", + "name": "HTTP_CREATED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_CREATED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_ACCEPTED", + "name": "HTTP_ACCEPTED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_ACCEPTED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NON_AUTHORITATIVE_INFORMATION", + "name": "HTTP_NON_AUTHORITATIVE_INFORMATION", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NON_AUTHORITATIVE_INFORMATION" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NO_CONTENT", + "name": "HTTP_NO_CONTENT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NO_CONTENT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_RESET_CONTENT", + "name": "HTTP_RESET_CONTENT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_RESET_CONTENT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PARTIAL_CONTENT", + "name": "HTTP_PARTIAL_CONTENT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PARTIAL_CONTENT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_MULTI_STATUS", + "name": "HTTP_MULTI_STATUS", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_MULTI_STATUS" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_ALREADY_REPORTED", + "name": "HTTP_ALREADY_REPORTED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_ALREADY_REPORTED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_IM_USED", + "name": "HTTP_IM_USED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_IM_USED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_MULTIPLE_CHOICES", + "name": "HTTP_MULTIPLE_CHOICES", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_MULTIPLE_CHOICES" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_MOVED_PERMANENTLY", + "name": "HTTP_MOVED_PERMANENTLY", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_MOVED_PERMANENTLY" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_FOUND", + "name": "HTTP_FOUND", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_FOUND" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_SEE_OTHER", + "name": "HTTP_SEE_OTHER", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_SEE_OTHER" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NOT_MODIFIED", + "name": "HTTP_NOT_MODIFIED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NOT_MODIFIED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_USE_PROXY", + "name": "HTTP_USE_PROXY", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_USE_PROXY" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_RESERVED", + "name": "HTTP_RESERVED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_RESERVED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_TEMPORARY_REDIRECT", + "name": "HTTP_TEMPORARY_REDIRECT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_TEMPORARY_REDIRECT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PERMANENTLY_REDIRECT", + "name": "HTTP_PERMANENTLY_REDIRECT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PERMANENTLY_REDIRECT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_BAD_REQUEST", + "name": "HTTP_BAD_REQUEST", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_BAD_REQUEST" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_UNAUTHORIZED", + "name": "HTTP_UNAUTHORIZED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_UNAUTHORIZED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PAYMENT_REQUIRED", + "name": "HTTP_PAYMENT_REQUIRED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PAYMENT_REQUIRED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_FORBIDDEN", + "name": "HTTP_FORBIDDEN", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_FORBIDDEN" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NOT_FOUND", + "name": "HTTP_NOT_FOUND", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NOT_FOUND" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_METHOD_NOT_ALLOWED", + "name": "HTTP_METHOD_NOT_ALLOWED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_METHOD_NOT_ALLOWED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NOT_ACCEPTABLE", + "name": "HTTP_NOT_ACCEPTABLE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NOT_ACCEPTABLE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PROXY_AUTHENTICATION_REQUIRED", + "name": "HTTP_PROXY_AUTHENTICATION_REQUIRED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PROXY_AUTHENTICATION_REQUIRED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_REQUEST_TIMEOUT", + "name": "HTTP_REQUEST_TIMEOUT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_REQUEST_TIMEOUT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_CONFLICT", + "name": "HTTP_CONFLICT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_CONFLICT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_GONE", + "name": "HTTP_GONE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_GONE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_LENGTH_REQUIRED", + "name": "HTTP_LENGTH_REQUIRED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_LENGTH_REQUIRED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PRECONDITION_FAILED", + "name": "HTTP_PRECONDITION_FAILED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PRECONDITION_FAILED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_REQUEST_ENTITY_TOO_LARGE", + "name": "HTTP_REQUEST_ENTITY_TOO_LARGE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_REQUEST_ENTITY_TOO_LARGE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_REQUEST_URI_TOO_LONG", + "name": "HTTP_REQUEST_URI_TOO_LONG", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_REQUEST_URI_TOO_LONG" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_UNSUPPORTED_MEDIA_TYPE", + "name": "HTTP_UNSUPPORTED_MEDIA_TYPE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_UNSUPPORTED_MEDIA_TYPE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_REQUESTED_RANGE_NOT_SATISFIABLE", + "name": "HTTP_REQUESTED_RANGE_NOT_SATISFIABLE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_REQUESTED_RANGE_NOT_SATISFIABLE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_EXPECTATION_FAILED", + "name": "HTTP_EXPECTATION_FAILED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_EXPECTATION_FAILED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_I_AM_A_TEAPOT", + "name": "HTTP_I_AM_A_TEAPOT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_I_AM_A_TEAPOT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_MISDIRECTED_REQUEST", + "name": "HTTP_MISDIRECTED_REQUEST", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_MISDIRECTED_REQUEST" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_UNPROCESSABLE_ENTITY", + "name": "HTTP_UNPROCESSABLE_ENTITY", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_UNPROCESSABLE_ENTITY" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_LOCKED", + "name": "HTTP_LOCKED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_LOCKED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_FAILED_DEPENDENCY", + "name": "HTTP_FAILED_DEPENDENCY", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_FAILED_DEPENDENCY" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_TOO_EARLY", + "name": "HTTP_TOO_EARLY", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_TOO_EARLY" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_UPGRADE_REQUIRED", + "name": "HTTP_UPGRADE_REQUIRED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_UPGRADE_REQUIRED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_PRECONDITION_REQUIRED", + "name": "HTTP_PRECONDITION_REQUIRED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_PRECONDITION_REQUIRED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_TOO_MANY_REQUESTS", + "name": "HTTP_TOO_MANY_REQUESTS", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_TOO_MANY_REQUESTS" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_REQUEST_HEADER_FIELDS_TOO_LARGE", + "name": "HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_UNAVAILABLE_FOR_LEGAL_REASONS", + "name": "HTTP_UNAVAILABLE_FOR_LEGAL_REASONS", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_UNAVAILABLE_FOR_LEGAL_REASONS" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_INTERNAL_SERVER_ERROR", + "name": "HTTP_INTERNAL_SERVER_ERROR", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_INTERNAL_SERVER_ERROR" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NOT_IMPLEMENTED", + "name": "HTTP_NOT_IMPLEMENTED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NOT_IMPLEMENTED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_BAD_GATEWAY", + "name": "HTTP_BAD_GATEWAY", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_BAD_GATEWAY" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_SERVICE_UNAVAILABLE", + "name": "HTTP_SERVICE_UNAVAILABLE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_SERVICE_UNAVAILABLE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_GATEWAY_TIMEOUT", + "name": "HTTP_GATEWAY_TIMEOUT", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_GATEWAY_TIMEOUT" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_VERSION_NOT_SUPPORTED", + "name": "HTTP_VERSION_NOT_SUPPORTED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_VERSION_NOT_SUPPORTED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL", + "name": "HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_VARIANT_ALSO_NEGOTIATES_EXPERIMENTAL" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_INSUFFICIENT_STORAGE", + "name": "HTTP_INSUFFICIENT_STORAGE", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_INSUFFICIENT_STORAGE" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_LOOP_DETECTED", + "name": "HTTP_LOOP_DETECTED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_LOOP_DETECTED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NOT_EXTENDED", + "name": "HTTP_NOT_EXTENDED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NOT_EXTENDED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003AHTTP_NETWORK_AUTHENTICATION_REQUIRED", + "name": "HTTP_NETWORK_AUTHENTICATION_REQUIRED", + "summary": "", + "url": "classes/Leaf-Http-Status.html#constant_HTTP_NETWORK_AUTHENTICATION_REQUIRED" + }, { + "fqsen": "\\Leaf\\Http\\Status\u003A\u003A\u0024statusTexts", + "name": "statusTexts", + "summary": "Status\u0020codes\u0020translation\u0020table.", + "url": "classes/Leaf-Http-Status.html#property_statusTexts" + }, { + "fqsen": "\\inertia\u0028\u0029", + "name": "inertia", + "summary": "Render\u0020Inertia\u0020page", + "url": "namespaces/default.html#function_inertia" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\BundleDetector", + "name": "BundleDetector", + "summary": "", + "url": "classes/Leaf-Inertia-Ssr-BundleDetector.html" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\BundleDetector\u003A\u003Adetect\u0028\u0029", + "name": "detect", + "summary": "", + "url": "classes/Leaf-Inertia-Ssr-BundleDetector.html#method_detect" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\Gateway", + "name": "Gateway", + "summary": "", + "url": "classes/Leaf-Inertia-Ssr-Gateway.html" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\Gateway\u003A\u003Adispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020the\u0020Inertia\u0020page\u0020to\u0020the\u0020Server\u0020Side\u0020Rendering\u0020engine.", + "url": "classes/Leaf-Inertia-Ssr-Gateway.html#method_dispatch" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\Response", + "name": "Response", + "summary": "", + "url": "classes/Leaf-Inertia-Ssr-Response.html" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\Response\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Prepare\u0020the\u0020Inertia\u0020Server\u0020Side\u0020Rendering\u0020\u0028SSR\u0029\u0020response.", + "url": "classes/Leaf-Inertia-Ssr-Response.html#method___construct" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\Response\u003A\u003A\u0024head", + "name": "head", + "summary": "", + "url": "classes/Leaf-Inertia-Ssr-Response.html#property_head" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr\\Response\u003A\u003A\u0024body", + "name": "body", + "summary": "", + "url": "classes/Leaf-Inertia-Ssr-Response.html#property_body" + }, { + "fqsen": "\\Leaf\\Inertia", + "name": "Inertia", + "summary": "Inertia\u0020Adapter\u0020for\u0020Leaf\n\u002D\u002D\u002D\u002D\nThis\u0020adapter\u0020allows\u0020you\u0020to\u0020use\u0020InertiaJS\u0020with\u0020Leaf.", + "url": "classes/Leaf-Inertia.html" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020InertiaJS\u0020view", + "url": "classes/Leaf-Inertia.html#method_render" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003AsetRootView\u0028\u0029", + "name": "setRootView", + "summary": "Set\u0020root\u0020view", + "url": "classes/Leaf-Inertia.html#method_setRootView" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003AgetSharedProps\u0028\u0029", + "name": "getSharedProps", + "summary": "Get\u0020shared\u0020props", + "url": "classes/Leaf-Inertia.html#method_getSharedProps" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003AgetSharedPageInfo\u0028\u0029", + "name": "getSharedPageInfo", + "summary": "Get\u0020shared\u0020page\u0020info", + "url": "classes/Leaf-Inertia.html#method_getSharedPageInfo" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003AgetVersion\u0028\u0029", + "name": "getVersion", + "summary": "Get\u0020version", + "url": "classes/Leaf-Inertia.html#method_getVersion" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003AisBladeProject\u0028\u0029", + "name": "isBladeProject", + "summary": "", + "url": "classes/Leaf-Inertia.html#method_isBladeProject" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003AresolvePropertyInstances\u0028\u0029", + "name": "resolvePropertyInstances", + "summary": "Resolve\u0020all\u0020necessary\u0020class\u0020instances\u0020in\u0020the\u0020given\u0020props.", + "url": "classes/Leaf-Inertia.html#method_resolvePropertyInstances" + }, { + "fqsen": "\\Leaf\\Inertia\u003A\u003A\u0024rootView", + "name": "rootView", + "summary": "Root\u0020view", + "url": "classes/Leaf-Inertia.html#property_rootView" + }, { + "fqsen": "\\Leaf\\App", + "name": "App", + "summary": "Leaf\u0020PHP\u0020Framework\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nThe\u0020easiest\u0020way\u0020to\u0020build\u0020simple\u0020but\u0020powerful\u0020apps\u0020and\u0020APIs\u0020quickly.", + "url": "classes/Leaf-App.html" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor", + "url": "classes/Leaf-App.html#method___construct" + }, { + "fqsen": "\\Leaf\\App\u003A\u003AloadConfig\u0028\u0029", + "name": "loadConfig", + "summary": "", + "url": "classes/Leaf-App.html#method_loadConfig" + }, { + "fqsen": "\\Leaf\\App\u003A\u003AsetupErrorHandler\u0028\u0029", + "name": "setupErrorHandler", + "summary": "", + "url": "classes/Leaf-App.html#method_setupErrorHandler" + }, { + "fqsen": "\\Leaf\\App\u003A\u003AsetErrorHandler\u0028\u0029", + "name": "setErrorHandler", + "summary": "Set\u0020a\u0020custom\u0020error\u0020screen.", + "url": "classes/Leaf-App.html#method_setErrorHandler" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "This\u0020method\u0020adds\u0020a\u0020method\u0020to\u0020the\u0020global\u0020leaf\u0020instance\nRegister\u0020a\u0020method\u0020and\u0020use\u0020it\u0020globally\u0020on\u0020the\u0020Leaf\u0020Object", + "url": "classes/Leaf-App.html#method_register" + }, { + "fqsen": "\\Leaf\\App\u003A\u003AsetupDefaultContainer\u0028\u0029", + "name": "setupDefaultContainer", + "summary": "", + "url": "classes/Leaf-App.html#method_setupDefaultContainer" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "", + "url": "classes/Leaf-App.html#method___get" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "", + "url": "classes/Leaf-App.html#method___set" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "", + "url": "classes/Leaf-App.html#method___isset" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A__unset\u0028\u0029", + "name": "__unset", + "summary": "", + "url": "classes/Leaf-App.html#method___unset" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Leaf-App.html#method___call" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "Configure\u0020Leaf\u0020Settings", + "url": "classes/Leaf-App.html#method_config" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aattach\u0028\u0029", + "name": "attach", + "summary": "Run\u0020code\u0020that\u0020can\u0020change\u0020the\u0020behaviour\u0020of\u0020Leaf\n\u002AUsually\u0020used\u0020by\u0020library\u0020creators\u002A", + "url": "classes/Leaf-App.html#method_attach" + }, { + "fqsen": "\\Leaf\\App\u003A\u003AattachView\u0028\u0029", + "name": "attachView", + "summary": "Attach\u0020a\u0020view\u0020engine\u0020to\u0020Leaf", + "url": "classes/Leaf-App.html#method_attachView" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Acors\u0028\u0029", + "name": "cors", + "summary": "Evade\u0020CORS\u0020errors", + "url": "classes/Leaf-App.html#method_cors" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Avite\u0028\u0029", + "name": "vite", + "summary": "Tune\u0020vite\u0020to\u0020work\u0020without\u0020Leaf\u0020MVC", + "url": "classes/Leaf-App.html#method_vite" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Acsrf\u0028\u0029", + "name": "csrf", + "summary": "Add\u0020CSRF\u0020protection\u0020to\u0020your\u0020app", + "url": "classes/Leaf-App.html#method_csrf" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aws\u0028\u0029", + "name": "ws", + "summary": "Create\u0020a\u0020route\u0020handled\u0020by\u0020websocket\u0020\u0028requires\u0020Eien\u0020module\u0029", + "url": "classes/Leaf-App.html#method_ws" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Alogger\u0028\u0029", + "name": "logger", + "summary": "Get\u0020application\u0020log", + "url": "classes/Leaf-App.html#method_logger" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aheaders\u0028\u0029", + "name": "headers", + "summary": "Get\u0020the\u0020Request\u0020Headers", + "url": "classes/Leaf-App.html#method_headers" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Arequest\u0028\u0029", + "name": "request", + "summary": "Get\u0020the\u0020Request\u0020object", + "url": "classes/Leaf-App.html#method_request" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aresponse\u0028\u0029", + "name": "response", + "summary": "Get\u0020the\u0020Response\u0020object", + "url": "classes/Leaf-App.html#method_response" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aroot\u0028\u0029", + "name": "root", + "summary": "Get\u0020the\u0020absolute\u0020path\u0020to\u0020this\u0020Leaf\u0020application\u0027s\u0020root\u0020directory", + "url": "classes/Leaf-App.html#method_root" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Ahalt\u0028\u0029", + "name": "halt", + "summary": "Halt", + "url": "classes/Leaf-App.html#method_halt" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Ascript\u0028\u0029", + "name": "script", + "summary": "Create\u0020mode\u002Dspecific\u0020code", + "url": "classes/Leaf-App.html#method_script" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Aenvironment\u0028\u0029", + "name": "environment", + "summary": "Run\u0020mode\u002Dspecific\u0020code.\u0020Unlike\u0020script,\u0020this\u0020runs\u0020immediately.", + "url": "classes/Leaf-App.html#method_environment" + }, { + "fqsen": "\\Leaf\\App\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Dispatch\u0020your\u0020application\u0020routes", + "url": "classes/Leaf-App.html#method_run" + }, { + "fqsen": "\\Leaf\\App\u003A\u003A\u0024errorHandler", + "name": "errorHandler", + "summary": "Callable\u0020to\u0020be\u0020invoked\u0020on\u0020application\u0020error", + "url": "classes/Leaf-App.html#property_errorHandler" + }, { + "fqsen": "\\Leaf\\Config", + "name": "Config", + "summary": "Leaf\u0020Config\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nConfigure\u0020your\u0020leaf\u0020app", + "url": "classes/Leaf-Config.html" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020configuration\u0020value\u0028s\u0029", + "url": "classes/Leaf-Config.html#method_set" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003AattachView\u0028\u0029", + "name": "attachView", + "summary": "Attach\u0020view\u0020engine\u0020to\u0020Leaf\u0020view", + "url": "classes/Leaf-Config.html#method_attachView" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Aview\u0028\u0029", + "name": "view", + "summary": "Return\u0020an\u0020attached\u0020view\u0020engine", + "url": "classes/Leaf-Config.html#method_view" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Grab\u0020context", + "url": "classes/Leaf-Config.html#method_get" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003AgetStatic\u0028\u0029", + "name": "getStatic", + "summary": "Static\u0020getter", + "url": "classes/Leaf-Config.html#method_getStatic" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003AisInvokable\u0028\u0029", + "name": "isInvokable", + "summary": "Get\u0020data\u0020value\u0020with\u0020key", + "url": "classes/Leaf-Config.html#method_isInvokable" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "IteratorAggregate", + "url": "classes/Leaf-Config.html#method_getIterator" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Asingleton\u0028\u0029", + "name": "singleton", + "summary": "Ensure\u0020a\u0020value\u0020or\u0020object\u0020will\u0020remain\u0020globally\u0020unique", + "url": "classes/Leaf-Config.html#method_singleton" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Aprotect\u0028\u0029", + "name": "protect", + "summary": "Protect\u0020closure\u0020from\u0020being\u0020directly\u0020invoked", + "url": "classes/Leaf-Config.html#method_protect" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003AaddScript\u0028\u0029", + "name": "addScript", + "summary": "Add\u0020a\u0020script\u0020to\u0020attach\u0020to\u0020the\u0020leaf\u0020instance", + "url": "classes/Leaf-Config.html#method_addScript" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Fetch\u0020set\u0020data\u0020keys", + "url": "classes/Leaf-Config.html#method_keys" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Does\u0020this\u0020set\u0020contain\u0020a\u0020key\u003F", + "url": "classes/Leaf-Config.html#method_has" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Remove\u0020value\u0020with\u0020key\u0020from\u0020this\u0020set", + "url": "classes/Leaf-Config.html#method_remove" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Countable", + "url": "classes/Leaf-Config.html#method_count" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Clear\u0020all\u0020values", + "url": "classes/Leaf-Config.html#method_reset" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003AgetDiIndex\u0028\u0029", + "name": "getDiIndex", + "summary": "", + "url": "classes/Leaf-Config.html#method_getDiIndex" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003A__callstatic\u0028\u0029", + "name": "__callstatic", + "summary": "Property\u0020Overloading", + "url": "classes/Leaf-Config.html#method___callstatic" + }, { + "fqsen": "\\Leaf\\Config\u003A\u003A\u0024context", + "name": "context", + "summary": "Leaf\u0020application\u0020context", + "url": "classes/Leaf-Config.html#property_context" + }, { + "fqsen": "\\app\u0028\u0029", + "name": "app", + "summary": "Return\u0020the\u0020Leaf\u0020instance", + "url": "namespaces/default.html#function_app" + }, { + "fqsen": "\\_env\u0028\u0029", + "name": "_env", + "summary": "Gets\u0020the\u0020value\u0020of\u0020an\u0020environment\u0020variable.", + "url": "namespaces/default.html#function__env" + }, { + "fqsen": "\\Leaf\\Router", + "name": "Router", + "summary": "Leaf\u0020Router\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nSuper\u0020simple\u0020and\u0020powerful\u0020routing\u0020with\u0020Leaf", + "url": "classes/Leaf-Router.html" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aset404\u0028\u0029", + "name": "set404", + "summary": "Set\u0020the\u0020404\u0020handling\u0020function.", + "url": "classes/Leaf-Router.html#method_set404" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AsetDown\u0028\u0029", + "name": "setDown", + "summary": "Set\u0020a\u0020custom\u0020maintenance\u0020mode\u0020callback.", + "url": "classes/Leaf-Router.html#method_setDown" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Amount\u0028\u0029", + "name": "mount", + "summary": "Mounts\u0020a\u0020collection\u0020of\u0020callbacks\u0020onto\u0020a\u0020base\u0020route.", + "url": "classes/Leaf-Router.html#method_mount" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Agroup\u0028\u0029", + "name": "group", + "summary": "Alias\u0020for\u0020mount", + "url": "classes/Leaf-Router.html#method_group" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Store\u0020a\u0020route\u0020and\u0020it\u0027s\u0020handler", + "url": "classes/Leaf-Router.html#method_match" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Add\u0020a\u0020route\u0020with\u0020all\u0020available\u0020HTTP\u0020methods", + "url": "classes/Leaf-Router.html#method_all" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Add\u0020a\u0020route\u0020with\u0020GET\u0020method", + "url": "classes/Leaf-Router.html#method_get" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Apost\u0028\u0029", + "name": "post", + "summary": "Add\u0020a\u0020route\u0020with\u0020POST\u0020method", + "url": "classes/Leaf-Router.html#method_post" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aput\u0028\u0029", + "name": "put", + "summary": "Add\u0020a\u0020route\u0020with\u0020PUT\u0020method", + "url": "classes/Leaf-Router.html#method_put" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Apatch\u0028\u0029", + "name": "patch", + "summary": "Add\u0020a\u0020route\u0020with\u0020PATCH\u0020method", + "url": "classes/Leaf-Router.html#method_patch" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aoptions\u0028\u0029", + "name": "options", + "summary": "Add\u0020a\u0020route\u0020with\u0020OPTIONS\u0020method", + "url": "classes/Leaf-Router.html#method_options" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Add\u0020a\u0020route\u0020with\u0020DELETE\u0020method", + "url": "classes/Leaf-Router.html#method_delete" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Ahead\u0028\u0029", + "name": "head", + "summary": "Add\u0020a\u0020route\u0020with\u0020HEAD\u0020method", + "url": "classes/Leaf-Router.html#method_head" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aredirect\u0028\u0029", + "name": "redirect", + "summary": "Add\u0020a\u0020route\u0020that\u0020sends\u0020an\u0020HTTP\u0020redirect", + "url": "classes/Leaf-Router.html#method_redirect" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aview\u0028\u0029", + "name": "view", + "summary": "Add\u0020a\u0020route\u0020that\u0020renders\u0020a\u0020view", + "url": "classes/Leaf-Router.html#method_view" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Ainertia\u0028\u0029", + "name": "inertia", + "summary": "Add\u0020a\u0020route\u0020that\u0020renders\u0020an\u0020inertia\u0020view", + "url": "classes/Leaf-Router.html#method_inertia" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aresource\u0028\u0029", + "name": "resource", + "summary": "Create\u0020a\u0020resource\u0020route\u0020for\u0020using\u0020controllers.", + "url": "classes/Leaf-Router.html#method_resource" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AapiResource\u0028\u0029", + "name": "apiResource", + "summary": "Create\u0020a\u0020resource\u0020route\u0020for\u0020using\u0020controllers\u0020without\u0020the\u0020create\u0020and\u0020edit\u0020actions.", + "url": "classes/Leaf-Router.html#method_apiResource" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Redirect\u0020to\u0020another\u0020route", + "url": "classes/Leaf-Router.html#method_push" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Aroute\u0028\u0029", + "name": "route", + "summary": "Get\u0020route\u0020url\u0020by\u0020defined\u0020route\u0020name", + "url": "classes/Leaf-Router.html#method_route" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AhandleUrl\u0028\u0029", + "name": "handleUrl", + "summary": "Force\u0020call\u0020the\u0020Leaf\u0020URL\u0020handler", + "url": "classes/Leaf-Router.html#method_handleUrl" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024routes", + "name": "routes", + "summary": "All\u0020added\u0020routes\u0020and\u0020their\u0020handlers", + "url": "classes/Leaf-Router.html#property_routes" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AsetNamespace\u0028\u0029", + "name": "setNamespace", + "summary": "Set\u0020a\u0020global\u0020namespace\u0020for\u0020your\u0020handlers", + "url": "classes/Leaf-Router.html#method_setNamespace" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "Get\u0020the\u0020global\u0020handler\u0020namespace.", + "url": "classes/Leaf-Router.html#method_getNamespace" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AmapHandler\u0028\u0029", + "name": "mapHandler", + "summary": "Map\u0020handler\u0020and\u0020options", + "url": "classes/Leaf-Router.html#method_mapHandler" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Ahook\u0028\u0029", + "name": "hook", + "summary": "Add\u0020a\u0020router\u0020hook", + "url": "classes/Leaf-Router.html#method_hook" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AcallHook\u0028\u0029", + "name": "callHook", + "summary": "Call\u0020a\u0020router\u0020hook", + "url": "classes/Leaf-Router.html#method_callHook" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Ause\u0028\u0029", + "name": "use", + "summary": "Add\u0020middleware", + "url": "classes/Leaf-Router.html#method_use" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AregisterMiddleware\u0028\u0029", + "name": "registerMiddleware", + "summary": "Register\u0020a\u0020middleware\u0020in\u0020your\u0020Leaf\u0020application\u0020by\u0020name", + "url": "classes/Leaf-Router.html#method_registerMiddleware" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AgetBasePath\u0028\u0029", + "name": "getBasePath", + "summary": "Return\u0020server\u0020base\u0020Path,\u0020and\u0020define\u0020it\u0020if\u0020isn\u0027t\u0020defined.", + "url": "classes/Leaf-Router.html#method_getBasePath" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AsetBasePath\u0028\u0029", + "name": "setBasePath", + "summary": "Explicilty\u0020sets\u0020the\u0020server\u0020base\u0020path.\u0020To\u0020be\u0020used\u0020when\u0020your\u0020entry\u0020script\u0020path\u0020differs\u0020from\u0020your\u0020entry\u0020URLs.", + "url": "classes/Leaf-Router.html#method_setBasePath" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AgetCurrentUri\u0028\u0029", + "name": "getCurrentUri", + "summary": "Define\u0020the\u0020current\u0020relative\u0020URI.", + "url": "classes/Leaf-Router.html#method_getCurrentUri" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AgetRoute\u0028\u0029", + "name": "getRoute", + "summary": "Get\u0020route\u0020info\u0020of\u0020the\u0020current\u0020route", + "url": "classes/Leaf-Router.html#method_getRoute" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003AfindRoute\u0028\u0029", + "name": "findRoute", + "summary": "Find\u0020the\u0020current\u0020route", + "url": "classes/Leaf-Router.html#method_findRoute" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Dispatch\u0020your\u0020application\u0020routes", + "url": "classes/Leaf-Router.html#method_run" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Handle\u0020a\u0020set\u0020of\u0020routes\u003A\u0020if\u0020a\u0020match\u0020is\u0020found,\u0020execute\u0020the\u0020relating\u0020handling\u0020function.", + "url": "classes/Leaf-Router.html#method_handle" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003Ainvoke\u0028\u0029", + "name": "invoke", + "summary": "", + "url": "classes/Leaf-Router.html#method_invoke" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024notFoundHandler", + "name": "notFoundHandler", + "summary": "Callable\u0020to\u0020be\u0020invoked\u0020if\u0020no\u0020matching\u0020routes\u0020are\u0020found", + "url": "classes/Leaf-Router.html#property_notFoundHandler" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024downHandler", + "name": "downHandler", + "summary": "Callable\u0020to\u0020be\u0020invoked\u0020if\u0020app\u0020is\u0020down", + "url": "classes/Leaf-Router.html#property_downHandler" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024hooks", + "name": "hooks", + "summary": "\u0027Middleware\u0027\u0020to\u0020run\u0020at\u0020specific\u0020times", + "url": "classes/Leaf-Router.html#property_hooks" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024middleware", + "name": "middleware", + "summary": "All\u0020middleware\u0020that\u0020should\u0020be\u0020run", + "url": "classes/Leaf-Router.html#property_middleware" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024namedMiddleware", + "name": "namedMiddleware", + "summary": "Named\u0020middleware", + "url": "classes/Leaf-Router.html#property_namedMiddleware" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024appRoutes", + "name": "appRoutes", + "summary": "Sorted\u0020list\u0020of\u0020routes\u0020and\u0020their\u0020handlers", + "url": "classes/Leaf-Router.html#property_appRoutes" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024namedRoutes", + "name": "namedRoutes", + "summary": "All\u0020named\u0020routes", + "url": "classes/Leaf-Router.html#property_namedRoutes" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024routeGroupMiddleware", + "name": "routeGroupMiddleware", + "summary": "Route\u0020based\u0020middleware", + "url": "classes/Leaf-Router.html#property_routeGroupMiddleware" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024groupRoute", + "name": "groupRoute", + "summary": "Current\u0020group\u0020base\u0020path", + "url": "classes/Leaf-Router.html#property_groupRoute" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "Default\u0020controller\u0020namespace", + "url": "classes/Leaf-Router.html#property_namespace" + }, { + "fqsen": "\\Leaf\\Router\u003A\u003A\u0024serverBasePath", + "name": "serverBasePath", + "summary": "The\u0020Server\u0020Base\u0020Path\u0020for\u0020Router\u0020Execution", + "url": "classes/Leaf-Router.html#property_serverBasePath" + }, { + "fqsen": "\\Leaf\\Log", + "name": "Log", + "summary": "Log", + "url": "classes/Leaf-Log.html" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor", + "url": "classes/Leaf-Log.html#method___construct" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003A\u0024enabled", + "name": "enabled", + "summary": "", + "url": "classes/Leaf-Log.html#property_enabled" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003A\u0024level", + "name": "level", + "summary": "", + "url": "classes/Leaf-Log.html#property_level" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AgetLevel\u0028\u0029", + "name": "getLevel", + "summary": "Get\/Set\u0020log\u0020level", + "url": "classes/Leaf-Log.html#method_getLevel" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003A\u0024writer", + "name": "writer", + "summary": "", + "url": "classes/Leaf-Log.html#property_writer" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AisEnabled\u0028\u0029", + "name": "isEnabled", + "summary": "Is\u0020logging\u0020enabled\u003F", + "url": "classes/Leaf-Log.html#method_isEnabled" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Adebug\u0028\u0029", + "name": "debug", + "summary": "Log\u0020debug\u0020message", + "url": "classes/Leaf-Log.html#method_debug" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Log\u0020info\u0020message", + "url": "classes/Leaf-Log.html#method_info" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Anotice\u0028\u0029", + "name": "notice", + "summary": "Log\u0020notice\u0020message", + "url": "classes/Leaf-Log.html#method_notice" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Awarning\u0028\u0029", + "name": "warning", + "summary": "Log\u0020warning\u0020message", + "url": "classes/Leaf-Log.html#method_warning" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Log\u0020error\u0020message", + "url": "classes/Leaf-Log.html#method_error" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Acritical\u0028\u0029", + "name": "critical", + "summary": "Log\u0020critical\u0020message", + "url": "classes/Leaf-Log.html#method_critical" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Aalert\u0028\u0029", + "name": "alert", + "summary": "Log\u0020alert\u0020message", + "url": "classes/Leaf-Log.html#method_alert" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Aemergency\u0028\u0029", + "name": "emergency", + "summary": "Log\u0020emergency\u0020message", + "url": "classes/Leaf-Log.html#method_emergency" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Log\u0020message", + "url": "classes/Leaf-Log.html#method_log" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003Ainterpolate\u0028\u0029", + "name": "interpolate", + "summary": "Interpolate\u0020log\u0020message", + "url": "classes/Leaf-Log.html#method_interpolate" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AEMERGENCY", + "name": "EMERGENCY", + "summary": "", + "url": "classes/Leaf-Log.html#constant_EMERGENCY" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AALERT", + "name": "ALERT", + "summary": "", + "url": "classes/Leaf-Log.html#constant_ALERT" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003ACRITICAL", + "name": "CRITICAL", + "summary": "", + "url": "classes/Leaf-Log.html#constant_CRITICAL" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AERROR", + "name": "ERROR", + "summary": "", + "url": "classes/Leaf-Log.html#constant_ERROR" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AWARN", + "name": "WARN", + "summary": "", + "url": "classes/Leaf-Log.html#constant_WARN" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003ANOTICE", + "name": "NOTICE", + "summary": "", + "url": "classes/Leaf-Log.html#constant_NOTICE" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003AINFO", + "name": "INFO", + "summary": "", + "url": "classes/Leaf-Log.html#constant_INFO" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003ADEBUG", + "name": "DEBUG", + "summary": "", + "url": "classes/Leaf-Log.html#constant_DEBUG" + }, { + "fqsen": "\\Leaf\\Log\u003A\u003A\u0024levels", + "name": "levels", + "summary": "", + "url": "classes/Leaf-Log.html#property_levels" + }, { + "fqsen": "\\Leaf\\LogWriter", + "name": "LogWriter", + "summary": "Log\u0020Writer", + "url": "classes/Leaf-LogWriter.html" + }, { + "fqsen": "\\Leaf\\LogWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor", + "url": "classes/Leaf-LogWriter.html#method___construct" + }, { + "fqsen": "\\Leaf\\LogWriter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020message", + "url": "classes/Leaf-LogWriter.html#method_write" + }, { + "fqsen": "\\Leaf\\LogWriter\u003A\u003AwriteAsLeaf\u0028\u0029", + "name": "writeAsLeaf", + "summary": "", + "url": "classes/Leaf-LogWriter.html#method_writeAsLeaf" + }, { + "fqsen": "\\Leaf\\LogWriter\u003A\u003AwriteAsLinux\u0028\u0029", + "name": "writeAsLinux", + "summary": "", + "url": "classes/Leaf-LogWriter.html#method_writeAsLinux" + }, { + "fqsen": "\\Leaf\\LogWriter\u003A\u003A\u0024logFile", + "name": "logFile", + "summary": "", + "url": "classes/Leaf-LogWriter.html#property_logFile" + }, { + "fqsen": "\\mailer\u0028\u0029", + "name": "mailer", + "summary": "Create\u0020and\u0020send\u0020an\u0020email", + "url": "namespaces/default.html#function_mailer" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer", + "name": "Mailer", + "summary": "", + "url": "classes/Leaf-Mail-Mailer.html" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003AuseOAuth\u0028\u0029", + "name": "useOAuth", + "summary": "", + "url": "classes/Leaf-Mail-Mailer.html#method_useOAuth" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "SMTP\u0020Connection", + "url": "classes/Leaf-Mail-Mailer.html#method_connect" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Mail-Mailer.html#property_config" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "", + "url": "classes/Leaf-Mail-Mailer.html#method_validate" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send", + "url": "classes/Leaf-Mail-Mailer.html#method_send" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003A\u0024errors", + "name": "errors", + "summary": "Errors", + "url": "classes/Leaf-Mail-Mailer.html#property_errors" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003A\u0024mailer", + "name": "mailer", + "summary": "", + "url": "classes/Leaf-Mail-Mailer.html#property_mailer" + }, { + "fqsen": "\\Leaf\\Mail\\Mailer\u003A\u003A\u0024auth", + "name": "auth", + "summary": "", + "url": "classes/Leaf-Mail-Mailer.html#property_auth" + }, { + "fqsen": "\\Leaf\\Mail", + "name": "Mail", + "summary": "", + "url": "classes/Leaf-Mail.html" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Mail.html#method___construct" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020your\u0020mail\u0020server", + "url": "classes/Leaf-Mail.html#method_connect" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020mail\u0020instance", + "url": "classes/Leaf-Mail.html#method_create" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003AgetMail\u0028\u0029", + "name": "getMail", + "summary": "", + "url": "classes/Leaf-Mail.html#method_getMail" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003Aattach\u0028\u0029", + "name": "attach", + "summary": "Add\u0020attachments\u0020to\u0020your\u0020mail\u0020from\u0020your\u0020file\u0020system", + "url": "classes/Leaf-Mail.html#method_attach" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Send\u0020your\u0020crafted\u0020email", + "url": "classes/Leaf-Mail.html#method_send" + }, { + "fqsen": "\\Leaf\\Mail\u003A\u003A\u0024mail", + "name": "mail", + "summary": "", + "url": "classes/Leaf-Mail.html#property_mail" + }, { + "fqsen": "\\Leaf\\Controller", + "name": "Controller", + "summary": "Leaf\u0020base\u0020controller\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nBase\u0020controller\u0020for\u0020Leaf\u0020PHP\u0020Framework", + "url": "classes/Leaf-Controller.html" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Controller.html#method___construct" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003Aauth\u0028\u0029", + "name": "auth", + "summary": "Return\u0020the\u0020leaf\u0020auth\u0020object", + "url": "classes/Leaf-Controller.html#method_auth" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validate\u0020the\u0020incoming\u0020request\u0020with\u0020the\u0020given\u0020rules.", + "url": "classes/Leaf-Controller.html#method_validate" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003Auser\u0028\u0029", + "name": "user", + "summary": "Get\u0020the\u0020currently\u0020authenticated\u0020user.", + "url": "classes/Leaf-Controller.html#method_user" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "Get\u0020the\u0020currently\u0020authenticated\u0020user\u0027s\u0020ID.", + "url": "classes/Leaf-Controller.html#method_id" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003A\u0024view", + "name": "view", + "summary": "", + "url": "classes/Leaf-Controller.html#property_view" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Render\u0020a\u0020view", + "url": "classes/Leaf-Controller.html#method_render" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Get\u0020auth,\u0020session\u0020and\u0020validation\u0020errors", + "url": "classes/Leaf-Controller.html#method_errors" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003A\u0024request", + "name": "request", + "summary": "", + "url": "classes/Leaf-Controller.html#property_request" + }, { + "fqsen": "\\Leaf\\Controller\u003A\u003A\u0024response", + "name": "response", + "summary": "", + "url": "classes/Leaf-Controller.html#property_response" + }, { + "fqsen": "\\Leaf\\Core", + "name": "Core", + "summary": "Leaf\u0020MVC\u0020Core\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nBase\u0020class\u0020for\u0020configuring\u0020core\u0020methods", + "url": "classes/Leaf-Core.html" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003A\u0024paths", + "name": "paths", + "summary": "", + "url": "classes/Leaf-Core.html#property_paths" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003AloadApplicationConfig\u0028\u0029", + "name": "loadApplicationConfig", + "summary": "Setup\u0020MVC\u0020application\u0020based\u0020on\u0020config", + "url": "classes/Leaf-Core.html#method_loadApplicationConfig" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003AloadConfig\u0028\u0029", + "name": "loadConfig", + "summary": "Load\u0020all\u0020config\u0020files\u0020defined\u0020in\u0020the\u0020config\u0020folder", + "url": "classes/Leaf-Core.html#method_loadConfig" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003AloadLibs\u0028\u0029", + "name": "loadLibs", + "summary": "Load\u0020user\u0020defined\u0020libs", + "url": "classes/Leaf-Core.html#method_loadLibs" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Leaf-Core.html#property_mode" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003AloadConsole\u0028\u0029", + "name": "loadConsole", + "summary": "Load\u0020Aloe\u0020console\u0020and\u0020user\u0020defined\u0020commands", + "url": "classes/Leaf-Core.html#method_loadConsole" + }, { + "fqsen": "\\Leaf\\Core\u003A\u003ArunApplication\u0028\u0029", + "name": "runApplication", + "summary": "Load\u0020all\u0020application\u0020routes\u0020and\u0020run\u0020the\u0020application", + "url": "classes/Leaf-Core.html#method_runApplication" + }, { + "fqsen": "\\Leaf\\Database", + "name": "Database", + "summary": "Leaf\u0020Database\u0020Config\n\u002D\u002D\u002D\nThis\u0020class\u0020is\u0020used\u0020to\u0020configure\u0020the\u0020database\u0020connection\u0020for\u0020models.", + "url": "classes/Leaf-Database.html" + }, { + "fqsen": "\\Leaf\\Database\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Create\u0020a\u0020new\u0020database\u0020connection\u0020for\u0020models", + "url": "classes/Leaf-Database.html#method_connect" + }, { + "fqsen": "\\Leaf\\Database\u003A\u003AinitDb\u0028\u0029", + "name": "initDb", + "summary": "Create\u0020a\u0020Leaf\u0020Db\u0020connection\u0020using\u0020the\u0020the\u0020default\u0020connection\ndefined\u0020in\u0020the\u0020config\/database.php\u0020file", + "url": "classes/Leaf-Database.html#method_initDb" + }, { + "fqsen": "\\Leaf\\Database\u003A\u003A\u0024capsule", + "name": "capsule", + "summary": "", + "url": "classes/Leaf-Database.html#property_capsule" + }, { + "fqsen": "\\AppConfig\u0028\u0029", + "name": "AppConfig", + "summary": "Get\u0020app\u0020configuration", + "url": "namespaces/default.html#function_AppConfig" + }, { + "fqsen": "\\PathsConfig\u0028\u0029", + "name": "PathsConfig", + "summary": "Get\u0020paths\u0020configuration", + "url": "namespaces/default.html#function_PathsConfig" + }, { + "fqsen": "\\AuthConfig\u0028\u0029", + "name": "AuthConfig", + "summary": "Get\u0020an\u0020auth\u0020configuration", + "url": "namespaces/default.html#function_AuthConfig" + }, { + "fqsen": "\\ViewConfig\u0028\u0029", + "name": "ViewConfig", + "summary": "Get\u0020view\u0020configuration", + "url": "namespaces/default.html#function_ViewConfig" + }, { + "fqsen": "\\DatabaseConfig\u0028\u0029", + "name": "DatabaseConfig", + "summary": "Get\u0020database\u0020configuration", + "url": "namespaces/default.html#function_DatabaseConfig" + }, { + "fqsen": "\\CorsConfig\u0028\u0029", + "name": "CorsConfig", + "summary": "Get\u0020an\u0020auth\u0020configuration", + "url": "namespaces/default.html#function_CorsConfig" + }, { + "fqsen": "\\MailConfig\u0028\u0029", + "name": "MailConfig", + "summary": "Get\u0020mail\u0020configuration", + "url": "namespaces/default.html#function_MailConfig" + }, { + "fqsen": "\\MvcConfig\u0028\u0029", + "name": "MvcConfig", + "summary": "Get\u0020an\u0020application\u0020configuration", + "url": "namespaces/default.html#function_MvcConfig" + }, { + "fqsen": "\\assets\u0028\u0029", + "name": "assets", + "summary": "Import\u0020an\u0020asset", + "url": "namespaces/default.html#function_assets" + }, { + "fqsen": "\\view\u0028\u0029", + "name": "view", + "summary": "Return\u0020a\u0020view", + "url": "namespaces/default.html#function_view" + }, { + "fqsen": "\\render\u0028\u0029", + "name": "render", + "summary": "Render\u0020a\u0020view", + "url": "namespaces/default.html#function_render" + }, { + "fqsen": "\\redirect\u0028\u0029", + "name": "redirect", + "summary": "Redirect\u0020to\u0020a\u0020given\u0020url", + "url": "namespaces/default.html#function_redirect" + }, { + "fqsen": "\\route\u0028\u0029", + "name": "route", + "summary": "Get\u0020a\u0020route\u0020by\u0020name", + "url": "namespaces/default.html#function_route" + }, { + "fqsen": "\\vite\u0028\u0029", + "name": "vite", + "summary": "Get\u0020a\u0020route\u0020by\u0020name", + "url": "namespaces/default.html#function_vite" + }, { + "fqsen": "\\AppPaths\u0028\u0029", + "name": "AppPaths", + "summary": "Get\u0020all\u0020app\u0020paths", + "url": "namespaces/default.html#function_AppPaths" + }, { + "fqsen": "\\ConfigPath\u0028\u0029", + "name": "ConfigPath", + "summary": "Config\u0020directory\u0020path", + "url": "namespaces/default.html#function_ConfigPath" + }, { + "fqsen": "\\CommandsPath\u0028\u0029", + "name": "CommandsPath", + "summary": "Commands\u0020directory\u0020path", + "url": "namespaces/default.html#function_CommandsPath" + }, { + "fqsen": "\\ControllersPath\u0028\u0029", + "name": "ControllersPath", + "summary": "Controllers\u0020directory\u0020path", + "url": "namespaces/default.html#function_ControllersPath" + }, { + "fqsen": "\\DatabasePath\u0028\u0029", + "name": "DatabasePath", + "summary": "Database\u0020path", + "url": "namespaces/default.html#function_DatabasePath" + }, { + "fqsen": "\\FactoriesPath\u0028\u0029", + "name": "FactoriesPath", + "summary": "Factories\u0020directory\u0020path", + "url": "namespaces/default.html#function_FactoriesPath" + }, { + "fqsen": "\\HelpersPath\u0028\u0029", + "name": "HelpersPath", + "summary": "Helpers\u0020directory\u0020path", + "url": "namespaces/default.html#function_HelpersPath" + }, { + "fqsen": "\\LibPath\u0028\u0029", + "name": "LibPath", + "summary": "Helpers\u0020directory\u0020path", + "url": "namespaces/default.html#function_LibPath" + }, { + "fqsen": "\\MigrationsPath\u0028\u0029", + "name": "MigrationsPath", + "summary": "Migrations\u0020directory\u0020path", + "url": "namespaces/default.html#function_MigrationsPath" + }, { + "fqsen": "\\ModelsPath\u0028\u0029", + "name": "ModelsPath", + "summary": "Models\u0020directory\u0020path", + "url": "namespaces/default.html#function_ModelsPath" + }, { + "fqsen": "\\PublicPath\u0028\u0029", + "name": "PublicPath", + "summary": "Public\u0020directory\u0020path", + "url": "namespaces/default.html#function_PublicPath" + }, { + "fqsen": "\\RoutesPath\u0028\u0029", + "name": "RoutesPath", + "summary": "Routes\u0020directory\u0020path", + "url": "namespaces/default.html#function_RoutesPath" + }, { + "fqsen": "\\SeedsPath\u0028\u0029", + "name": "SeedsPath", + "summary": "Seeds\u0020directory\u0020path", + "url": "namespaces/default.html#function_SeedsPath" + }, { + "fqsen": "\\StoragePath\u0028\u0029", + "name": "StoragePath", + "summary": "Storage\u0020directory\u0020path", + "url": "namespaces/default.html#function_StoragePath" + }, { + "fqsen": "\\ViewsPath\u0028\u0029", + "name": "ViewsPath", + "summary": "Views\u0020directory\u0020path", + "url": "namespaces/default.html#function_ViewsPath" + }, { + "fqsen": "\\Leaf\\Middleware", + "name": "Middleware", + "summary": "Middleware", + "url": "classes/Leaf-Middleware.html" + }, { + "fqsen": "\\Leaf\\Middleware\u003A\u003Acall\u0028\u0029", + "name": "call", + "summary": "Call", + "url": "classes/Leaf-Middleware.html#method_call" + }, { + "fqsen": "\\Leaf\\Model", + "name": "Model", + "summary": "", + "url": "classes/Leaf-Model.html" + }, { + "fqsen": "\\Leaf\\Model\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Eloquent\u0020model\u0020instance.", + "url": "classes/Leaf-Model.html#method___construct" + }, { + "fqsen": "\\Leaf\\Schema", + "name": "Schema", + "summary": "Leaf\u0020DB\u0020Schema\u0020\u005BWIP\u005D\n\u002D\u002D\u002D\nOne\u0020file\u0020to\u0020rule\u0020them\u0020all.", + "url": "classes/Leaf-Schema.html" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003Amigrate\u0028\u0029", + "name": "migrate", + "summary": "Migrate\u0020your\u0020schema\u0020file\u0020tables", + "url": "classes/Leaf-Schema.html#method_migrate" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003Aseed\u0028\u0029", + "name": "seed", + "summary": "Seed\u0020a\u0020database\u0020table\u0020from\u0020schema\u0020file", + "url": "classes/Leaf-Schema.html#method_seed" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Reset\u0020a\u0020database\u0020table", + "url": "classes/Leaf-Schema.html#method_reset" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003Arollback\u0028\u0029", + "name": "rollback", + "summary": "Rollback\u0020db\u0020to\u0020a\u0020previous\u0020state", + "url": "classes/Leaf-Schema.html#method_rollback" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003AgetColumnAttributes\u0028\u0029", + "name": "getColumnAttributes", + "summary": "Get\u0020all\u0020column\u0020attributes", + "url": "classes/Leaf-Schema.html#method_getColumnAttributes" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003AsetDbConnection\u0028\u0029", + "name": "setDbConnection", + "summary": "Set\u0020the\u0020internal\u0020db\u0020connection", + "url": "classes/Leaf-Schema.html#method_setDbConnection" + }, { + "fqsen": "\\Leaf\\Schema\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Leaf-Schema.html#property_connection" + }, { + "fqsen": "\\Leaf\\Helpers\\Password", + "name": "Password", + "summary": "Leaf\u0020Password\u0020Helper\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nWork\u0020easier\u0020and\u0020faster\u0020with\u0020passwords", + "url": "classes/Leaf-Helpers-Password.html" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003A\u0024spice", + "name": "spice", + "summary": "", + "url": "classes/Leaf-Helpers-Password.html#property_spice" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003Ahash\u0028\u0029", + "name": "hash", + "summary": "Create\u0020a\u0020password\u0020hash", + "url": "classes/Leaf-Helpers-Password.html#method_hash" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "Checks\u0020if\u0020the\u0020given\u0020hash\u0020matches\u0020the\u0020given\u0020options.", + "url": "classes/Leaf-Helpers-Password.html#method_verify" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003Aargon2\u0028\u0029", + "name": "argon2", + "summary": "Generate\u0020an\u0020Argon2\u0020hashed\u0020password", + "url": "classes/Leaf-Helpers-Password.html#method_argon2" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003Aargon2Verify\u0028\u0029", + "name": "argon2Verify", + "summary": "Checks\u0020if\u0020the\u0020given\u0020argon2\u0020hash\u0020matches\u0020the\u0020given\u0020options.", + "url": "classes/Leaf-Helpers-Password.html#method_argon2Verify" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003Abcrypt\u0028\u0029", + "name": "bcrypt", + "summary": "Generate\u0020an\u0020Argon2\u0020hashed\u0020password", + "url": "classes/Leaf-Helpers-Password.html#method_bcrypt" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003AbcryptVerify\u0028\u0029", + "name": "bcryptVerify", + "summary": "Checks\u0020if\u0020the\u0020given\u0020BCRYPT\u0020hash\u0020matches\u0020the\u0020given\u0020options.", + "url": "classes/Leaf-Helpers-Password.html#method_bcryptVerify" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003ABCRYPT", + "name": "BCRYPT", + "summary": "", + "url": "classes/Leaf-Helpers-Password.html#constant_BCRYPT" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003AARGON2", + "name": "ARGON2", + "summary": "", + "url": "classes/Leaf-Helpers-Password.html#constant_ARGON2" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003ADEFAULT", + "name": "DEFAULT", + "summary": "", + "url": "classes/Leaf-Helpers-Password.html#constant_DEFAULT" + }, { + "fqsen": "\\Leaf\\Helpers\\Password\u003A\u003AMD5", + "name": "MD5", + "summary": "", + "url": "classes/Leaf-Helpers-Password.html#constant_MD5" + }, { + "fqsen": "\\queue\u0028\u0029", + "name": "queue", + "summary": "Return\u0020queue\u0020object", + "url": "namespaces/default.html#function_queue" + }, { + "fqsen": "\\dispatch\u0028\u0029", + "name": "dispatch", + "summary": "Dispatch\u0020a\u0020job,\u0020batch\u0020or\u0020a\u0020group\u0020of\u0020jobs", + "url": "namespaces/default.html#function_dispatch" + }, { + "fqsen": "\\Leaf\\Job", + "name": "Job", + "summary": "", + "url": "classes/Leaf-Job.html" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024connection", + "name": "connection", + "summary": "Configured\u0020queue\u0020connection", + "url": "classes/Leaf-Job.html#property_connection" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AfromQueue\u0028\u0029", + "name": "fromQueue", + "summary": "Load\u0020a\u0020job\u0020for\u0020running", + "url": "classes/Leaf-Job.html#method_fromQueue" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AgetJobId\u0028\u0029", + "name": "getJobId", + "summary": "Get\u0020the\u0020job\u0020identifier.", + "url": "classes/Leaf-Job.html#method_getJobId" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AhandleDelay\u0028\u0029", + "name": "handleDelay", + "summary": "Handle\u0020delay\u0020for\u0020job", + "url": "classes/Leaf-Job.html#method_handleDelay" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AhasExpired\u0028\u0029", + "name": "hasExpired", + "summary": "Check\u0020if\u0020job\u0020has\u0020expired", + "url": "classes/Leaf-Job.html#method_hasExpired" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AhandleExpiry\u0028\u0029", + "name": "handleExpiry", + "summary": "Handle\u0020job\u0020expiry", + "url": "classes/Leaf-Job.html#method_handleExpiry" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AhasReachedRetryLimit\u0028\u0029", + "name": "hasReachedRetryLimit", + "summary": "Check\u0020if\u0020job\u0020has\u0020reached\u0020retry\u0020limit", + "url": "classes/Leaf-Job.html#method_hasReachedRetryLimit" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AsetStatus\u0028\u0029", + "name": "setStatus", + "summary": "Set\u0020job\u0020status", + "url": "classes/Leaf-Job.html#method_setStatus" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003Aretry\u0028\u0029", + "name": "retry", + "summary": "Retry\u0020job", + "url": "classes/Leaf-Job.html#method_retry" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003Arelease\u0028\u0029", + "name": "release", + "summary": "Release\u0020the\u0020job\u0020back\u0020into\u0020the\u0020queue\u0020after\u0020\u0028n\u0029\u0020seconds.", + "url": "classes/Leaf-Job.html#method_release" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Add\u0020data\u0020to\u0020the\u0020job", + "url": "classes/Leaf-Job.html#method_with" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003Astack\u0028\u0029", + "name": "stack", + "summary": "Return\u0020job\u0020stack\u0020if\u0020available", + "url": "classes/Leaf-Job.html#method_stack" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AgetConfig\u0028\u0029", + "name": "getConfig", + "summary": "Return\u0020config\u0020for\u0020the\u0020job", + "url": "classes/Leaf-Job.html#method_getConfig" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003Atrigger\u0028\u0029", + "name": "trigger", + "summary": "", + "url": "classes/Leaf-Job.html#method_trigger" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003AremoveFromQueue\u0028\u0029", + "name": "removeFromQueue", + "summary": "", + "url": "classes/Leaf-Job.html#method_removeFromQueue" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024job", + "name": "job", + "summary": "Current\u0020job", + "url": "classes/Leaf-Job.html#property_job" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024data", + "name": "data", + "summary": "Data\u0020to\u0020pass\u0020to\u0020the\u0020job", + "url": "classes/Leaf-Job.html#property_data" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024queue", + "name": "queue", + "summary": "Queue\u0020instance", + "url": "classes/Leaf-Job.html#property_queue" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024delay", + "name": "delay", + "summary": "Number\u0020of\u0020seconds\u0020to\u0020wait\u0020before\u0020processing\u0020a\u0020job", + "url": "classes/Leaf-Job.html#property_delay" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024delayBeforeRetry", + "name": "delayBeforeRetry", + "summary": "Number\u0020of\u0020seconds\u0020to\u0020wait\u0020before\u0020retrying\u0020a\u0020job\u0020that\u0020has\u0020failed.", + "url": "classes/Leaf-Job.html#property_delayBeforeRetry" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024expire", + "name": "expire", + "summary": "Number\u0020of\u0020seconds\u0020to\u0020wait\u0020before\u0020archiving\u0020a\u0020job\u0020that\u0020has\u0020not\u0020yet\u0020been\u0020processed", + "url": "classes/Leaf-Job.html#property_expire" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024force", + "name": "force", + "summary": "Force\u0020the\u0020worker\u0020to\u0020process\u0020the\u0020job,\u0020even\u0020if\u0020it\u0020has\u0020expired\u0020or\u0020has\u0020reached\u0020its\u0020maximum\u0020number\u0020of\u0020retries", + "url": "classes/Leaf-Job.html#property_force" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024memory", + "name": "memory", + "summary": "The\u0020maximum\u0020amount\u0020of\u0020memory\u0020the\u0020job\u0020is\u0020allowed\u0020to\u0020consume\u0020\u0028MB\u0029", + "url": "classes/Leaf-Job.html#property_memory" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024timeout", + "name": "timeout", + "summary": "The\u0020number\u0020of\u0020seconds\u0020a\u0020child\u0020process\u0020can\u0020run\u0020before\u0020being\u0020killed.", + "url": "classes/Leaf-Job.html#property_timeout" + }, { + "fqsen": "\\Leaf\\Job\u003A\u003A\u0024tries", + "name": "tries", + "summary": "The\u0020maximum\u0020number\u0020of\u0020times\u0020the\u0020job\u0020may\u0020be\u0020attempted.", + "url": "classes/Leaf-Job.html#property_tries" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter", + "name": "Adapter", + "summary": "Database\u0020adapter\n\u002D\u002D\u002D\u002D\u002D\nDb\u0020adapter\u0020for\u0020the\u0020worker", + "url": "classes/Leaf-Queue-Adapters-Adapter.html" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020queue\u0020storage", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_connect" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003ApushJobToQueue\u0028\u0029", + "name": "pushJobToQueue", + "summary": "Push\u0020job\u0020to\u0020queue", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_pushJobToQueue" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003ApopJobFromQueue\u0028\u0029", + "name": "popJobFromQueue", + "summary": "Pop\u0020job\u0020from\u0020queue", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_popJobFromQueue" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003AsetJobStatus\u0028\u0029", + "name": "setJobStatus", + "summary": "Set\u0020job\u0020status", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_setJobStatus" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003AgetJobs\u0028\u0029", + "name": "getJobs", + "summary": "Get\u0020all\u0020jobs\u0020for\u0020processing", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_getJobs" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003AgetNextJob\u0028\u0029", + "name": "getNextJob", + "summary": "Get\u0020next\u0020job\u0020for\u0020processing", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_getNextJob" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003AmarkJobAsFailed\u0028\u0029", + "name": "markJobAsFailed", + "summary": "Mark\u0020job\u0020as\u0020failed", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_markJobAsFailed" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Adapter\u003A\u003AretryFailedJob\u0028\u0029", + "name": "retryFailedJob", + "summary": "Retry\u0020failed\u0020job", + "url": "classes/Leaf-Queue-Adapters-Adapter.html#method_retryFailedJob" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database", + "name": "Database", + "summary": "Database\u0020adapter\n\u002D\u002D\u002D\u002D\u002D\nDb\u0020adapter\u0020for\u0020the\u0020worker", + "url": "classes/Leaf-Queue-Adapters-Database.html" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Database.html#method___construct" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020queue\u0020storage", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_connect" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003ApushJobToQueue\u0028\u0029", + "name": "pushJobToQueue", + "summary": "Push\u0020job\u0020to\u0020queue", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_pushJobToQueue" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003ApopJobFromQueue\u0028\u0029", + "name": "popJobFromQueue", + "summary": "Pop\u0020job\u0020from\u0020queue", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_popJobFromQueue" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003AsetJobStatus\u0028\u0029", + "name": "setJobStatus", + "summary": "Set\u0020job\u0020status", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_setJobStatus" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003AmarkJobAsFailed\u0028\u0029", + "name": "markJobAsFailed", + "summary": "Mark\u0020job\u0020as\u0020failed", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_markJobAsFailed" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003AsetupAdapterStorage\u0028\u0029", + "name": "setupAdapterStorage", + "summary": "Setup\u0020storage\u0020for\u0020the\u0020adapter", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_setupAdapterStorage" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003AgetJobs\u0028\u0029", + "name": "getJobs", + "summary": "Get\u0020all\u0020jobs\u0020for\u0020processing", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_getJobs" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003AgetNextJob\u0028\u0029", + "name": "getNextJob", + "summary": "Get\u0020next\u0020job\u0020for\u0020processing", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_getNextJob" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003AretryFailedJob\u0028\u0029", + "name": "retryFailedJob", + "summary": "Retry\u0020failed\u0020job", + "url": "classes/Leaf-Queue-Adapters-Database.html#method_retryFailedJob" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003A\u0024db", + "name": "db", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Database.html#property_db" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Database.html#property_errors" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Database\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Database.html#property_config" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis", + "name": "Redis", + "summary": "Redis\u0020adapter\n\u002D\u002D\u002D\u002D\u002D\nRedis\u0020adapter\u0020for\u0020the\u0020worker", + "url": "classes/Leaf-Queue-Adapters-Redis.html" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method___construct" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020queue\u0020storage", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_connect" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003ApushJobToQueue\u0028\u0029", + "name": "pushJobToQueue", + "summary": "Push\u0020job\u0020to\u0020queue", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_pushJobToQueue" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003ApopJobFromQueue\u0028\u0029", + "name": "popJobFromQueue", + "summary": "Pop\u0020job\u0020from\u0020queue", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_popJobFromQueue" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003AsetJobStatus\u0028\u0029", + "name": "setJobStatus", + "summary": "Set\u0020job\u0020status", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_setJobStatus" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003AmarkJobAsFailed\u0028\u0029", + "name": "markJobAsFailed", + "summary": "Mark\u0020job\u0020as\u0020failed", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_markJobAsFailed" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003AgetJobs\u0028\u0029", + "name": "getJobs", + "summary": "Get\u0020all\u0020jobs\u0020for\u0020processing", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_getJobs" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003AgetNextJob\u0028\u0029", + "name": "getNextJob", + "summary": "Get\u0020next\u0020job\u0020for\u0020processing", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_getNextJob" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003AretryFailedJob\u0028\u0029", + "name": "retryFailedJob", + "summary": "Retry\u0020failed\u0020job", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_retryFailedJob" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003Av4\u0028\u0029", + "name": "v4", + "summary": "Generate\u0020unique\u0020id", + "url": "classes/Leaf-Queue-Adapters-Redis.html#method_v4" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003A\u0024redis", + "name": "redis", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Redis.html#property_redis" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Redis.html#property_errors" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters\\Redis\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Queue-Adapters-Redis.html#property_config" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\DeleteJobCommand", + "name": "DeleteJobCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Leaf-Queue-Commands-DeleteJobCommand.html" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\DeleteJobCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Leaf-Queue-Commands-DeleteJobCommand.html#method_config" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\DeleteJobCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Leaf-Queue-Commands-DeleteJobCommand.html#method_handle" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\DeleteJobCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Leaf-Queue-Commands-DeleteJobCommand.html#property_defaultName" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\DeleteJobCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Leaf-Queue-Commands-DeleteJobCommand.html#property_description" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\DeleteJobCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Leaf-Queue-Commands-DeleteJobCommand.html#property_help" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\GenerateJobCommand", + "name": "GenerateJobCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Leaf-Queue-Commands-GenerateJobCommand.html" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\GenerateJobCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Leaf-Queue-Commands-GenerateJobCommand.html#method_config" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\GenerateJobCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Leaf-Queue-Commands-GenerateJobCommand.html#method_handle" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\GenerateJobCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Leaf-Queue-Commands-GenerateJobCommand.html#property_defaultName" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\GenerateJobCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Leaf-Queue-Commands-GenerateJobCommand.html#property_description" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\GenerateJobCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Leaf-Queue-Commands-GenerateJobCommand.html#property_help" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\QueueWorkCommand", + "name": "QueueWorkCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Leaf-Queue-Commands-QueueWorkCommand.html" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\QueueWorkCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Leaf-Queue-Commands-QueueWorkCommand.html#method_handle" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\QueueWorkCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Leaf-Queue-Commands-QueueWorkCommand.html#property_defaultName" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\QueueWorkCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Leaf-Queue-Commands-QueueWorkCommand.html#property_description" + }, { + "fqsen": "\\Leaf\\Queue\\Commands\\QueueWorkCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Leaf-Queue-Commands-QueueWorkCommand.html#property_help" + }, { + "fqsen": "\\Leaf\\Queue\\Config", + "name": "Config", + "summary": "COnfig\u0020for\u0020queue\u0020and\u0020worker", + "url": "classes/Leaf-Queue-Config.html" + }, { + "fqsen": "\\Leaf\\Queue\\Config\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020queue\u0020config", + "url": "classes/Leaf-Queue-Config.html#method_set" + }, { + "fqsen": "\\Leaf\\Queue\\Config\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020queue\u0020config", + "url": "classes/Leaf-Queue-Config.html#method_get" + }, { + "fqsen": "\\Leaf\\Queue\\Config\u003A\u003A\u0024queues", + "name": "queues", + "summary": "", + "url": "classes/Leaf-Queue-Config.html#property_queues" + }, { + "fqsen": "\\Leaf\\Queue\\Dispatchable", + "name": "Dispatchable", + "summary": "Contract\u0020for\u0020dispatchable\u0020classes", + "url": "classes/Leaf-Queue-Dispatchable.html" + }, { + "fqsen": "\\Leaf\\Queue\\Dispatchable\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Return\u0020configured\u0020connection", + "url": "classes/Leaf-Queue-Dispatchable.html#method_connection" + }, { + "fqsen": "\\Leaf\\Queue\\Dispatchable\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Add\u0020data\u0020to\u0020the\u0020job", + "url": "classes/Leaf-Queue-Dispatchable.html#method_with" + }, { + "fqsen": "\\Leaf\\Queue\\Dispatchable\u003A\u003Astack\u0028\u0029", + "name": "stack", + "summary": "Return\u0020job\u0020stack\u0020if\u0020available", + "url": "classes/Leaf-Queue-Dispatchable.html#method_stack" + }, { + "fqsen": "\\Leaf\\Queue\\Dispatchable\u003A\u003AgetConfig\u0028\u0029", + "name": "getConfig", + "summary": "Return\u0020config\u0020for\u0020the\u0020job", + "url": "classes/Leaf-Queue-Dispatchable.html#method_getConfig" + }, { + "fqsen": "\\Leaf\\Queue", + "name": "Queue", + "summary": "", + "url": "classes/Leaf-Queue.html" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020queue\u0020adapter", + "url": "classes/Leaf-Queue.html#method_connect" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003AgetAdapter\u0028\u0029", + "name": "getAdapter", + "summary": "Get\u0020the\u0020queue\u0020adapter", + "url": "classes/Leaf-Queue.html#method_getAdapter" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Push\u0020job\u0020to\u0020queue", + "url": "classes/Leaf-Queue.html#method_push" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003Apop\u0028\u0029", + "name": "pop", + "summary": "Pop\u0020job\u0020from\u0020queue", + "url": "classes/Leaf-Queue.html#method_pop" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003AsetJobStatus\u0028\u0029", + "name": "setJobStatus", + "summary": "Set\u0020job\u0020status", + "url": "classes/Leaf-Queue.html#method_setJobStatus" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003AgetNextJob\u0028\u0029", + "name": "getNextJob", + "summary": "Get\u0020all\u0020jobs\u0020for\u0020processing", + "url": "classes/Leaf-Queue.html#method_getNextJob" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003AmarkJobAsFailed\u0028\u0029", + "name": "markJobAsFailed", + "summary": "Mark\u0020job\u0020as\u0020failed", + "url": "classes/Leaf-Queue.html#method_markJobAsFailed" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003AretryFailedJob\u0028\u0029", + "name": "retryFailedJob", + "summary": "Retry\u0020failed\u0020job", + "url": "classes/Leaf-Queue.html#method_retryFailedJob" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003Acommands\u0028\u0029", + "name": "commands", + "summary": "Return\u0020queue\u0020commands", + "url": "classes/Leaf-Queue.html#method_commands" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003A\u0024adapter", + "name": "adapter", + "summary": "The\u0020queue\u0020adapter", + "url": "classes/Leaf-Queue.html#property_adapter" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003A\u0024jobs", + "name": "jobs", + "summary": "", + "url": "classes/Leaf-Queue.html#property_jobs" + }, { + "fqsen": "\\Leaf\\Queue\u003A\u003A\u0024connection", + "name": "connection", + "summary": "The\u0020queue\u0020config", + "url": "classes/Leaf-Queue.html#property_connection" + }, { + "fqsen": "\\Leaf\\Worker", + "name": "Worker", + "summary": "", + "url": "classes/Leaf-Worker.html" + }, { + "fqsen": "\\Leaf\\Worker\u003A\u003A\u0024queue", + "name": "queue", + "summary": "", + "url": "classes/Leaf-Worker.html#property_queue" + }, { + "fqsen": "\\Leaf\\Worker\u003A\u003AmemoryExceeded\u0028\u0029", + "name": "memoryExceeded", + "summary": "", + "url": "classes/Leaf-Worker.html#method_memoryExceeded" + }, { + "fqsen": "\\Leaf\\Worker\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "", + "url": "classes/Leaf-Worker.html#method_run" + }, { + "fqsen": "\\Leaf\\Worker\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Worker.html#property_config" + }, { + "fqsen": "\\Leaf\\Redis\\Commands\\ServeCommand", + "name": "ServeCommand", + "summary": "Base\u0020class\u0020for\u0020Aloe\u0020Commands.", + "url": "classes/Leaf-Redis-Commands-ServeCommand.html" + }, { + "fqsen": "\\Leaf\\Redis\\Commands\\ServeCommand\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "", + "url": "classes/Leaf-Redis-Commands-ServeCommand.html#method_config" + }, { + "fqsen": "\\Leaf\\Redis\\Commands\\ServeCommand\u003A\u003Ahandle\u0028\u0029", + "name": "handle", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Leaf-Redis-Commands-ServeCommand.html#method_handle" + }, { + "fqsen": "\\Leaf\\Redis\\Commands\\ServeCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Leaf-Redis-Commands-ServeCommand.html#property_defaultName" + }, { + "fqsen": "\\Leaf\\Redis\\Commands\\ServeCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "Description\u0020for\u0020command", + "url": "classes/Leaf-Redis-Commands-ServeCommand.html#property_description" + }, { + "fqsen": "\\Leaf\\Redis\\Commands\\ServeCommand\u003A\u003A\u0024help", + "name": "help", + "summary": "Help\u0020for\u0020command", + "url": "classes/Leaf-Redis-Commands-ServeCommand.html#property_help" + }, { + "fqsen": "\\redis\u0028\u0029", + "name": "redis", + "summary": "Return\u0020redis\u0020object", + "url": "namespaces/default.html#function_redis" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter", + "name": "Adapter", + "summary": "Redis\u0020Adapter\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nContract\u0020for\u0020redis\u0020adapters", + "url": "classes/Leaf-Redis-Adapter.html" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Initialize\u0020redis\u0020and\u0020connect\u0020to\u0020redis\u0020instance", + "url": "classes/Leaf-Redis-Adapter.html#method_connect" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020value\u0020from\u0020redis", + "url": "classes/Leaf-Redis-Adapter.html#method_get" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020value\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Adapter.html#method_set" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020key\u0020from\u0020redis", + "url": "classes/Leaf-Redis-Adapter.html#method_delete" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020key\u0020exists\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Adapter.html#method_exists" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Adapter.html#method_keys" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Adapter.html#method_flush" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aping\u0028\u0029", + "name": "ping", + "summary": "Ping\u0020the\u0020redis\u0020server", + "url": "classes/Leaf-Redis-Adapter.html#method_ping" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Get\u0020all\u0020saved\u0020errors", + "url": "classes/Leaf-Redis-Adapter.html#method_errors" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis-Adapter.html#method_connection" + }, { + "fqsen": "\\Leaf\\Redis\\Adapter\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis-Adapter.html#method_close" + }, { + "fqsen": "\\Leaf\\Redis\\Native", + "name": "Native", + "summary": "Native\u0020Redis\u0020Adapter\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nRedis\u0020adapter\u0020for\u0020the\u0020native\u0020PHP\u0020Redis\u0020extension", + "url": "classes/Leaf-Redis-Native.html" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Initialize\u0020redis\u0020and\u0020connect\u0020to\u0020redis\u0020instance", + "url": "classes/Leaf-Redis-Native.html#method_connect" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020value\u0020from\u0020redis", + "url": "classes/Leaf-Redis-Native.html#method_get" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020value\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Native.html#method_set" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020key\u0020from\u0020redis", + "url": "classes/Leaf-Redis-Native.html#method_delete" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020key\u0020exists\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Native.html#method_exists" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Native.html#method_keys" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Native.html#method_flush" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aping\u0028\u0029", + "name": "ping", + "summary": "Ping\u0020the\u0020redis\u0020server", + "url": "classes/Leaf-Redis-Native.html#method_ping" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/Leaf-Redis-Native.html#property_errors" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis-Native.html#method_connection" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis-Native.html#method_close" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Leaf-Redis-Native.html#method___call" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003A\u0024redis", + "name": "redis", + "summary": "", + "url": "classes/Leaf-Redis-Native.html#property_redis" + }, { + "fqsen": "\\Leaf\\Redis\\Native\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Redis-Native.html#property_config" + }, { + "fqsen": "\\Leaf\\Redis\\Predis", + "name": "Predis", + "summary": "Predis\u0020Redis\u0020Adapter\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nRedis\u0020adapter\u0020for\u0020the\u0020Predis\u0020composer\u0020package", + "url": "classes/Leaf-Redis-Predis.html" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Initialize\u0020redis\u0020and\u0020connect\u0020to\u0020redis\u0020instance", + "url": "classes/Leaf-Redis-Predis.html#method_connect" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020value\u0020from\u0020redis", + "url": "classes/Leaf-Redis-Predis.html#method_get" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020value\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Predis.html#method_set" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020key\u0020from\u0020redis", + "url": "classes/Leaf-Redis-Predis.html#method_delete" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020key\u0020exists\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Predis.html#method_exists" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Predis.html#method_keys" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis-Predis.html#method_flush" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aping\u0028\u0029", + "name": "ping", + "summary": "Ping\u0020the\u0020redis\u0020server", + "url": "classes/Leaf-Redis-Predis.html#method_ping" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/Leaf-Redis-Predis.html#property_errors" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis-Predis.html#method_connection" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis-Predis.html#method_close" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Leaf-Redis-Predis.html#method___call" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003A\u0024redis", + "name": "redis", + "summary": "", + "url": "classes/Leaf-Redis-Predis.html#property_redis" + }, { + "fqsen": "\\Leaf\\Redis\\Predis\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Redis-Predis.html#property_config" + }, { + "fqsen": "\\Leaf\\Redis", + "name": "Redis", + "summary": "Leaf\u0020\u002B\u0020Redis\u0020\u005BBETA\u005D\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nRedis\u0020made\u0020crazy\u0020simple", + "url": "classes/Leaf-Redis.html" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Leaf-Redis.html#method___construct" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Initialize\u0020redis\u0020and\u0020connect\u0020to\u0020redis\u0020instance", + "url": "classes/Leaf-Redis.html#method_connect" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003AsetSessionHandler\u0028\u0029", + "name": "setSessionHandler", + "summary": "", + "url": "classes/Leaf-Redis.html#method_setSessionHandler" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003AparseSaveOptions\u0028\u0029", + "name": "parseSaveOptions", + "summary": "", + "url": "classes/Leaf-Redis.html#method_parseSaveOptions" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020redis\u0020value", + "url": "classes/Leaf-Redis.html#method_set" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020redis\u0020value", + "url": "classes/Leaf-Redis.html#method_get" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020key\u0020from\u0020redis", + "url": "classes/Leaf-Redis.html#method_delete" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Check\u0020if\u0020a\u0020key\u0020exists\u0020in\u0020redis", + "url": "classes/Leaf-Redis.html#method_exists" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "Get\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis.html#method_keys" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020all\u0020keys\u0020in\u0020redis", + "url": "classes/Leaf-Redis.html#method_flush" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aping\u0028\u0029", + "name": "ping", + "summary": "Ping\u0020redis\u0020server.", + "url": "classes/Leaf-Redis.html#method_ping" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aerrors\u0028\u0029", + "name": "errors", + "summary": "Return\u0020all\u0020saved\u0020errors", + "url": "classes/Leaf-Redis.html#method_errors" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis.html#method_close" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Aconnection\u0028\u0029", + "name": "connection", + "summary": "Get\u0020the\u0020redis\u0020connection", + "url": "classes/Leaf-Redis.html#method_connection" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003Acommands\u0028\u0029", + "name": "commands", + "summary": "Get\u0020all\u0020leaf\u0020redis\u0020console\u0020commands", + "url": "classes/Leaf-Redis.html#method_commands" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003A\u0024redis", + "name": "redis", + "summary": "", + "url": "classes/Leaf-Redis.html#property_redis" + }, { + "fqsen": "\\Leaf\\Redis\u003A\u003A\u0024config", + "name": "config", + "summary": "Leaf\u0020Redis\u0020config", + "url": "classes/Leaf-Redis.html#property_config" + }, { + "fqsen": "\\Leaf\\Flash", + "name": "Flash", + "summary": "Leaf\u0020Flash\n\u002D\u002D\u002D\u002D\u002D\nSimple\u0020flash\u0020messages\u0020for\u0020your\u0020leaf\u0020apps", + "url": "classes/Leaf-Flash.html" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Leaf-Flash.html#property_config" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020new\u0020flash\u0020message", + "url": "classes/Leaf-Flash.html#method_set" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003Aunset\u0028\u0029", + "name": "unset", + "summary": "Remove\u0020a\u0020flash\u0020message", + "url": "classes/Leaf-Flash.html#method_unset" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Manually\u0020remove\u0020set\u0020flash\u0020message", + "url": "classes/Leaf-Flash.html#method_remove" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020the\u0020flash\u0020array", + "url": "classes/Leaf-Flash.html#method_get" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003Adisplay\u0028\u0029", + "name": "display", + "summary": "Display\u0020a\u0020flash\u0020message", + "url": "classes/Leaf-Flash.html#method_display" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Save\u0020a\u0020flash\u0020message\u0020\u0028won\u0027t\u0020delete\u0020after\u0020view\u0029.", + "url": "classes/Leaf-Flash.html#method_save" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003AclearSaved\u0028\u0029", + "name": "clearSaved", + "summary": "Clear\u0020the\u0020saved\u0020flash\u0020message", + "url": "classes/Leaf-Flash.html#method_clearSaved" + }, { + "fqsen": "\\Leaf\\Flash\u003A\u003AdisplaySaved\u0028\u0029", + "name": "displaySaved", + "summary": "Display\u0020the\u0020saved\u0020flash\u0020message", + "url": "classes/Leaf-Flash.html#method_displaySaved" + }, { + "fqsen": "\\session\u0028\u0029", + "name": "session", + "summary": "Return\u0020session\u0020object", + "url": "namespaces/default.html#function_session" + }, { + "fqsen": "\\flash\u0028\u0029", + "name": "flash", + "summary": "Return\u0020flash\u0020data\/object\u0020or\u0020set\u0020flash\u0020data", + "url": "namespaces/default.html#function_flash" + }, { + "fqsen": "\\Leaf\\Http\\Session", + "name": "Session", + "summary": "Leaf\u0020Session\n\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\u002D\nApp\u0020session\u0020management\u0020made\u0020simple\u0020with\u0020Leaf", + "url": "classes/Leaf-Http-Session.html" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Start\u0020a\u0020session\u0020if\u0020one\u0020isn\u0027t\u0020already\u0020started", + "url": "classes/Leaf-Http-Session.html#method_start" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020session\u0020variable", + "url": "classes/Leaf-Http-Session.html#method_get" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aretrieve\u0028\u0029", + "name": "retrieve", + "summary": "Returns\u0020the\u0020requested\u0020value\u0020and\u0020removes\u0020it\u0020from\u0020the\u0020session", + "url": "classes/Leaf-Http-Session.html#method_retrieve" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Abody\u0028\u0029", + "name": "body", + "summary": "Get\u0020all\u0020session\u0020variables\u0020as\u0020an\u0020array", + "url": "classes/Leaf-Http-Session.html#method_body" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020all\u0020session\u0020variables\u0020as\u0020an\u0020array", + "url": "classes/Leaf-Http-Session.html#method_all" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020new\u0020session\u0020variable", + "url": "classes/Leaf-Http-Session.html#method_set" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003AunsetSessionVar\u0028\u0029", + "name": "unsetSessionVar", + "summary": "Remove\u0020a\u0020session\u0020variable", + "url": "classes/Leaf-Http-Session.html#method_unsetSessionVar" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aunset\u0028\u0029", + "name": "unset", + "summary": "Remove\u0020a\u0020session\u0020variable", + "url": "classes/Leaf-Http-Session.html#method_unset" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Alias\u0020for\u0020unset", + "url": "classes/Leaf-Http-Session.html#method_delete" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aremove\u0028\u0029", + "name": "remove", + "summary": "Remove\u0020a\u0020session\u0020variable", + "url": "classes/Leaf-Http-Session.html#method_remove" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Remove\u0020all\u0020session\u0020variables", + "url": "classes/Leaf-Http-Session.html#method_clear" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Adestroy\u0028\u0029", + "name": "destroy", + "summary": "End\u0020the\u0020current\u0020session", + "url": "classes/Leaf-Http-Session.html#method_destroy" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Reset\u0020the\u0020current\u0020session", + "url": "classes/Leaf-Http-Session.html#method_reset" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aid\u0028\u0029", + "name": "id", + "summary": "Get\u0020the\u0020current\u0020session\u0020id\u003A\u0020will\u0020set\u0020the\u0020session\u0020id\u0020if\u0020none\u0020is\u0020found", + "url": "classes/Leaf-Http-Session.html#method_id" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aregenerate\u0028\u0029", + "name": "regenerate", + "summary": "Regenerate\u0020the\u0020session\u0020id\/Generate\u0020a\u0020new\u0020session\u0020if\u0020none\u0020exists", + "url": "classes/Leaf-Http-Session.html#method_regenerate" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aencode\u0028\u0029", + "name": "encode", + "summary": "Encodes\u0020the\u0020current\u0020session\u0020data\u0020as\u0020a\u0020string", + "url": "classes/Leaf-Http-Session.html#method_encode" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Adecode\u0028\u0029", + "name": "decode", + "summary": "Decodes\u0020session\u0020data\u0020from\u0020a\u0020string", + "url": "classes/Leaf-Http-Session.html#method_decode" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Aflash\u0028\u0029", + "name": "flash", + "summary": "Set\u0020or\u0020get\u0020a\u0020flash\u0020message", + "url": "classes/Leaf-Http-Session.html#method_flash" + }, { + "fqsen": "\\Leaf\\Http\\Session\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Has\u0020Session\u0020Item", + "url": "classes/Leaf-Http-Session.html#method_has" + }, { + "fqsen": "\\Leaf\\Vite", + "name": "Vite", + "summary": "", + "url": "classes/Leaf-Vite.html" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003Aconfig\u0028\u0029", + "name": "config", + "summary": "Config\u0020for\u0020vite\u0020paths", + "url": "classes/Leaf-Vite.html#method_config" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024preloadedAssets", + "name": "preloadedAssets", + "summary": "The\u0020preloaded\u0020assets.", + "url": "classes/Leaf-Vite.html#property_preloadedAssets" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AcspNonce\u0028\u0029", + "name": "cspNonce", + "summary": "Get\u0020the\u0020Content\u0020Security\u0020Policy\u0020nonce\u0020applied\u0020to\u0020all\u0020generated\u0020tags.", + "url": "classes/Leaf-Vite.html#method_cspNonce" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AuseCspNonce\u0028\u0029", + "name": "useCspNonce", + "summary": "Generate\u0020or\u0020set\u0020a\u0020Content\u0020Security\u0020Policy\u0020nonce\u0020to\u0020apply\u0020to\u0020all\u0020generated\u0020tags.", + "url": "classes/Leaf-Vite.html#method_useCspNonce" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AuseIntegrityKey\u0028\u0029", + "name": "useIntegrityKey", + "summary": "Use\u0020the\u0020given\u0020key\u0020to\u0020detect\u0020integrity\u0020hashes\u0020in\u0020the\u0020manifest.", + "url": "classes/Leaf-Vite.html#method_useIntegrityKey" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AwithEntryPoints\u0028\u0029", + "name": "withEntryPoints", + "summary": "Set\u0020the\u0020Vite\u0020entry\u0020points.", + "url": "classes/Leaf-Vite.html#method_withEntryPoints" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AuseManifestFilename\u0028\u0029", + "name": "useManifestFilename", + "summary": "Set\u0020the\u0020filename\u0020for\u0020the\u0020manifest\u0020file.", + "url": "classes/Leaf-Vite.html#method_useManifestFilename" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AhotFile\u0028\u0029", + "name": "hotFile", + "summary": "Get\u0020the\u0020Vite\u0020\u0022hot\u0022\u0020file\u0020path.", + "url": "classes/Leaf-Vite.html#method_hotFile" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AuseScriptTagAttributes\u0028\u0029", + "name": "useScriptTagAttributes", + "summary": "Use\u0020the\u0020given\u0020callback\u0020to\u0020resolve\u0020attributes\u0020for\u0020script\u0020tags.", + "url": "classes/Leaf-Vite.html#method_useScriptTagAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AuseStyleTagAttributes\u0028\u0029", + "name": "useStyleTagAttributes", + "summary": "Use\u0020the\u0020given\u0020callback\u0020to\u0020resolve\u0020attributes\u0020for\u0020style\u0020tags.", + "url": "classes/Leaf-Vite.html#method_useStyleTagAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AusePreloadTagAttributes\u0028\u0029", + "name": "usePreloadTagAttributes", + "summary": "Use\u0020the\u0020given\u0020callback\u0020to\u0020resolve\u0020attributes\u0020for\u0020preload\u0020tags.", + "url": "classes/Leaf-Vite.html#method_usePreloadTagAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "Generate\u0020Vite\u0020tags\u0020for\u0020an\u0020entrypoint.", + "url": "classes/Leaf-Vite.html#method_build" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmakeTagForChunk\u0028\u0029", + "name": "makeTagForChunk", + "summary": "Make\u0020tag\u0020for\u0020the\u0020given\u0020chunk.", + "url": "classes/Leaf-Vite.html#method_makeTagForChunk" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmakePreloadTagForChunk\u0028\u0029", + "name": "makePreloadTagForChunk", + "summary": "Make\u0020a\u0020preload\u0020tag\u0020for\u0020the\u0020given\u0020chunk.", + "url": "classes/Leaf-Vite.html#method_makePreloadTagForChunk" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AresolveScriptTagAttributes\u0028\u0029", + "name": "resolveScriptTagAttributes", + "summary": "Resolve\u0020the\u0020attributes\u0020for\u0020the\u0020chunks\u0020generated\u0020script\u0020tag.", + "url": "classes/Leaf-Vite.html#method_resolveScriptTagAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AresolveStylesheetTagAttributes\u0028\u0029", + "name": "resolveStylesheetTagAttributes", + "summary": "Resolve\u0020the\u0020attributes\u0020for\u0020the\u0020chunks\u0020generated\u0020stylesheet\u0020tag.", + "url": "classes/Leaf-Vite.html#method_resolveStylesheetTagAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AresolvePreloadTagAttributes\u0028\u0029", + "name": "resolvePreloadTagAttributes", + "summary": "Resolve\u0020the\u0020attributes\u0020for\u0020the\u0020chunks\u0020generated\u0020preload\u0020tag.", + "url": "classes/Leaf-Vite.html#method_resolvePreloadTagAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmakeTag\u0028\u0029", + "name": "makeTag", + "summary": "Generate\u0020an\u0020appropriate\u0020tag\u0020for\u0020the\u0020given\u0020URL\u0020in\u0020HMR\u0020mode.", + "url": "classes/Leaf-Vite.html#method_makeTag" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmakeScriptTagWithAttributes\u0028\u0029", + "name": "makeScriptTagWithAttributes", + "summary": "Generate\u0020a\u0020script\u0020tag\u0020with\u0020attributes\u0020for\u0020the\u0020given\u0020URL.", + "url": "classes/Leaf-Vite.html#method_makeScriptTagWithAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmakeStylesheetTagWithAttributes\u0028\u0029", + "name": "makeStylesheetTagWithAttributes", + "summary": "Generate\u0020a\u0020link\u0020tag\u0020with\u0020attributes\u0020for\u0020the\u0020given\u0020URL.", + "url": "classes/Leaf-Vite.html#method_makeStylesheetTagWithAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AisCssPath\u0028\u0029", + "name": "isCssPath", + "summary": "Determine\u0020whether\u0020the\u0020given\u0020path\u0020is\u0020a\u0020CSS\u0020file.", + "url": "classes/Leaf-Vite.html#method_isCssPath" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AparseAttributes\u0028\u0029", + "name": "parseAttributes", + "summary": "Parse\u0020the\u0020attributes\u0020into\u0020key\u003D\u0022value\u0022\u0020strings.", + "url": "classes/Leaf-Vite.html#method_parseAttributes" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AreactRefresh\u0028\u0029", + "name": "reactRefresh", + "summary": "Generate\u0020React\u0020refresh\u0020runtime\u0020script.", + "url": "classes/Leaf-Vite.html#method_reactRefresh" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AhotAsset\u0028\u0029", + "name": "hotAsset", + "summary": "Get\u0020the\u0020path\u0020to\u0020a\u0020given\u0020asset\u0020when\u0020running\u0020in\u0020HMR\u0020mode.", + "url": "classes/Leaf-Vite.html#method_hotAsset" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003Aasset\u0028\u0029", + "name": "asset", + "summary": "Get\u0020the\u0020URL\u0020for\u0020an\u0020asset.", + "url": "classes/Leaf-Vite.html#method_asset" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AassetPath\u0028\u0029", + "name": "assetPath", + "summary": "Generate\u0020an\u0020asset\u0020path\u0020for\u0020the\u0020application.", + "url": "classes/Leaf-Vite.html#method_assetPath" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003Amanifest\u0028\u0029", + "name": "manifest", + "summary": "Get\u0020the\u0020the\u0020manifest\u0020file\u0020for\u0020the\u0020given\u0020build\u0020directory.", + "url": "classes/Leaf-Vite.html#method_manifest" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmanifestPath\u0028\u0029", + "name": "manifestPath", + "summary": "Get\u0020the\u0020path\u0020to\u0020the\u0020manifest\u0020file\u0020for\u0020the\u0020given\u0020build\u0020directory.", + "url": "classes/Leaf-Vite.html#method_manifestPath" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AmanifestHash\u0028\u0029", + "name": "manifestHash", + "summary": "Get\u0020a\u0020unique\u0020hash\u0020representing\u0020the\u0020current\u0020manifest,\u0020or\u0020null\u0020if\u0020there\u0020is\u0020no\u0020manifest.", + "url": "classes/Leaf-Vite.html#method_manifestHash" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "Get\u0020the\u0020chunk\u0020for\u0020the\u0020given\u0020entry\u0020point\u0020\/\u0020asset.", + "url": "classes/Leaf-Vite.html#method_chunk" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003AisRunningHot\u0028\u0029", + "name": "isRunningHot", + "summary": "Determine\u0020if\u0020the\u0020HMR\u0020server\u0020is\u0020running.", + "url": "classes/Leaf-Vite.html#method_isRunningHot" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024nonce", + "name": "nonce", + "summary": "The\u0020Content\u0020Security\u0020Policy\u0020nonce\u0020to\u0020apply\u0020to\u0020all\u0020generated\u0020tags.", + "url": "classes/Leaf-Vite.html#property_nonce" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024integrityKey", + "name": "integrityKey", + "summary": "The\u0020key\u0020to\u0020check\u0020for\u0020integrity\u0020hashes\u0020within\u0020the\u0020manifest.", + "url": "classes/Leaf-Vite.html#property_integrityKey" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024entryPoints", + "name": "entryPoints", + "summary": "The\u0020configured\u0020entry\u0020points.", + "url": "classes/Leaf-Vite.html#property_entryPoints" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024paths", + "name": "paths", + "summary": "The\u0020configured\u0020paths", + "url": "classes/Leaf-Vite.html#property_paths" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024manifestFilename", + "name": "manifestFilename", + "summary": "The\u0020name\u0020of\u0020the\u0020manifest\u0020file.", + "url": "classes/Leaf-Vite.html#property_manifestFilename" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024scriptTagAttributesResolvers", + "name": "scriptTagAttributesResolvers", + "summary": "The\u0020script\u0020tag\u0020attributes\u0020resolvers.", + "url": "classes/Leaf-Vite.html#property_scriptTagAttributesResolvers" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024styleTagAttributesResolvers", + "name": "styleTagAttributesResolvers", + "summary": "The\u0020style\u0020tag\u0020attributes\u0020resolvers.", + "url": "classes/Leaf-Vite.html#property_styleTagAttributesResolvers" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024preloadTagAttributesResolvers", + "name": "preloadTagAttributesResolvers", + "summary": "The\u0020preload\u0020tag\u0020attributes\u0020resolvers.", + "url": "classes/Leaf-Vite.html#property_preloadTagAttributesResolvers" + }, { + "fqsen": "\\Leaf\\Vite\u003A\u003A\u0024manifests", + "name": "manifests", + "summary": "The\u0020cached\u0020manifest\u0020files.", + "url": "classes/Leaf-Vite.html#property_manifests" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\LazyMessageFormatter", + "name": "LazyMessageFormatter", + "summary": "", + "url": "classes/Carbon-MessageFormatter-LazyMessageFormatter.html" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\LazyMessageFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Formats\u0020a\u0020localized\u0020message\u0020pattern\u0020with\u0020given\u0020arguments.", + "url": "classes/Carbon-MessageFormatter-LazyMessageFormatter.html#method_format" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\LazyMessageFormatter\u003A\u003AtransformLocale\u0028\u0029", + "name": "transformLocale", + "summary": "", + "url": "classes/Carbon-MessageFormatter-LazyMessageFormatter.html#method_transformLocale" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\LazyMessageFormatter\u003A\u003AchoiceFormat\u0028\u0029", + "name": "choiceFormat", + "summary": "", + "url": "classes/Carbon-MessageFormatter-LazyMessageFormatter.html#method_choiceFormat" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractReflectionMacro", + "name": "AbstractReflectionMacro", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractReflectionMacro.html" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractReflectionMacro\u003A\u003AgetReflection\u0028\u0029", + "name": "getReflection", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractReflectionMacro.html#method_getReflection" + }, { + "fqsen": "\\Carbon\\PHPStan\\LazyMacro", + "name": "LazyMacro", + "summary": "", + "url": "classes/Carbon-PHPStan-LazyMacro.html" + }, { + "fqsen": "\\Carbon\\PHPStan\\LazyMacro\u003A\u003AgetFileName\u0028\u0029", + "name": "getFileName", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-LazyMacro.html#method_getFileName" + }, { + "fqsen": "\\Carbon\\PHPStan\\LazyMacro\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-LazyMacro.html#method_getStartLine" + }, { + "fqsen": "\\Carbon\\PHPStan\\LazyMacro\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-LazyMacro.html#method_getEndLine" + }, { + "fqsen": "\\Carbon\\LazyTranslator", + "name": "LazyTranslator", + "summary": "", + "url": "classes/Carbon-LazyTranslator.html" + }, { + "fqsen": "\\Carbon\\LazyTranslator\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "Returns\u0020the\u0020translation.", + "url": "classes/Carbon-LazyTranslator.html#method_trans" + }, { + "fqsen": "\\Carbon\\LazyTranslator\u003A\u003AgetFromCatalogue\u0028\u0029", + "name": "getFromCatalogue", + "summary": "", + "url": "classes/Carbon-LazyTranslator.html#method_getFromCatalogue" + }, { + "fqsen": "\\Carbon\\LazyTranslator\u003A\u003AgetPrivateProperty\u0028\u0029", + "name": "getPrivateProperty", + "summary": "", + "url": "classes/Carbon-LazyTranslator.html#method_getPrivateProperty" + }, { + "fqsen": "\\getMaxHistoryMonthsByAmount\u0028\u0029", + "name": "getMaxHistoryMonthsByAmount", + "summary": "", + "url": "namespaces/default.html#function_getMaxHistoryMonthsByAmount" + }, { + "fqsen": "\\getHtmlAttribute\u0028\u0029", + "name": "getHtmlAttribute", + "summary": "", + "url": "namespaces/default.html#function_getHtmlAttribute" + }, { + "fqsen": "\\getOpenCollectiveSponsors\u0028\u0029", + "name": "getOpenCollectiveSponsors", + "summary": "", + "url": "namespaces/default.html#function_getOpenCollectiveSponsors" + }, { + "fqsen": "\\Carbon\\AbstractTranslator", + "name": "AbstractTranslator", + "summary": "", + "url": "classes/Carbon-AbstractTranslator.html" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Return\u0020a\u0020singleton\u0020instance\u0020of\u0020Translator.", + "url": "classes/Carbon-AbstractTranslator.html#method_get" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Carbon-AbstractTranslator.html#method___construct" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AgetDirectories\u0028\u0029", + "name": "getDirectories", + "summary": "Returns\u0020the\u0020list\u0020of\u0020directories\u0020translation\u0020files\u0020are\u0020searched\u0020in.", + "url": "classes/Carbon-AbstractTranslator.html#method_getDirectories" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AsetDirectories\u0028\u0029", + "name": "setDirectories", + "summary": "Set\u0020list\u0020of\u0020directories\u0020translation\u0020files\u0020are\u0020searched\u0020in.", + "url": "classes/Carbon-AbstractTranslator.html#method_setDirectories" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AaddDirectory\u0028\u0029", + "name": "addDirectory", + "summary": "Add\u0020a\u0020directory\u0020to\u0020the\u0020list\u0020translation\u0020files\u0020are\u0020searched\u0020in.", + "url": "classes/Carbon-AbstractTranslator.html#method_addDirectory" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AremoveDirectory\u0028\u0029", + "name": "removeDirectory", + "summary": "Remove\u0020a\u0020directory\u0020from\u0020the\u0020list\u0020translation\u0020files\u0020are\u0020searched\u0020in.", + "url": "classes/Carbon-AbstractTranslator.html#method_removeDirectory" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AresetMessages\u0028\u0029", + "name": "resetMessages", + "summary": "Reset\u0020messages\u0020of\u0020a\u0020locale\u0020\u0028all\u0020locale\u0020if\u0020no\u0020locale\u0020passed\u0029.", + "url": "classes/Carbon-AbstractTranslator.html#method_resetMessages" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AgetLocalesFiles\u0028\u0029", + "name": "getLocalesFiles", + "summary": "Returns\u0020the\u0020list\u0020of\u0020files\u0020matching\u0020a\u0020given\u0020locale\u0020prefix\u0020\u0028or\u0020all\u0020if\u0020empty\u0029.", + "url": "classes/Carbon-AbstractTranslator.html#method_getLocalesFiles" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AgetAvailableLocales\u0028\u0029", + "name": "getAvailableLocales", + "summary": "Returns\u0020the\u0020list\u0020of\u0020internally\u0020available\u0020locales\u0020and\u0020already\u0020loaded\u0020custom\u0020locales.", + "url": "classes/Carbon-AbstractTranslator.html#method_getAvailableLocales" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003Atranslate\u0028\u0029", + "name": "translate", + "summary": "", + "url": "classes/Carbon-AbstractTranslator.html#method_translate" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AloadMessagesFromFile\u0028\u0029", + "name": "loadMessagesFromFile", + "summary": "Init\u0020messages\u0020language\u0020from\u0020matching\u0020file\u0020in\u0020Lang\u0020directory.", + "url": "classes/Carbon-AbstractTranslator.html#method_loadMessagesFromFile" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AsetMessages\u0028\u0029", + "name": "setMessages", + "summary": "Set\u0020messages\u0020of\u0020a\u0020locale\u0020and\u0020take\u0020file\u0020first\u0020if\u0020present.", + "url": "classes/Carbon-AbstractTranslator.html#method_setMessages" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AsetTranslations\u0028\u0029", + "name": "setTranslations", + "summary": "Set\u0020messages\u0020of\u0020the\u0020current\u0020locale\u0020and\u0020take\u0020file\u0020first\u0020if\u0020present.", + "url": "classes/Carbon-AbstractTranslator.html#method_setTranslations" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "Get\u0020messages\u0020of\u0020a\u0020locale,\u0020if\u0020none\u0020given,\u0020return\u0020all\u0020the\nlanguages.", + "url": "classes/Carbon-AbstractTranslator.html#method_getMessages" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Set\u0020the\u0020current\u0020translator\u0020locale\u0020and\u0020indicate\u0020if\u0020the\u0020source\u0020locale\u0020file\u0020exists", + "url": "classes/Carbon-AbstractTranslator.html#method_setLocale" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A__debugInfo\u0028\u0029", + "name": "__debugInfo", + "summary": "Show\u0020locale\u0020on\u0020var_dump\u0028\u0029.", + "url": "classes/Carbon-AbstractTranslator.html#method___debugInfo" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003AcompareChunkLists\u0028\u0029", + "name": "compareChunkLists", + "summary": "", + "url": "classes/Carbon-AbstractTranslator.html#method_compareChunkLists" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A\u0024singletons", + "name": "singletons", + "summary": "Translator\u0020singletons\u0020for\u0020each\u0020language.", + "url": "classes/Carbon-AbstractTranslator.html#property_singletons" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A\u0024messages", + "name": "messages", + "summary": "List\u0020of\u0020custom\u0020localized\u0020messages.", + "url": "classes/Carbon-AbstractTranslator.html#property_messages" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A\u0024directories", + "name": "directories", + "summary": "List\u0020of\u0020custom\u0020directories\u0020that\u0020contain\u0020translation\u0020files.", + "url": "classes/Carbon-AbstractTranslator.html#property_directories" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A\u0024initializing", + "name": "initializing", + "summary": "Set\u0020to\u0020true\u0020while\u0020constructing.", + "url": "classes/Carbon-AbstractTranslator.html#property_initializing" + }, { + "fqsen": "\\Carbon\\AbstractTranslator\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "List\u0020of\u0020locales\u0020aliases.", + "url": "classes/Carbon-AbstractTranslator.html#property_aliases" + }, { + "fqsen": "\\Carbon\\Carbon", + "name": "Carbon", + "summary": "A\u0020simple\u0020API\u0020extension\u0020for\u0020DateTime.", + "url": "classes/Carbon-Carbon.html" + }, { + "fqsen": "\\Carbon\\Carbon\u003A\u003AisMutable\u0028\u0029", + "name": "isMutable", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020class\/instance\u0020is\u0020mutable.", + "url": "classes/Carbon-Carbon.html#method_isMutable" + }, { + "fqsen": "\\Carbon\\CarbonConverterInterface", + "name": "CarbonConverterInterface", + "summary": "", + "url": "classes/Carbon-CarbonConverterInterface.html" + }, { + "fqsen": "\\Carbon\\CarbonConverterInterface\u003A\u003AconvertDate\u0028\u0029", + "name": "convertDate", + "summary": "", + "url": "classes/Carbon-CarbonConverterInterface.html#method_convertDate" + }, { + "fqsen": "\\Carbon\\CarbonImmutable", + "name": "CarbonImmutable", + "summary": "A\u0020simple\u0020API\u0020extension\u0020for\u0020DateTimeImmutable.", + "url": "classes/Carbon-CarbonImmutable.html" + }, { + "fqsen": "\\Carbon\\CarbonImmutable\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Update\u0020constructedObjectId\u0020on\u0020cloned.", + "url": "classes/Carbon-CarbonImmutable.html#method___clone" + }, { + "fqsen": "\\Carbon\\CarbonImmutable\u003A\u003AstartOfTime\u0028\u0029", + "name": "startOfTime", + "summary": "Create\u0020a\u0020very\u0020old\u0020date\u0020representing\u0020start\u0020of\u0020time.", + "url": "classes/Carbon-CarbonImmutable.html#method_startOfTime" + }, { + "fqsen": "\\Carbon\\CarbonImmutable\u003A\u003AendOfTime\u0028\u0029", + "name": "endOfTime", + "summary": "Create\u0020a\u0020very\u0020far\u0020date\u0020representing\u0020end\u0020of\u0020time.", + "url": "classes/Carbon-CarbonImmutable.html#method_endOfTime" + }, { + "fqsen": "\\Carbon\\CarbonImmutable\u003A\u003AgetEndOfTimeYear\u0028\u0029", + "name": "getEndOfTimeYear", + "summary": "", + "url": "classes/Carbon-CarbonImmutable.html#method_getEndOfTimeYear" + }, { + "fqsen": "\\Carbon\\CarbonImmutable\u003A\u003AgetStartOfTimeYear\u0028\u0029", + "name": "getStartOfTimeYear", + "summary": "", + "url": "classes/Carbon-CarbonImmutable.html#method_getStartOfTimeYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface", + "name": "CarbonInterface", + "summary": "Common\u0020interface\u0020for\u0020Carbon\u0020and\u0020CarbonImmutable.", + "url": "classes/Carbon-CarbonInterface.html" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020handle\u0020calls\u0020to\u0020the\u0020class.", + "url": "classes/Carbon-CarbonInterface.html#method___call" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Dynamically\u0020handle\u0020calls\u0020to\u0020the\u0020class.", + "url": "classes/Carbon-CarbonInterface.html#method___callStatic" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Update\u0020constructedObjectId\u0020on\u0020cloned.", + "url": "classes/Carbon-CarbonInterface.html#method___clone" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Carbon\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method___construct" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__debugInfo\u0028\u0029", + "name": "__debugInfo", + "summary": "Show\u0020truthy\u0020properties\u0020on\u0020var_dump\u0028\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method___debugInfo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Get\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-CarbonInterface.html#method___get" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Check\u0020if\u0020an\u0020attribute\u0020exists\u0020on\u0020the\u0020object", + "url": "classes/Carbon-CarbonInterface.html#method___isset" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Set\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-CarbonInterface.html#method___set" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__set_state\u0028\u0029", + "name": "__set_state", + "summary": "The\u0020__set_state\u0020handler.", + "url": "classes/Carbon-CarbonInterface.html#method___set_state" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__sleep\u0028\u0029", + "name": "__sleep", + "summary": "Returns\u0020the\u0020list\u0020of\u0020properties\u0020to\u0020dump\u0020on\u0020serialize\u0028\u0029\u0020called\u0020on.", + "url": "classes/Carbon-CarbonInterface.html#method___sleep" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020a\u0020string\u0020using\u0020the\u0020set\u0020format", + "url": "classes/Carbon-CarbonInterface.html#method___toString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020given\u0020units\u0020or\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_add" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AaddRealUnit\u0028\u0029", + "name": "addRealUnit", + "summary": "Add\u0020seconds\u0020to\u0020the\u0020instance\u0020using\u0020timestamp.\u0020Positive\u0020\u0024value\u0020travels\nforward\u0020while\u0020negative\u0020\u0024value\u0020travels\u0020into\u0020the\u0020past.", + "url": "classes/Carbon-CarbonInterface.html#method_addRealUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AaddUnit\u0028\u0029", + "name": "addUnit", + "summary": "Add\u0020given\u0020units\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_addUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AaddUnitNoOverflow\u0028\u0029", + "name": "addUnitNoOverflow", + "summary": "Add\u0020any\u0020unit\u0020to\u0020a\u0020new\u0020value\u0020without\u0020overflowing\u0020current\u0020other\u0020unit\u0020given.", + "url": "classes/Carbon-CarbonInterface.html#method_addUnitNoOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aago\u0028\u0029", + "name": "ago", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020an\u0020other\ninstance\u0020given\u0020to\u0020now", + "url": "classes/Carbon-CarbonInterface.html#method_ago" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aaverage\u0028\u0029", + "name": "average", + "summary": "Modify\u0020the\u0020current\u0020instance\u0020to\u0020the\u0020average\u0020of\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance\n\u0028second\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_average" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AavoidMutation\u0028\u0029", + "name": "avoidMutation", + "summary": "Clone\u0020the\u0020current\u0020instance\u0020if\u0020it\u0027s\u0020mutable.", + "url": "classes/Carbon-CarbonInterface.html#method_avoidMutation" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Abetween\u0028\u0029", + "name": "between", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others.", + "url": "classes/Carbon-CarbonInterface.html#method_between" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AbetweenExcluded\u0028\u0029", + "name": "betweenExcluded", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others,\u0020bounds\u0020excluded.", + "url": "classes/Carbon-CarbonInterface.html#method_betweenExcluded" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AbetweenIncluded\u0028\u0029", + "name": "betweenIncluded", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others,\u0020bounds\u0020included.", + "url": "classes/Carbon-CarbonInterface.html#method_betweenIncluded" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Acalendar\u0028\u0029", + "name": "calendar", + "summary": "Returns\u0020either\u0020day\u0020of\u0020week\u0020\u002B\u0020time\u0020\u0028e.g.\u0020\u0022Last\u0020Friday\u0020at\u00203\u003A30\u0020PM\u0022\u0029\u0020if\u0020reference\u0020time\u0020is\u0020within\u00207\u0020days,\nor\u0020a\u0020calendar\u0020date\u0020\u0028e.g.\u0020\u002210\/29\/2017\u0022\u0029\u0020otherwise.", + "url": "classes/Carbon-CarbonInterface.html#method_calendar" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcanBeCreatedFromFormat\u0028\u0029", + "name": "canBeCreatedFromFormat", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format\u0020and\u0020valid\u0020to\u0020create\u0020a\nnew\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_canBeCreatedFromFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Acarbonize\u0028\u0029", + "name": "carbonize", + "summary": "Return\u0020the\u0020Carbon\u0020instance\u0020passed\u0020through,\u0020a\u0020now\u0020instance\u0020in\u0020the\u0020same\u0020timezone\nif\u0020null\u0020given\u0020or\u0020parse\u0020the\u0020input\u0020if\u0020string\u0020given.", + "url": "classes/Carbon-CarbonInterface.html#method_carbonize" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Acast\u0028\u0029", + "name": "cast", + "summary": "Cast\u0020the\u0020current\u0020instance\u0020into\u0020the\u0020given\u0020class.", + "url": "classes/Carbon-CarbonInterface.html#method_cast" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aceil\u0028\u0029", + "name": "ceil", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterface.html#method_ceil" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AceilUnit\u0028\u0029", + "name": "ceilUnit", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterface.html#method_ceilUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AceilWeek\u0028\u0029", + "name": "ceilWeek", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020week.", + "url": "classes/Carbon-CarbonInterface.html#method_ceilWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Achange\u0028\u0029", + "name": "change", + "summary": "Similar\u0020to\u0020native\u0020modify\u0028\u0029\u0020method\u0020of\u0020DateTime\u0020but\u0020can\u0020handle\u0020more\u0020grammars.", + "url": "classes/Carbon-CarbonInterface.html#method_change" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcleanupDumpProperties\u0028\u0029", + "name": "cleanupDumpProperties", + "summary": "Cleanup\u0020properties\u0020attached\u0020to\u0020the\u0020public\u0020scope\u0020of\u0020DateTime\u0020when\u0020a\u0020dump\u0020of\u0020the\u0020date\u0020is\u0020requested.", + "url": "classes/Carbon-CarbonInterface.html#method_cleanupDumpProperties" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aclone\u0028\u0029", + "name": "clone", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_clone" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aclosest\u0028\u0029", + "name": "closest", + "summary": "Get\u0020the\u0020closest\u0020date\u0020from\u0020the\u0020instance\u0020\u0028second\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_closest" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Get\u0020a\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_copy" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-CarbonInterface.html#method_create" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromDate\u0028\u0029", + "name": "createFromDate", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020just\u0020a\u0020date.\u0020The\u0020time\u0020portion\u0020is\u0020set\u0020to\u0020now.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromDate" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromFormat\u0028\u0029", + "name": "createFromFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020format.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromIsoFormat\u0028\u0029", + "name": "createFromIsoFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020ISO\u0020format\u0020\u0028same\u0020replacements\u0020as\u0020\u002D\u003EisoFormat\u0028\u0029\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromIsoFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromLocaleFormat\u0028\u0029", + "name": "createFromLocaleFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020format\u0020and\u0020a\u0020string\u0020in\u0020a\u0020given\u0020language.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromLocaleFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromLocaleIsoFormat\u0028\u0029", + "name": "createFromLocaleIsoFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020ISO\u0020format\u0020and\u0020a\u0020string\u0020in\u0020a\u0020given\u0020language.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromLocaleIsoFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromTime\u0028\u0029", + "name": "createFromTime", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020just\u0020a\u0020time.\u0020The\u0020date\u0020portion\u0020is\u0020set\u0020to\u0020today.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromTime" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromTimeString\u0028\u0029", + "name": "createFromTimeString", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020time\u0020string.\u0020The\u0020date\u0020portion\u0020is\u0020set\u0020to\u0020today.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromTimeString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromTimestamp\u0028\u0029", + "name": "createFromTimestamp", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020timestamp\u0020and\u0020set\u0020the\u0020timezone\u0020\u0028use\u0020default\u0020one\u0020if\u0020not\u0020specified\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromTimestamp" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromTimestampMs\u0028\u0029", + "name": "createFromTimestampMs", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020timestamp\u0020in\u0020milliseconds.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromTimestampMs" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromTimestampMsUTC\u0028\u0029", + "name": "createFromTimestampMsUTC", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020timestamp\u0020in\u0020milliseconds.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromTimestampMsUTC" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateFromTimestampUTC\u0028\u0029", + "name": "createFromTimestampUTC", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020an\u0020timestamp\u0020keeping\u0020the\u0020timezone\u0020to\u0020UTC.", + "url": "classes/Carbon-CarbonInterface.html#method_createFromTimestampUTC" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateMidnightDate\u0028\u0029", + "name": "createMidnightDate", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020just\u0020a\u0020date.\u0020The\u0020time\u0020portion\u0020is\u0020set\u0020to\u0020midnight.", + "url": "classes/Carbon-CarbonInterface.html#method_createMidnightDate" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateSafe\u0028\u0029", + "name": "createSafe", + "summary": "Create\u0020a\u0020new\u0020safe\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-CarbonInterface.html#method_createSafe" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AcreateStrict\u0028\u0029", + "name": "createStrict", + "summary": "Create\u0020a\u0020new\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020date\u0020and\u0020time\u0020using\u0020strict\u0020validation.", + "url": "classes/Carbon-CarbonInterface.html#method_createStrict" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdayOfYear\u0028\u0029", + "name": "dayOfYear", + "summary": "Get\/set\u0020the\u0020day\u0020of\u0020year.", + "url": "classes/Carbon-CarbonInterface.html#method_dayOfYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffAsCarbonInterval\u0028\u0029", + "name": "diffAsCarbonInterval", + "summary": "Get\u0020the\u0020difference\u0020as\u0020a\u0020CarbonInterval\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_diffAsCarbonInterval" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffFiltered\u0028\u0029", + "name": "diffFiltered", + "summary": "Get\u0020the\u0020difference\u0020by\u0020the\u0020given\u0020interval\u0020using\u0020a\u0020filter\u0020closure.", + "url": "classes/Carbon-CarbonInterface.html#method_diffFiltered" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffForHumans\u0028\u0029", + "name": "diffForHumans", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020current\u0020instance\u0020to\u0020an\u0020other\ninstance\u0020given\u0020\u0028or\u0020now\u0020if\u0020null\u0020given\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_diffForHumans" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInDays\u0028\u0029", + "name": "diffInDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInDaysFiltered\u0028\u0029", + "name": "diffInDaysFiltered", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020using\u0020a\u0020filter\u0020closure\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInDaysFiltered" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInHours\u0028\u0029", + "name": "diffInHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInHours" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInHoursFiltered\u0028\u0029", + "name": "diffInHoursFiltered", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020using\u0020a\u0020filter\u0020closure\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInHoursFiltered" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInMicroseconds\u0028\u0029", + "name": "diffInMicroseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020microseconds.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInMicroseconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInMilliseconds\u0028\u0029", + "name": "diffInMilliseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020milliseconds\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInMilliseconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInMinutes\u0028\u0029", + "name": "diffInMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInMinutes" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInMonths\u0028\u0029", + "name": "diffInMonths", + "summary": "Get\u0020the\u0020difference\u0020in\u0020months\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInMonths" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInQuarters\u0028\u0029", + "name": "diffInQuarters", + "summary": "Get\u0020the\u0020difference\u0020in\u0020quarters\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInQuarters" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInRealHours\u0028\u0029", + "name": "diffInRealHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020rounded\u0020down\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInRealHours" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInRealMicroseconds\u0028\u0029", + "name": "diffInRealMicroseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020microseconds\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInRealMicroseconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInRealMilliseconds\u0028\u0029", + "name": "diffInRealMilliseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020milliseconds\u0020rounded\u0020down\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInRealMilliseconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInRealMinutes\u0028\u0029", + "name": "diffInRealMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020rounded\u0020down\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInRealMinutes" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInRealSeconds\u0028\u0029", + "name": "diffInRealSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInRealSeconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInSeconds\u0028\u0029", + "name": "diffInSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInSeconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInWeekdays\u0028\u0029", + "name": "diffInWeekdays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weekdays\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInWeekdays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInWeekendDays\u0028\u0029", + "name": "diffInWeekendDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weekend\u0020days\u0020using\u0020a\u0020filter\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInWeekendDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInWeeks\u0028\u0029", + "name": "diffInWeeks", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weeks\u0020rounded\u0020down.", + "url": "classes/Carbon-CarbonInterface.html#method_diffInWeeks" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdiffInYears\u0028\u0029", + "name": "diffInYears", + "summary": "Get\u0020the\u0020difference\u0020in\u0020years", + "url": "classes/Carbon-CarbonInterface.html#method_diffInYears" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AdisableHumanDiffOption\u0028\u0029", + "name": "disableHumanDiffOption", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_disableHumanDiffOption" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AenableHumanDiffOption\u0028\u0029", + "name": "enableHumanDiffOption", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_enableHumanDiffOption" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOf\u0028\u0029", + "name": "endOf", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020given\u0020unit.", + "url": "classes/Carbon-CarbonInterface.html#method_endOf" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfCentury\u0028\u0029", + "name": "endOfCentury", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020century\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfCentury" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfDay\u0028\u0029", + "name": "endOfDay", + "summary": "Resets\u0020the\u0020time\u0020to\u002023\u003A59\u003A59.999999\u0020end\u0020of\u0020day", + "url": "classes/Carbon-CarbonInterface.html#method_endOfDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfDecade\u0028\u0029", + "name": "endOfDecade", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020decade\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfDecade" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfHour\u0028\u0029", + "name": "endOfHour", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020hour,\u0020minutes\u0020and\u0020seconds\u0020become\u002059", + "url": "classes/Carbon-CarbonInterface.html#method_endOfHour" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfMillennium\u0028\u0029", + "name": "endOfMillennium", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020millennium\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfMillennium" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfMinute\u0028\u0029", + "name": "endOfMinute", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020minute,\u0020seconds\u0020become\u002059", + "url": "classes/Carbon-CarbonInterface.html#method_endOfMinute" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfMonth\u0028\u0029", + "name": "endOfMonth", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020month\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfQuarter\u0028\u0029", + "name": "endOfQuarter", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020quarter\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfQuarter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfSecond\u0028\u0029", + "name": "endOfSecond", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020second,\u0020microseconds\u0020become\u0020999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfSecond" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfWeek\u0028\u0029", + "name": "endOfWeek", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020week\u0020\u0028defined\u0020in\u0020\u0024weekEndsAt\u0029\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AendOfYear\u0028\u0029", + "name": "endOfYear", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020year\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-CarbonInterface.html#method_endOfYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aeq\u0028\u0029", + "name": "eq", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_eq" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AequalTo\u0028\u0029", + "name": "equalTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_equalTo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AexecuteWithLocale\u0028\u0029", + "name": "executeWithLocale", + "summary": "Set\u0020the\u0020current\u0020locale\u0020to\u0020the\u0020given,\u0020execute\u0020the\u0020passed\u0020function,\u0020reset\u0020the\u0020locale\u0020to\u0020previous\u0020one,\nthen\u0020return\u0020the\u0020result\u0020of\u0020the\u0020closure\u0020\u0028or\u0020null\u0020if\u0020the\u0020closure\u0020was\u0020void\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_executeWithLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Afarthest\u0028\u0029", + "name": "farthest", + "summary": "Get\u0020the\u0020farthest\u0020date\u0020from\u0020the\u0020instance\u0020\u0028second\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_farthest" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfirstOfMonth\u0028\u0029", + "name": "firstOfMonth", + "summary": "Modify\u0020to\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020month.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nfirst\u0020day\u0020of\u0020the\u0020current\u0020month.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_firstOfMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfirstOfQuarter\u0028\u0029", + "name": "firstOfQuarter", + "summary": "Modify\u0020to\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020quarter.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nfirst\u0020day\u0020of\u0020the\u0020current\u0020quarter.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_firstOfQuarter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfirstOfYear\u0028\u0029", + "name": "firstOfYear", + "summary": "Modify\u0020to\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020year.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nfirst\u0020day\u0020of\u0020the\u0020current\u0020year.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_firstOfYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInDays\u0028\u0029", + "name": "floatDiffInDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInHours\u0028\u0029", + "name": "floatDiffInHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInHours" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInMinutes\u0028\u0029", + "name": "floatDiffInMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInMinutes" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInMonths\u0028\u0029", + "name": "floatDiffInMonths", + "summary": "Get\u0020the\u0020difference\u0020in\u0020months\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInMonths" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealDays\u0028\u0029", + "name": "floatDiffInRealDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealHours\u0028\u0029", + "name": "floatDiffInRealHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealHours" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealMinutes\u0028\u0029", + "name": "floatDiffInRealMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealMinutes" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealMonths\u0028\u0029", + "name": "floatDiffInRealMonths", + "summary": "Get\u0020the\u0020difference\u0020in\u0020months\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealMonths" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealSeconds\u0028\u0029", + "name": "floatDiffInRealSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealSeconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealWeeks\u0028\u0029", + "name": "floatDiffInRealWeeks", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weeks\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealWeeks" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInRealYears\u0028\u0029", + "name": "floatDiffInRealYears", + "summary": "Get\u0020the\u0020difference\u0020in\u0020year\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInRealYears" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInSeconds\u0028\u0029", + "name": "floatDiffInSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInSeconds" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInWeeks\u0028\u0029", + "name": "floatDiffInWeeks", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weeks\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInWeeks" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloatDiffInYears\u0028\u0029", + "name": "floatDiffInYears", + "summary": "Get\u0020the\u0020difference\u0020in\u0020year\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_floatDiffInYears" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Afloor\u0028\u0029", + "name": "floor", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterface.html#method_floor" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloorUnit\u0028\u0029", + "name": "floorUnit", + "summary": "Truncate\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterface.html#method_floorUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfloorWeek\u0028\u0029", + "name": "floorWeek", + "summary": "Truncate\u0020the\u0020current\u0020instance\u0020week.", + "url": "classes/Carbon-CarbonInterface.html#method_floorWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AformatLocalized\u0028\u0029", + "name": "formatLocalized", + "summary": "Format\u0020the\u0020instance\u0020with\u0020the\u0020current\u0020locale.\u0020\u0020You\u0020can\u0020set\u0020the\u0020current\nlocale\u0020using\u0020setlocale\u0028\u0029\u0020https\u003A\/\/php.net\/setlocale.", + "url": "classes/Carbon-CarbonInterface.html#method_formatLocalized" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Afrom\u0028\u0029", + "name": "from", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_from" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfromNow\u0028\u0029", + "name": "fromNow", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020current\ninstance\u0020to\u0020now.", + "url": "classes/Carbon-CarbonInterface.html#method_fromNow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AfromSerialized\u0028\u0029", + "name": "fromSerialized", + "summary": "Create\u0020an\u0020instance\u0020from\u0020a\u0020serialized\u0020string.", + "url": "classes/Carbon-CarbonInterface.html#method_fromSerialized" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgenericMacro\u0028\u0029", + "name": "genericMacro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Carbon-CarbonInterface.html#method_genericMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-CarbonInterface.html#method_get" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetAltNumber\u0028\u0029", + "name": "getAltNumber", + "summary": "Returns\u0020the\u0020alternative\u0020number\u0020for\u0020a\u0020given\u0020date\u0020property\u0020if\u0020available\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_getAltNumber" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetAvailableLocales\u0028\u0029", + "name": "getAvailableLocales", + "summary": "Returns\u0020the\u0020list\u0020of\u0020internally\u0020available\u0020locales\u0020and\u0020already\u0020loaded\u0020custom\u0020locales.", + "url": "classes/Carbon-CarbonInterface.html#method_getAvailableLocales" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetAvailableLocalesInfo\u0028\u0029", + "name": "getAvailableLocalesInfo", + "summary": "Returns\u0020list\u0020of\u0020Language\u0020object\u0020for\u0020each\u0020available\u0020locale.\u0020This\u0020object\u0020allow\u0020you\u0020to\u0020get\u0020the\u0020ISO\u0020name,\u0020native\nname,\u0020region\u0020and\u0020variant\u0020of\u0020the\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_getAvailableLocalesInfo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetCalendarFormats\u0028\u0029", + "name": "getCalendarFormats", + "summary": "Returns\u0020list\u0020of\u0020calendar\u0020formats\u0020for\u0020ISO\u0020formatting.", + "url": "classes/Carbon-CarbonInterface.html#method_getCalendarFormats" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetDays\u0028\u0029", + "name": "getDays", + "summary": "Get\u0020the\u0020days\u0020of\u0020the\u0020week", + "url": "classes/Carbon-CarbonInterface.html#method_getDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetDaysFromStartOfWeek\u0028\u0029", + "name": "getDaysFromStartOfWeek", + "summary": "Return\u0020the\u0020number\u0020of\u0020days\u0020since\u0020the\u0020start\u0020of\u0020the\u0020week\u0020\u0028using\u0020the\u0020current\u0020locale\u0020or\u0020the\u0020first\u0020parameter\nif\u0020explicitly\u0020given\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getDaysFromStartOfWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetFallbackLocale\u0028\u0029", + "name": "getFallbackLocale", + "summary": "Get\u0020the\u0020fallback\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_getFallbackLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetFormatsToIsoReplacements\u0028\u0029", + "name": "getFormatsToIsoReplacements", + "summary": "List\u0020of\u0020replacements\u0020from\u0020date\u0028\u0029\u0020format\u0020to\u0020isoFormat\u0028\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getFormatsToIsoReplacements" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetHumanDiffOptions\u0028\u0029", + "name": "getHumanDiffOptions", + "summary": "Return\u0020default\u0020humanDiff\u0028\u0029\u0020options\u0020\u0028merged\u0020flags\u0020as\u0020integer\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getHumanDiffOptions" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetIsoFormats\u0028\u0029", + "name": "getIsoFormats", + "summary": "Returns\u0020list\u0020of\u0020locale\u0020formats\u0020for\u0020ISO\u0020formatting.", + "url": "classes/Carbon-CarbonInterface.html#method_getIsoFormats" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetIsoUnits\u0028\u0029", + "name": "getIsoUnits", + "summary": "Returns\u0020list\u0020of\u0020locale\u0020units\u0020for\u0020ISO\u0020formatting.", + "url": "classes/Carbon-CarbonInterface.html#method_getIsoUnits" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetLastErrors\u0028\u0029", + "name": "getLastErrors", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-CarbonInterface.html#method_getLastErrors" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetLocalMacro\u0028\u0029", + "name": "getLocalMacro", + "summary": "Get\u0020the\u0020raw\u0020callable\u0020macro\u0020registered\u0020globally\u0020or\u0020locally\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Carbon-CarbonInterface.html#method_getLocalMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetLocalTranslator\u0028\u0029", + "name": "getLocalTranslator", + "summary": "Get\u0020the\u0020translator\u0020of\u0020the\u0020current\u0020instance\u0020or\u0020the\u0020default\u0020if\u0020none\u0020set.", + "url": "classes/Carbon-CarbonInterface.html#method_getLocalTranslator" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Get\u0020the\u0020current\u0020translator\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_getLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetMacro\u0028\u0029", + "name": "getMacro", + "summary": "Get\u0020the\u0020raw\u0020callable\u0020macro\u0020registered\u0020globally\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Carbon-CarbonInterface.html#method_getMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetMidDayAt\u0028\u0029", + "name": "getMidDayAt", + "summary": "get\u0020midday\/noon\u0020hour", + "url": "classes/Carbon-CarbonInterface.html#method_getMidDayAt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetOffsetString\u0028\u0029", + "name": "getOffsetString", + "summary": "Returns\u0020the\u0020offset\u0020hour\u0020and\u0020minute\u0020formatted\u0020with\u0020\u002B\/\u002D\u0020and\u0020a\u0020given\u0020separator\u0020\u0028\u0022\u003A\u0022\u0020by\u0020default\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getOffsetString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetPaddedUnit\u0028\u0029", + "name": "getPaddedUnit", + "summary": "Returns\u0020a\u0020unit\u0020of\u0020the\u0020instance\u0020padded\u0020with\u00200\u0020by\u0020default\u0020or\u0020any\u0020other\u0020string\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterface.html#method_getPaddedUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetPreciseTimestamp\u0028\u0029", + "name": "getPreciseTimestamp", + "summary": "Returns\u0020a\u0020timestamp\u0020rounded\u0020with\u0020the\u0020given\u0020precision\u0020\u00286\u0020by\u0020default\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getPreciseTimestamp" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetSettings\u0028\u0029", + "name": "getSettings", + "summary": "Returns\u0020current\u0020local\u0020settings.", + "url": "classes/Carbon-CarbonInterface.html#method_getSettings" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTestNow\u0028\u0029", + "name": "getTestNow", + "summary": "Get\u0020the\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.", + "url": "classes/Carbon-CarbonInterface.html#method_getTestNow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTimeFormatByPrecision\u0028\u0029", + "name": "getTimeFormatByPrecision", + "summary": "Return\u0020a\u0020format\u0020from\u0020H\u003Ai\u0020to\u0020H\u003Ai\u003As.u\u0020according\u0020to\u0020given\u0020unit\u0020precision.", + "url": "classes/Carbon-CarbonInterface.html#method_getTimeFormatByPrecision" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTimestampMs\u0028\u0029", + "name": "getTimestampMs", + "summary": "Returns\u0020the\u0020timestamp\u0020with\u0020millisecond\u0020precision.", + "url": "classes/Carbon-CarbonInterface.html#method_getTimestampMs" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslatedDayName\u0028\u0029", + "name": "getTranslatedDayName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020week\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslatedDayName" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslatedMinDayName\u0028\u0029", + "name": "getTranslatedMinDayName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020abbreviated\u0020week\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslatedMinDayName" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslatedMonthName\u0028\u0029", + "name": "getTranslatedMonthName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020month\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslatedMonthName" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslatedShortDayName\u0028\u0029", + "name": "getTranslatedShortDayName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020short\u0020week\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslatedShortDayName" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslatedShortMonthName\u0028\u0029", + "name": "getTranslatedShortMonthName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020short\u0020month\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslatedShortMonthName" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslationMessage\u0028\u0029", + "name": "getTranslationMessage", + "summary": "Returns\u0020raw\u0020translation\u0020message\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslationMessage" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslationMessageWith\u0028\u0029", + "name": "getTranslationMessageWith", + "summary": "Returns\u0020raw\u0020translation\u0020message\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslationMessageWith" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetTranslator\u0028\u0029", + "name": "getTranslator", + "summary": "Get\u0020the\u0020default\u0020translator\u0020instance\u0020in\u0020use.", + "url": "classes/Carbon-CarbonInterface.html#method_getTranslator" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetWeekEndsAt\u0028\u0029", + "name": "getWeekEndsAt", + "summary": "Get\u0020the\u0020last\u0020day\u0020of\u0020week", + "url": "classes/Carbon-CarbonInterface.html#method_getWeekEndsAt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetWeekStartsAt\u0028\u0029", + "name": "getWeekStartsAt", + "summary": "Get\u0020the\u0020first\u0020day\u0020of\u0020week", + "url": "classes/Carbon-CarbonInterface.html#method_getWeekStartsAt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgetWeekendDays\u0028\u0029", + "name": "getWeekendDays", + "summary": "Get\u0020weekend\u0020days", + "url": "classes/Carbon-CarbonInterface.html#method_getWeekendDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgreaterThan\u0028\u0029", + "name": "greaterThan", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_greaterThan" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AgreaterThanOrEqualTo\u0028\u0029", + "name": "greaterThanOrEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_greaterThanOrEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Agt\u0028\u0029", + "name": "gt", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_gt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Agte\u0028\u0029", + "name": "gte", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_gte" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasFormat\u0028\u0029", + "name": "hasFormat", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format.", + "url": "classes/Carbon-CarbonInterface.html#method_hasFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasFormatWithModifiers\u0028\u0029", + "name": "hasFormatWithModifiers", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format.", + "url": "classes/Carbon-CarbonInterface.html#method_hasFormatWithModifiers" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasLocalMacro\u0028\u0029", + "name": "hasLocalMacro", + "summary": "Checks\u0020if\u0020macro\u0020is\u0020registered\u0020globally\u0020or\u0020locally.", + "url": "classes/Carbon-CarbonInterface.html#method_hasLocalMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasLocalTranslator\u0028\u0029", + "name": "hasLocalTranslator", + "summary": "Return\u0020true\u0020if\u0020the\u0020current\u0020instance\u0020has\u0020its\u0020own\u0020translator.", + "url": "classes/Carbon-CarbonInterface.html#method_hasLocalTranslator" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasMacro\u0028\u0029", + "name": "hasMacro", + "summary": "Checks\u0020if\u0020macro\u0020is\u0020registered\u0020globally.", + "url": "classes/Carbon-CarbonInterface.html#method_hasMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasRelativeKeywords\u0028\u0029", + "name": "hasRelativeKeywords", + "summary": "Determine\u0020if\u0020a\u0020time\u0020string\u0020will\u0020produce\u0020a\u0020relative\u0020date.", + "url": "classes/Carbon-CarbonInterface.html#method_hasRelativeKeywords" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AhasTestNow\u0028\u0029", + "name": "hasTestNow", + "summary": "Determine\u0020if\u0020there\u0020is\u0020a\u0020valid\u0020test\u0020instance\u0020set.\u0020A\u0020valid\u0020test\u0020instance\nis\u0020anything\u0020that\u0020is\u0020not\u0020null.", + "url": "classes/Carbon-CarbonInterface.html#method_hasTestNow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020DateTime\u0020one.", + "url": "classes/Carbon-CarbonInterface.html#method_instance" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020date\u0020matches\u0020the\u0020given\u0020string.", + "url": "classes/Carbon-CarbonInterface.html#method_is" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisAfter\u0028\u0029", + "name": "isAfter", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_isAfter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisBefore\u0028\u0029", + "name": "isBefore", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_isBefore" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisBetween\u0028\u0029", + "name": "isBetween", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others", + "url": "classes/Carbon-CarbonInterface.html#method_isBetween" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisBirthday\u0028\u0029", + "name": "isBirthday", + "summary": "Check\u0020if\u0020its\u0020the\u0020birthday.\u0020Compares\u0020the\u0020date\/month\u0020values\u0020of\u0020the\u0020two\u0020dates.", + "url": "classes/Carbon-CarbonInterface.html#method_isBirthday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisCurrentUnit\u0028\u0029", + "name": "isCurrentUnit", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020current\u0020unit\u0020given.", + "url": "classes/Carbon-CarbonInterface.html#method_isCurrentUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisDayOfWeek\u0028\u0029", + "name": "isDayOfWeek", + "summary": "Checks\u0020if\u0020this\u0020day\u0020is\u0020a\u0020specific\u0020day\u0020of\u0020the\u0020week.", + "url": "classes/Carbon-CarbonInterface.html#method_isDayOfWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisEndOfDay\u0028\u0029", + "name": "isEndOfDay", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020end\u0020of\u0020day.", + "url": "classes/Carbon-CarbonInterface.html#method_isEndOfDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisEndOfTime\u0028\u0029", + "name": "isEndOfTime", + "summary": "Returns\u0020true\u0020if\u0020the\u0020date\u0020was\u0020created\u0020using\u0020CarbonImmutable\u003A\u003AendOfTime\u0028\u0029", + "url": "classes/Carbon-CarbonInterface.html#method_isEndOfTime" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisFuture\u0028\u0029", + "name": "isFuture", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020future,\u0020ie.\u0020greater\u0020\u0028after\u0029\u0020than\u0020now.", + "url": "classes/Carbon-CarbonInterface.html#method_isFuture" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisImmutable\u0028\u0029", + "name": "isImmutable", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020class\/instance\u0020is\u0020immutable.", + "url": "classes/Carbon-CarbonInterface.html#method_isImmutable" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisLastOfMonth\u0028\u0029", + "name": "isLastOfMonth", + "summary": "Check\u0020if\u0020today\u0020is\u0020the\u0020last\u0020day\u0020of\u0020the\u0020Month", + "url": "classes/Carbon-CarbonInterface.html#method_isLastOfMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisLeapYear\u0028\u0029", + "name": "isLeapYear", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020leap\u0020year.", + "url": "classes/Carbon-CarbonInterface.html#method_isLeapYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisLongIsoYear\u0028\u0029", + "name": "isLongIsoYear", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020long\u0020year\u0020\u0028using\u0020ISO\u00208601\u0020year\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_isLongIsoYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisLongYear\u0028\u0029", + "name": "isLongYear", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020long\u0020year\u0020\u0028using\u0020calendar\u0020year\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_isLongYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisMidday\u0028\u0029", + "name": "isMidday", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020midday.", + "url": "classes/Carbon-CarbonInterface.html#method_isMidday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisMidnight\u0028\u0029", + "name": "isMidnight", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020start\u0020of\u0020day\u0020\/\u0020midnight.", + "url": "classes/Carbon-CarbonInterface.html#method_isMidnight" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisModifiableUnit\u0028\u0029", + "name": "isModifiableUnit", + "summary": "Returns\u0020true\u0020if\u0020a\u0020property\u0020can\u0020be\u0020changed\u0020via\u0020setter.", + "url": "classes/Carbon-CarbonInterface.html#method_isModifiableUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisMutable\u0028\u0029", + "name": "isMutable", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020class\/instance\u0020is\u0020mutable.", + "url": "classes/Carbon-CarbonInterface.html#method_isMutable" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisPast\u0028\u0029", + "name": "isPast", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020past,\u0020ie.\u0020less\u0020\u0028before\u0029\u0020than\u0020now.", + "url": "classes/Carbon-CarbonInterface.html#method_isPast" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisSameAs\u0028\u0029", + "name": "isSameAs", + "summary": "Compares\u0020the\u0020formatted\u0020values\u0020of\u0020the\u0020two\u0020dates.", + "url": "classes/Carbon-CarbonInterface.html#method_isSameAs" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisSameMonth\u0028\u0029", + "name": "isSameMonth", + "summary": "Checks\u0020if\u0020the\u0020passed\u0020in\u0020date\u0020is\u0020in\u0020the\u0020same\u0020month\u0020as\u0020the\u0020instance\u00B4s\u0020month.", + "url": "classes/Carbon-CarbonInterface.html#method_isSameMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisSameQuarter\u0028\u0029", + "name": "isSameQuarter", + "summary": "Checks\u0020if\u0020the\u0020passed\u0020in\u0020date\u0020is\u0020in\u0020the\u0020same\u0020quarter\u0020as\u0020the\u0020instance\u0020quarter\u0020\u0028and\u0020year\u0020if\u0020needed\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_isSameQuarter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisSameUnit\u0028\u0029", + "name": "isSameUnit", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020current\u0020unit\u0020given.", + "url": "classes/Carbon-CarbonInterface.html#method_isSameUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisStartOfDay\u0028\u0029", + "name": "isStartOfDay", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020start\u0020of\u0020day\u0020\/\u0020midnight.", + "url": "classes/Carbon-CarbonInterface.html#method_isStartOfDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisStartOfTime\u0028\u0029", + "name": "isStartOfTime", + "summary": "Returns\u0020true\u0020if\u0020the\u0020date\u0020was\u0020created\u0020using\u0020CarbonImmutable\u003A\u003AstartOfTime\u0028\u0029", + "url": "classes/Carbon-CarbonInterface.html#method_isStartOfTime" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisStrictModeEnabled\u0028\u0029", + "name": "isStrictModeEnabled", + "summary": "Returns\u0020true\u0020if\u0020the\u0020strict\u0020mode\u0020is\u0020globally\u0020in\u0020use,\u0020false\u0020else.", + "url": "classes/Carbon-CarbonInterface.html#method_isStrictModeEnabled" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisToday\u0028\u0029", + "name": "isToday", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020today.", + "url": "classes/Carbon-CarbonInterface.html#method_isToday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisTomorrow\u0028\u0029", + "name": "isTomorrow", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020tomorrow.", + "url": "classes/Carbon-CarbonInterface.html#method_isTomorrow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisWeekday\u0028\u0029", + "name": "isWeekday", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020weekday.", + "url": "classes/Carbon-CarbonInterface.html#method_isWeekday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisWeekend\u0028\u0029", + "name": "isWeekend", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020weekend\u0020day.", + "url": "classes/Carbon-CarbonInterface.html#method_isWeekend" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisYesterday\u0028\u0029", + "name": "isYesterday", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020yesterday.", + "url": "classes/Carbon-CarbonInterface.html#method_isYesterday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisoFormat\u0028\u0029", + "name": "isoFormat", + "summary": "Format\u0020in\u0020the\u0020current\u0020language\u0020using\u0020ISO\u0020replacement\u0020patterns.", + "url": "classes/Carbon-CarbonInterface.html#method_isoFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisoWeek\u0028\u0029", + "name": "isoWeek", + "summary": "Get\/set\u0020the\u0020week\u0020number\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020ISO\u0020format\u0020if\u0020no\u0020settings\ngiven.", + "url": "classes/Carbon-CarbonInterface.html#method_isoWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisoWeekYear\u0028\u0029", + "name": "isoWeekYear", + "summary": "Set\/get\u0020the\u0020week\u0020number\u0020of\u0020year\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020ISO\u0020format\u0020if\u0020no\u0020settings\ngiven.", + "url": "classes/Carbon-CarbonInterface.html#method_isoWeekYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisoWeekday\u0028\u0029", + "name": "isoWeekday", + "summary": "Get\/set\u0020the\u0020ISO\u0020weekday\u0020from\u00201\u0020\u0028Monday\u0029\u0020to\u00207\u0020\u0028Sunday\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_isoWeekday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AisoWeeksInYear\u0028\u0029", + "name": "isoWeeksInYear", + "summary": "Get\u0020the\u0020number\u0020of\u0020weeks\u0020of\u0020the\u0020current\u0020week\u002Dyear\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020ISO\u0020format\u0020if\u0020no\u0020settings\ngiven.", + "url": "classes/Carbon-CarbonInterface.html#method_isoWeeksInYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Prepare\u0020the\u0020object\u0020for\u0020JSON\u0020serialization.", + "url": "classes/Carbon-CarbonInterface.html#method_jsonSerialize" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlastOfMonth\u0028\u0029", + "name": "lastOfMonth", + "summary": "Modify\u0020to\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020month.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nlast\u0020day\u0020of\u0020the\u0020current\u0020month.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_lastOfMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlastOfQuarter\u0028\u0029", + "name": "lastOfQuarter", + "summary": "Modify\u0020to\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020quarter.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nlast\u0020day\u0020of\u0020the\u0020current\u0020quarter.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_lastOfQuarter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlastOfYear\u0028\u0029", + "name": "lastOfYear", + "summary": "Modify\u0020to\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020year.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nlast\u0020day\u0020of\u0020the\u0020current\u0020year.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_lastOfYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlessThan\u0028\u0029", + "name": "lessThan", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_lessThan" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlessThanOrEqualTo\u0028\u0029", + "name": "lessThanOrEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_lessThanOrEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Alocale\u0028\u0029", + "name": "locale", + "summary": "Get\/set\u0020the\u0020locale\u0020for\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_locale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlocaleHasDiffOneDayWords\u0028\u0029", + "name": "localeHasDiffOneDayWords", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020words\u0020for\u00201\u002Dday\u0020diff\u0020\u0028just\u0020now,\u0020yesterday,\u0020tomorrow\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_localeHasDiffOneDayWords" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlocaleHasDiffSyntax\u0028\u0029", + "name": "localeHasDiffSyntax", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020diff\u0020syntax\u0020support\u0020\u0028ago,\u0020from\u0020now,\u0020before,\u0020after\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_localeHasDiffSyntax" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlocaleHasDiffTwoDayWords\u0028\u0029", + "name": "localeHasDiffTwoDayWords", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020words\u0020for\u00202\u002Ddays\u0020diff\u0020\u0028before\u0020yesterday,\u0020after\u0020tomorrow\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_localeHasDiffTwoDayWords" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlocaleHasPeriodSyntax\u0028\u0029", + "name": "localeHasPeriodSyntax", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020period\u0020syntax\u0020support\u0020\u0028X\u0020times,\u0020every\u0020X,\u0020from\u0020X,\u0020to\u0020X\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_localeHasPeriodSyntax" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AlocaleHasShortUnits\u0028\u0029", + "name": "localeHasShortUnits", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020short\u002Dunits\u0020support.", + "url": "classes/Carbon-CarbonInterface.html#method_localeHasShortUnits" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Alt\u0028\u0029", + "name": "lt", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_lt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Alte\u0028\u0029", + "name": "lte", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_lte" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amacro\u0028\u0029", + "name": "macro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Carbon-CarbonInterface.html#method_macro" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Make\u0020a\u0020Carbon\u0020instance\u0020from\u0020given\u0020variable\u0020if\u0020possible.", + "url": "classes/Carbon-CarbonInterface.html#method_make" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amax\u0028\u0029", + "name": "max", + "summary": "Get\u0020the\u0020maximum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_max" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AmaxValue\u0028\u0029", + "name": "maxValue", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020greatest\u0020supported\u0020date.", + "url": "classes/Carbon-CarbonInterface.html#method_maxValue" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amaximum\u0028\u0029", + "name": "maximum", + "summary": "Get\u0020the\u0020maximum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_maximum" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Ameridiem\u0028\u0029", + "name": "meridiem", + "summary": "Return\u0020the\u0020meridiem\u0020of\u0020the\u0020current\u0020time\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_meridiem" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AmidDay\u0028\u0029", + "name": "midDay", + "summary": "Modify\u0020to\u0020midday,\u0020default\u0020to\u0020self\u003A\u003A\u0024midDayAt", + "url": "classes/Carbon-CarbonInterface.html#method_midDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amin\u0028\u0029", + "name": "min", + "summary": "Get\u0020the\u0020minimum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_min" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AminValue\u0028\u0029", + "name": "minValue", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020lowest\u0020supported\u0020date.", + "url": "classes/Carbon-CarbonInterface.html#method_minValue" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aminimum\u0028\u0029", + "name": "minimum", + "summary": "Get\u0020the\u0020minimum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_minimum" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amixin\u0028\u0029", + "name": "mixin", + "summary": "Mix\u0020another\u0020object\u0020into\u0020the\u0020class.", + "url": "classes/Carbon-CarbonInterface.html#method_mixin" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Amodify\u0028\u0029", + "name": "modify", + "summary": "Calls\u0020\\DateTime\u003A\u003Amodify\u0020if\u0020mutable\u0020or\u0020\\DateTimeImmutable\u003A\u003Amodify\u0020else.", + "url": "classes/Carbon-CarbonInterface.html#method_modify" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Ane\u0028\u0029", + "name": "ne", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_ne" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "Modify\u0020to\u0020the\u0020next\u0020occurrence\u0020of\u0020a\u0020given\u0020modifier\u0020such\u0020as\u0020a\u0020day\u0020of\nthe\u0020week.\u0020If\u0020no\u0020modifier\u0020is\u0020provided,\u0020modify\u0020to\u0020the\u0020next\u0020occurrence\nof\u0020the\u0020current\u0020day\u0020of\u0020the\u0020week.\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_next" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnextWeekday\u0028\u0029", + "name": "nextWeekday", + "summary": "Go\u0020forward\u0020to\u0020the\u0020next\u0020weekday.", + "url": "classes/Carbon-CarbonInterface.html#method_nextWeekday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnextWeekendDay\u0028\u0029", + "name": "nextWeekendDay", + "summary": "Go\u0020forward\u0020to\u0020the\u0020next\u0020weekend\u0020day.", + "url": "classes/Carbon-CarbonInterface.html#method_nextWeekendDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnotEqualTo\u0028\u0029", + "name": "notEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterface.html#method_notEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Anow\u0028\u0029", + "name": "now", + "summary": "Get\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020current\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-CarbonInterface.html#method_now" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnowWithSameTz\u0028\u0029", + "name": "nowWithSameTz", + "summary": "Returns\u0020a\u0020present\u0020instance\u0020in\u0020the\u0020same\u0020timezone.", + "url": "classes/Carbon-CarbonInterface.html#method_nowWithSameTz" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnthOfMonth\u0028\u0029", + "name": "nthOfMonth", + "summary": "Modify\u0020to\u0020the\u0020given\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020month.\u0020If\u0020the\u0020calculated\u0020occurrence\u0020is\u0020outside\u0020the\u0020scope\nof\u0020the\u0020current\u0020month,\u0020then\u0020return\u0020false\u0020and\u0020no\u0020modifications\u0020are\u0020made.", + "url": "classes/Carbon-CarbonInterface.html#method_nthOfMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnthOfQuarter\u0028\u0029", + "name": "nthOfQuarter", + "summary": "Modify\u0020to\u0020the\u0020given\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020quarter.\u0020If\u0020the\u0020calculated\u0020occurrence\u0020is\u0020outside\u0020the\u0020scope\nof\u0020the\u0020current\u0020quarter,\u0020then\u0020return\u0020false\u0020and\u0020no\u0020modifications\u0020are\u0020made.", + "url": "classes/Carbon-CarbonInterface.html#method_nthOfQuarter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AnthOfYear\u0028\u0029", + "name": "nthOfYear", + "summary": "Modify\u0020to\u0020the\u0020given\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020year.\u0020If\u0020the\u0020calculated\u0020occurrence\u0020is\u0020outside\u0020the\u0020scope\nof\u0020the\u0020current\u0020year,\u0020then\u0020return\u0020false\u0020and\u0020no\u0020modifications\u0020are\u0020made.", + "url": "classes/Carbon-CarbonInterface.html#method_nthOfYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aordinal\u0028\u0029", + "name": "ordinal", + "summary": "Return\u0020a\u0020property\u0020with\u0020its\u0020ordinal.", + "url": "classes/Carbon-CarbonInterface.html#method_ordinal" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Create\u0020a\u0020carbon\u0020instance\u0020from\u0020a\u0020string.", + "url": "classes/Carbon-CarbonInterface.html#method_parse" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AparseFromLocale\u0028\u0029", + "name": "parseFromLocale", + "summary": "Create\u0020a\u0020carbon\u0020instance\u0020from\u0020a\u0020localized\u0020string\u0020\u0028in\u0020French,\u0020Japanese,\u0020Arabic,\u0020etc.\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_parseFromLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ApluralUnit\u0028\u0029", + "name": "pluralUnit", + "summary": "Returns\u0020standardized\u0020plural\u0020of\u0020a\u0020given\u0020singular\/plural\u0020unit\u0020name\u0020\u0028in\u0020English\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_pluralUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aprevious\u0028\u0029", + "name": "previous", + "summary": "Modify\u0020to\u0020the\u0020previous\u0020occurrence\u0020of\u0020a\u0020given\u0020modifier\u0020such\u0020as\u0020a\u0020day\u0020of\nthe\u0020week.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\u0020previous\u0020occurrence\nof\u0020the\u0020current\u0020day\u0020of\u0020the\u0020week.\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-CarbonInterface.html#method_previous" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ApreviousWeekday\u0028\u0029", + "name": "previousWeekday", + "summary": "Go\u0020backward\u0020to\u0020the\u0020previous\u0020weekday.", + "url": "classes/Carbon-CarbonInterface.html#method_previousWeekday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ApreviousWeekendDay\u0028\u0029", + "name": "previousWeekendDay", + "summary": "Go\u0020backward\u0020to\u0020the\u0020previous\u0020weekend\u0020day.", + "url": "classes/Carbon-CarbonInterface.html#method_previousWeekendDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Arange\u0028\u0029", + "name": "range", + "summary": "Create\u0020a\u0020iterable\u0020CarbonPeriod\u0020object\u0020from\u0020current\u0020date\u0020to\u0020a\u0020given\u0020end\u0020date\u0020\u0028and\u0020optional\u0020interval\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_range" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ArawAdd\u0028\u0029", + "name": "rawAdd", + "summary": "Call\u0020native\u0020PHP\u0020DateTime\/DateTimeImmutable\u0020add\u0028\u0029\u0020method.", + "url": "classes/Carbon-CarbonInterface.html#method_rawAdd" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ArawCreateFromFormat\u0028\u0029", + "name": "rawCreateFromFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020format.", + "url": "classes/Carbon-CarbonInterface.html#method_rawCreateFromFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ArawFormat\u0028\u0029", + "name": "rawFormat", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_rawFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ArawParse\u0028\u0029", + "name": "rawParse", + "summary": "Create\u0020a\u0020carbon\u0020instance\u0020from\u0020a\u0020string.", + "url": "classes/Carbon-CarbonInterface.html#method_rawParse" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ArawSub\u0028\u0029", + "name": "rawSub", + "summary": "Call\u0020native\u0020PHP\u0020DateTime\/DateTimeImmutable\u0020sub\u0028\u0029\u0020method.", + "url": "classes/Carbon-CarbonInterface.html#method_rawSub" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AresetMacros\u0028\u0029", + "name": "resetMacros", + "summary": "Remove\u0020all\u0020macros\u0020and\u0020generic\u0020macros.", + "url": "classes/Carbon-CarbonInterface.html#method_resetMacros" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AresetMonthsOverflow\u0028\u0029", + "name": "resetMonthsOverflow", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_resetMonthsOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AresetToStringFormat\u0028\u0029", + "name": "resetToStringFormat", + "summary": "Reset\u0020the\u0020format\u0020used\u0020to\u0020the\u0020default\u0020when\u0020type\u0020juggling\u0020a\u0020Carbon\u0020instance\u0020to\u0020a\u0020string", + "url": "classes/Carbon-CarbonInterface.html#method_resetToStringFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AresetYearsOverflow\u0028\u0029", + "name": "resetYearsOverflow", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_resetYearsOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Around\u0028\u0029", + "name": "round", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterface.html#method_round" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AroundUnit\u0028\u0029", + "name": "roundUnit", + "summary": "Round\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020and\u0020the\u0020given\u0020function.", + "url": "classes/Carbon-CarbonInterface.html#method_roundUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AroundWeek\u0028\u0029", + "name": "roundWeek", + "summary": "Round\u0020the\u0020current\u0020instance\u0020week.", + "url": "classes/Carbon-CarbonInterface.html#method_roundWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsecondsSinceMidnight\u0028\u0029", + "name": "secondsSinceMidnight", + "summary": "The\u0020number\u0020of\u0020seconds\u0020since\u0020midnight.", + "url": "classes/Carbon-CarbonInterface.html#method_secondsSinceMidnight" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsecondsUntilEndOfDay\u0028\u0029", + "name": "secondsUntilEndOfDay", + "summary": "The\u0020number\u0020of\u0020seconds\u0020until\u002023\u003A59\u003A59.", + "url": "classes/Carbon-CarbonInterface.html#method_secondsUntilEndOfDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aserialize\u0028\u0029", + "name": "serialize", + "summary": "Return\u0020a\u0020serialized\u0020string\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_serialize" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AserializeUsing\u0028\u0029", + "name": "serializeUsing", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_serializeUsing" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-CarbonInterface.html#method_set" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetDate\u0028\u0029", + "name": "setDate", + "summary": "Set\u0020the\u0020date\u0020with\u0020gregorian\u0020year,\u0020month\u0020and\u0020day\u0020numbers.", + "url": "classes/Carbon-CarbonInterface.html#method_setDate" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetDateFrom\u0028\u0029", + "name": "setDateFrom", + "summary": "Set\u0020the\u0020year,\u0020month,\u0020and\u0020date\u0020for\u0020this\u0020instance\u0020to\u0020that\u0020of\u0020the\u0020passed\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_setDateFrom" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetDateTime\u0028\u0029", + "name": "setDateTime", + "summary": "Set\u0020the\u0020date\u0020and\u0020time\u0020all\u0020together.", + "url": "classes/Carbon-CarbonInterface.html#method_setDateTime" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetDateTimeFrom\u0028\u0029", + "name": "setDateTimeFrom", + "summary": "Set\u0020the\u0020date\u0020and\u0020time\u0020for\u0020this\u0020instance\u0020to\u0020that\u0020of\u0020the\u0020passed\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_setDateTimeFrom" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetDaysFromStartOfWeek\u0028\u0029", + "name": "setDaysFromStartOfWeek", + "summary": "Set\u0020the\u0020day\u0020\u0028keeping\u0020the\u0020current\u0020time\u0029\u0020to\u0020the\u0020start\u0020of\u0020the\u0020week\u0020\u002B\u0020the\u0020number\u0020of\u0020days\u0020passed\u0020as\u0020the\u0020first\nparameter.\u0020First\u0020day\u0020of\u0020week\u0020is\u0020driven\u0020by\u0020the\u0020locale\u0020unless\u0020explicitly\u0020set\u0020with\u0020the\u0020second\u0020parameter.", + "url": "classes/Carbon-CarbonInterface.html#method_setDaysFromStartOfWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetFallbackLocale\u0028\u0029", + "name": "setFallbackLocale", + "summary": "Set\u0020the\u0020fallback\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_setFallbackLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetHumanDiffOptions\u0028\u0029", + "name": "setHumanDiffOptions", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setHumanDiffOptions" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetISODate\u0028\u0029", + "name": "setISODate", + "summary": "Set\u0020a\u0020date\u0020according\u0020to\u0020the\u0020ISO\u00208601\u0020standard\u0020\u002D\u0020using\u0020weeks\u0020and\u0020day\u0020offsets\u0020rather\u0020than\u0020specific\u0020dates.", + "url": "classes/Carbon-CarbonInterface.html#method_setISODate" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetLocalTranslator\u0028\u0029", + "name": "setLocalTranslator", + "summary": "Set\u0020the\u0020translator\u0020for\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_setLocalTranslator" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Set\u0020the\u0020current\u0020translator\u0020locale\u0020and\u0020indicate\u0020if\u0020the\u0020source\u0020locale\u0020file\u0020exists.", + "url": "classes/Carbon-CarbonInterface.html#method_setLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetMidDayAt\u0028\u0029", + "name": "setMidDayAt", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setMidDayAt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTestNow\u0028\u0029", + "name": "setTestNow", + "summary": "Set\u0020a\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.\u0020\u0020The\u0020provided\u0020instance\u0020will\u0020be\u0020returned\nspecifically\u0020under\u0020the\u0020following\u0020conditions\u003A\n\u0020\u0020\u002D\u0020A\u0020call\u0020to\u0020the\u0020static\u0020now\u0028\u0029\u0020method,\u0020ex.\u0020Carbon\u003A\u003Anow\u0028\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020null\u0020\u0028or\u0020blank\u0020string\u0029\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028null\u0029\n\u0020\u0020\u002D\u0020When\u0020the\u0020string\u0020\u0022now\u0022\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028\u0027now\u0027\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020string\u0020containing\u0020the\u0020desired\u0020time\u0020is\u0020passed\u0020to\u0020Carbon\u003A\u003Aparse\u0028\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_setTestNow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTestNowAndTimezone\u0028\u0029", + "name": "setTestNowAndTimezone", + "summary": "Set\u0020a\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.\u0020\u0020The\u0020provided\u0020instance\u0020will\u0020be\u0020returned\nspecifically\u0020under\u0020the\u0020following\u0020conditions\u003A\n\u0020\u0020\u002D\u0020A\u0020call\u0020to\u0020the\u0020static\u0020now\u0028\u0029\u0020method,\u0020ex.\u0020Carbon\u003A\u003Anow\u0028\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020null\u0020\u0028or\u0020blank\u0020string\u0029\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028null\u0029\n\u0020\u0020\u002D\u0020When\u0020the\u0020string\u0020\u0022now\u0022\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028\u0027now\u0027\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020string\u0020containing\u0020the\u0020desired\u0020time\u0020is\u0020passed\u0020to\u0020Carbon\u003A\u003Aparse\u0028\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_setTestNowAndTimezone" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTime\u0028\u0029", + "name": "setTime", + "summary": "Resets\u0020the\u0020current\u0020time\u0020of\u0020the\u0020DateTime\u0020object\u0020to\u0020a\u0020different\u0020time.", + "url": "classes/Carbon-CarbonInterface.html#method_setTime" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTimeFrom\u0028\u0029", + "name": "setTimeFrom", + "summary": "Set\u0020the\u0020hour,\u0020minute,\u0020second\u0020and\u0020microseconds\u0020for\u0020this\u0020instance\u0020to\u0020that\u0020of\u0020the\u0020passed\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_setTimeFrom" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTimeFromTimeString\u0028\u0029", + "name": "setTimeFromTimeString", + "summary": "Set\u0020the\u0020time\u0020by\u0020time\u0020string.", + "url": "classes/Carbon-CarbonInterface.html#method_setTimeFromTimeString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTimestamp\u0028\u0029", + "name": "setTimestamp", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timestamp.", + "url": "classes/Carbon-CarbonInterface.html#method_setTimestamp" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object.", + "url": "classes/Carbon-CarbonInterface.html#method_setTimezone" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetToStringFormat\u0028\u0029", + "name": "setToStringFormat", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setToStringFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetTranslator\u0028\u0029", + "name": "setTranslator", + "summary": "Set\u0020the\u0020default\u0020translator\u0020instance\u0020to\u0020use.", + "url": "classes/Carbon-CarbonInterface.html#method_setTranslator" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetUnit\u0028\u0029", + "name": "setUnit", + "summary": "Set\u0020specified\u0020unit\u0020to\u0020new\u0020given\u0020value.", + "url": "classes/Carbon-CarbonInterface.html#method_setUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetUnitNoOverflow\u0028\u0029", + "name": "setUnitNoOverflow", + "summary": "Set\u0020any\u0020unit\u0020to\u0020a\u0020new\u0020value\u0020without\u0020overflowing\u0020current\u0020other\u0020unit\u0020given.", + "url": "classes/Carbon-CarbonInterface.html#method_setUnitNoOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetUtf8\u0028\u0029", + "name": "setUtf8", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setUtf8" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetWeekEndsAt\u0028\u0029", + "name": "setWeekEndsAt", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setWeekEndsAt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetWeekStartsAt\u0028\u0029", + "name": "setWeekStartsAt", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setWeekStartsAt" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsetWeekendDays\u0028\u0029", + "name": "setWeekendDays", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_setWeekendDays" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Asettings\u0028\u0029", + "name": "settings", + "summary": "Set\u0020specific\u0020options.", + "url": "classes/Carbon-CarbonInterface.html#method_settings" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AshiftTimezone\u0028\u0029", + "name": "shiftTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object\u0020and\u0020add\/subtract\u0020the\u0020offset\u0020difference.", + "url": "classes/Carbon-CarbonInterface.html#method_shiftTimezone" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AshouldOverflowMonths\u0028\u0029", + "name": "shouldOverflowMonths", + "summary": "Get\u0020the\u0020month\u0020overflow\u0020global\u0020behavior\u0020\u0028can\u0020be\u0020overridden\u0020in\u0020specific\u0020instances\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_shouldOverflowMonths" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AshouldOverflowYears\u0028\u0029", + "name": "shouldOverflowYears", + "summary": "Get\u0020the\u0020month\u0020overflow\u0020global\u0020behavior\u0020\u0028can\u0020be\u0020overridden\u0020in\u0020specific\u0020instances\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_shouldOverflowYears" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Asince\u0028\u0029", + "name": "since", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_since" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsingularUnit\u0028\u0029", + "name": "singularUnit", + "summary": "Returns\u0020standardized\u0020singular\u0020of\u0020a\u0020given\u0020singular\/plural\u0020unit\u0020name\u0020\u0028in\u0020English\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_singularUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOf\u0028\u0029", + "name": "startOf", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020given\u0020unit.", + "url": "classes/Carbon-CarbonInterface.html#method_startOf" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfCentury\u0028\u0029", + "name": "startOfCentury", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020century\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfCentury" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfDay\u0028\u0029", + "name": "startOfDay", + "summary": "Resets\u0020the\u0020time\u0020to\u002000\u003A00\u003A00\u0020start\u0020of\u0020day", + "url": "classes/Carbon-CarbonInterface.html#method_startOfDay" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfDecade\u0028\u0029", + "name": "startOfDecade", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020decade\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfDecade" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfHour\u0028\u0029", + "name": "startOfHour", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020hour,\u0020minutes\u0020and\u0020seconds\u0020become\u00200", + "url": "classes/Carbon-CarbonInterface.html#method_startOfHour" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfMillennium\u0028\u0029", + "name": "startOfMillennium", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020millennium\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfMillennium" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfMinute\u0028\u0029", + "name": "startOfMinute", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020minute,\u0020seconds\u0020become\u00200", + "url": "classes/Carbon-CarbonInterface.html#method_startOfMinute" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfMonth\u0028\u0029", + "name": "startOfMonth", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020month\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfMonth" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfQuarter\u0028\u0029", + "name": "startOfQuarter", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020quarter\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfQuarter" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfSecond\u0028\u0029", + "name": "startOfSecond", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020second,\u0020microseconds\u0020become\u00200", + "url": "classes/Carbon-CarbonInterface.html#method_startOfSecond" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfWeek\u0028\u0029", + "name": "startOfWeek", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020week\u0020\u0028defined\u0020in\u0020\u0024weekStartsAt\u0029\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AstartOfYear\u0028\u0029", + "name": "startOfYear", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020year\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-CarbonInterface.html#method_startOfYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Asub\u0028\u0029", + "name": "sub", + "summary": "Subtract\u0020given\u0020units\u0020or\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_sub" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsubRealUnit\u0028\u0029", + "name": "subRealUnit", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_subRealUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsubUnit\u0028\u0029", + "name": "subUnit", + "summary": "Subtract\u0020given\u0020units\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_subUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AsubUnitNoOverflow\u0028\u0029", + "name": "subUnitNoOverflow", + "summary": "Subtract\u0020any\u0020unit\u0020to\u0020a\u0020new\u0020value\u0020without\u0020overflowing\u0020current\u0020other\u0020unit\u0020given.", + "url": "classes/Carbon-CarbonInterface.html#method_subUnitNoOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Asubtract\u0028\u0029", + "name": "subtract", + "summary": "Subtract\u0020given\u0020units\u0020or\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_subtract" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atimespan\u0028\u0029", + "name": "timespan", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020current\u0020instance\u0020to\u0020an\u0020other\ninstance\u0020given\u0020\u0028or\u0020now\u0020if\u0020null\u0020given\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_timespan" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atimestamp\u0028\u0029", + "name": "timestamp", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timestamp.", + "url": "classes/Carbon-CarbonInterface.html#method_timestamp" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atimezone\u0028\u0029", + "name": "timezone", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_timezone" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Ato\u0028\u0029", + "name": "to", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020an\u0020other\ninstance\u0020given\u0020\u0028or\u0020now\u0020if\u0020null\u0020given\u0029\u0020to\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_to" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020default\u0020array\u0020representation.", + "url": "classes/Carbon-CarbonInterface.html#method_toArray" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoAtomString\u0028\u0029", + "name": "toAtomString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020ATOM", + "url": "classes/Carbon-CarbonInterface.html#method_toAtomString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoCookieString\u0028\u0029", + "name": "toCookieString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020COOKIE", + "url": "classes/Carbon-CarbonInterface.html#method_toCookieString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDate\u0028\u0029", + "name": "toDate", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_toDate" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDateString\u0028\u0029", + "name": "toDateString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020date", + "url": "classes/Carbon-CarbonInterface.html#method_toDateString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDateTime\u0028\u0029", + "name": "toDateTime", + "summary": "Return\u0020native\u0020DateTime\u0020PHP\u0020object\u0020matching\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_toDateTime" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDateTimeImmutable\u0028\u0029", + "name": "toDateTimeImmutable", + "summary": "Return\u0020native\u0020toDateTimeImmutable\u0020PHP\u0020object\u0020matching\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_toDateTimeImmutable" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDateTimeLocalString\u0028\u0029", + "name": "toDateTimeLocalString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020date\u0020and\u0020time\u0020T\u002Dseparated\u0020with\u0020no\u0020timezone", + "url": "classes/Carbon-CarbonInterface.html#method_toDateTimeLocalString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDateTimeString\u0028\u0029", + "name": "toDateTimeString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020date\u0020and\u0020time", + "url": "classes/Carbon-CarbonInterface.html#method_toDateTimeString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoDayDateTimeString\u0028\u0029", + "name": "toDayDateTimeString", + "summary": "Format\u0020the\u0020instance\u0020with\u0020day,\u0020date\u0020and\u0020time", + "url": "classes/Carbon-CarbonInterface.html#method_toDayDateTimeString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoFormattedDateString\u0028\u0029", + "name": "toFormattedDateString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020a\u0020readable\u0020date", + "url": "classes/Carbon-CarbonInterface.html#method_toFormattedDateString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoFormattedDayDateString\u0028\u0029", + "name": "toFormattedDayDateString", + "summary": "Format\u0020the\u0020instance\u0020with\u0020the\u0020day,\u0020and\u0020a\u0020readable\u0020date", + "url": "classes/Carbon-CarbonInterface.html#method_toFormattedDayDateString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoISOString\u0028\u0029", + "name": "toISOString", + "summary": "Return\u0020the\u0020ISO\u002D8601\u0020string\u0020\u0028ex\u003A\u00201977\u002D04\u002D22T06\u003A00\u003A00Z,\u0020if\u0020\u0024keepOffset\u0020truthy,\u0020offset\u0020will\u0020be\u0020kept\u003A\n1977\u002D04\u002D22T01\u003A00\u003A00\u002D05\u003A00\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_toISOString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoImmutable\u0028\u0029", + "name": "toImmutable", + "summary": "Return\u0020a\u0020immutable\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_toImmutable" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoIso8601String\u0028\u0029", + "name": "toIso8601String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020ISO8601", + "url": "classes/Carbon-CarbonInterface.html#method_toIso8601String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoIso8601ZuluString\u0028\u0029", + "name": "toIso8601ZuluString", + "summary": "Convert\u0020the\u0020instance\u0020to\u0020UTC\u0020and\u0020return\u0020as\u0020Zulu\u0020ISO8601", + "url": "classes/Carbon-CarbonInterface.html#method_toIso8601ZuluString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoJSON\u0028\u0029", + "name": "toJSON", + "summary": "Return\u0020the\u0020ISO\u002D8601\u0020string\u0020\u0028ex\u003A\u00201977\u002D04\u002D22T06\u003A00\u003A00Z\u0029\u0020with\u0020UTC\u0020timezone.", + "url": "classes/Carbon-CarbonInterface.html#method_toJSON" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoMutable\u0028\u0029", + "name": "toMutable", + "summary": "Return\u0020a\u0020mutable\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonInterface.html#method_toMutable" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoNow\u0028\u0029", + "name": "toNow", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020an\u0020other\ninstance\u0020given\u0020to\u0020now", + "url": "classes/Carbon-CarbonInterface.html#method_toNow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoObject\u0028\u0029", + "name": "toObject", + "summary": "Get\u0020default\u0020object\u0020representation.", + "url": "classes/Carbon-CarbonInterface.html#method_toObject" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoPeriod\u0028\u0029", + "name": "toPeriod", + "summary": "Create\u0020a\u0020iterable\u0020CarbonPeriod\u0020object\u0020from\u0020current\u0020date\u0020to\u0020a\u0020given\u0020end\u0020date\u0020\u0028and\u0020optional\u0020interval\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_toPeriod" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc1036String\u0028\u0029", + "name": "toRfc1036String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC1036", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc1036String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc1123String\u0028\u0029", + "name": "toRfc1123String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC1123", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc1123String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc2822String\u0028\u0029", + "name": "toRfc2822String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC2822", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc2822String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc3339String\u0028\u0029", + "name": "toRfc3339String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC3339", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc3339String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc7231String\u0028\u0029", + "name": "toRfc7231String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC7231", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc7231String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc822String\u0028\u0029", + "name": "toRfc822String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC822", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc822String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRfc850String\u0028\u0029", + "name": "toRfc850String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC850", + "url": "classes/Carbon-CarbonInterface.html#method_toRfc850String" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoRssString\u0028\u0029", + "name": "toRssString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RSS", + "url": "classes/Carbon-CarbonInterface.html#method_toRssString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "Returns\u0020english\u0020human\u0020readable\u0020complete\u0020date\u0020string.", + "url": "classes/Carbon-CarbonInterface.html#method_toString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoTimeString\u0028\u0029", + "name": "toTimeString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020time", + "url": "classes/Carbon-CarbonInterface.html#method_toTimeString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtoW3cString\u0028\u0029", + "name": "toW3cString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020W3C", + "url": "classes/Carbon-CarbonInterface.html#method_toW3cString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atoday\u0028\u0029", + "name": "today", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020today.", + "url": "classes/Carbon-CarbonInterface.html#method_today" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atomorrow\u0028\u0029", + "name": "tomorrow", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020tomorrow.", + "url": "classes/Carbon-CarbonInterface.html#method_tomorrow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atranslate\u0028\u0029", + "name": "translate", + "summary": "Translate\u0020using\u0020translation\u0020string\u0020or\u0020callback\u0020available.", + "url": "classes/Carbon-CarbonInterface.html#method_translate" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtranslateNumber\u0028\u0029", + "name": "translateNumber", + "summary": "Returns\u0020the\u0020alternative\u0020number\u0020for\u0020a\u0020given\u0020integer\u0020if\u0020available\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_translateNumber" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtranslateTimeString\u0028\u0029", + "name": "translateTimeString", + "summary": "Translate\u0020a\u0020time\u0020string\u0020from\u0020a\u0020locale\u0020to\u0020an\u0020other.", + "url": "classes/Carbon-CarbonInterface.html#method_translateTimeString" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtranslateTimeStringTo\u0028\u0029", + "name": "translateTimeStringTo", + "summary": "Translate\u0020a\u0020time\u0020string\u0020from\u0020the\u0020current\u0020locale\u0020\u0028\u0060\u0024date\u002D\u003Elocale\u0028\u0029\u0060\u0029\u0020to\u0020an\u0020other.", + "url": "classes/Carbon-CarbonInterface.html#method_translateTimeStringTo" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtranslateWith\u0028\u0029", + "name": "translateWith", + "summary": "Translate\u0020using\u0020translation\u0020string\u0020or\u0020callback\u0020available.", + "url": "classes/Carbon-CarbonInterface.html#method_translateWith" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AtranslatedFormat\u0028\u0029", + "name": "translatedFormat", + "summary": "Format\u0020as\u0020\u002D\u003Eformat\u0028\u0029\u0020do\u0020\u0028using\u0020date\u0020replacements\u0020patterns\u0020from\u0020https\u003A\/\/php.net\/manual\/en\/function.date.php\u0029\nbut\u0020translate\u0020words\u0020whenever\u0020possible\u0020\u0028months,\u0020day\u0020names,\u0020etc.\u0029\u0020using\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-CarbonInterface.html#method_translatedFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Atz\u0028\u0029", + "name": "tz", + "summary": "Set\u0020the\u0020timezone\u0020or\u0020returns\u0020the\u0020timezone\u0020name\u0020if\u0020no\u0020arguments\u0020passed.", + "url": "classes/Carbon-CarbonInterface.html#method_tz" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aunix\u0028\u0029", + "name": "unix", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_unix" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Auntil\u0028\u0029", + "name": "until", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_until" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AuseMonthsOverflow\u0028\u0029", + "name": "useMonthsOverflow", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_useMonthsOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AuseStrictMode\u0028\u0029", + "name": "useStrictMode", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_useStrictMode" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AuseYearsOverflow\u0028\u0029", + "name": "useYearsOverflow", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#method_useYearsOverflow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Autc\u0028\u0029", + "name": "utc", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020to\u0020UTC.", + "url": "classes/Carbon-CarbonInterface.html#method_utc" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AutcOffset\u0028\u0029", + "name": "utcOffset", + "summary": "Returns\u0020the\u0020minutes\u0020offset\u0020to\u0020UTC\u0020if\u0020no\u0020arguments\u0020passed,\u0020else\u0020set\u0020the\u0020timezone\u0020with\u0020given\u0020minutes\u0020shift\u0020passed.", + "url": "classes/Carbon-CarbonInterface.html#method_utcOffset" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AvalueOf\u0028\u0029", + "name": "valueOf", + "summary": "Returns\u0020the\u0020milliseconds\u0020timestamps\u0020used\u0020amongst\u0020other\u0020by\u0020Date\u0020javascript\u0020objects.", + "url": "classes/Carbon-CarbonInterface.html#method_valueOf" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aweek\u0028\u0029", + "name": "week", + "summary": "Get\/set\u0020the\u0020week\u0020number\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020US\u0020format\u0020if\u0020no\u0020settings\ngiven\u0020\u0028Sunday\u0020\/\u0020Jan\u00206\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_week" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AweekYear\u0028\u0029", + "name": "weekYear", + "summary": "Set\/get\u0020the\u0020week\u0020number\u0020of\u0020year\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020US\u0020format\u0020if\u0020no\u0020settings\ngiven\u0020\u0028Sunday\u0020\/\u0020Jan\u00206\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_weekYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Aweekday\u0028\u0029", + "name": "weekday", + "summary": "Get\/set\u0020the\u0020weekday\u0020from\u00200\u0020\u0028Sunday\u0029\u0020to\u00206\u0020\u0028Saturday\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_weekday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AweeksInYear\u0028\u0029", + "name": "weeksInYear", + "summary": "Get\u0020the\u0020number\u0020of\u0020weeks\u0020of\u0020the\u0020current\u0020week\u002Dyear\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020US\u0020format\u0020if\u0020no\u0020settings\ngiven\u0020\u0028Sunday\u0020\/\u0020Jan\u00206\u0029.", + "url": "classes/Carbon-CarbonInterface.html#method_weeksInYear" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AwithTestNow\u0028\u0029", + "name": "withTestNow", + "summary": "Temporarily\u0020sets\u0020a\u0020static\u0020date\u0020to\u0020be\u0020used\u0020within\u0020the\u0020callback.", + "url": "classes/Carbon-CarbonInterface.html#method_withTestNow" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003Ayesterday\u0028\u0029", + "name": "yesterday", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020yesterday.", + "url": "classes/Carbon-CarbonInterface.html#method_yesterday" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ANO_ZERO_DIFF", + "name": "NO_ZERO_DIFF", + "summary": "Diff\u0020wording\u0020options\u0028expressed\u0020in\u0020octal\u0029.", + "url": "classes/Carbon-CarbonInterface.html#constant_NO_ZERO_DIFF" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AJUST_NOW", + "name": "JUST_NOW", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_JUST_NOW" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AONE_DAY_WORDS", + "name": "ONE_DAY_WORDS", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_ONE_DAY_WORDS" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATWO_DAY_WORDS", + "name": "TWO_DAY_WORDS", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TWO_DAY_WORDS" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ASEQUENTIAL_PARTS_ONLY", + "name": "SEQUENTIAL_PARTS_ONLY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_SEQUENTIAL_PARTS_ONLY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AROUND", + "name": "ROUND", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_ROUND" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AFLOOR", + "name": "FLOOR", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_FLOOR" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ACEIL", + "name": "CEIL", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_CEIL" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADIFF_ABSOLUTE", + "name": "DIFF_ABSOLUTE", + "summary": "Diff\u0020syntax\u0020options.", + "url": "classes/Carbon-CarbonInterface.html#constant_DIFF_ABSOLUTE" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADIFF_RELATIVE_AUTO", + "name": "DIFF_RELATIVE_AUTO", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_DIFF_RELATIVE_AUTO" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADIFF_RELATIVE_TO_NOW", + "name": "DIFF_RELATIVE_TO_NOW", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_DIFF_RELATIVE_TO_NOW" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADIFF_RELATIVE_TO_OTHER", + "name": "DIFF_RELATIVE_TO_OTHER", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_DIFF_RELATIVE_TO_OTHER" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATRANSLATE_MONTHS", + "name": "TRANSLATE_MONTHS", + "summary": "Translate\u0020string\u0020options.", + "url": "classes/Carbon-CarbonInterface.html#constant_TRANSLATE_MONTHS" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATRANSLATE_DAYS", + "name": "TRANSLATE_DAYS", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TRANSLATE_DAYS" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATRANSLATE_UNITS", + "name": "TRANSLATE_UNITS", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TRANSLATE_UNITS" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATRANSLATE_MERIDIEM", + "name": "TRANSLATE_MERIDIEM", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TRANSLATE_MERIDIEM" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATRANSLATE_DIFF", + "name": "TRANSLATE_DIFF", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TRANSLATE_DIFF" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATRANSLATE_ALL", + "name": "TRANSLATE_ALL", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TRANSLATE_ALL" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ASUNDAY", + "name": "SUNDAY", + "summary": "The\u0020day\u0020constants.", + "url": "classes/Carbon-CarbonInterface.html#constant_SUNDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMONDAY", + "name": "MONDAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MONDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATUESDAY", + "name": "TUESDAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_TUESDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AWEDNESDAY", + "name": "WEDNESDAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_WEDNESDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ATHURSDAY", + "name": "THURSDAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_THURSDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AFRIDAY", + "name": "FRIDAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_FRIDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ASATURDAY", + "name": "SATURDAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_SATURDAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AJANUARY", + "name": "JANUARY", + "summary": "The\u0020month\u0020constants.", + "url": "classes/Carbon-CarbonInterface.html#constant_JANUARY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AFEBRUARY", + "name": "FEBRUARY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_FEBRUARY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMARCH", + "name": "MARCH", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MARCH" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AAPRIL", + "name": "APRIL", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_APRIL" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMAY", + "name": "MAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AJUNE", + "name": "JUNE", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_JUNE" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AJULY", + "name": "JULY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_JULY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AAUGUST", + "name": "AUGUST", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_AUGUST" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ASEPTEMBER", + "name": "SEPTEMBER", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_SEPTEMBER" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AOCTOBER", + "name": "OCTOBER", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_OCTOBER" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ANOVEMBER", + "name": "NOVEMBER", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_NOVEMBER" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADECEMBER", + "name": "DECEMBER", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_DECEMBER" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AYEARS_PER_MILLENNIUM", + "name": "YEARS_PER_MILLENNIUM", + "summary": "Number\u0020of\u0020X\u0020in\u0020Y.", + "url": "classes/Carbon-CarbonInterface.html#constant_YEARS_PER_MILLENNIUM" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AYEARS_PER_CENTURY", + "name": "YEARS_PER_CENTURY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_YEARS_PER_CENTURY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AYEARS_PER_DECADE", + "name": "YEARS_PER_DECADE", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_YEARS_PER_DECADE" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMONTHS_PER_YEAR", + "name": "MONTHS_PER_YEAR", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MONTHS_PER_YEAR" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMONTHS_PER_QUARTER", + "name": "MONTHS_PER_QUARTER", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MONTHS_PER_QUARTER" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AQUARTERS_PER_YEAR", + "name": "QUARTERS_PER_YEAR", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_QUARTERS_PER_YEAR" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AWEEKS_PER_YEAR", + "name": "WEEKS_PER_YEAR", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_WEEKS_PER_YEAR" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AWEEKS_PER_MONTH", + "name": "WEEKS_PER_MONTH", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_WEEKS_PER_MONTH" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADAYS_PER_YEAR", + "name": "DAYS_PER_YEAR", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_DAYS_PER_YEAR" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADAYS_PER_WEEK", + "name": "DAYS_PER_WEEK", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_DAYS_PER_WEEK" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AHOURS_PER_DAY", + "name": "HOURS_PER_DAY", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_HOURS_PER_DAY" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMINUTES_PER_HOUR", + "name": "MINUTES_PER_HOUR", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MINUTES_PER_HOUR" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ASECONDS_PER_MINUTE", + "name": "SECONDS_PER_MINUTE", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_SECONDS_PER_MINUTE" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMILLISECONDS_PER_SECOND", + "name": "MILLISECONDS_PER_SECOND", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MILLISECONDS_PER_SECOND" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMICROSECONDS_PER_MILLISECOND", + "name": "MICROSECONDS_PER_MILLISECOND", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MICROSECONDS_PER_MILLISECOND" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMICROSECONDS_PER_SECOND", + "name": "MICROSECONDS_PER_SECOND", + "summary": "", + "url": "classes/Carbon-CarbonInterface.html#constant_MICROSECONDS_PER_SECOND" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AWEEK_DAY_AUTO", + "name": "WEEK_DAY_AUTO", + "summary": "Special\u0020settings\u0020to\u0020get\u0020the\u0020start\u0020of\u0020week\u0020from\u0020current\u0020locale\u0020culture.", + "url": "classes/Carbon-CarbonInterface.html#constant_WEEK_DAY_AUTO" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ARFC7231_FORMAT", + "name": "RFC7231_FORMAT", + "summary": "RFC7231\u0020DateTime\u0020format.", + "url": "classes/Carbon-CarbonInterface.html#constant_RFC7231_FORMAT" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003ADEFAULT_TO_STRING_FORMAT", + "name": "DEFAULT_TO_STRING_FORMAT", + "summary": "Default\u0020format\u0020to\u0020use\u0020for\u0020__toString\u0020method\u0020when\u0020type\u0020juggling\u0020occurs.", + "url": "classes/Carbon-CarbonInterface.html#constant_DEFAULT_TO_STRING_FORMAT" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AMOCK_DATETIME_FORMAT", + "name": "MOCK_DATETIME_FORMAT", + "summary": "Format\u0020for\u0020converting\u0020mocked\u0020time,\u0020includes\u0020microseconds.", + "url": "classes/Carbon-CarbonInterface.html#constant_MOCK_DATETIME_FORMAT" + }, { + "fqsen": "\\Carbon\\CarbonInterface\u003A\u003AISO_FORMAT_REGEXP", + "name": "ISO_FORMAT_REGEXP", + "summary": "Pattern\u0020detection\u0020for\u0020\u002D\u003EisoFormat\u0020and\u0020\u003A\u003AcreateFromIsoFormat.", + "url": "classes/Carbon-CarbonInterface.html#constant_ISO_FORMAT_REGEXP" + }, { + "fqsen": "\\Carbon\\CarbonInterval", + "name": "CarbonInterval", + "summary": "A\u0020simple\u0020API\u0020extension\u0020for\u0020DateInterval.", + "url": "classes/Carbon-CarbonInterval.html" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object.", + "url": "classes/Carbon-CarbonInterval.html#method_setTimezone" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetCascadeFactors\u0028\u0029", + "name": "getCascadeFactors", + "summary": "Mapping\u0020of\u0020units\u0020and\u0020factors\u0020for\u0020cascading.", + "url": "classes/Carbon-CarbonInterval.html#method_getCascadeFactors" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetDefaultCascadeFactors\u0028\u0029", + "name": "getDefaultCascadeFactors", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_getDefaultCascadeFactors" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AstandardizeUnit\u0028\u0029", + "name": "standardizeUnit", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_standardizeUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetFlipCascadeFactors\u0028\u0029", + "name": "getFlipCascadeFactors", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_getFlipCascadeFactors" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AsetCascadeFactors\u0028\u0029", + "name": "setCascadeFactors", + "summary": "Set\u0020default\u0020cascading\u0020factors\u0020for\u0020\u002D\u003Ecascade\u0028\u0029\u0020method.", + "url": "classes/Carbon-CarbonInterval.html#method_setCascadeFactors" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AenableFloatSetters\u0028\u0029", + "name": "enableFloatSetters", + "summary": "This\u0020option\u0020allow\u0020you\u0020to\u0020opt\u002Din\u0020for\u0020the\u0020Carbon\u00203\u0020behavior\u0020where\u0020float\nvalues\u0020will\u0020no\u0020longer\u0020be\u0020cast\u0020to\u0020integer\u0020\u0028so\u0020truncated\u0029.", + "url": "classes/Carbon-CarbonInterval.html#method_enableFloatSetters" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020CarbonInterval\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method___construct" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetFactor\u0028\u0029", + "name": "getFactor", + "summary": "Returns\u0020the\u0020factor\u0020for\u0020a\u0020given\u0020source\u002Dto\u002Dtarget\u0020couple.", + "url": "classes/Carbon-CarbonInterval.html#method_getFactor" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetFactorWithDefault\u0028\u0029", + "name": "getFactorWithDefault", + "summary": "Returns\u0020the\u0020factor\u0020for\u0020a\u0020given\u0020source\u002Dto\u002Dtarget\u0020couple\u0020if\u0020set,\nelse\u0020try\u0020to\u0020find\u0020the\u0020appropriate\u0020constant\u0020as\u0020the\u0020factor,\u0020such\u0020as\u0020Carbon\u003A\u003ADAYS_PER_WEEK.", + "url": "classes/Carbon-CarbonInterval.html#method_getFactorWithDefault" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetDaysPerWeek\u0028\u0029", + "name": "getDaysPerWeek", + "summary": "Returns\u0020current\u0020config\u0020for\u0020days\u0020per\u0020week.", + "url": "classes/Carbon-CarbonInterval.html#method_getDaysPerWeek" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetHoursPerDay\u0028\u0029", + "name": "getHoursPerDay", + "summary": "Returns\u0020current\u0020config\u0020for\u0020hours\u0020per\u0020day.", + "url": "classes/Carbon-CarbonInterval.html#method_getHoursPerDay" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetMinutesPerHour\u0028\u0029", + "name": "getMinutesPerHour", + "summary": "Returns\u0020current\u0020config\u0020for\u0020minutes\u0020per\u0020hour.", + "url": "classes/Carbon-CarbonInterval.html#method_getMinutesPerHour" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetSecondsPerMinute\u0028\u0029", + "name": "getSecondsPerMinute", + "summary": "Returns\u0020current\u0020config\u0020for\u0020seconds\u0020per\u0020minute.", + "url": "classes/Carbon-CarbonInterval.html#method_getSecondsPerMinute" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetMillisecondsPerSecond\u0028\u0029", + "name": "getMillisecondsPerSecond", + "summary": "Returns\u0020current\u0020config\u0020for\u0020microseconds\u0020per\u0020second.", + "url": "classes/Carbon-CarbonInterval.html#method_getMillisecondsPerSecond" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetMicrosecondsPerMillisecond\u0028\u0029", + "name": "getMicrosecondsPerMillisecond", + "summary": "Returns\u0020current\u0020config\u0020for\u0020microseconds\u0020per\u0020second.", + "url": "classes/Carbon-CarbonInterval.html#method_getMicrosecondsPerMillisecond" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020CarbonInterval\u0020instance\u0020from\u0020specific\u0020values.", + "url": "classes/Carbon-CarbonInterval.html#method_create" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcreateFromFormat\u0028\u0029", + "name": "createFromFormat", + "summary": "Parse\u0020a\u0020string\u0020into\u0020a\u0020new\u0020CarbonInterval\u0020object\u0020according\u0020to\u0020the\u0020specified\u0020format.", + "url": "classes/Carbon-CarbonInterval.html#method_createFromFormat" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Get\u0020a\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method_copy" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aclone\u0028\u0029", + "name": "clone", + "summary": "Get\u0020a\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method_clone" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Provide\u0020static\u0020helpers\u0020to\u0020create\u0020instances.\u0020\u0020Allows\u0020CarbonInterval\u003A\u003Ayears\u00283\u0029.", + "url": "classes/Carbon-CarbonInterval.html#method___callStatic" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__set_state\u0028\u0029", + "name": "__set_state", + "summary": "Evaluate\u0020the\u0020PHP\u0020generated\u0020by\u0020var_export\u0028\u0029\u0020and\u0020recreate\u0020the\u0020exported\u0020CarbonInterval\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method___set_state" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Athis\u0028\u0029", + "name": "this", + "summary": "Return\u0020the\u0020current\u0020context\u0020from\u0020inside\u0020a\u0020macro\u0020callee\u0020or\u0020a\u0020new\u0020one\u0020if\u0020static.", + "url": "classes/Carbon-CarbonInterval.html#method_this" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "Creates\u0020a\u0020CarbonInterval\u0020from\u0020string.", + "url": "classes/Carbon-CarbonInterval.html#method_fromString" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AparseFromLocale\u0028\u0029", + "name": "parseFromLocale", + "summary": "Creates\u0020a\u0020CarbonInterval\u0020from\u0020string\u0020using\u0020a\u0020different\u0020locale.", + "url": "classes/Carbon-CarbonInterval.html#method_parseFromLocale" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcastIntervalToClass\u0028\u0029", + "name": "castIntervalToClass", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_castIntervalToClass" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcopyNegativeUnits\u0028\u0029", + "name": "copyNegativeUnits", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_copyNegativeUnits" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcopyStep\u0028\u0029", + "name": "copyStep", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_copyStep" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Acast\u0028\u0029", + "name": "cast", + "summary": "Cast\u0020the\u0020current\u0020instance\u0020into\u0020the\u0020given\u0020class.", + "url": "classes/Carbon-CarbonInterval.html#method_cast" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Create\u0020a\u0020CarbonInterval\u0020instance\u0020from\u0020a\u0020DateInterval\u0020one.\u0020\u0020Can\u0020not\u0020instance\nDateInterval\u0020objects\u0020created\u0020from\u0020DateTime\u003A\u003Adiff\u0028\u0029\u0020as\u0020you\u0020can\u0027t\u0020externally\nset\u0020the\u0020\u0024days\u0020field.", + "url": "classes/Carbon-CarbonInterval.html#method_instance" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Make\u0020a\u0020CarbonInterval\u0020instance\u0020from\u0020given\u0020variable\u0020if\u0020possible.", + "url": "classes/Carbon-CarbonInterval.html#method_make" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AmakeFromString\u0028\u0029", + "name": "makeFromString", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_makeFromString" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AresolveInterval\u0028\u0029", + "name": "resolveInterval", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_resolveInterval" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcreateFromDateString\u0028\u0029", + "name": "createFromDateString", + "summary": "Sets\u0020up\u0020a\u0020DateInterval\u0020from\u0020the\u0020relative\u0020parts\u0020of\u0020the\u0020string.", + "url": "classes/Carbon-CarbonInterval.html#method_createFromDateString" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020part\u0020of\u0020the\u0020CarbonInterval\u0020object.", + "url": "classes/Carbon-CarbonInterval.html#method_get" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Get\u0020a\u0020part\u0020of\u0020the\u0020CarbonInterval\u0020object.", + "url": "classes/Carbon-CarbonInterval.html#method___get" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020part\u0020of\u0020the\u0020CarbonInterval\u0020object.", + "url": "classes/Carbon-CarbonInterval.html#method_set" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Set\u0020a\u0020part\u0020of\u0020the\u0020CarbonInterval\u0020object.", + "url": "classes/Carbon-CarbonInterval.html#method___set" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AweeksAndDays\u0028\u0029", + "name": "weeksAndDays", + "summary": "Allow\u0020setting\u0020of\u0020weeks\u0020and\u0020days\u0020to\u0020be\u0020cumulative.", + "url": "classes/Carbon-CarbonInterval.html#method_weeksAndDays" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020true\u0020if\u0020the\u0020interval\u0020is\u0020empty\u0020for\u0020each\u0020unit.", + "url": "classes/Carbon-CarbonInterval.html#method_isEmpty" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Amacro\u0028\u0029", + "name": "macro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Carbon-CarbonInterval.html#method_macro" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Amixin\u0028\u0029", + "name": "mixin", + "summary": "Register\u0020macros\u0020from\u0020a\u0020mixin\u0020object.", + "url": "classes/Carbon-CarbonInterval.html#method_mixin" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AhasMacro\u0028\u0029", + "name": "hasMacro", + "summary": "Check\u0020if\u0020macro\u0020is\u0020registered.", + "url": "classes/Carbon-CarbonInterval.html#method_hasMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcallMacro\u0028\u0029", + "name": "callMacro", + "summary": "Call\u0020given\u0020macro.", + "url": "classes/Carbon-CarbonInterval.html#method_callMacro" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Allow\u0020fluent\u0020calls\u0020on\u0020the\u0020setters...\u0020CarbonInterval\u003A\u003Ayears\u00283\u0029\u002D\u003Emonths\u00285\u0029\u002D\u003Eday\u0028\u0029.", + "url": "classes/Carbon-CarbonInterval.html#method___call" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetForHumansInitialVariables\u0028\u0029", + "name": "getForHumansInitialVariables", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_getForHumansInitialVariables" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetForHumansParameters\u0028\u0029", + "name": "getForHumansParameters", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_getForHumansParameters" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetRoundingMethodFromOptions\u0028\u0029", + "name": "getRoundingMethodFromOptions", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_getRoundingMethodFromOptions" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Returns\u0020interval\u0020values\u0020as\u0020an\u0020array\u0020where\u0020key\u0020are\u0020the\u0020unit\u0020names\u0020and\u0020values\u0020the\u0020counts.", + "url": "classes/Carbon-CarbonInterval.html#method_toArray" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetNonZeroValues\u0028\u0029", + "name": "getNonZeroValues", + "summary": "Returns\u0020interval\u0020non\u002Dzero\u0020values\u0020as\u0020an\u0020array\u0020where\u0020key\u0020are\u0020the\u0020unit\u0020names\u0020and\u0020values\u0020the\u0020counts.", + "url": "classes/Carbon-CarbonInterval.html#method_getNonZeroValues" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetValuesSequence\u0028\u0029", + "name": "getValuesSequence", + "summary": "Returns\u0020interval\u0020values\u0020as\u0020an\u0020array\u0020where\u0020key\u0020are\u0020the\u0020unit\u0020names\u0020and\u0020values\u0020the\u0020counts\nfrom\u0020the\u0020biggest\u0020non\u002Dzero\u0020one\u0020the\u0020the\u0020smallest\u0020non\u002Dzero\u0020one.", + "url": "classes/Carbon-CarbonInterval.html#method_getValuesSequence" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AforHumans\u0028\u0029", + "name": "forHumans", + "summary": "Get\u0020the\u0020current\u0020interval\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-CarbonInterval.html#method_forHumans" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020a\u0020string\u0020using\u0020the\u0020forHumans\u0028\u0029\u0020function.", + "url": "classes/Carbon-CarbonInterval.html#method___toString" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AtoDateInterval\u0028\u0029", + "name": "toDateInterval", + "summary": "Return\u0020native\u0020DateInterval\u0020PHP\u0020object\u0020matching\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method_toDateInterval" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AtoPeriod\u0028\u0029", + "name": "toPeriod", + "summary": "Convert\u0020the\u0020interval\u0020to\u0020a\u0020CarbonPeriod.", + "url": "classes/Carbon-CarbonInterval.html#method_toPeriod" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Ainvert\u0028\u0029", + "name": "invert", + "summary": "Invert\u0020the\u0020interval.", + "url": "classes/Carbon-CarbonInterval.html#method_invert" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AsolveNegativeInterval\u0028\u0029", + "name": "solveNegativeInterval", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_solveNegativeInterval" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020the\u0020passed\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method_add" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Asub\u0028\u0029", + "name": "sub", + "summary": "Subtract\u0020the\u0020passed\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method_sub" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Asubtract\u0028\u0029", + "name": "subtract", + "summary": "Subtract\u0020the\u0020passed\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonInterval.html#method_subtract" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aplus\u0028\u0029", + "name": "plus", + "summary": "Add\u0020given\u0020parameters\u0020to\u0020the\u0020current\u0020interval.", + "url": "classes/Carbon-CarbonInterval.html#method_plus" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aminus\u0028\u0029", + "name": "minus", + "summary": "Add\u0020given\u0020parameters\u0020to\u0020the\u0020current\u0020interval.", + "url": "classes/Carbon-CarbonInterval.html#method_minus" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Atimes\u0028\u0029", + "name": "times", + "summary": "Multiply\u0020current\u0020instance\u0020given\u0020number\u0020of\u0020times.\u0020times\u0028\u0029\u0020is\u0020naive,\u0020it\u0020multiplies\u0020each\u0020unit\n\u0028so\u0020day\u0020can\u0020be\u0020greater\u0020than\u002031,\u0020hour\u0020can\u0020be\u0020greater\u0020than\u002023,\u0020etc.\u0029\u0020and\u0020the\u0020result\u0020is\u0020rounded\nseparately\u0020for\u0020each\u0020unit.", + "url": "classes/Carbon-CarbonInterval.html#method_times" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Ashares\u0028\u0029", + "name": "shares", + "summary": "Divide\u0020current\u0020instance\u0020by\u0020a\u0020given\u0020divider.\u0020shares\u0028\u0029\u0020is\u0020naive,\u0020it\u0020divides\u0020each\u0020unit\u0020separately\nand\u0020the\u0020result\u0020is\u0020rounded\u0020for\u0020each\u0020unit.\u0020So\u00205\u0020hours\u0020and\u002020\u0020minutes\u0020shared\u0020by\u00203\u0020becomes\u00202\u0020hours\nand\u00207\u0020minutes.", + "url": "classes/Carbon-CarbonInterval.html#method_shares" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcopyProperties\u0028\u0029", + "name": "copyProperties", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_copyProperties" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Amultiply\u0028\u0029", + "name": "multiply", + "summary": "Multiply\u0020and\u0020cascade\u0020current\u0020instance\u0020by\u0020a\u0020given\u0020factor.", + "url": "classes/Carbon-CarbonInterval.html#method_multiply" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Adivide\u0028\u0029", + "name": "divide", + "summary": "Divide\u0020and\u0020cascade\u0020current\u0020instance\u0020by\u0020a\u0020given\u0020divider.", + "url": "classes/Carbon-CarbonInterval.html#method_divide" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgetDateIntervalSpec\u0028\u0029", + "name": "getDateIntervalSpec", + "summary": "Get\u0020the\u0020interval_spec\u0020string\u0020of\u0020a\u0020date\u0020interval.", + "url": "classes/Carbon-CarbonInterval.html#method_getDateIntervalSpec" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aspec\u0028\u0029", + "name": "spec", + "summary": "Get\u0020the\u0020interval_spec\u0020string.", + "url": "classes/Carbon-CarbonInterval.html#method_spec" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcompareDateIntervals\u0028\u0029", + "name": "compareDateIntervals", + "summary": "Comparing\u00202\u0020date\u0020intervals.", + "url": "classes/Carbon-CarbonInterval.html#method_compareDateIntervals" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Acompare\u0028\u0029", + "name": "compare", + "summary": "Comparing\u0020with\u0020passed\u0020interval.", + "url": "classes/Carbon-CarbonInterval.html#method_compare" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AinvertCascade\u0028\u0029", + "name": "invertCascade", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_invertCascade" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AdoCascade\u0028\u0029", + "name": "doCascade", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_doCascade" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Acascade\u0028\u0029", + "name": "cascade", + "summary": "Convert\u0020overflowed\u0020values\u0020into\u0020bigger\u0020units.", + "url": "classes/Carbon-CarbonInterval.html#method_cascade" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AhasNegativeValues\u0028\u0029", + "name": "hasNegativeValues", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_hasNegativeValues" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AhasPositiveValues\u0028\u0029", + "name": "hasPositiveValues", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_hasPositiveValues" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Atotal\u0028\u0029", + "name": "total", + "summary": "Get\u0020amount\u0020of\u0020given\u0020unit\u0020equivalent\u0020to\u0020the\u0020interval.", + "url": "classes/Carbon-CarbonInterval.html#method_total" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aeq\u0028\u0029", + "name": "eq", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_eq" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AequalTo\u0028\u0029", + "name": "equalTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_equalTo" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Ane\u0028\u0029", + "name": "ne", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_ne" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AnotEqualTo\u0028\u0029", + "name": "notEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_notEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Agt\u0028\u0029", + "name": "gt", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028longer\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_gt" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgreaterThan\u0028\u0029", + "name": "greaterThan", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028longer\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_greaterThan" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Agte\u0028\u0029", + "name": "gte", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028longer\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_gte" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AgreaterThanOrEqualTo\u0028\u0029", + "name": "greaterThanOrEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028longer\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_greaterThanOrEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Alt\u0028\u0029", + "name": "lt", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028shorter\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_lt" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AlessThan\u0028\u0029", + "name": "lessThan", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028shorter\u0029\u0020than\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_lessThan" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Alte\u0028\u0029", + "name": "lte", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028shorter\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_lte" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AlessThanOrEqualTo\u0028\u0029", + "name": "lessThanOrEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028shorter\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-CarbonInterval.html#method_lessThanOrEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Abetween\u0028\u0029", + "name": "between", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others.", + "url": "classes/Carbon-CarbonInterval.html#method_between" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AbetweenIncluded\u0028\u0029", + "name": "betweenIncluded", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others,\u0020bounds\u0020excluded.", + "url": "classes/Carbon-CarbonInterval.html#method_betweenIncluded" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AbetweenExcluded\u0028\u0029", + "name": "betweenExcluded", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others,\u0020bounds\u0020excluded.", + "url": "classes/Carbon-CarbonInterval.html#method_betweenExcluded" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AisBetween\u0028\u0029", + "name": "isBetween", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others", + "url": "classes/Carbon-CarbonInterval.html#method_isBetween" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AroundUnit\u0028\u0029", + "name": "roundUnit", + "summary": "Round\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020and\u0020the\u0020given\u0020function.", + "url": "classes/Carbon-CarbonInterval.html#method_roundUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AfloorUnit\u0028\u0029", + "name": "floorUnit", + "summary": "Truncate\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterval.html#method_floorUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AceilUnit\u0028\u0029", + "name": "ceilUnit", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterval.html#method_ceilUnit" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Around\u0028\u0029", + "name": "round", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterval.html#method_round" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Afloor\u0028\u0029", + "name": "floor", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterval.html#method_floor" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003Aceil\u0028\u0029", + "name": "ceil", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonInterval.html#method_ceil" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AneedsDeclension\u0028\u0029", + "name": "needsDeclension", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_needsDeclension" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AcheckIntegerValue\u0028\u0029", + "name": "checkIntegerValue", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_checkIntegerValue" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AassertSafeForInteger\u0028\u0029", + "name": "assertSafeForInteger", + "summary": "Throw\u0020an\u0020exception\u0020if\u0020precision\u0020loss\u0020when\u0020storing\u0020the\u0020given\u0020value\u0020as\u0020an\u0020integer\u0020would\u0020be\u0020\u003E\u003D\u00201.0.", + "url": "classes/Carbon-CarbonInterval.html#method_assertSafeForInteger" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003AhandleDecimalPart\u0028\u0029", + "name": "handleDecimalPart", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#method_handleDecimalPart" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_PREFIX", + "name": "PERIOD_PREFIX", + "summary": "Interval\u0020spec\u0020period\u0020designators", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_PREFIX" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_YEARS", + "name": "PERIOD_YEARS", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_YEARS" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_MONTHS", + "name": "PERIOD_MONTHS", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_MONTHS" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_DAYS", + "name": "PERIOD_DAYS", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_DAYS" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_TIME_PREFIX", + "name": "PERIOD_TIME_PREFIX", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_TIME_PREFIX" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_HOURS", + "name": "PERIOD_HOURS", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_HOURS" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_MINUTES", + "name": "PERIOD_MINUTES", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_MINUTES" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003APERIOD_SECONDS", + "name": "PERIOD_SECONDS", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#constant_PERIOD_SECONDS" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024translator", + "name": "translator", + "summary": "A\u0020translator\u0020to\u0020...\u0020er\u0020...\u0020translate\u0020stuff", + "url": "classes/Carbon-CarbonInterval.html#property_translator" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024cascadeFactors", + "name": "cascadeFactors", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#property_cascadeFactors" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#property_formats" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024flipCascadeFactors", + "name": "flipCascadeFactors", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#property_flipCascadeFactors" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024floatSettersEnabled", + "name": "floatSettersEnabled", + "summary": "", + "url": "classes/Carbon-CarbonInterval.html#property_floatSettersEnabled" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024macros", + "name": "macros", + "summary": "The\u0020registered\u0020macros.", + "url": "classes/Carbon-CarbonInterval.html#property_macros" + }, { + "fqsen": "\\Carbon\\CarbonInterval\u003A\u003A\u0024tzName", + "name": "tzName", + "summary": "Timezone\u0020handler\u0020for\u0020settings\u0028\u0029\u0020method.", + "url": "classes/Carbon-CarbonInterval.html#property_tzName" + }, { + "fqsen": "\\Carbon\\CarbonPeriod", + "name": "CarbonPeriod", + "summary": "Substitution\u0020of\u0020DatePeriod\u0020with\u0020some\u0020modifications\u0020and\u0020many\u0020more\u0020features.", + "url": "classes/Carbon-CarbonPeriod.html" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Make\u0020a\u0020CarbonPeriod\u0020instance\u0020from\u0020given\u0020variable\u0020if\u0020possible.", + "url": "classes/Carbon-CarbonPeriod.html#method_make" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Create\u0020a\u0020new\u0020instance\u0020from\u0020a\u0020DatePeriod\u0020or\u0020CarbonPeriod\u0020object.", + "url": "classes/Carbon-CarbonPeriod.html#method_instance" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance.", + "url": "classes/Carbon-CarbonPeriod.html#method_create" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcreateFromArray\u0028\u0029", + "name": "createFromArray", + "summary": "Create\u0020a\u0020new\u0020instance\u0020from\u0020an\u0020array\u0020of\u0020parameters.", + "url": "classes/Carbon-CarbonPeriod.html#method_createFromArray" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcreateFromIso\u0028\u0029", + "name": "createFromIso", + "summary": "Create\u0020CarbonPeriod\u0020from\u0020ISO\u00208601\u0020string.", + "url": "classes/Carbon-CarbonPeriod.html#method_createFromIso" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AintervalHasTime\u0028\u0029", + "name": "intervalHasTime", + "summary": "Return\u0020whether\u0020given\u0020interval\u0020contains\u0020non\u0020zero\u0020value\u0020of\u0020any\u0020time\u0020unit.", + "url": "classes/Carbon-CarbonPeriod.html#method_intervalHasTime" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisIso8601\u0028\u0029", + "name": "isIso8601", + "summary": "Return\u0020whether\u0020given\u0020variable\u0020is\u0020an\u0020ISO\u00208601\u0020specification.", + "url": "classes/Carbon-CarbonPeriod.html#method_isIso8601" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AparseIso8601\u0028\u0029", + "name": "parseIso8601", + "summary": "Parse\u0020given\u0020ISO\u00208601\u0020string\u0020into\u0020an\u0020array\u0020of\u0020arguments.", + "url": "classes/Carbon-CarbonPeriod.html#method_parseIso8601" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AaddMissingParts\u0028\u0029", + "name": "addMissingParts", + "summary": "Add\u0020missing\u0020parts\u0020of\u0020the\u0020target\u0020date\u0020from\u0020the\u0020source\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_addMissingParts" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Amacro\u0028\u0029", + "name": "macro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Carbon-CarbonPeriod.html#method_macro" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Amixin\u0028\u0029", + "name": "mixin", + "summary": "Register\u0020macros\u0020from\u0020a\u0020mixin\u0020object.", + "url": "classes/Carbon-CarbonPeriod.html#method_mixin" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AhasMacro\u0028\u0029", + "name": "hasMacro", + "summary": "Check\u0020if\u0020macro\u0020is\u0020registered.", + "url": "classes/Carbon-CarbonPeriod.html#method_hasMacro" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Provide\u0020static\u0020proxy\u0020for\u0020instance\u0020aliases.", + "url": "classes/Carbon-CarbonPeriod.html#method___callStatic" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "CarbonPeriod\u0020constructor.", + "url": "classes/Carbon-CarbonPeriod.html#method___construct" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Get\u0020a\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-CarbonPeriod.html#method_copy" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcopyIfImmutable\u0028\u0029", + "name": "copyIfImmutable", + "summary": "Prepare\u0020the\u0020instance\u0020to\u0020be\u0020set\u0020\u0028self\u0020if\u0020mutable\u0020to\u0020be\u0020mutated,\ncopy\u0020if\u0020immutable\u0020to\u0020generate\u0020a\u0020new\u0020instance\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_copyIfImmutable" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetGetter\u0028\u0029", + "name": "getGetter", + "summary": "Get\u0020the\u0020getter\u0020for\u0020a\u0020property\u0020allowing\u0020both\u0020\u0060DatePeriod\u0060\u0020snakeCase\u0020and\u0020camelCase\u0020names.", + "url": "classes/Carbon-CarbonPeriod.html#method_getGetter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020property\u0020allowing\u0020both\u0020\u0060DatePeriod\u0060\u0020snakeCase\u0020and\u0020camelCase\u0020names.", + "url": "classes/Carbon-CarbonPeriod.html#method_get" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Get\u0020a\u0020property\u0020allowing\u0020both\u0020\u0060DatePeriod\u0060\u0020snakeCase\u0020and\u0020camelCase\u0020names.", + "url": "classes/Carbon-CarbonPeriod.html#method___get" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Check\u0020if\u0020an\u0020attribute\u0020exists\u0020on\u0020the\u0020object", + "url": "classes/Carbon-CarbonPeriod.html#method___isset" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Aclone\u0028\u0029", + "name": "clone", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_clone" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetDateClass\u0028\u0029", + "name": "setDateClass", + "summary": "Set\u0020the\u0020iteration\u0020item\u0020class.", + "url": "classes/Carbon-CarbonPeriod.html#method_setDateClass" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetDateClass\u0028\u0029", + "name": "getDateClass", + "summary": "Returns\u0020iteration\u0020item\u0020date\u0020class.", + "url": "classes/Carbon-CarbonPeriod.html#method_getDateClass" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetDateInterval\u0028\u0029", + "name": "setDateInterval", + "summary": "Change\u0020the\u0020period\u0020date\u0020interval.", + "url": "classes/Carbon-CarbonPeriod.html#method_setDateInterval" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AinvertDateInterval\u0028\u0029", + "name": "invertDateInterval", + "summary": "Invert\u0020the\u0020period\u0020date\u0020interval.", + "url": "classes/Carbon-CarbonPeriod.html#method_invertDateInterval" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetDates\u0028\u0029", + "name": "setDates", + "summary": "Set\u0020start\u0020and\u0020end\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_setDates" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Change\u0020the\u0020period\u0020options.", + "url": "classes/Carbon-CarbonPeriod.html#method_setOptions" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020the\u0020period\u0020options.", + "url": "classes/Carbon-CarbonPeriod.html#method_getOptions" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AtoggleOptions\u0028\u0029", + "name": "toggleOptions", + "summary": "Toggle\u0020given\u0020options\u0020on\u0020or\u0020off.", + "url": "classes/Carbon-CarbonPeriod.html#method_toggleOptions" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AexcludeStartDate\u0028\u0029", + "name": "excludeStartDate", + "summary": "Toggle\u0020EXCLUDE_START_DATE\u0020option.", + "url": "classes/Carbon-CarbonPeriod.html#method_excludeStartDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AexcludeEndDate\u0028\u0029", + "name": "excludeEndDate", + "summary": "Toggle\u0020EXCLUDE_END_DATE\u0020option.", + "url": "classes/Carbon-CarbonPeriod.html#method_excludeEndDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetDateInterval\u0028\u0029", + "name": "getDateInterval", + "summary": "Get\u0020the\u0020underlying\u0020date\u0020interval.", + "url": "classes/Carbon-CarbonPeriod.html#method_getDateInterval" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetStartDate\u0028\u0029", + "name": "getStartDate", + "summary": "Get\u0020start\u0020date\u0020of\u0020the\u0020period.", + "url": "classes/Carbon-CarbonPeriod.html#method_getStartDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetEndDate\u0028\u0029", + "name": "getEndDate", + "summary": "Get\u0020end\u0020date\u0020of\u0020the\u0020period.", + "url": "classes/Carbon-CarbonPeriod.html#method_getEndDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetRecurrences\u0028\u0029", + "name": "getRecurrences", + "summary": "Get\u0020number\u0020of\u0020recurrences.", + "url": "classes/Carbon-CarbonPeriod.html#method_getRecurrences" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisStartExcluded\u0028\u0029", + "name": "isStartExcluded", + "summary": "Returns\u0020true\u0020if\u0020the\u0020start\u0020date\u0020should\u0020be\u0020excluded.", + "url": "classes/Carbon-CarbonPeriod.html#method_isStartExcluded" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisEndExcluded\u0028\u0029", + "name": "isEndExcluded", + "summary": "Returns\u0020true\u0020if\u0020the\u0020end\u0020date\u0020should\u0020be\u0020excluded.", + "url": "classes/Carbon-CarbonPeriod.html#method_isEndExcluded" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisStartIncluded\u0028\u0029", + "name": "isStartIncluded", + "summary": "Returns\u0020true\u0020if\u0020the\u0020start\u0020date\u0020should\u0020be\u0020included.", + "url": "classes/Carbon-CarbonPeriod.html#method_isStartIncluded" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisEndIncluded\u0028\u0029", + "name": "isEndIncluded", + "summary": "Returns\u0020true\u0020if\u0020the\u0020end\u0020date\u0020should\u0020be\u0020included.", + "url": "classes/Carbon-CarbonPeriod.html#method_isEndIncluded" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetIncludedStartDate\u0028\u0029", + "name": "getIncludedStartDate", + "summary": "Return\u0020the\u0020start\u0020if\u0020it\u0027s\u0020included\u0020by\u0020option,\u0020else\u0020return\u0020the\u0020start\u0020\u002B\u00201\u0020period\u0020interval.", + "url": "classes/Carbon-CarbonPeriod.html#method_getIncludedStartDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetIncludedEndDate\u0028\u0029", + "name": "getIncludedEndDate", + "summary": "Return\u0020the\u0020end\u0020if\u0020it\u0027s\u0020included\u0020by\u0020option,\u0020else\u0020return\u0020the\u0020end\u0020\u002D\u00201\u0020period\u0020interval.", + "url": "classes/Carbon-CarbonPeriod.html#method_getIncludedEndDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AaddFilter\u0028\u0029", + "name": "addFilter", + "summary": "Add\u0020a\u0020filter\u0020to\u0020the\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#method_addFilter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AprependFilter\u0028\u0029", + "name": "prependFilter", + "summary": "Prepend\u0020a\u0020filter\u0020to\u0020the\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#method_prependFilter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AremoveFilter\u0028\u0029", + "name": "removeFilter", + "summary": "Remove\u0020a\u0020filter\u0020by\u0020instance\u0020or\u0020name.", + "url": "classes/Carbon-CarbonPeriod.html#method_removeFilter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AhasFilter\u0028\u0029", + "name": "hasFilter", + "summary": "Return\u0020whether\u0020given\u0020instance\u0020or\u0020name\u0020is\u0020in\u0020the\u0020filter\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#method_hasFilter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020filters\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#method_getFilters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetFilters\u0028\u0029", + "name": "setFilters", + "summary": "Set\u0020filters\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#method_setFilters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AresetFilters\u0028\u0029", + "name": "resetFilters", + "summary": "Reset\u0020filters\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#method_resetFilters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetRecurrences\u0028\u0029", + "name": "setRecurrences", + "summary": "Add\u0020a\u0020recurrences\u0020filter\u0020\u0028set\u0020maximum\u0020number\u0020of\u0020recurrences\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_setRecurrences" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetStartDate\u0028\u0029", + "name": "setStartDate", + "summary": "Change\u0020the\u0020period\u0020start\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_setStartDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetEndDate\u0028\u0029", + "name": "setEndDate", + "summary": "Change\u0020the\u0020period\u0020end\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_setEndDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Avalid\u0028\u0029", + "name": "valid", + "summary": "Check\u0020if\u0020the\u0020current\u0020position\u0020is\u0020valid.", + "url": "classes/Carbon-CarbonPeriod.html#method_valid" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024key", + "name": "key", + "summary": "Index\u0020of\u0020current\u0020date.\u0020Always\u0020sequential,\u0020even\u0020if\u0020some\u0020dates\u0020are\u0020skipped\u0020by\u0020filters.", + "url": "classes/Carbon-CarbonPeriod.html#property_key" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024current", + "name": "current", + "summary": "Current\u0020date.\u0020May\u0020temporarily\u0020hold\u0020unaccepted\u0020value\u0020when\u0020looking\u0020for\u0020a\u0020next\u0020valid\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#property_current" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "Move\u0020forward\u0020to\u0020the\u0020next\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_next" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Arewind\u0028\u0029", + "name": "rewind", + "summary": "Rewind\u0020to\u0020the\u0020start\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_rewind" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Askip\u0028\u0029", + "name": "skip", + "summary": "Skip\u0020iterations\u0020and\u0020returns\u0020iteration\u0020state\u0020\u0028false\u0020if\u0020ended,\u0020true\u0020if\u0020still\u0020valid\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_skip" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AtoIso8601String\u0028\u0029", + "name": "toIso8601String", + "summary": "Format\u0020the\u0020date\u0020period\u0020as\u0020ISO\u00208601.", + "url": "classes/Carbon-CarbonPeriod.html#method_toIso8601String" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "Convert\u0020the\u0020date\u0020period\u0020into\u0020a\u0020string.", + "url": "classes/Carbon-CarbonPeriod.html#method_toString" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Aspec\u0028\u0029", + "name": "spec", + "summary": "Format\u0020the\u0020date\u0020period\u0020as\u0020ISO\u00208601.", + "url": "classes/Carbon-CarbonPeriod.html#method_spec" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Acast\u0028\u0029", + "name": "cast", + "summary": "Cast\u0020the\u0020current\u0020instance\u0020into\u0020the\u0020given\u0020class.", + "url": "classes/Carbon-CarbonPeriod.html#method_cast" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AtoDatePeriod\u0028\u0029", + "name": "toDatePeriod", + "summary": "Return\u0020native\u0020DatePeriod\u0020PHP\u0020object\u0020matching\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-CarbonPeriod.html#method_toDatePeriod" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisUnfilteredAndEndLess\u0028\u0029", + "name": "isUnfilteredAndEndLess", + "summary": "Return\u0020\u0060true\u0060\u0020if\u0020the\u0020period\u0020has\u0020no\u0020custom\u0020filter\u0020and\u0020is\u0020guaranteed\u0020to\u0020be\u0020endless.", + "url": "classes/Carbon-CarbonPeriod.html#method_isUnfilteredAndEndLess" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Convert\u0020the\u0020date\u0020period\u0020into\u0020an\u0020array\u0020without\u0020changing\u0020current\u0020iteration\u0020state.", + "url": "classes/Carbon-CarbonPeriod.html#method_toArray" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Count\u0020dates\u0020in\u0020the\u0020date\u0020period.", + "url": "classes/Carbon-CarbonPeriod.html#method_count" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Afirst\u0028\u0029", + "name": "first", + "summary": "Return\u0020the\u0020first\u0020date\u0020in\u0020the\u0020date\u0020period.", + "url": "classes/Carbon-CarbonPeriod.html#method_first" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Alast\u0028\u0029", + "name": "last", + "summary": "Return\u0020the\u0020last\u0020date\u0020in\u0020the\u0020date\u0020period.", + "url": "classes/Carbon-CarbonPeriod.html#method_last" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Convert\u0020the\u0020date\u0020period\u0020into\u0020a\u0020string.", + "url": "classes/Carbon-CarbonPeriod.html#method___toString" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Add\u0020aliases\u0020for\u0020setters.", + "url": "classes/Carbon-CarbonPeriod.html#method___call" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object\u0020and\u0020apply\u0020it\u0020to\u0020start\/end.", + "url": "classes/Carbon-CarbonPeriod.html#method_setTimezone" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AshiftTimezone\u0028\u0029", + "name": "shiftTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object\u0020and\u0020add\/subtract\u0020the\u0020offset\u0020difference\u0020to\u0020start\/end.", + "url": "classes/Carbon-CarbonPeriod.html#method_shiftTimezone" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcalculateEnd\u0028\u0029", + "name": "calculateEnd", + "summary": "Returns\u0020the\u0020end\u0020is\u0020set,\u0020else\u0020calculated\u0020from\u0020start\u0020an\u0020recurrences.", + "url": "classes/Carbon-CarbonPeriod.html#method_calculateEnd" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AgetEndFromRecurrences\u0028\u0029", + "name": "getEndFromRecurrences", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_getEndFromRecurrences" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AiterateUntilEnd\u0028\u0029", + "name": "iterateUntilEnd", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_iterateUntilEnd" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Aoverlaps\u0028\u0029", + "name": "overlaps", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020period\u0020overlaps\u0020the\u0020given\u0020one\u0020\u0028if\u00201\u0020parameter\u0020passed\u0029\nor\u0020the\u0020period\u0020between\u00202\u0020dates\u0020\u0028if\u00202\u0020parameters\u0020passed\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_overlaps" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AforEach\u0028\u0029", + "name": "forEach", + "summary": "Execute\u0020a\u0020given\u0020function\u0020on\u0020each\u0020date\u0020of\u0020the\u0020period.", + "url": "classes/Carbon-CarbonPeriod.html#method_forEach" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Execute\u0020a\u0020given\u0020function\u0020on\u0020each\u0020date\u0020of\u0020the\u0020period\u0020and\u0020yield\u0020the\u0020result\u0020of\u0020this\u0020function.", + "url": "classes/Carbon-CarbonPeriod.html#method_map" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Aeq\u0028\u0029", + "name": "eq", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another.", + "url": "classes/Carbon-CarbonPeriod.html#method_eq" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AequalTo\u0028\u0029", + "name": "equalTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another.", + "url": "classes/Carbon-CarbonPeriod.html#method_equalTo" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Ane\u0028\u0029", + "name": "ne", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another.", + "url": "classes/Carbon-CarbonPeriod.html#method_ne" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AnotEqualTo\u0028\u0029", + "name": "notEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another.", + "url": "classes/Carbon-CarbonPeriod.html#method_notEqualTo" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AstartsBefore\u0028\u0029", + "name": "startsBefore", + "summary": "Determines\u0020if\u0020the\u0020start\u0020date\u0020is\u0020before\u0020an\u0020other\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_startsBefore" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AstartsBeforeOrAt\u0028\u0029", + "name": "startsBeforeOrAt", + "summary": "Determines\u0020if\u0020the\u0020start\u0020date\u0020is\u0020before\u0020or\u0020the\u0020same\u0020as\u0020a\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_startsBeforeOrAt" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AstartsAfter\u0028\u0029", + "name": "startsAfter", + "summary": "Determines\u0020if\u0020the\u0020start\u0020date\u0020is\u0020after\u0020an\u0020other\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_startsAfter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AstartsAfterOrAt\u0028\u0029", + "name": "startsAfterOrAt", + "summary": "Determines\u0020if\u0020the\u0020start\u0020date\u0020is\u0020after\u0020or\u0020the\u0020same\u0020as\u0020a\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_startsAfterOrAt" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AstartsAt\u0028\u0029", + "name": "startsAt", + "summary": "Determines\u0020if\u0020the\u0020start\u0020date\u0020is\u0020the\u0020same\u0020as\u0020a\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_startsAt" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AendsBefore\u0028\u0029", + "name": "endsBefore", + "summary": "Determines\u0020if\u0020the\u0020end\u0020date\u0020is\u0020before\u0020an\u0020other\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_endsBefore" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AendsBeforeOrAt\u0028\u0029", + "name": "endsBeforeOrAt", + "summary": "Determines\u0020if\u0020the\u0020end\u0020date\u0020is\u0020before\u0020or\u0020the\u0020same\u0020as\u0020a\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_endsBeforeOrAt" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AendsAfter\u0028\u0029", + "name": "endsAfter", + "summary": "Determines\u0020if\u0020the\u0020end\u0020date\u0020is\u0020after\u0020an\u0020other\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_endsAfter" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AendsAfterOrAt\u0028\u0029", + "name": "endsAfterOrAt", + "summary": "Determines\u0020if\u0020the\u0020end\u0020date\u0020is\u0020after\u0020or\u0020the\u0020same\u0020as\u0020a\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_endsAfterOrAt" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AendsAt\u0028\u0029", + "name": "endsAt", + "summary": "Determines\u0020if\u0020the\u0020end\u0020date\u0020is\u0020the\u0020same\u0020as\u0020a\u0020given\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#method_endsAt" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisStarted\u0028\u0029", + "name": "isStarted", + "summary": "Return\u0020true\u0020if\u0020start\u0020date\u0020is\u0020now\u0020or\u0020later.", + "url": "classes/Carbon-CarbonPeriod.html#method_isStarted" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisEnded\u0028\u0029", + "name": "isEnded", + "summary": "Return\u0020true\u0020if\u0020end\u0020date\u0020is\u0020now\u0020or\u0020later.", + "url": "classes/Carbon-CarbonPeriod.html#method_isEnded" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisInProgress\u0028\u0029", + "name": "isInProgress", + "summary": "Return\u0020true\u0020if\u0020now\u0020is\u0020between\u0020start\u0020date\u0020\u0028included\u0029\u0020and\u0020end\u0020date\u0020\u0028excluded\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_isInProgress" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AroundUnit\u0028\u0029", + "name": "roundUnit", + "summary": "Round\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020and\u0020the\u0020given\u0020function.", + "url": "classes/Carbon-CarbonPeriod.html#method_roundUnit" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AfloorUnit\u0028\u0029", + "name": "floorUnit", + "summary": "Truncate\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonPeriod.html#method_floorUnit" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AceilUnit\u0028\u0029", + "name": "ceilUnit", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-CarbonPeriod.html#method_ceilUnit" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Around\u0028\u0029", + "name": "round", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020\u0028else\u0020period\u0020interval\u0020is\u0020used\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_round" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Afloor\u0028\u0029", + "name": "floor", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020\u0028else\u0020period\u0020interval\u0020is\u0020used\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_floor" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Aceil\u0028\u0029", + "name": "ceil", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020\u0028else\u0020period\u0020interval\u0020is\u0020used\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_ceil" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Specify\u0020data\u0020which\u0020should\u0020be\u0020serialized\u0020to\u0020JSON.", + "url": "classes/Carbon-CarbonPeriod.html#method_jsonSerialize" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Acontains\u0028\u0029", + "name": "contains", + "summary": "Return\u0020true\u0020if\u0020the\u0020given\u0020date\u0020is\u0020between\u0020start\u0020and\u0020end.", + "url": "classes/Carbon-CarbonPeriod.html#method_contains" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003Afollows\u0028\u0029", + "name": "follows", + "summary": "Return\u0020true\u0020if\u0020the\u0020current\u0020period\u0020follows\u0020a\u0020given\u0020other\u0020period\u0020\u0028with\u0020no\u0020overlap\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_follows" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisFollowedBy\u0028\u0029", + "name": "isFollowedBy", + "summary": "Return\u0020true\u0020if\u0020the\u0020given\u0020other\u0020period\u0020follows\u0020the\u0020current\u0020one\u0020\u0028with\u0020no\u0020overlap\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_isFollowedBy" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisConsecutiveWith\u0028\u0029", + "name": "isConsecutiveWith", + "summary": "Return\u0020true\u0020if\u0020the\u0020given\u0020period\u0020either\u0020follows\u0020or\u0020is\u0020followed\u0020by\u0020the\u0020current\u0020one.", + "url": "classes/Carbon-CarbonPeriod.html#method_isConsecutiveWith" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AupdateInternalState\u0028\u0029", + "name": "updateInternalState", + "summary": "Update\u0020properties\u0020after\u0020removing\u0020built\u002Din\u0020filters.", + "url": "classes/Carbon-CarbonPeriod.html#method_updateInternalState" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcreateFilterTuple\u0028\u0029", + "name": "createFilterTuple", + "summary": "Create\u0020a\u0020filter\u0020tuple\u0020from\u0020raw\u0020parameters.", + "url": "classes/Carbon-CarbonPeriod.html#method_createFilterTuple" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisCarbonPredicateMethod\u0028\u0029", + "name": "isCarbonPredicateMethod", + "summary": "Return\u0020whether\u0020given\u0020callable\u0020is\u0020a\u0020string\u0020pointing\u0020to\u0020one\u0020of\u0020Carbon\u0027s\u0020is\u002A\u0020methods\nand\u0020should\u0020be\u0020automatically\u0020converted\u0020to\u0020a\u0020filter\u0020callback.", + "url": "classes/Carbon-CarbonPeriod.html#method_isCarbonPredicateMethod" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AfilterRecurrences\u0028\u0029", + "name": "filterRecurrences", + "summary": "Recurrences\u0020filter\u0020callback\u0020\u0028limits\u0020number\u0020of\u0020recurrences\u0029.", + "url": "classes/Carbon-CarbonPeriod.html#method_filterRecurrences" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AfilterEndDate\u0028\u0029", + "name": "filterEndDate", + "summary": "End\u0020date\u0020filter\u0020callback.", + "url": "classes/Carbon-CarbonPeriod.html#method_filterEndDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AendIteration\u0028\u0029", + "name": "endIteration", + "summary": "End\u0020iteration\u0020filter\u0020callback.", + "url": "classes/Carbon-CarbonPeriod.html#method_endIteration" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AhandleChangedParameters\u0028\u0029", + "name": "handleChangedParameters", + "summary": "Handle\u0020change\u0020of\u0020the\u0020parameters.", + "url": "classes/Carbon-CarbonPeriod.html#method_handleChangedParameters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AvalidateCurrentDate\u0028\u0029", + "name": "validateCurrentDate", + "summary": "Validate\u0020current\u0020date\u0020and\u0020stop\u0020iteration\u0020when\u0020necessary.", + "url": "classes/Carbon-CarbonPeriod.html#method_validateCurrentDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcheckFilters\u0028\u0029", + "name": "checkFilters", + "summary": "Check\u0020whether\u0020current\u0020value\u0020and\u0020key\u0020pass\u0020all\u0020the\u0020filters.", + "url": "classes/Carbon-CarbonPeriod.html#method_checkFilters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AprepareForReturn\u0028\u0029", + "name": "prepareForReturn", + "summary": "Prepare\u0020given\u0020date\u0020to\u0020be\u0020returned\u0020to\u0020the\u0020external\u0020logic.", + "url": "classes/Carbon-CarbonPeriod.html#method_prepareForReturn" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AincrementCurrentDateUntilValid\u0028\u0029", + "name": "incrementCurrentDateUntilValid", + "summary": "Keep\u0020incrementing\u0020the\u0020current\u0020date\u0020until\u0020a\u0020valid\u0020date\u0020is\u0020found\u0020or\u0020the\u0020iteration\u0020is\u0020ended.", + "url": "classes/Carbon-CarbonPeriod.html#method_incrementCurrentDateUntilValid" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AcallMacro\u0028\u0029", + "name": "callMacro", + "summary": "Call\u0020given\u0020macro.", + "url": "classes/Carbon-CarbonPeriod.html#method_callMacro" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AresolveCarbon\u0028\u0029", + "name": "resolveCarbon", + "summary": "Return\u0020the\u0020Carbon\u0020instance\u0020passed\u0020through,\u0020a\u0020now\u0020instance\u0020in\u0020the\u0020same\u0020timezone\nif\u0020null\u0020given\u0020or\u0020parse\u0020the\u0020input\u0020if\u0020string\u0020given.", + "url": "classes/Carbon-CarbonPeriod.html#method_resolveCarbon" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AresolveCarbonPeriod\u0028\u0029", + "name": "resolveCarbonPeriod", + "summary": "Resolve\u0020passed\u0020arguments\u0020or\u0020DatePeriod\u0020to\u0020a\u0020CarbonPeriod\u0020object.", + "url": "classes/Carbon-CarbonPeriod.html#method_resolveCarbonPeriod" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AorderCouple\u0028\u0029", + "name": "orderCouple", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_orderCouple" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AmakeDateTime\u0028\u0029", + "name": "makeDateTime", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_makeDateTime" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AisInfiniteDate\u0028\u0029", + "name": "isInfiniteDate", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_isInfiniteDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003ArawDate\u0028\u0029", + "name": "rawDate", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_rawDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AsetDefaultParameters\u0028\u0029", + "name": "setDefaultParameters", + "summary": "", + "url": "classes/Carbon-CarbonPeriod.html#method_setDefaultParameters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003ARECURRENCES_FILTER", + "name": "RECURRENCES_FILTER", + "summary": "Built\u002Din\u0020filter\u0020for\u0020limit\u0020by\u0020recurrences.", + "url": "classes/Carbon-CarbonPeriod.html#constant_RECURRENCES_FILTER" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AEND_DATE_FILTER", + "name": "END_DATE_FILTER", + "summary": "Built\u002Din\u0020filter\u0020for\u0020limit\u0020to\u0020an\u0020end.", + "url": "classes/Carbon-CarbonPeriod.html#constant_END_DATE_FILTER" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AEND_ITERATION", + "name": "END_ITERATION", + "summary": "Special\u0020value\u0020which\u0020can\u0020be\u0020returned\u0020by\u0020filters\u0020to\u0020end\u0020iteration.\u0020Also\u0020a\u0020filter.", + "url": "classes/Carbon-CarbonPeriod.html#constant_END_ITERATION" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AEXCLUDE_START_DATE", + "name": "EXCLUDE_START_DATE", + "summary": "Exclude\u0020start\u0020date\u0020from\u0020iteration.", + "url": "classes/Carbon-CarbonPeriod.html#constant_EXCLUDE_START_DATE" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AEXCLUDE_END_DATE", + "name": "EXCLUDE_END_DATE", + "summary": "Exclude\u0020end\u0020date\u0020from\u0020iteration.", + "url": "classes/Carbon-CarbonPeriod.html#constant_EXCLUDE_END_DATE" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AIMMUTABLE", + "name": "IMMUTABLE", + "summary": "Yield\u0020CarbonImmutable\u0020instances.", + "url": "classes/Carbon-CarbonPeriod.html#constant_IMMUTABLE" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003ANEXT_MAX_ATTEMPTS", + "name": "NEXT_MAX_ATTEMPTS", + "summary": "Number\u0020of\u0020maximum\u0020attempts\u0020before\u0020giving\u0020up\u0020on\u0020finding\u0020next\u0020valid\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#constant_NEXT_MAX_ATTEMPTS" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003AEND_MAX_ATTEMPTS", + "name": "END_MAX_ATTEMPTS", + "summary": "Number\u0020of\u0020maximum\u0020attempts\u0020before\u0020giving\u0020up\u0020on\u0020finding\u0020end\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#constant_END_MAX_ATTEMPTS" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003ADEFAULT_DATE_CLASS", + "name": "DEFAULT_DATE_CLASS", + "summary": "Default\u0020date\u0020class\u0020of\u0020iteration\u0020items.", + "url": "classes/Carbon-CarbonPeriod.html#constant_DEFAULT_DATE_CLASS" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024macros", + "name": "macros", + "summary": "The\u0020registered\u0020macros.", + "url": "classes/Carbon-CarbonPeriod.html#property_macros" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024dateClass", + "name": "dateClass", + "summary": "Date\u0020class\u0020of\u0020iteration\u0020items.", + "url": "classes/Carbon-CarbonPeriod.html#property_dateClass" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024dateInterval", + "name": "dateInterval", + "summary": "Underlying\u0020date\u0020interval\u0020instance.\u0020Always\u0020present,\u0020one\u0020day\u0020by\u0020default.", + "url": "classes/Carbon-CarbonPeriod.html#property_dateInterval" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024constructed", + "name": "constructed", + "summary": "True\u0020once\u0020__construct\u0020is\u0020finished.", + "url": "classes/Carbon-CarbonPeriod.html#property_constructed" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024isDefaultInterval", + "name": "isDefaultInterval", + "summary": "Whether\u0020current\u0020date\u0020interval\u0020was\u0020set\u0020by\u0020default.", + "url": "classes/Carbon-CarbonPeriod.html#property_isDefaultInterval" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024filters", + "name": "filters", + "summary": "The\u0020filters\u0020stack.", + "url": "classes/Carbon-CarbonPeriod.html#property_filters" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024startDate", + "name": "startDate", + "summary": "Period\u0020start\u0020date.\u0020Applied\u0020on\u0020rewind.\u0020Always\u0020present,\u0020now\u0020by\u0020default.", + "url": "classes/Carbon-CarbonPeriod.html#property_startDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024endDate", + "name": "endDate", + "summary": "Period\u0020end\u0020date.\u0020For\u0020inverted\u0020interval\u0020should\u0020be\u0020before\u0020the\u0020start\u0020date.\u0020Applied\u0020via\u0020a\u0020filter.", + "url": "classes/Carbon-CarbonPeriod.html#property_endDate" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024recurrences", + "name": "recurrences", + "summary": "Limit\u0020for\u0020number\u0020of\u0020recurrences.\u0020Applied\u0020via\u0020a\u0020filter.", + "url": "classes/Carbon-CarbonPeriod.html#property_recurrences" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024options", + "name": "options", + "summary": "Iteration\u0020options.", + "url": "classes/Carbon-CarbonPeriod.html#property_options" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024timezone", + "name": "timezone", + "summary": "Timezone\u0020of\u0020current\u0020date.\u0020Taken\u0020from\u0020the\u0020start\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#property_timezone" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024validationResult", + "name": "validationResult", + "summary": "The\u0020cached\u0020validation\u0020result\u0020for\u0020current\u0020date.", + "url": "classes/Carbon-CarbonPeriod.html#property_validationResult" + }, { + "fqsen": "\\Carbon\\CarbonPeriod\u003A\u003A\u0024tzName", + "name": "tzName", + "summary": "Timezone\u0020handler\u0020for\u0020settings\u0028\u0029\u0020method.", + "url": "classes/Carbon-CarbonPeriod.html#property_tzName" + }, { + "fqsen": "\\Carbon\\CarbonPeriodImmutable", + "name": "CarbonPeriodImmutable", + "summary": "Substitution\u0020of\u0020DatePeriod\u0020with\u0020some\u0020modifications\u0020and\u0020many\u0020more\u0020features.", + "url": "classes/Carbon-CarbonPeriodImmutable.html" + }, { + "fqsen": "\\Carbon\\CarbonPeriodImmutable\u003A\u003AcopyIfImmutable\u0028\u0029", + "name": "copyIfImmutable", + "summary": "Prepare\u0020the\u0020instance\u0020to\u0020be\u0020set\u0020\u0028self\u0020if\u0020mutable\u0020to\u0020be\u0020mutated,\ncopy\u0020if\u0020immutable\u0020to\u0020generate\u0020a\u0020new\u0020instance\u0029.", + "url": "classes/Carbon-CarbonPeriodImmutable.html#method_copyIfImmutable" + }, { + "fqsen": "\\Carbon\\CarbonPeriodImmutable\u003A\u003ADEFAULT_DATE_CLASS", + "name": "DEFAULT_DATE_CLASS", + "summary": "Default\u0020date\u0020class\u0020of\u0020iteration\u0020items.", + "url": "classes/Carbon-CarbonPeriodImmutable.html#constant_DEFAULT_DATE_CLASS" + }, { + "fqsen": "\\Carbon\\CarbonPeriodImmutable\u003A\u003A\u0024dateClass", + "name": "dateClass", + "summary": "Date\u0020class\u0020of\u0020iteration\u0020items.", + "url": "classes/Carbon-CarbonPeriodImmutable.html#property_dateClass" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone", + "name": "CarbonTimeZone", + "summary": "", + "url": "classes/Carbon-CarbonTimeZone.html" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Carbon-CarbonTimeZone.html#method___construct" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AparseNumericTimezone\u0028\u0029", + "name": "parseNumericTimezone", + "summary": "", + "url": "classes/Carbon-CarbonTimeZone.html#method_parseNumericTimezone" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AgetDateTimeZoneNameFromMixed\u0028\u0029", + "name": "getDateTimeZoneNameFromMixed", + "summary": "", + "url": "classes/Carbon-CarbonTimeZone.html#method_getDateTimeZoneNameFromMixed" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AgetDateTimeZoneFromName\u0028\u0029", + "name": "getDateTimeZoneFromName", + "summary": "", + "url": "classes/Carbon-CarbonTimeZone.html#method_getDateTimeZoneFromName" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003Acast\u0028\u0029", + "name": "cast", + "summary": "Cast\u0020the\u0020current\u0020instance\u0020into\u0020the\u0020given\u0020class.", + "url": "classes/Carbon-CarbonTimeZone.html#method_cast" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Create\u0020a\u0020CarbonTimeZone\u0020from\u0020mixed\u0020input.", + "url": "classes/Carbon-CarbonTimeZone.html#method_instance" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AgetAbbreviatedName\u0028\u0029", + "name": "getAbbreviatedName", + "summary": "Returns\u0020abbreviated\u0020name\u0020of\u0020the\u0020current\u0020timezone\u0020according\u0020to\u0020DST\u0020setting.", + "url": "classes/Carbon-CarbonTimeZone.html#method_getAbbreviatedName" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AgetAbbr\u0028\u0029", + "name": "getAbbr", + "summary": "", + "url": "classes/Carbon-CarbonTimeZone.html#method_getAbbr" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AtoOffsetName\u0028\u0029", + "name": "toOffsetName", + "summary": "Get\u0020the\u0020offset\u0020as\u0020string\u0020\u0022sHH\u003AMM\u0022\u0020\u0028such\u0020as\u0020\u0022\u002B00\u003A00\u0022\u0020or\u0020\u0022\u002D12\u003A30\u0022\u0029.", + "url": "classes/Carbon-CarbonTimeZone.html#method_toOffsetName" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AtoOffsetTimeZone\u0028\u0029", + "name": "toOffsetTimeZone", + "summary": "Returns\u0020a\u0020new\u0020CarbonTimeZone\u0020object\u0020using\u0020the\u0020offset\u0020string\u0020instead\u0020of\u0020region\u0020string.", + "url": "classes/Carbon-CarbonTimeZone.html#method_toOffsetTimeZone" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AtoRegionName\u0028\u0029", + "name": "toRegionName", + "summary": "Returns\u0020the\u0020first\u0020region\u0020string\u0020\u0028such\u0020as\u0020\u0022America\/Toronto\u0022\u0029\u0020that\u0020matches\u0020the\u0020current\u0020timezone\u0020or\nfalse\u0020if\u0020no\u0020match\u0020is\u0020found.", + "url": "classes/Carbon-CarbonTimeZone.html#method_toRegionName" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AtoRegionTimeZone\u0028\u0029", + "name": "toRegionTimeZone", + "summary": "Returns\u0020a\u0020new\u0020CarbonTimeZone\u0020object\u0020using\u0020the\u0020region\u0020string\u0020instead\u0020of\u0020offset\u0020string.", + "url": "classes/Carbon-CarbonTimeZone.html#method_toRegionTimeZone" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Cast\u0020to\u0020string\u0020\u0028get\u0020timezone\u0020name\u0029.", + "url": "classes/Carbon-CarbonTimeZone.html#method___toString" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Return\u0020the\u0020type\u0020number\u003A", + "url": "classes/Carbon-CarbonTimeZone.html#method_getType" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020CarbonTimeZone\u0020from\u0020mixed\u0020input.", + "url": "classes/Carbon-CarbonTimeZone.html#method_create" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AcreateFromHourOffset\u0028\u0029", + "name": "createFromHourOffset", + "summary": "Create\u0020a\u0020CarbonTimeZone\u0020from\u0020int\/float\u0020hour\u0020offset.", + "url": "classes/Carbon-CarbonTimeZone.html#method_createFromHourOffset" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AcreateFromMinuteOffset\u0028\u0029", + "name": "createFromMinuteOffset", + "summary": "Create\u0020a\u0020CarbonTimeZone\u0020from\u0020int\/float\u0020minute\u0020offset.", + "url": "classes/Carbon-CarbonTimeZone.html#method_createFromMinuteOffset" + }, { + "fqsen": "\\Carbon\\CarbonTimeZone\u003A\u003AgetOffsetNameFromMinuteOffset\u0028\u0029", + "name": "getOffsetNameFromMinuteOffset", + "summary": "Convert\u0020a\u0020total\u0020minutes\u0020offset\u0020into\u0020a\u0020standardized\u0020timezone\u0020offset\u0020string.", + "url": "classes/Carbon-CarbonTimeZone.html#method_getOffsetNameFromMinuteOffset" + }, { + "fqsen": "\\Carbon\\Cli\\Invoker", + "name": "Invoker", + "summary": "", + "url": "classes/Carbon-Cli-Invoker.html" + }, { + "fqsen": "\\Carbon\\Cli\\Invoker\u003A\u003ArunWithCli\u0028\u0029", + "name": "runWithCli", + "summary": "", + "url": "classes/Carbon-Cli-Invoker.html#method_runWithCli" + }, { + "fqsen": "\\Carbon\\Cli\\Invoker\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "", + "url": "classes/Carbon-Cli-Invoker.html#method___invoke" + }, { + "fqsen": "\\Carbon\\Cli\\Invoker\u003A\u003ACLI_CLASS_NAME", + "name": "CLI_CLASS_NAME", + "summary": "", + "url": "classes/Carbon-Cli-Invoker.html#constant_CLI_CLASS_NAME" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadComparisonUnitException", + "name": "BadComparisonUnitException", + "summary": "", + "url": "classes/Carbon-Exceptions-BadComparisonUnitException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadComparisonUnitException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-BadComparisonUnitException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadComparisonUnitException\u003A\u003AgetUnit\u0028\u0029", + "name": "getUnit", + "summary": "Get\u0020the\u0020unit.", + "url": "classes/Carbon-Exceptions-BadComparisonUnitException.html#method_getUnit" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadComparisonUnitException\u003A\u003A\u0024unit", + "name": "unit", + "summary": "The\u0020unit.", + "url": "classes/Carbon-Exceptions-BadComparisonUnitException.html#property_unit" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentConstructorException", + "name": "BadFluentConstructorException", + "summary": "", + "url": "classes/Carbon-Exceptions-BadFluentConstructorException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentConstructorException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-BadFluentConstructorException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentConstructorException\u003A\u003AgetMethod\u0028\u0029", + "name": "getMethod", + "summary": "Get\u0020the\u0020method.", + "url": "classes/Carbon-Exceptions-BadFluentConstructorException.html#method_getMethod" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentConstructorException\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020method.", + "url": "classes/Carbon-Exceptions-BadFluentConstructorException.html#property_method" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentSetterException", + "name": "BadFluentSetterException", + "summary": "", + "url": "classes/Carbon-Exceptions-BadFluentSetterException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentSetterException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-BadFluentSetterException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentSetterException\u003A\u003AgetSetter\u0028\u0029", + "name": "getSetter", + "summary": "Get\u0020the\u0020setter.", + "url": "classes/Carbon-Exceptions-BadFluentSetterException.html#method_getSetter" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadFluentSetterException\u003A\u003A\u0024setter", + "name": "setter", + "summary": "The\u0020setter.", + "url": "classes/Carbon-Exceptions-BadFluentSetterException.html#property_setter" + }, { + "fqsen": "\\Carbon\\Exceptions\\BadMethodCallException", + "name": "BadMethodCallException", + "summary": "", + "url": "classes/Carbon-Exceptions-BadMethodCallException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\EndLessPeriodException", + "name": "EndLessPeriodException", + "summary": "", + "url": "classes/Carbon-Exceptions-EndLessPeriodException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/Carbon-Exceptions-Exception.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\ImmutableException", + "name": "ImmutableException", + "summary": "", + "url": "classes/Carbon-Exceptions-ImmutableException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\ImmutableException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-ImmutableException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\ImmutableException\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Get\u0020the\u0020value.", + "url": "classes/Carbon-Exceptions-ImmutableException.html#method_getValue" + }, { + "fqsen": "\\Carbon\\Exceptions\\ImmutableException\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020value.", + "url": "classes/Carbon-Exceptions-ImmutableException.html#property_value" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidArgumentException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidCastException", + "name": "InvalidCastException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidCastException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidDateException", + "name": "InvalidDateException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidDateException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidDateException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-InvalidDateException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidDateException\u003A\u003AgetField\u0028\u0029", + "name": "getField", + "summary": "Get\u0020the\u0020invalid\u0020field.", + "url": "classes/Carbon-Exceptions-InvalidDateException.html#method_getField" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidDateException\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Get\u0020the\u0020invalid\u0020value.", + "url": "classes/Carbon-Exceptions-InvalidDateException.html#method_getValue" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidDateException\u003A\u003A\u0024field", + "name": "field", + "summary": "The\u0020invalid\u0020field.", + "url": "classes/Carbon-Exceptions-InvalidDateException.html#property_field" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidDateException\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020invalid\u0020value.", + "url": "classes/Carbon-Exceptions-InvalidDateException.html#property_value" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidFormatException", + "name": "InvalidFormatException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidFormatException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidIntervalException", + "name": "InvalidIntervalException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidIntervalException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidPeriodDateException", + "name": "InvalidPeriodDateException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidPeriodDateException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidPeriodParameterException", + "name": "InvalidPeriodParameterException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidPeriodParameterException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidTimeZoneException", + "name": "InvalidTimeZoneException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidTimeZoneException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\InvalidTypeException", + "name": "InvalidTypeException", + "summary": "", + "url": "classes/Carbon-Exceptions-InvalidTypeException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotACarbonClassException", + "name": "NotACarbonClassException", + "summary": "", + "url": "classes/Carbon-Exceptions-NotACarbonClassException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotACarbonClassException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-NotACarbonClassException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotACarbonClassException\u003A\u003AgetClassName\u0028\u0029", + "name": "getClassName", + "summary": "Get\u0020the\u0020className.", + "url": "classes/Carbon-Exceptions-NotACarbonClassException.html#method_getClassName" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotACarbonClassException\u003A\u003A\u0024className", + "name": "className", + "summary": "The\u0020className.", + "url": "classes/Carbon-Exceptions-NotACarbonClassException.html#property_className" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotAPeriodException", + "name": "NotAPeriodException", + "summary": "", + "url": "classes/Carbon-Exceptions-NotAPeriodException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotLocaleAwareException", + "name": "NotLocaleAwareException", + "summary": "", + "url": "classes/Carbon-Exceptions-NotLocaleAwareException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\NotLocaleAwareException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-NotLocaleAwareException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException", + "name": "OutOfRangeException", + "summary": "", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003AgetMax\u0028\u0029", + "name": "getMax", + "summary": "", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#method_getMax" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003AgetMin\u0028\u0029", + "name": "getMin", + "summary": "", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#method_getMin" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003AgetUnit\u0028\u0029", + "name": "getUnit", + "summary": "", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#method_getUnit" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#method_getValue" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003A\u0024unit", + "name": "unit", + "summary": "The\u0020unit\u0020or\u0020name\u0020of\u0020the\u0020value.", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#property_unit" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003A\u0024min", + "name": "min", + "summary": "The\u0020range\u0020minimum.", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#property_min" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003A\u0024max", + "name": "max", + "summary": "The\u0020range\u0020maximum.", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#property_max" + }, { + "fqsen": "\\Carbon\\Exceptions\\OutOfRangeException\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020invalid\u0020value.", + "url": "classes/Carbon-Exceptions-OutOfRangeException.html#property_value" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException", + "name": "ParseErrorException", + "summary": "", + "url": "classes/Carbon-Exceptions-ParseErrorException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003AgetExpected\u0028\u0029", + "name": "getExpected", + "summary": "Get\u0020the\u0020expected.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#method_getExpected" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003AgetActual\u0028\u0029", + "name": "getActual", + "summary": "Get\u0020the\u0020actual.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#method_getActual" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003AgetHelp\u0028\u0029", + "name": "getHelp", + "summary": "Get\u0020the\u0020help\u0020message.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#method_getHelp" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003A\u0024expected", + "name": "expected", + "summary": "The\u0020expected.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#property_expected" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003A\u0024actual", + "name": "actual", + "summary": "The\u0020actual.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#property_actual" + }, { + "fqsen": "\\Carbon\\Exceptions\\ParseErrorException\u003A\u003A\u0024help", + "name": "help", + "summary": "The\u0020help\u0020message.", + "url": "classes/Carbon-Exceptions-ParseErrorException.html#property_help" + }, { + "fqsen": "\\Carbon\\Exceptions\\RuntimeException", + "name": "RuntimeException", + "summary": "", + "url": "classes/Carbon-Exceptions-RuntimeException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnitException", + "name": "UnitException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnitException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnitNotConfiguredException", + "name": "UnitNotConfiguredException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnitNotConfiguredException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnitNotConfiguredException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-UnitNotConfiguredException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnitNotConfiguredException\u003A\u003AgetUnit\u0028\u0029", + "name": "getUnit", + "summary": "Get\u0020the\u0020unit.", + "url": "classes/Carbon-Exceptions-UnitNotConfiguredException.html#method_getUnit" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnitNotConfiguredException\u003A\u003A\u0024unit", + "name": "unit", + "summary": "The\u0020unit.", + "url": "classes/Carbon-Exceptions-UnitNotConfiguredException.html#property_unit" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownGetterException", + "name": "UnknownGetterException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnknownGetterException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownGetterException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-UnknownGetterException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownGetterException\u003A\u003AgetGetter\u0028\u0029", + "name": "getGetter", + "summary": "Get\u0020the\u0020getter.", + "url": "classes/Carbon-Exceptions-UnknownGetterException.html#method_getGetter" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownGetterException\u003A\u003A\u0024getter", + "name": "getter", + "summary": "The\u0020getter.", + "url": "classes/Carbon-Exceptions-UnknownGetterException.html#property_getter" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownMethodException", + "name": "UnknownMethodException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnknownMethodException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownMethodException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-UnknownMethodException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownMethodException\u003A\u003AgetMethod\u0028\u0029", + "name": "getMethod", + "summary": "Get\u0020the\u0020method.", + "url": "classes/Carbon-Exceptions-UnknownMethodException.html#method_getMethod" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownMethodException\u003A\u003A\u0024method", + "name": "method", + "summary": "The\u0020method.", + "url": "classes/Carbon-Exceptions-UnknownMethodException.html#property_method" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownSetterException", + "name": "UnknownSetterException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnknownSetterException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownSetterException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-UnknownSetterException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownSetterException\u003A\u003AgetSetter\u0028\u0029", + "name": "getSetter", + "summary": "Get\u0020the\u0020setter.", + "url": "classes/Carbon-Exceptions-UnknownSetterException.html#method_getSetter" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownSetterException\u003A\u003A\u0024setter", + "name": "setter", + "summary": "The\u0020setter.", + "url": "classes/Carbon-Exceptions-UnknownSetterException.html#property_setter" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownUnitException", + "name": "UnknownUnitException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnknownUnitException.html" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownUnitException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Carbon-Exceptions-UnknownUnitException.html#method___construct" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownUnitException\u003A\u003AgetUnit\u0028\u0029", + "name": "getUnit", + "summary": "Get\u0020the\u0020unit.", + "url": "classes/Carbon-Exceptions-UnknownUnitException.html#method_getUnit" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnknownUnitException\u003A\u003A\u0024unit", + "name": "unit", + "summary": "The\u0020unit.", + "url": "classes/Carbon-Exceptions-UnknownUnitException.html#property_unit" + }, { + "fqsen": "\\Carbon\\Exceptions\\UnreachableException", + "name": "UnreachableException", + "summary": "", + "url": "classes/Carbon-Exceptions-UnreachableException.html" + }, { + "fqsen": "\\Carbon\\Factory", + "name": "Factory", + "summary": "A\u0020factory\u0020to\u0020generate\u0020Carbon\u0020instances\u0020with\u0020common\u0020settings.", + "url": "classes/Carbon-Factory.html" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Carbon-Factory.html#method___construct" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003AgetClassName\u0028\u0029", + "name": "getClassName", + "summary": "", + "url": "classes/Carbon-Factory.html#method_getClassName" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003AsetClassName\u0028\u0029", + "name": "setClassName", + "summary": "", + "url": "classes/Carbon-Factory.html#method_setClassName" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003A\u0024className", + "name": "className", + "summary": "", + "url": "classes/Carbon-Factory.html#property_className" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003AgetSettings\u0028\u0029", + "name": "getSettings", + "summary": "", + "url": "classes/Carbon-Factory.html#method_getSettings" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003AsetSettings\u0028\u0029", + "name": "setSettings", + "summary": "", + "url": "classes/Carbon-Factory.html#method_setSettings" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003A\u0024settings", + "name": "settings", + "summary": "", + "url": "classes/Carbon-Factory.html#property_settings" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003AmergeSettings\u0028\u0029", + "name": "mergeSettings", + "summary": "", + "url": "classes/Carbon-Factory.html#method_mergeSettings" + }, { + "fqsen": "\\Carbon\\Factory\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Carbon-Factory.html#method___call" + }, { + "fqsen": "\\Carbon\\FactoryImmutable", + "name": "FactoryImmutable", + "summary": "A\u0020factory\u0020to\u0020generate\u0020CarbonImmutable\u0020instances\u0020with\u0020common\u0020settings.", + "url": "classes/Carbon-FactoryImmutable.html" + }, { + "fqsen": "\\Carbon\\FactoryImmutable\u003A\u003Anow\u0028\u0029", + "name": "now", + "summary": "Get\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020current\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-FactoryImmutable.html#method_now" + }, { + "fqsen": "\\Carbon\\FactoryImmutable\u003A\u003A\u0024className", + "name": "className", + "summary": "", + "url": "classes/Carbon-FactoryImmutable.html#property_className" + }, { + "fqsen": "\\Carbon\\Language", + "name": "Language", + "summary": "", + "url": "classes/Carbon-Language.html" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Carbon-Language.html#method___construct" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Get\u0020the\u0020list\u0020of\u0020the\u0020known\u0020languages.", + "url": "classes/Carbon-Language.html#method_all" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003Aregions\u0028\u0029", + "name": "regions", + "summary": "Get\u0020the\u0020list\u0020of\u0020the\u0020known\u0020regions.", + "url": "classes/Carbon-Language.html#method_regions" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetNames\u0028\u0029", + "name": "getNames", + "summary": "Get\u0020both\u0020isoName\u0020and\u0020nativeName\u0020as\u0020an\u0020array.", + "url": "classes/Carbon-Language.html#method_getNames" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetId\u0028\u0029", + "name": "getId", + "summary": "Returns\u0020the\u0020original\u0020locale\u0020ID.", + "url": "classes/Carbon-Language.html#method_getId" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetCode\u0028\u0029", + "name": "getCode", + "summary": "Returns\u0020the\u0020code\u0020of\u0020the\u0020locale\u0020\u0022en\u0022\/\u0022fr\u0022.", + "url": "classes/Carbon-Language.html#method_getCode" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetVariant\u0028\u0029", + "name": "getVariant", + "summary": "Returns\u0020the\u0020variant\u0020code\u0020such\u0020as\u0020cyrl\/latn.", + "url": "classes/Carbon-Language.html#method_getVariant" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetVariantName\u0028\u0029", + "name": "getVariantName", + "summary": "Returns\u0020the\u0020variant\u0020such\u0020as\u0020Cyrillic\/Latin.", + "url": "classes/Carbon-Language.html#method_getVariantName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetRegion\u0028\u0029", + "name": "getRegion", + "summary": "Returns\u0020the\u0020region\u0020part\u0020of\u0020the\u0020locale.", + "url": "classes/Carbon-Language.html#method_getRegion" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetRegionName\u0028\u0029", + "name": "getRegionName", + "summary": "Returns\u0020the\u0020region\u0020name\u0020for\u0020the\u0020current\u0020language.", + "url": "classes/Carbon-Language.html#method_getRegionName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetFullIsoName\u0028\u0029", + "name": "getFullIsoName", + "summary": "Returns\u0020the\u0020long\u0020ISO\u0020language\u0020name.", + "url": "classes/Carbon-Language.html#method_getFullIsoName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AsetIsoName\u0028\u0029", + "name": "setIsoName", + "summary": "Set\u0020the\u0020ISO\u0020language\u0020name.", + "url": "classes/Carbon-Language.html#method_setIsoName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetFullNativeName\u0028\u0029", + "name": "getFullNativeName", + "summary": "Return\u0020the\u0020full\u0020name\u0020of\u0020the\u0020language\u0020in\u0020this\u0020language.", + "url": "classes/Carbon-Language.html#method_getFullNativeName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AsetNativeName\u0028\u0029", + "name": "setNativeName", + "summary": "Set\u0020the\u0020name\u0020of\u0020the\u0020language\u0020in\u0020this\u0020language.", + "url": "classes/Carbon-Language.html#method_setNativeName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetIsoName\u0028\u0029", + "name": "getIsoName", + "summary": "Returns\u0020the\u0020short\u0020ISO\u0020language\u0020name.", + "url": "classes/Carbon-Language.html#method_getIsoName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetNativeName\u0028\u0029", + "name": "getNativeName", + "summary": "Get\u0020the\u0020short\u0020name\u0020of\u0020the\u0020language\u0020in\u0020this\u0020language.", + "url": "classes/Carbon-Language.html#method_getNativeName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetIsoDescription\u0028\u0029", + "name": "getIsoDescription", + "summary": "Get\u0020a\u0020string\u0020with\u0020short\u0020ISO\u0020name,\u0020region\u0020in\u0020parentheses\u0020if\u0020applicable,\u0020variant\u0020in\u0020parentheses\u0020if\u0020applicable.", + "url": "classes/Carbon-Language.html#method_getIsoDescription" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetNativeDescription\u0028\u0029", + "name": "getNativeDescription", + "summary": "Get\u0020a\u0020string\u0020with\u0020short\u0020native\u0020name,\u0020region\u0020in\u0020parentheses\u0020if\u0020applicable,\u0020variant\u0020in\u0020parentheses\u0020if\u0020applicable.", + "url": "classes/Carbon-Language.html#method_getNativeDescription" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetFullIsoDescription\u0028\u0029", + "name": "getFullIsoDescription", + "summary": "Get\u0020a\u0020string\u0020with\u0020long\u0020ISO\u0020name,\u0020region\u0020in\u0020parentheses\u0020if\u0020applicable,\u0020variant\u0020in\u0020parentheses\u0020if\u0020applicable.", + "url": "classes/Carbon-Language.html#method_getFullIsoDescription" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AgetFullNativeDescription\u0028\u0029", + "name": "getFullNativeDescription", + "summary": "Get\u0020a\u0020string\u0020with\u0020long\u0020native\u0020name,\u0020region\u0020in\u0020parentheses\u0020if\u0020applicable,\u0020variant\u0020in\u0020parentheses\u0020if\u0020applicable.", + "url": "classes/Carbon-Language.html#method_getFullNativeDescription" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Returns\u0020the\u0020original\u0020locale\u0020ID.", + "url": "classes/Carbon-Language.html#method___toString" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Get\u0020a\u0020string\u0020with\u0020short\u0020ISO\u0020name,\u0020region\u0020in\u0020parentheses\u0020if\u0020applicable,\u0020variant\u0020in\u0020parentheses\u0020if\u0020applicable.", + "url": "classes/Carbon-Language.html#method_jsonSerialize" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024languagesNames", + "name": "languagesNames", + "summary": "", + "url": "classes/Carbon-Language.html#property_languagesNames" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024regionsNames", + "name": "regionsNames", + "summary": "", + "url": "classes/Carbon-Language.html#property_regionsNames" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024id", + "name": "id", + "summary": "", + "url": "classes/Carbon-Language.html#property_id" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024code", + "name": "code", + "summary": "", + "url": "classes/Carbon-Language.html#property_code" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024variant", + "name": "variant", + "summary": "", + "url": "classes/Carbon-Language.html#property_variant" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024region", + "name": "region", + "summary": "", + "url": "classes/Carbon-Language.html#property_region" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024names", + "name": "names", + "summary": "", + "url": "classes/Carbon-Language.html#property_names" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024isoName", + "name": "isoName", + "summary": "", + "url": "classes/Carbon-Language.html#property_isoName" + }, { + "fqsen": "\\Carbon\\Language\u003A\u003A\u0024nativeName", + "name": "nativeName", + "summary": "", + "url": "classes/Carbon-Language.html#property_nativeName" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider", + "name": "ServiceProvider", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AsetAppGetter\u0028\u0029", + "name": "setAppGetter", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_setAppGetter" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AsetLocaleGetter\u0028\u0029", + "name": "setLocaleGetter", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_setLocaleGetter" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003Aboot\u0028\u0029", + "name": "boot", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_boot" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AupdateLocale\u0028\u0029", + "name": "updateLocale", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_updateLocale" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Register\u0020any\u0020application\u0020services.", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_register" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_getLocale" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AgetApp\u0028\u0029", + "name": "getApp", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_getApp" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AgetGlobalApp\u0028\u0029", + "name": "getGlobalApp", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_getGlobalApp" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003AisEventDispatcher\u0028\u0029", + "name": "isEventDispatcher", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#method_isEventDispatcher" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003A\u0024appGetter", + "name": "appGetter", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#property_appGetter" + }, { + "fqsen": "\\Carbon\\Laravel\\ServiceProvider\u003A\u003A\u0024localeGetter", + "name": "localeGetter", + "summary": "", + "url": "classes/Carbon-Laravel-ServiceProvider.html#property_localeGetter" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\MessageFormatterMapper", + "name": "MessageFormatterMapper", + "summary": "", + "url": "classes/Carbon-MessageFormatter-MessageFormatterMapper.html" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\MessageFormatterMapper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Carbon-MessageFormatter-MessageFormatterMapper.html#method___construct" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\MessageFormatterMapper\u003A\u003AtransformLocale\u0028\u0029", + "name": "transformLocale", + "summary": "", + "url": "classes/Carbon-MessageFormatter-MessageFormatterMapper.html#method_transformLocale" + }, { + "fqsen": "\\Carbon\\MessageFormatter\\MessageFormatterMapper\u003A\u003A\u0024formatter", + "name": "formatter", + "summary": "Wrapped\u0020formatter.", + "url": "classes/Carbon-MessageFormatter-MessageFormatterMapper.html#property_formatter" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro", + "name": "AbstractMacro", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractMacro.html" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Macro\u0020constructor.", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method___construct" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetReflectionFunction\u0028\u0029", + "name": "getReflectionFunction", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getReflectionFunction" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetDeclaringClass\u0028\u0029", + "name": "getDeclaringClass", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getDeclaringClass" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisPrivate\u0028\u0029", + "name": "isPrivate", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isPrivate" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisPublic\u0028\u0029", + "name": "isPublic", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isPublic" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisFinal\u0028\u0029", + "name": "isFinal", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isFinal" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisInternal\u0028\u0029", + "name": "isInternal", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isInternal" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisAbstract\u0028\u0029", + "name": "isAbstract", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isAbstract" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisStatic\u0028\u0029", + "name": "isStatic", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isStatic" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetDocComment\u0028\u0029", + "name": "getDocComment", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getDocComment" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getName" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getParameters" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetReturnType\u0028\u0029", + "name": "getReturnType", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getReturnType" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisDeprecated\u0028\u0029", + "name": "isDeprecated", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isDeprecated" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AisVariadic\u0028\u0029", + "name": "isVariadic", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_isVariadic" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetPrototype\u0028\u0029", + "name": "getPrototype", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getPrototype" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AgetTentativeReturnType\u0028\u0029", + "name": "getTentativeReturnType", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_getTentativeReturnType" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AreturnsByReference\u0028\u0029", + "name": "returnsByReference", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_returnsByReference" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AadaptType\u0028\u0029", + "name": "adaptType", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_adaptType" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003AhasModernParser\u0028\u0029", + "name": "hasModernParser", + "summary": "", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#method_hasModernParser" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003A\u0024reflectionFunction", + "name": "reflectionFunction", + "summary": "The\u0020reflection\u0020function\/method.", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#property_reflectionFunction" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003A\u0024className", + "name": "className", + "summary": "The\u0020class\u0020name.", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#property_className" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003A\u0024methodName", + "name": "methodName", + "summary": "The\u0020method\u0020name.", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#property_methodName" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003A\u0024parameters", + "name": "parameters", + "summary": "The\u0020parameters.", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#property_parameters" + }, { + "fqsen": "\\Carbon\\PHPStan\\AbstractMacro\u003A\u003A\u0024static", + "name": "static", + "summary": "The\u0020is\u0020static.", + "url": "classes/Carbon-PHPStan-AbstractMacro.html#property_static" + }, { + "fqsen": "\\Carbon\\PHPStan\\Macro", + "name": "Macro", + "summary": "", + "url": "classes/Carbon-PHPStan-Macro.html" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroExtension", + "name": "MacroExtension", + "summary": "Class\u0020MacroExtension.", + "url": "classes/Carbon-PHPStan-MacroExtension.html" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroExtension\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Extension\u0020constructor.", + "url": "classes/Carbon-PHPStan-MacroExtension.html#method___construct" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroExtension\u003A\u003AhasMethod\u0028\u0029", + "name": "hasMethod", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-MacroExtension.html#method_hasMethod" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroExtension\u003A\u003AgetMethod\u0028\u0029", + "name": "getMethod", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-PHPStan-MacroExtension.html#method_getMethod" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroExtension\u003A\u003A\u0024methodReflectionFactory", + "name": "methodReflectionFactory", + "summary": "", + "url": "classes/Carbon-PHPStan-MacroExtension.html#property_methodReflectionFactory" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroExtension\u003A\u003A\u0024scanner", + "name": "scanner", + "summary": "", + "url": "classes/Carbon-PHPStan-MacroExtension.html#property_scanner" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroScanner", + "name": "MacroScanner", + "summary": "", + "url": "classes/Carbon-PHPStan-MacroScanner.html" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroScanner\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "MacroScanner\u0020constructor.", + "url": "classes/Carbon-PHPStan-MacroScanner.html#method___construct" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroScanner\u003A\u003AhasMethod\u0028\u0029", + "name": "hasMethod", + "summary": "Return\u0020true\u0020if\u0020the\u0020given\u0020pair\u0020class\u002Dmethod\u0020is\u0020a\u0020Carbon\u0020macro.", + "url": "classes/Carbon-PHPStan-MacroScanner.html#method_hasMethod" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroScanner\u003A\u003AgetMethod\u0028\u0029", + "name": "getMethod", + "summary": "Return\u0020the\u0020Macro\u0020for\u0020a\u0020given\u0020pair\u0020class\u002Dmethod.", + "url": "classes/Carbon-PHPStan-MacroScanner.html#method_getMethod" + }, { + "fqsen": "\\Carbon\\PHPStan\\MacroScanner\u003A\u003A\u0024reflectionProvider", + "name": "reflectionProvider", + "summary": "", + "url": "classes/Carbon-PHPStan-MacroScanner.html#property_reflectionProvider" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries", + "name": "Boundaries", + "summary": "Trait\u0020Boundaries.", + "url": "classes/Carbon-Traits-Boundaries.html" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfDay\u0028\u0029", + "name": "startOfDay", + "summary": "Resets\u0020the\u0020time\u0020to\u002000\u003A00\u003A00\u0020start\u0020of\u0020day", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfDay" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfDay\u0028\u0029", + "name": "endOfDay", + "summary": "Resets\u0020the\u0020time\u0020to\u002023\u003A59\u003A59.999999\u0020end\u0020of\u0020day", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfDay" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfMonth\u0028\u0029", + "name": "startOfMonth", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020month\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfMonth\u0028\u0029", + "name": "endOfMonth", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020month\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfQuarter\u0028\u0029", + "name": "startOfQuarter", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020quarter\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfQuarter" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfQuarter\u0028\u0029", + "name": "endOfQuarter", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020quarter\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfQuarter" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfYear\u0028\u0029", + "name": "startOfYear", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020year\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfYear" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfYear\u0028\u0029", + "name": "endOfYear", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020year\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfYear" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfDecade\u0028\u0029", + "name": "startOfDecade", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020decade\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfDecade" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfDecade\u0028\u0029", + "name": "endOfDecade", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020decade\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfDecade" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfCentury\u0028\u0029", + "name": "startOfCentury", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020century\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfCentury" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfCentury\u0028\u0029", + "name": "endOfCentury", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020century\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfCentury" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfMillennium\u0028\u0029", + "name": "startOfMillennium", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020the\u0020millennium\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfMillennium" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfMillennium\u0028\u0029", + "name": "endOfMillennium", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020the\u0020millennium\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfMillennium" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfWeek\u0028\u0029", + "name": "startOfWeek", + "summary": "Resets\u0020the\u0020date\u0020to\u0020the\u0020first\u0020day\u0020of\u0020week\u0020\u0028defined\u0020in\u0020\u0024weekStartsAt\u0029\u0020and\u0020the\u0020time\u0020to\u002000\u003A00\u003A00", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfWeek\u0028\u0029", + "name": "endOfWeek", + "summary": "Resets\u0020the\u0020date\u0020to\u0020end\u0020of\u0020week\u0020\u0028defined\u0020in\u0020\u0024weekEndsAt\u0029\u0020and\u0020time\u0020to\u002023\u003A59\u003A59.999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfHour\u0028\u0029", + "name": "startOfHour", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020hour,\u0020minutes\u0020and\u0020seconds\u0020become\u00200", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfHour" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfHour\u0028\u0029", + "name": "endOfHour", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020hour,\u0020minutes\u0020and\u0020seconds\u0020become\u002059", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfHour" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfMinute\u0028\u0029", + "name": "startOfMinute", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020minute,\u0020seconds\u0020become\u00200", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfMinute" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfMinute\u0028\u0029", + "name": "endOfMinute", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020minute,\u0020seconds\u0020become\u002059", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfMinute" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOfSecond\u0028\u0029", + "name": "startOfSecond", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020second,\u0020microseconds\u0020become\u00200", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOfSecond" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOfSecond\u0028\u0029", + "name": "endOfSecond", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020second,\u0020microseconds\u0020become\u0020999999", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOfSecond" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AstartOf\u0028\u0029", + "name": "startOf", + "summary": "Modify\u0020to\u0020start\u0020of\u0020current\u0020given\u0020unit.", + "url": "classes/Carbon-Traits-Boundaries.html#method_startOf" + }, { + "fqsen": "\\Carbon\\Traits\\Boundaries\u003A\u003AendOf\u0028\u0029", + "name": "endOf", + "summary": "Modify\u0020to\u0020end\u0020of\u0020current\u0020given\u0020unit.", + "url": "classes/Carbon-Traits-Boundaries.html#method_endOf" + }, { + "fqsen": "\\Carbon\\Traits\\Cast", + "name": "Cast", + "summary": "Trait\u0020Cast.", + "url": "classes/Carbon-Traits-Cast.html" + }, { + "fqsen": "\\Carbon\\Traits\\Cast\u003A\u003Acast\u0028\u0029", + "name": "cast", + "summary": "Cast\u0020the\u0020current\u0020instance\u0020into\u0020the\u0020given\u0020class.", + "url": "classes/Carbon-Traits-Cast.html#method_cast" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison", + "name": "Comparison", + "summary": "Trait\u0020Comparison.", + "url": "classes/Carbon-Traits-Comparison.html" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Aeq\u0028\u0029", + "name": "eq", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_eq" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AequalTo\u0028\u0029", + "name": "equalTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_equalTo" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Ane\u0028\u0029", + "name": "ne", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_ne" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AnotEqualTo\u0028\u0029", + "name": "notEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020not\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_notEqualTo" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Agt\u0028\u0029", + "name": "gt", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_gt" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AgreaterThan\u0028\u0029", + "name": "greaterThan", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_greaterThan" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisAfter\u0028\u0029", + "name": "isAfter", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_isAfter" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Agte\u0028\u0029", + "name": "gte", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_gte" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AgreaterThanOrEqualTo\u0028\u0029", + "name": "greaterThanOrEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020greater\u0020\u0028after\u0029\u0020than\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_greaterThanOrEqualTo" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Alt\u0028\u0029", + "name": "lt", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020than\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_lt" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AlessThan\u0028\u0029", + "name": "lessThan", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020than\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_lessThan" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisBefore\u0028\u0029", + "name": "isBefore", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020than\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_isBefore" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Alte\u0028\u0029", + "name": "lte", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_lte" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AlessThanOrEqualTo\u0028\u0029", + "name": "lessThanOrEqualTo", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020less\u0020\u0028before\u0029\u0020or\u0020equal\u0020to\u0020another", + "url": "classes/Carbon-Traits-Comparison.html#method_lessThanOrEqualTo" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Abetween\u0028\u0029", + "name": "between", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others.", + "url": "classes/Carbon-Traits-Comparison.html#method_between" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AbetweenIncluded\u0028\u0029", + "name": "betweenIncluded", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others,\u0020bounds\u0020included.", + "url": "classes/Carbon-Traits-Comparison.html#method_betweenIncluded" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AbetweenExcluded\u0028\u0029", + "name": "betweenExcluded", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others,\u0020bounds\u0020excluded.", + "url": "classes/Carbon-Traits-Comparison.html#method_betweenExcluded" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisBetween\u0028\u0029", + "name": "isBetween", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020between\u0020two\u0020others", + "url": "classes/Carbon-Traits-Comparison.html#method_isBetween" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisWeekday\u0028\u0029", + "name": "isWeekday", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020weekday.", + "url": "classes/Carbon-Traits-Comparison.html#method_isWeekday" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisWeekend\u0028\u0029", + "name": "isWeekend", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020weekend\u0020day.", + "url": "classes/Carbon-Traits-Comparison.html#method_isWeekend" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisYesterday\u0028\u0029", + "name": "isYesterday", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020yesterday.", + "url": "classes/Carbon-Traits-Comparison.html#method_isYesterday" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisToday\u0028\u0029", + "name": "isToday", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020today.", + "url": "classes/Carbon-Traits-Comparison.html#method_isToday" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisTomorrow\u0028\u0029", + "name": "isTomorrow", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020tomorrow.", + "url": "classes/Carbon-Traits-Comparison.html#method_isTomorrow" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisFuture\u0028\u0029", + "name": "isFuture", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020future,\u0020ie.\u0020greater\u0020\u0028after\u0029\u0020than\u0020now.", + "url": "classes/Carbon-Traits-Comparison.html#method_isFuture" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisPast\u0028\u0029", + "name": "isPast", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020past,\u0020ie.\u0020less\u0020\u0028before\u0029\u0020than\u0020now.", + "url": "classes/Carbon-Traits-Comparison.html#method_isPast" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisLeapYear\u0028\u0029", + "name": "isLeapYear", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020leap\u0020year.", + "url": "classes/Carbon-Traits-Comparison.html#method_isLeapYear" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisLongYear\u0028\u0029", + "name": "isLongYear", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020long\u0020year\u0020\u0028using\u0020calendar\u0020year\u0029.", + "url": "classes/Carbon-Traits-Comparison.html#method_isLongYear" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisLongIsoYear\u0028\u0029", + "name": "isLongIsoYear", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020a\u0020long\u0020year\u0020\u0028using\u0020ISO\u00208601\u0020year\u0029.", + "url": "classes/Carbon-Traits-Comparison.html#method_isLongIsoYear" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisSameAs\u0028\u0029", + "name": "isSameAs", + "summary": "Compares\u0020the\u0020formatted\u0020values\u0020of\u0020the\u0020two\u0020dates.", + "url": "classes/Carbon-Traits-Comparison.html#method_isSameAs" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisSameUnit\u0028\u0029", + "name": "isSameUnit", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020current\u0020unit\u0020given.", + "url": "classes/Carbon-Traits-Comparison.html#method_isSameUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisCurrentUnit\u0028\u0029", + "name": "isCurrentUnit", + "summary": "Determines\u0020if\u0020the\u0020instance\u0020is\u0020in\u0020the\u0020current\u0020unit\u0020given.", + "url": "classes/Carbon-Traits-Comparison.html#method_isCurrentUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisSameQuarter\u0028\u0029", + "name": "isSameQuarter", + "summary": "Checks\u0020if\u0020the\u0020passed\u0020in\u0020date\u0020is\u0020in\u0020the\u0020same\u0020quarter\u0020as\u0020the\u0020instance\u0020quarter\u0020\u0028and\u0020year\u0020if\u0020needed\u0029.", + "url": "classes/Carbon-Traits-Comparison.html#method_isSameQuarter" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisSameMonth\u0028\u0029", + "name": "isSameMonth", + "summary": "Checks\u0020if\u0020the\u0020passed\u0020in\u0020date\u0020is\u0020in\u0020the\u0020same\u0020month\u0020as\u0020the\u0020instance\u00B4s\u0020month.", + "url": "classes/Carbon-Traits-Comparison.html#method_isSameMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisDayOfWeek\u0028\u0029", + "name": "isDayOfWeek", + "summary": "Checks\u0020if\u0020this\u0020day\u0020is\u0020a\u0020specific\u0020day\u0020of\u0020the\u0020week.", + "url": "classes/Carbon-Traits-Comparison.html#method_isDayOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisBirthday\u0028\u0029", + "name": "isBirthday", + "summary": "Check\u0020if\u0020its\u0020the\u0020birthday.\u0020Compares\u0020the\u0020date\/month\u0020values\u0020of\u0020the\u0020two\u0020dates.", + "url": "classes/Carbon-Traits-Comparison.html#method_isBirthday" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisLastOfMonth\u0028\u0029", + "name": "isLastOfMonth", + "summary": "Check\u0020if\u0020today\u0020is\u0020the\u0020last\u0020day\u0020of\u0020the\u0020Month", + "url": "classes/Carbon-Traits-Comparison.html#method_isLastOfMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisStartOfDay\u0028\u0029", + "name": "isStartOfDay", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020start\u0020of\u0020day\u0020\/\u0020midnight.", + "url": "classes/Carbon-Traits-Comparison.html#method_isStartOfDay" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisEndOfDay\u0028\u0029", + "name": "isEndOfDay", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020end\u0020of\u0020day.", + "url": "classes/Carbon-Traits-Comparison.html#method_isEndOfDay" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisMidnight\u0028\u0029", + "name": "isMidnight", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020start\u0020of\u0020day\u0020\/\u0020midnight.", + "url": "classes/Carbon-Traits-Comparison.html#method_isMidnight" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisMidday\u0028\u0029", + "name": "isMidday", + "summary": "Check\u0020if\u0020the\u0020instance\u0020is\u0020midday.", + "url": "classes/Carbon-Traits-Comparison.html#method_isMidday" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AhasFormat\u0028\u0029", + "name": "hasFormat", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format.", + "url": "classes/Carbon-Traits-Comparison.html#method_hasFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AhasFormatWithModifiers\u0028\u0029", + "name": "hasFormatWithModifiers", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format.", + "url": "classes/Carbon-Traits-Comparison.html#method_hasFormatWithModifiers" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AcanBeCreatedFromFormat\u0028\u0029", + "name": "canBeCreatedFromFormat", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format\u0020and\u0020valid\u0020to\u0020create\u0020a\nnew\u0020instance.", + "url": "classes/Carbon-Traits-Comparison.html#method_canBeCreatedFromFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003Ais\u0028\u0029", + "name": "is", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020date\u0020matches\u0020the\u0020given\u0020string.", + "url": "classes/Carbon-Traits-Comparison.html#method_is" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AmatchFormatPattern\u0028\u0029", + "name": "matchFormatPattern", + "summary": "Checks\u0020if\u0020the\u0020\u0028date\u0029time\u0020string\u0020is\u0020in\u0020a\u0020given\u0020format\u0020with\ngiven\u0020list\u0020of\u0020pattern\u0020replacements.", + "url": "classes/Carbon-Traits-Comparison.html#method_matchFormatPattern" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisStartOfTime\u0028\u0029", + "name": "isStartOfTime", + "summary": "Returns\u0020true\u0020if\u0020the\u0020date\u0020was\u0020created\u0020using\u0020CarbonImmutable\u003A\u003AstartOfTime\u0028\u0029", + "url": "classes/Carbon-Traits-Comparison.html#method_isStartOfTime" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AisEndOfTime\u0028\u0029", + "name": "isEndOfTime", + "summary": "Returns\u0020true\u0020if\u0020the\u0020date\u0020was\u0020created\u0020using\u0020CarbonImmutable\u003A\u003AendOfTime\u0028\u0029", + "url": "classes/Carbon-Traits-Comparison.html#method_isEndOfTime" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AdiscourageNull\u0028\u0029", + "name": "discourageNull", + "summary": "", + "url": "classes/Carbon-Traits-Comparison.html#method_discourageNull" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003AdiscourageBoolean\u0028\u0029", + "name": "discourageBoolean", + "summary": "", + "url": "classes/Carbon-Traits-Comparison.html#method_discourageBoolean" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003A\u0024endOfTime", + "name": "endOfTime", + "summary": "", + "url": "classes/Carbon-Traits-Comparison.html#property_endOfTime" + }, { + "fqsen": "\\Carbon\\Traits\\Comparison\u003A\u003A\u0024startOfTime", + "name": "startOfTime", + "summary": "", + "url": "classes/Carbon-Traits-Comparison.html#property_startOfTime" + }, { + "fqsen": "\\Carbon\\Traits\\Converter", + "name": "Converter", + "summary": "Trait\u0020Converter.", + "url": "classes/Carbon-Traits-Converter.html" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Returns\u0020the\u0020formatted\u0020date\u0020string\u0020on\u0020success\u0020or\u0020FALSE\u0020on\u0020failure.", + "url": "classes/Carbon-Traits-Converter.html#method_format" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003ArawFormat\u0028\u0029", + "name": "rawFormat", + "summary": "", + "url": "classes/Carbon-Traits-Converter.html#method_rawFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020a\u0020string\u0020using\u0020the\u0020set\u0020format", + "url": "classes/Carbon-Traits-Converter.html#method___toString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDateString\u0028\u0029", + "name": "toDateString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020date", + "url": "classes/Carbon-Traits-Converter.html#method_toDateString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoFormattedDateString\u0028\u0029", + "name": "toFormattedDateString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020a\u0020readable\u0020date", + "url": "classes/Carbon-Traits-Converter.html#method_toFormattedDateString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoFormattedDayDateString\u0028\u0029", + "name": "toFormattedDayDateString", + "summary": "Format\u0020the\u0020instance\u0020with\u0020the\u0020day,\u0020and\u0020a\u0020readable\u0020date", + "url": "classes/Carbon-Traits-Converter.html#method_toFormattedDayDateString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoTimeString\u0028\u0029", + "name": "toTimeString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020time", + "url": "classes/Carbon-Traits-Converter.html#method_toTimeString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDateTimeString\u0028\u0029", + "name": "toDateTimeString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020date\u0020and\u0020time", + "url": "classes/Carbon-Traits-Converter.html#method_toDateTimeString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AgetTimeFormatByPrecision\u0028\u0029", + "name": "getTimeFormatByPrecision", + "summary": "Return\u0020a\u0020format\u0020from\u0020H\u003Ai\u0020to\u0020H\u003Ai\u003As.u\u0020according\u0020to\u0020given\u0020unit\u0020precision.", + "url": "classes/Carbon-Traits-Converter.html#method_getTimeFormatByPrecision" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDateTimeLocalString\u0028\u0029", + "name": "toDateTimeLocalString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020date\u0020and\u0020time\u0020T\u002Dseparated\u0020with\u0020no\u0020timezone", + "url": "classes/Carbon-Traits-Converter.html#method_toDateTimeLocalString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDayDateTimeString\u0028\u0029", + "name": "toDayDateTimeString", + "summary": "Format\u0020the\u0020instance\u0020with\u0020day,\u0020date\u0020and\u0020time", + "url": "classes/Carbon-Traits-Converter.html#method_toDayDateTimeString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoAtomString\u0028\u0029", + "name": "toAtomString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020ATOM", + "url": "classes/Carbon-Traits-Converter.html#method_toAtomString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoCookieString\u0028\u0029", + "name": "toCookieString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020COOKIE", + "url": "classes/Carbon-Traits-Converter.html#method_toCookieString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoIso8601String\u0028\u0029", + "name": "toIso8601String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020ISO8601", + "url": "classes/Carbon-Traits-Converter.html#method_toIso8601String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc822String\u0028\u0029", + "name": "toRfc822String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC822", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc822String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoIso8601ZuluString\u0028\u0029", + "name": "toIso8601ZuluString", + "summary": "Convert\u0020the\u0020instance\u0020to\u0020UTC\u0020and\u0020return\u0020as\u0020Zulu\u0020ISO8601", + "url": "classes/Carbon-Traits-Converter.html#method_toIso8601ZuluString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc850String\u0028\u0029", + "name": "toRfc850String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC850", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc850String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc1036String\u0028\u0029", + "name": "toRfc1036String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC1036", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc1036String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc1123String\u0028\u0029", + "name": "toRfc1123String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC1123", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc1123String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc2822String\u0028\u0029", + "name": "toRfc2822String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC2822", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc2822String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc3339String\u0028\u0029", + "name": "toRfc3339String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC3339", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc3339String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRssString\u0028\u0029", + "name": "toRssString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RSS", + "url": "classes/Carbon-Traits-Converter.html#method_toRssString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoW3cString\u0028\u0029", + "name": "toW3cString", + "summary": "Format\u0020the\u0020instance\u0020as\u0020W3C", + "url": "classes/Carbon-Traits-Converter.html#method_toW3cString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoRfc7231String\u0028\u0029", + "name": "toRfc7231String", + "summary": "Format\u0020the\u0020instance\u0020as\u0020RFC7231", + "url": "classes/Carbon-Traits-Converter.html#method_toRfc7231String" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoArray\u0028\u0029", + "name": "toArray", + "summary": "Get\u0020default\u0020array\u0020representation.", + "url": "classes/Carbon-Traits-Converter.html#method_toArray" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoObject\u0028\u0029", + "name": "toObject", + "summary": "Get\u0020default\u0020object\u0020representation.", + "url": "classes/Carbon-Traits-Converter.html#method_toObject" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "Returns\u0020english\u0020human\u0020readable\u0020complete\u0020date\u0020string.", + "url": "classes/Carbon-Traits-Converter.html#method_toString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoISOString\u0028\u0029", + "name": "toISOString", + "summary": "Return\u0020the\u0020ISO\u002D8601\u0020string\u0020\u0028ex\u003A\u00201977\u002D04\u002D22T06\u003A00\u003A00Z,\u0020if\u0020\u0024keepOffset\u0020truthy,\u0020offset\u0020will\u0020be\u0020kept\u003A\n1977\u002D04\u002D22T01\u003A00\u003A00\u002D05\u003A00\u0029.", + "url": "classes/Carbon-Traits-Converter.html#method_toISOString" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoJSON\u0028\u0029", + "name": "toJSON", + "summary": "Return\u0020the\u0020ISO\u002D8601\u0020string\u0020\u0028ex\u003A\u00201977\u002D04\u002D22T06\u003A00\u003A00Z\u0029\u0020with\u0020UTC\u0020timezone.", + "url": "classes/Carbon-Traits-Converter.html#method_toJSON" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDateTime\u0028\u0029", + "name": "toDateTime", + "summary": "Return\u0020native\u0020DateTime\u0020PHP\u0020object\u0020matching\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Converter.html#method_toDateTime" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDateTimeImmutable\u0028\u0029", + "name": "toDateTimeImmutable", + "summary": "Return\u0020native\u0020toDateTimeImmutable\u0020PHP\u0020object\u0020matching\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Converter.html#method_toDateTimeImmutable" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoDate\u0028\u0029", + "name": "toDate", + "summary": "", + "url": "classes/Carbon-Traits-Converter.html#method_toDate" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003AtoPeriod\u0028\u0029", + "name": "toPeriod", + "summary": "Create\u0020a\u0020iterable\u0020CarbonPeriod\u0020object\u0020from\u0020current\u0020date\u0020to\u0020a\u0020given\u0020end\u0020date\u0020\u0028and\u0020optional\u0020interval\u0029.", + "url": "classes/Carbon-Traits-Converter.html#method_toPeriod" + }, { + "fqsen": "\\Carbon\\Traits\\Converter\u003A\u003Arange\u0028\u0029", + "name": "range", + "summary": "Create\u0020a\u0020iterable\u0020CarbonPeriod\u0020object\u0020from\u0020current\u0020date\u0020to\u0020a\u0020given\u0020end\u0020date\u0020\u0028and\u0020optional\u0020interval\u0029.", + "url": "classes/Carbon-Traits-Converter.html#method_range" + }, { + "fqsen": "\\Carbon\\Traits\\Creator", + "name": "Creator", + "summary": "Trait\u0020Creator.", + "url": "classes/Carbon-Traits-Creator.html" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Carbon\u0020instance.", + "url": "classes/Carbon-Traits-Creator.html#method___construct" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AconstructTimezoneFromDateTime\u0028\u0029", + "name": "constructTimezoneFromDateTime", + "summary": "Get\u0020timezone\u0020from\u0020a\u0020datetime\u0020instance.", + "url": "classes/Carbon-Traits-Creator.html#method_constructTimezoneFromDateTime" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "Update\u0020constructedObjectId\u0020on\u0020cloned.", + "url": "classes/Carbon-Traits-Creator.html#method___clone" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Ainstance\u0028\u0029", + "name": "instance", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020DateTime\u0020one.", + "url": "classes/Carbon-Traits-Creator.html#method_instance" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003ArawParse\u0028\u0029", + "name": "rawParse", + "summary": "Create\u0020a\u0020carbon\u0020instance\u0020from\u0020a\u0020string.", + "url": "classes/Carbon-Traits-Creator.html#method_rawParse" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Create\u0020a\u0020carbon\u0020instance\u0020from\u0020a\u0020string.", + "url": "classes/Carbon-Traits-Creator.html#method_parse" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AparseFromLocale\u0028\u0029", + "name": "parseFromLocale", + "summary": "Create\u0020a\u0020carbon\u0020instance\u0020from\u0020a\u0020localized\u0020string\u0020\u0028in\u0020French,\u0020Japanese,\u0020Arabic,\u0020etc.\u0029.", + "url": "classes/Carbon-Traits-Creator.html#method_parseFromLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Anow\u0028\u0029", + "name": "now", + "summary": "Get\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020current\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-Traits-Creator.html#method_now" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Atoday\u0028\u0029", + "name": "today", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020today.", + "url": "classes/Carbon-Traits-Creator.html#method_today" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Atomorrow\u0028\u0029", + "name": "tomorrow", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020tomorrow.", + "url": "classes/Carbon-Traits-Creator.html#method_tomorrow" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Ayesterday\u0028\u0029", + "name": "yesterday", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020yesterday.", + "url": "classes/Carbon-Traits-Creator.html#method_yesterday" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AmaxValue\u0028\u0029", + "name": "maxValue", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020greatest\u0020supported\u0020date.", + "url": "classes/Carbon-Traits-Creator.html#method_maxValue" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AminValue\u0028\u0029", + "name": "minValue", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020for\u0020the\u0020lowest\u0020supported\u0020date.", + "url": "classes/Carbon-Traits-Creator.html#method_minValue" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AassertBetween\u0028\u0029", + "name": "assertBetween", + "summary": "", + "url": "classes/Carbon-Traits-Creator.html#method_assertBetween" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateNowInstance\u0028\u0029", + "name": "createNowInstance", + "summary": "", + "url": "classes/Carbon-Traits-Creator.html#method_createNowInstance" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-Traits-Creator.html#method_create" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateSafe\u0028\u0029", + "name": "createSafe", + "summary": "Create\u0020a\u0020new\u0020safe\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020date\u0020and\u0020time.", + "url": "classes/Carbon-Traits-Creator.html#method_createSafe" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateStrict\u0028\u0029", + "name": "createStrict", + "summary": "Create\u0020a\u0020new\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020date\u0020and\u0020time\u0020using\u0020strict\u0020validation.", + "url": "classes/Carbon-Traits-Creator.html#method_createStrict" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromDate\u0028\u0029", + "name": "createFromDate", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020just\u0020a\u0020date.\u0020The\u0020time\u0020portion\u0020is\u0020set\u0020to\u0020now.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromDate" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateMidnightDate\u0028\u0029", + "name": "createMidnightDate", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020just\u0020a\u0020date.\u0020The\u0020time\u0020portion\u0020is\u0020set\u0020to\u0020midnight.", + "url": "classes/Carbon-Traits-Creator.html#method_createMidnightDate" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromTime\u0028\u0029", + "name": "createFromTime", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020just\u0020a\u0020time.\u0020The\u0020date\u0020portion\u0020is\u0020set\u0020to\u0020today.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromTime" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromTimeString\u0028\u0029", + "name": "createFromTimeString", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020time\u0020string.\u0020The\u0020date\u0020portion\u0020is\u0020set\u0020to\u0020today.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromTimeString" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromFormatAndTimezone\u0028\u0029", + "name": "createFromFormatAndTimezone", + "summary": "", + "url": "classes/Carbon-Traits-Creator.html#method_createFromFormatAndTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003ArawCreateFromFormat\u0028\u0029", + "name": "rawCreateFromFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020format.", + "url": "classes/Carbon-Traits-Creator.html#method_rawCreateFromFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromFormat\u0028\u0029", + "name": "createFromFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020format.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromIsoFormat\u0028\u0029", + "name": "createFromIsoFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020ISO\u0020format\u0020\u0028same\u0020replacements\u0020as\u0020\u002D\u003EisoFormat\u0028\u0029\u0029.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromIsoFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromLocaleFormat\u0028\u0029", + "name": "createFromLocaleFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020format\u0020and\u0020a\u0020string\u0020in\u0020a\u0020given\u0020language.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromLocaleFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AcreateFromLocaleIsoFormat\u0028\u0029", + "name": "createFromLocaleIsoFormat", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020specific\u0020ISO\u0020format\u0020and\u0020a\u0020string\u0020in\u0020a\u0020given\u0020language.", + "url": "classes/Carbon-Traits-Creator.html#method_createFromLocaleIsoFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Make\u0020a\u0020Carbon\u0020instance\u0020from\u0020given\u0020variable\u0020if\u0020possible.", + "url": "classes/Carbon-Traits-Creator.html#method_make" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AsetLastErrors\u0028\u0029", + "name": "setLastErrors", + "summary": "Set\u0020last\u0020errors.", + "url": "classes/Carbon-Traits-Creator.html#method_setLastErrors" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003AgetLastErrors\u0028\u0029", + "name": "getLastErrors", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Carbon-Traits-Creator.html#method_getLastErrors" + }, { + "fqsen": "\\Carbon\\Traits\\Creator\u003A\u003A\u0024lastErrors", + "name": "lastErrors", + "summary": "The\u0020errors\u0020that\u0020can\u0020occur.", + "url": "classes/Carbon-Traits-Creator.html#property_lastErrors" + }, { + "fqsen": "\\Carbon\\Traits\\Date", + "name": "Date", + "summary": "A\u0020simple\u0020API\u0020extension\u0020for\u0020DateTime.", + "url": "classes/Carbon-Traits-Date.html" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsafeCreateDateTimeZone\u0028\u0029", + "name": "safeCreateDateTimeZone", + "summary": "Creates\u0020a\u0020DateTimeZone\u0020from\u0020a\u0020string,\u0020DateTimeZone\u0020or\u0020integer\u0020offset.", + "url": "classes/Carbon-Traits-Date.html#method_safeCreateDateTimeZone" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTimezone\u0028\u0029", + "name": "getTimezone", + "summary": "Get\u0020the\u0020TimeZone\u0020associated\u0020with\u0020the\u0020Carbon\u0020instance\u0020\u0028as\u0020CarbonTimeZone\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetRangesByUnit\u0028\u0029", + "name": "getRangesByUnit", + "summary": "List\u0020of\u0020minimum\u0020and\u0020maximums\u0020for\u0020each\u0020unit.", + "url": "classes/Carbon-Traits-Date.html#method_getRangesByUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Get\u0020a\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-Traits-Date.html#method_copy" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Aclone\u0028\u0029", + "name": "clone", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_clone" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AavoidMutation\u0028\u0029", + "name": "avoidMutation", + "summary": "Clone\u0020the\u0020current\u0020instance\u0020if\u0020it\u0027s\u0020mutable.", + "url": "classes/Carbon-Traits-Date.html#method_avoidMutation" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AnowWithSameTz\u0028\u0029", + "name": "nowWithSameTz", + "summary": "Returns\u0020a\u0020present\u0020instance\u0020in\u0020the\u0020same\u0020timezone.", + "url": "classes/Carbon-Traits-Date.html#method_nowWithSameTz" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AexpectDateTime\u0028\u0029", + "name": "expectDateTime", + "summary": "Throws\u0020an\u0020exception\u0020if\u0020the\u0020given\u0020object\u0020is\u0020not\u0020a\u0020DateTime\u0020and\u0020does\u0020not\u0020implement\u0020DateTimeInterface.", + "url": "classes/Carbon-Traits-Date.html#method_expectDateTime" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AresolveCarbon\u0028\u0029", + "name": "resolveCarbon", + "summary": "Return\u0020the\u0020Carbon\u0020instance\u0020passed\u0020through,\u0020a\u0020now\u0020instance\u0020in\u0020the\u0020same\u0020timezone\nif\u0020null\u0020given\u0020or\u0020parse\u0020the\u0020input\u0020if\u0020string\u0020given.", + "url": "classes/Carbon-Traits-Date.html#method_resolveCarbon" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AresolveUTC\u0028\u0029", + "name": "resolveUTC", + "summary": "Return\u0020the\u0020Carbon\u0020instance\u0020passed\u0020through,\u0020a\u0020now\u0020instance\u0020in\u0020UTC\nif\u0020null\u0020given\u0020or\u0020parse\u0020the\u0020input\u0020if\u0020string\u0020given\u0020\u0028using\u0020current\u0020timezone\nthen\u0020switching\u0020to\u0020UTC\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_resolveUTC" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Acarbonize\u0028\u0029", + "name": "carbonize", + "summary": "Return\u0020the\u0020Carbon\u0020instance\u0020passed\u0020through,\u0020a\u0020now\u0020instance\u0020in\u0020the\u0020same\u0020timezone\nif\u0020null\u0020given\u0020or\u0020parse\u0020the\u0020input\u0020if\u0020string\u0020given.", + "url": "classes/Carbon-Traits-Date.html#method_carbonize" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "Get\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-Traits-Date.html#method___get" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-Traits-Date.html#method_get" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "Check\u0020if\u0020an\u0020attribute\u0020exists\u0020on\u0020the\u0020object", + "url": "classes/Carbon-Traits-Date.html#method___isset" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A__set\u0028\u0029", + "name": "__set", + "summary": "Set\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-Traits-Date.html#method___set" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020a\u0020part\u0020of\u0020the\u0020Carbon\u0020object", + "url": "classes/Carbon-Traits-Date.html#method_set" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTranslatedFormByRegExp\u0028\u0029", + "name": "getTranslatedFormByRegExp", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_getTranslatedFormByRegExp" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTranslatedDayName\u0028\u0029", + "name": "getTranslatedDayName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020week\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getTranslatedDayName" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTranslatedShortDayName\u0028\u0029", + "name": "getTranslatedShortDayName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020short\u0020week\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getTranslatedShortDayName" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTranslatedMinDayName\u0028\u0029", + "name": "getTranslatedMinDayName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020abbreviated\u0020week\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getTranslatedMinDayName" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTranslatedMonthName\u0028\u0029", + "name": "getTranslatedMonthName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020month\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getTranslatedMonthName" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetTranslatedShortMonthName\u0028\u0029", + "name": "getTranslatedShortMonthName", + "summary": "Get\u0020the\u0020translation\u0020of\u0020the\u0020current\u0020short\u0020month\u0020day\u0020name\u0020\u0028with\u0020context\u0020for\u0020languages\u0020with\u0020multiple\u0020forms\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getTranslatedShortMonthName" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AdayOfYear\u0028\u0029", + "name": "dayOfYear", + "summary": "Get\/set\u0020the\u0020day\u0020of\u0020year.", + "url": "classes/Carbon-Traits-Date.html#method_dayOfYear" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Aweekday\u0028\u0029", + "name": "weekday", + "summary": "Get\/set\u0020the\u0020weekday\u0020from\u00200\u0020\u0028Sunday\u0029\u0020to\u00206\u0020\u0028Saturday\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_weekday" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AisoWeekday\u0028\u0029", + "name": "isoWeekday", + "summary": "Get\/set\u0020the\u0020ISO\u0020weekday\u0020from\u00201\u0020\u0028Monday\u0029\u0020to\u00207\u0020\u0028Sunday\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_isoWeekday" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetDaysFromStartOfWeek\u0028\u0029", + "name": "getDaysFromStartOfWeek", + "summary": "Return\u0020the\u0020number\u0020of\u0020days\u0020since\u0020the\u0020start\u0020of\u0020the\u0020week\u0020\u0028using\u0020the\u0020current\u0020locale\u0020or\u0020the\u0020first\u0020parameter\nif\u0020explicitly\u0020given\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getDaysFromStartOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetDaysFromStartOfWeek\u0028\u0029", + "name": "setDaysFromStartOfWeek", + "summary": "Set\u0020the\u0020day\u0020\u0028keeping\u0020the\u0020current\u0020time\u0029\u0020to\u0020the\u0020start\u0020of\u0020the\u0020week\u0020\u002B\u0020the\u0020number\u0020of\u0020days\u0020passed\u0020as\u0020the\u0020first\nparameter.\u0020First\u0020day\u0020of\u0020week\u0020is\u0020driven\u0020by\u0020the\u0020locale\u0020unless\u0020explicitly\u0020set\u0020with\u0020the\u0020second\u0020parameter.", + "url": "classes/Carbon-Traits-Date.html#method_setDaysFromStartOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetUnitNoOverflow\u0028\u0029", + "name": "setUnitNoOverflow", + "summary": "Set\u0020any\u0020unit\u0020to\u0020a\u0020new\u0020value\u0020without\u0020overflowing\u0020current\u0020other\u0020unit\u0020given.", + "url": "classes/Carbon-Traits-Date.html#method_setUnitNoOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AaddUnitNoOverflow\u0028\u0029", + "name": "addUnitNoOverflow", + "summary": "Add\u0020any\u0020unit\u0020to\u0020a\u0020new\u0020value\u0020without\u0020overflowing\u0020current\u0020other\u0020unit\u0020given.", + "url": "classes/Carbon-Traits-Date.html#method_addUnitNoOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsubUnitNoOverflow\u0028\u0029", + "name": "subUnitNoOverflow", + "summary": "Subtract\u0020any\u0020unit\u0020to\u0020a\u0020new\u0020value\u0020without\u0020overflowing\u0020current\u0020other\u0020unit\u0020given.", + "url": "classes/Carbon-Traits-Date.html#method_subUnitNoOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AutcOffset\u0028\u0029", + "name": "utcOffset", + "summary": "Returns\u0020the\u0020minutes\u0020offset\u0020to\u0020UTC\u0020if\u0020no\u0020arguments\u0020passed,\u0020else\u0020set\u0020the\u0020timezone\u0020with\u0020given\u0020minutes\u0020shift\u0020passed.", + "url": "classes/Carbon-Traits-Date.html#method_utcOffset" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetDate\u0028\u0029", + "name": "setDate", + "summary": "Set\u0020the\u0020date\u0020with\u0020gregorian\u0020year,\u0020month\u0020and\u0020day\u0020numbers.", + "url": "classes/Carbon-Traits-Date.html#method_setDate" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetISODate\u0028\u0029", + "name": "setISODate", + "summary": "Set\u0020a\u0020date\u0020according\u0020to\u0020the\u0020ISO\u00208601\u0020standard\u0020\u002D\u0020using\u0020weeks\u0020and\u0020day\u0020offsets\u0020rather\u0020than\u0020specific\u0020dates.", + "url": "classes/Carbon-Traits-Date.html#method_setISODate" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetDateTime\u0028\u0029", + "name": "setDateTime", + "summary": "Set\u0020the\u0020date\u0020and\u0020time\u0020all\u0020together.", + "url": "classes/Carbon-Traits-Date.html#method_setDateTime" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetTime\u0028\u0029", + "name": "setTime", + "summary": "Resets\u0020the\u0020current\u0020time\u0020of\u0020the\u0020DateTime\u0020object\u0020to\u0020a\u0020different\u0020time.", + "url": "classes/Carbon-Traits-Date.html#method_setTime" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetTimestamp\u0028\u0029", + "name": "setTimestamp", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timestamp.", + "url": "classes/Carbon-Traits-Date.html#method_setTimestamp" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetTimeFromTimeString\u0028\u0029", + "name": "setTimeFromTimeString", + "summary": "Set\u0020the\u0020time\u0020by\u0020time\u0020string.", + "url": "classes/Carbon-Traits-Date.html#method_setTimeFromTimeString" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Atimezone\u0028\u0029", + "name": "timezone", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_timezone" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Atz\u0028\u0029", + "name": "tz", + "summary": "Set\u0020the\u0020timezone\u0020or\u0020returns\u0020the\u0020timezone\u0020name\u0020if\u0020no\u0020arguments\u0020passed.", + "url": "classes/Carbon-Traits-Date.html#method_tz" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetTimezone\u0028\u0029", + "name": "setTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object.", + "url": "classes/Carbon-Traits-Date.html#method_setTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AshiftTimezone\u0028\u0029", + "name": "shiftTimezone", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020from\u0020a\u0020string\u0020or\u0020object\u0020and\u0020add\/subtract\u0020the\u0020offset\u0020difference.", + "url": "classes/Carbon-Traits-Date.html#method_shiftTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Autc\u0028\u0029", + "name": "utc", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timezone\u0020to\u0020UTC.", + "url": "classes/Carbon-Traits-Date.html#method_utc" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetDateFrom\u0028\u0029", + "name": "setDateFrom", + "summary": "Set\u0020the\u0020year,\u0020month,\u0020and\u0020date\u0020for\u0020this\u0020instance\u0020to\u0020that\u0020of\u0020the\u0020passed\u0020instance.", + "url": "classes/Carbon-Traits-Date.html#method_setDateFrom" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetTimeFrom\u0028\u0029", + "name": "setTimeFrom", + "summary": "Set\u0020the\u0020hour,\u0020minute,\u0020second\u0020and\u0020microseconds\u0020for\u0020this\u0020instance\u0020to\u0020that\u0020of\u0020the\u0020passed\u0020instance.", + "url": "classes/Carbon-Traits-Date.html#method_setTimeFrom" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetDateTimeFrom\u0028\u0029", + "name": "setDateTimeFrom", + "summary": "Set\u0020the\u0020date\u0020and\u0020time\u0020for\u0020this\u0020instance\u0020to\u0020that\u0020of\u0020the\u0020passed\u0020instance.", + "url": "classes/Carbon-Traits-Date.html#method_setDateTimeFrom" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetDays\u0028\u0029", + "name": "getDays", + "summary": "Get\u0020the\u0020days\u0020of\u0020the\u0020week", + "url": "classes/Carbon-Traits-Date.html#method_getDays" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetFirstDayOfWeek\u0028\u0029", + "name": "getFirstDayOfWeek", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_getFirstDayOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetWeekStartsAt\u0028\u0029", + "name": "getWeekStartsAt", + "summary": "Get\u0020the\u0020first\u0020day\u0020of\u0020week", + "url": "classes/Carbon-Traits-Date.html#method_getWeekStartsAt" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetWeekStartsAt\u0028\u0029", + "name": "setWeekStartsAt", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_setWeekStartsAt" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetWeekEndsAt\u0028\u0029", + "name": "getWeekEndsAt", + "summary": "Get\u0020the\u0020last\u0020day\u0020of\u0020week", + "url": "classes/Carbon-Traits-Date.html#method_getWeekEndsAt" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetWeekEndsAt\u0028\u0029", + "name": "setWeekEndsAt", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_setWeekEndsAt" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetWeekendDays\u0028\u0029", + "name": "getWeekendDays", + "summary": "Get\u0020weekend\u0020days", + "url": "classes/Carbon-Traits-Date.html#method_getWeekendDays" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetWeekendDays\u0028\u0029", + "name": "setWeekendDays", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_setWeekendDays" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AhasRelativeKeywords\u0028\u0029", + "name": "hasRelativeKeywords", + "summary": "Determine\u0020if\u0020a\u0020time\u0020string\u0020will\u0020produce\u0020a\u0020relative\u0020date.", + "url": "classes/Carbon-Traits-Date.html#method_hasRelativeKeywords" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetUtf8\u0028\u0029", + "name": "setUtf8", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_setUtf8" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AformatLocalized\u0028\u0029", + "name": "formatLocalized", + "summary": "Format\u0020the\u0020instance\u0020with\u0020the\u0020current\u0020locale.\u0020\u0020You\u0020can\u0020set\u0020the\u0020current\nlocale\u0020using\u0020setlocale\u0028\u0029\u0020https\u003A\/\/php.net\/setlocale.", + "url": "classes/Carbon-Traits-Date.html#method_formatLocalized" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetIsoFormats\u0028\u0029", + "name": "getIsoFormats", + "summary": "Returns\u0020list\u0020of\u0020locale\u0020formats\u0020for\u0020ISO\u0020formatting.", + "url": "classes/Carbon-Traits-Date.html#method_getIsoFormats" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetCalendarFormats\u0028\u0029", + "name": "getCalendarFormats", + "summary": "Returns\u0020list\u0020of\u0020calendar\u0020formats\u0020for\u0020ISO\u0020formatting.", + "url": "classes/Carbon-Traits-Date.html#method_getCalendarFormats" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetIsoUnits\u0028\u0029", + "name": "getIsoUnits", + "summary": "Returns\u0020list\u0020of\u0020locale\u0020units\u0020for\u0020ISO\u0020formatting.", + "url": "classes/Carbon-Traits-Date.html#method_getIsoUnits" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetPaddedUnit\u0028\u0029", + "name": "getPaddedUnit", + "summary": "Returns\u0020a\u0020unit\u0020of\u0020the\u0020instance\u0020padded\u0020with\u00200\u0020by\u0020default\u0020or\u0020any\u0020other\u0020string\u0020if\u0020specified.", + "url": "classes/Carbon-Traits-Date.html#method_getPaddedUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Aordinal\u0028\u0029", + "name": "ordinal", + "summary": "Return\u0020a\u0020property\u0020with\u0020its\u0020ordinal.", + "url": "classes/Carbon-Traits-Date.html#method_ordinal" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003Ameridiem\u0028\u0029", + "name": "meridiem", + "summary": "Return\u0020the\u0020meridiem\u0020of\u0020the\u0020current\u0020time\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-Traits-Date.html#method_meridiem" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetAltNumber\u0028\u0029", + "name": "getAltNumber", + "summary": "Returns\u0020the\u0020alternative\u0020number\u0020for\u0020a\u0020given\u0020date\u0020property\u0020if\u0020available\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-Traits-Date.html#method_getAltNumber" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AisoFormat\u0028\u0029", + "name": "isoFormat", + "summary": "Format\u0020in\u0020the\u0020current\u0020language\u0020using\u0020ISO\u0020replacement\u0020patterns.", + "url": "classes/Carbon-Traits-Date.html#method_isoFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetFormatsToIsoReplacements\u0028\u0029", + "name": "getFormatsToIsoReplacements", + "summary": "List\u0020of\u0020replacements\u0020from\u0020date\u0028\u0029\u0020format\u0020to\u0020isoFormat\u0028\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getFormatsToIsoReplacements" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AtranslatedFormat\u0028\u0029", + "name": "translatedFormat", + "summary": "Format\u0020as\u0020\u002D\u003Eformat\u0028\u0029\u0020do\u0020\u0028using\u0020date\u0020replacements\u0020patterns\u0020from\u0020https\u003A\/\/php.net\/manual\/en\/function.date.php\u0029\nbut\u0020translate\u0020words\u0020whenever\u0020possible\u0020\u0028months,\u0020day\u0020names,\u0020etc.\u0029\u0020using\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-Traits-Date.html#method_translatedFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetOffsetString\u0028\u0029", + "name": "getOffsetString", + "summary": "Returns\u0020the\u0020offset\u0020hour\u0020and\u0020minute\u0020formatted\u0020with\u0020\u002B\/\u002D\u0020and\u0020a\u0020given\u0020separator\u0020\u0028\u0022\u003A\u0022\u0020by\u0020default\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_getOffsetString" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AexecuteStaticCallable\u0028\u0029", + "name": "executeStaticCallable", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_executeStaticCallable" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A__callStatic\u0028\u0029", + "name": "__callStatic", + "summary": "Dynamically\u0020handle\u0020calls\u0020to\u0020the\u0020class.", + "url": "classes/Carbon-Traits-Date.html#method___callStatic" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsetUnit\u0028\u0029", + "name": "setUnit", + "summary": "Set\u0020specified\u0020unit\u0020to\u0020new\u0020given\u0020value.", + "url": "classes/Carbon-Traits-Date.html#method_setUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AsingularUnit\u0028\u0029", + "name": "singularUnit", + "summary": "Returns\u0020standardized\u0020singular\u0020of\u0020a\u0020given\u0020singular\/plural\u0020unit\u0020name\u0020\u0028in\u0020English\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_singularUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003ApluralUnit\u0028\u0029", + "name": "pluralUnit", + "summary": "Returns\u0020standardized\u0020plural\u0020of\u0020a\u0020given\u0020singular\/plural\u0020unit\u0020name\u0020\u0028in\u0020English\u0029.", + "url": "classes/Carbon-Traits-Date.html#method_pluralUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AexecuteCallable\u0028\u0029", + "name": "executeCallable", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_executeCallable" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AexecuteCallableWithContext\u0028\u0029", + "name": "executeCallableWithContext", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_executeCallableWithContext" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003AgetGenericMacros\u0028\u0029", + "name": "getGenericMacros", + "summary": "", + "url": "classes/Carbon-Traits-Date.html#method_getGenericMacros" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "Dynamically\u0020handle\u0020calls\u0020to\u0020the\u0020class.", + "url": "classes/Carbon-Traits-Date.html#method___call" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A\u0024days", + "name": "days", + "summary": "Names\u0020of\u0020days\u0020of\u0020the\u0020week.", + "url": "classes/Carbon-Traits-Date.html#property_days" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A\u0024utf8", + "name": "utf8", + "summary": "Will\u0020UTF8\u0020encoding\u0020be\u0020used\u0020to\u0020print\u0020localized\u0020date\/time\u0020\u003F", + "url": "classes/Carbon-Traits-Date.html#property_utf8" + }, { + "fqsen": "\\Carbon\\Traits\\Date\u003A\u003A\u0024units", + "name": "units", + "summary": "List\u0020of\u0020unit\u0020and\u0020magic\u0020methods\u0020associated\u0020as\u0020doc\u002Dcomments.", + "url": "classes/Carbon-Traits-Date.html#property_units" + }, { + "fqsen": "\\Carbon\\Traits\\DeprecatedProperties", + "name": "DeprecatedProperties", + "summary": "", + "url": "classes/Carbon-Traits-DeprecatedProperties.html" + }, { + "fqsen": "\\Carbon\\Traits\\DeprecatedProperties\u003A\u003A\u0024localeDayOfWeek", + "name": "localeDayOfWeek", + "summary": "the\u0020day\u0020of\u0020week\u0020in\u0020current\u0020locale\u0020LC_TIME", + "url": "classes/Carbon-Traits-DeprecatedProperties.html#property_localeDayOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\DeprecatedProperties\u003A\u003A\u0024shortLocaleDayOfWeek", + "name": "shortLocaleDayOfWeek", + "summary": "the\u0020abbreviated\u0020day\u0020of\u0020week\u0020in\u0020current\u0020locale\u0020LC_TIME", + "url": "classes/Carbon-Traits-DeprecatedProperties.html#property_shortLocaleDayOfWeek" + }, { + "fqsen": "\\Carbon\\Traits\\DeprecatedProperties\u003A\u003A\u0024localeMonth", + "name": "localeMonth", + "summary": "the\u0020month\u0020in\u0020current\u0020locale\u0020LC_TIME", + "url": "classes/Carbon-Traits-DeprecatedProperties.html#property_localeMonth" + }, { + "fqsen": "\\Carbon\\Traits\\DeprecatedProperties\u003A\u003A\u0024shortLocaleMonth", + "name": "shortLocaleMonth", + "summary": "the\u0020abbreviated\u0020month\u0020in\u0020current\u0020locale\u0020LC_TIME", + "url": "classes/Carbon-Traits-DeprecatedProperties.html#property_shortLocaleMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Difference", + "name": "Difference", + "summary": "Trait\u0020Difference.", + "url": "classes/Carbon-Traits-Difference.html" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfixNegativeMicroseconds\u0028\u0029", + "name": "fixNegativeMicroseconds", + "summary": "", + "url": "classes/Carbon-Traits-Difference.html#method_fixNegativeMicroseconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfixDiffInterval\u0028\u0029", + "name": "fixDiffInterval", + "summary": "", + "url": "classes/Carbon-Traits-Difference.html#method_fixDiffInterval" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Adiff\u0028\u0029", + "name": "diff", + "summary": "Get\u0020the\u0020difference\u0020as\u0020a\u0020DateInterval\u0020instance.", + "url": "classes/Carbon-Traits-Difference.html#method_diff" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffAsCarbonInterval\u0028\u0029", + "name": "diffAsCarbonInterval", + "summary": "Get\u0020the\u0020difference\u0020as\u0020a\u0020CarbonInterval\u0020instance.", + "url": "classes/Carbon-Traits-Difference.html#method_diffAsCarbonInterval" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInYears\u0028\u0029", + "name": "diffInYears", + "summary": "Get\u0020the\u0020difference\u0020in\u0020years", + "url": "classes/Carbon-Traits-Difference.html#method_diffInYears" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInQuarters\u0028\u0029", + "name": "diffInQuarters", + "summary": "Get\u0020the\u0020difference\u0020in\u0020quarters\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInQuarters" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInMonths\u0028\u0029", + "name": "diffInMonths", + "summary": "Get\u0020the\u0020difference\u0020in\u0020months\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInMonths" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInWeeks\u0028\u0029", + "name": "diffInWeeks", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weeks\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInWeeks" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInDays\u0028\u0029", + "name": "diffInDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInDays" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInDaysFiltered\u0028\u0029", + "name": "diffInDaysFiltered", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020using\u0020a\u0020filter\u0020closure\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInDaysFiltered" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInHoursFiltered\u0028\u0029", + "name": "diffInHoursFiltered", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020using\u0020a\u0020filter\u0020closure\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInHoursFiltered" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffFiltered\u0028\u0029", + "name": "diffFiltered", + "summary": "Get\u0020the\u0020difference\u0020by\u0020the\u0020given\u0020interval\u0020using\u0020a\u0020filter\u0020closure.", + "url": "classes/Carbon-Traits-Difference.html#method_diffFiltered" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInWeekdays\u0028\u0029", + "name": "diffInWeekdays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weekdays\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInWeekdays" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInWeekendDays\u0028\u0029", + "name": "diffInWeekendDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weekend\u0020days\u0020using\u0020a\u0020filter\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInWeekendDays" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInHours\u0028\u0029", + "name": "diffInHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInHours" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInRealHours\u0028\u0029", + "name": "diffInRealHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020rounded\u0020down\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInRealHours" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInMinutes\u0028\u0029", + "name": "diffInMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInMinutes" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInRealMinutes\u0028\u0029", + "name": "diffInRealMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020rounded\u0020down\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInRealMinutes" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInSeconds\u0028\u0029", + "name": "diffInSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInSeconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInMicroseconds\u0028\u0029", + "name": "diffInMicroseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020microseconds.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInMicroseconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInMilliseconds\u0028\u0029", + "name": "diffInMilliseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020milliseconds\u0020rounded\u0020down.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInMilliseconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInRealSeconds\u0028\u0029", + "name": "diffInRealSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInRealSeconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInRealMicroseconds\u0028\u0029", + "name": "diffInRealMicroseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020microseconds\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInRealMicroseconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffInRealMilliseconds\u0028\u0029", + "name": "diffInRealMilliseconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020milliseconds\u0020rounded\u0020down\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_diffInRealMilliseconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInSeconds\u0028\u0029", + "name": "floatDiffInSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInSeconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInMinutes\u0028\u0029", + "name": "floatDiffInMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInMinutes" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInHours\u0028\u0029", + "name": "floatDiffInHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInHours" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInDays\u0028\u0029", + "name": "floatDiffInDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInDays" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInWeeks\u0028\u0029", + "name": "floatDiffInWeeks", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weeks\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInWeeks" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInMonths\u0028\u0029", + "name": "floatDiffInMonths", + "summary": "Get\u0020the\u0020difference\u0020in\u0020months\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInMonths" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInYears\u0028\u0029", + "name": "floatDiffInYears", + "summary": "Get\u0020the\u0020difference\u0020in\u0020year\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInYears" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealSeconds\u0028\u0029", + "name": "floatDiffInRealSeconds", + "summary": "Get\u0020the\u0020difference\u0020in\u0020seconds\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealSeconds" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealMinutes\u0028\u0029", + "name": "floatDiffInRealMinutes", + "summary": "Get\u0020the\u0020difference\u0020in\u0020minutes\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealMinutes" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealHours\u0028\u0029", + "name": "floatDiffInRealHours", + "summary": "Get\u0020the\u0020difference\u0020in\u0020hours\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealHours" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealDays\u0028\u0029", + "name": "floatDiffInRealDays", + "summary": "Get\u0020the\u0020difference\u0020in\u0020days\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealDays" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealWeeks\u0028\u0029", + "name": "floatDiffInRealWeeks", + "summary": "Get\u0020the\u0020difference\u0020in\u0020weeks\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealWeeks" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealMonths\u0028\u0029", + "name": "floatDiffInRealMonths", + "summary": "Get\u0020the\u0020difference\u0020in\u0020months\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealMonths" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfloatDiffInRealYears\u0028\u0029", + "name": "floatDiffInRealYears", + "summary": "Get\u0020the\u0020difference\u0020in\u0020year\u0020as\u0020float\u0020\u0028microsecond\u002Dprecision\u0029\u0020using\u0020timestamps.", + "url": "classes/Carbon-Traits-Difference.html#method_floatDiffInRealYears" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AsecondsSinceMidnight\u0028\u0029", + "name": "secondsSinceMidnight", + "summary": "The\u0020number\u0020of\u0020seconds\u0020since\u0020midnight.", + "url": "classes/Carbon-Traits-Difference.html#method_secondsSinceMidnight" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AsecondsUntilEndOfDay\u0028\u0029", + "name": "secondsUntilEndOfDay", + "summary": "The\u0020number\u0020of\u0020seconds\u0020until\u002023\u003A59\u003A59.", + "url": "classes/Carbon-Traits-Difference.html#method_secondsUntilEndOfDay" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AdiffForHumans\u0028\u0029", + "name": "diffForHumans", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020current\u0020instance\u0020to\u0020an\u0020other\ninstance\u0020given\u0020\u0028or\u0020now\u0020if\u0020null\u0020given\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_diffForHumans" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Afrom\u0028\u0029", + "name": "from", + "summary": "", + "url": "classes/Carbon-Traits-Difference.html#method_from" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Asince\u0028\u0029", + "name": "since", + "summary": "", + "url": "classes/Carbon-Traits-Difference.html#method_since" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Ato\u0028\u0029", + "name": "to", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020an\u0020other\ninstance\u0020given\u0020\u0028or\u0020now\u0020if\u0020null\u0020given\u0029\u0020to\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Difference.html#method_to" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Auntil\u0028\u0029", + "name": "until", + "summary": "", + "url": "classes/Carbon-Traits-Difference.html#method_until" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AfromNow\u0028\u0029", + "name": "fromNow", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020current\ninstance\u0020to\u0020now.", + "url": "classes/Carbon-Traits-Difference.html#method_fromNow" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AtoNow\u0028\u0029", + "name": "toNow", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020an\u0020other\ninstance\u0020given\u0020to\u0020now", + "url": "classes/Carbon-Traits-Difference.html#method_toNow" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Aago\u0028\u0029", + "name": "ago", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020an\u0020other\ninstance\u0020given\u0020to\u0020now", + "url": "classes/Carbon-Traits-Difference.html#method_ago" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Atimespan\u0028\u0029", + "name": "timespan", + "summary": "Get\u0020the\u0020difference\u0020in\u0020a\u0020human\u0020readable\u0020format\u0020in\u0020the\u0020current\u0020locale\u0020from\u0020current\u0020instance\u0020to\u0020an\u0020other\ninstance\u0020given\u0020\u0028or\u0020now\u0020if\u0020null\u0020given\u0029.", + "url": "classes/Carbon-Traits-Difference.html#method_timespan" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003Acalendar\u0028\u0029", + "name": "calendar", + "summary": "Returns\u0020either\u0020day\u0020of\u0020week\u0020\u002B\u0020time\u0020\u0028e.g.\u0020\u0022Last\u0020Friday\u0020at\u00203\u003A30\u0020PM\u0022\u0029\u0020if\u0020reference\u0020time\u0020is\u0020within\u00207\u0020days,\nor\u0020a\u0020calendar\u0020date\u0020\u0028e.g.\u0020\u002210\/29\/2017\u0022\u0029\u0020otherwise.", + "url": "classes/Carbon-Traits-Difference.html#method_calendar" + }, { + "fqsen": "\\Carbon\\Traits\\Difference\u003A\u003AgetIntervalDayDiff\u0028\u0029", + "name": "getIntervalDayDiff", + "summary": "", + "url": "classes/Carbon-Traits-Difference.html#method_getIntervalDayDiff" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalRounding", + "name": "IntervalRounding", + "summary": "Trait\u0020to\u0020call\u0020rounding\u0020methods\u0020to\u0020interval\u0020or\u0020the\u0020interval\u0020of\u0020a\u0020period.", + "url": "classes/Carbon-Traits-IntervalRounding.html" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalRounding\u003A\u003AcallRoundMethod\u0028\u0029", + "name": "callRoundMethod", + "summary": "", + "url": "classes/Carbon-Traits-IntervalRounding.html#method_callRoundMethod" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalRounding\u003A\u003AroundWith\u0028\u0029", + "name": "roundWith", + "summary": "", + "url": "classes/Carbon-Traits-IntervalRounding.html#method_roundWith" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalStep", + "name": "IntervalStep", + "summary": "", + "url": "classes/Carbon-Traits-IntervalStep.html" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalStep\u003A\u003AgetStep\u0028\u0029", + "name": "getStep", + "summary": "Get\u0020the\u0020dynamic\u0020step\u0020in\u0020use.", + "url": "classes/Carbon-Traits-IntervalStep.html#method_getStep" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalStep\u003A\u003AsetStep\u0028\u0029", + "name": "setStep", + "summary": "Set\u0020a\u0020step\u0020to\u0020apply\u0020instead\u0020of\u0020a\u0020fixed\u0020interval\u0020to\u0020get\u0020the\u0020new\u0020date.", + "url": "classes/Carbon-Traits-IntervalStep.html#method_setStep" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalStep\u003A\u003AconvertDate\u0028\u0029", + "name": "convertDate", + "summary": "Take\u0020a\u0020date\u0020and\u0020apply\u0020either\u0020the\u0020step\u0020if\u0020set,\u0020or\u0020the\u0020current\u0020interval\u0020else.", + "url": "classes/Carbon-Traits-IntervalStep.html#method_convertDate" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalStep\u003A\u003AresolveCarbon\u0028\u0029", + "name": "resolveCarbon", + "summary": "Convert\u0020DateTimeImmutable\u0020instance\u0020to\u0020CarbonImmutable\u0020instance\u0020and\u0020DateTime\u0020instance\u0020to\u0020Carbon\u0020instance.", + "url": "classes/Carbon-Traits-IntervalStep.html#method_resolveCarbon" + }, { + "fqsen": "\\Carbon\\Traits\\IntervalStep\u003A\u003A\u0024step", + "name": "step", + "summary": "Step\u0020to\u0020apply\u0020instead\u0020of\u0020a\u0020fixed\u0020interval\u0020to\u0020get\u0020the\u0020new\u0020date.", + "url": "classes/Carbon-Traits-IntervalStep.html#property_step" + }, { + "fqsen": "\\Carbon\\Traits\\Localization", + "name": "Localization", + "summary": "Trait\u0020Localization.", + "url": "classes/Carbon-Traits-Localization.html" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AsetHumanDiffOptions\u0028\u0029", + "name": "setHumanDiffOptions", + "summary": "", + "url": "classes/Carbon-Traits-Localization.html#method_setHumanDiffOptions" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AenableHumanDiffOption\u0028\u0029", + "name": "enableHumanDiffOption", + "summary": "", + "url": "classes/Carbon-Traits-Localization.html#method_enableHumanDiffOption" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AdisableHumanDiffOption\u0028\u0029", + "name": "disableHumanDiffOption", + "summary": "", + "url": "classes/Carbon-Traits-Localization.html#method_disableHumanDiffOption" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetHumanDiffOptions\u0028\u0029", + "name": "getHumanDiffOptions", + "summary": "Return\u0020default\u0020humanDiff\u0028\u0029\u0020options\u0020\u0028merged\u0020flags\u0020as\u0020integer\u0029.", + "url": "classes/Carbon-Traits-Localization.html#method_getHumanDiffOptions" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetTranslator\u0028\u0029", + "name": "getTranslator", + "summary": "Get\u0020the\u0020default\u0020translator\u0020instance\u0020in\u0020use.", + "url": "classes/Carbon-Traits-Localization.html#method_getTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AsetTranslator\u0028\u0029", + "name": "setTranslator", + "summary": "Set\u0020the\u0020default\u0020translator\u0020instance\u0020to\u0020use.", + "url": "classes/Carbon-Traits-Localization.html#method_setTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AhasLocalTranslator\u0028\u0029", + "name": "hasLocalTranslator", + "summary": "Return\u0020true\u0020if\u0020the\u0020current\u0020instance\u0020has\u0020its\u0020own\u0020translator.", + "url": "classes/Carbon-Traits-Localization.html#method_hasLocalTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetLocalTranslator\u0028\u0029", + "name": "getLocalTranslator", + "summary": "Get\u0020the\u0020translator\u0020of\u0020the\u0020current\u0020instance\u0020or\u0020the\u0020default\u0020if\u0020none\u0020set.", + "url": "classes/Carbon-Traits-Localization.html#method_getLocalTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AsetLocalTranslator\u0028\u0029", + "name": "setLocalTranslator", + "summary": "Set\u0020the\u0020translator\u0020for\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Localization.html#method_setLocalTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetTranslationMessageWith\u0028\u0029", + "name": "getTranslationMessageWith", + "summary": "Returns\u0020raw\u0020translation\u0020message\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Carbon-Traits-Localization.html#method_getTranslationMessageWith" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetTranslationMessage\u0028\u0029", + "name": "getTranslationMessage", + "summary": "Returns\u0020raw\u0020translation\u0020message\u0020for\u0020a\u0020given\u0020key.", + "url": "classes/Carbon-Traits-Localization.html#method_getTranslationMessage" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AtranslateWith\u0028\u0029", + "name": "translateWith", + "summary": "Translate\u0020using\u0020translation\u0020string\u0020or\u0020callback\u0020available.", + "url": "classes/Carbon-Traits-Localization.html#method_translateWith" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003Atranslate\u0028\u0029", + "name": "translate", + "summary": "Translate\u0020using\u0020translation\u0020string\u0020or\u0020callback\u0020available.", + "url": "classes/Carbon-Traits-Localization.html#method_translate" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AtranslateNumber\u0028\u0029", + "name": "translateNumber", + "summary": "Returns\u0020the\u0020alternative\u0020number\u0020for\u0020a\u0020given\u0020integer\u0020if\u0020available\u0020in\u0020the\u0020current\u0020locale.", + "url": "classes/Carbon-Traits-Localization.html#method_translateNumber" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AtranslateTimeString\u0028\u0029", + "name": "translateTimeString", + "summary": "Translate\u0020a\u0020time\u0020string\u0020from\u0020a\u0020locale\u0020to\u0020an\u0020other.", + "url": "classes/Carbon-Traits-Localization.html#method_translateTimeString" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AtranslateTimeStringTo\u0028\u0029", + "name": "translateTimeStringTo", + "summary": "Translate\u0020a\u0020time\u0020string\u0020from\u0020the\u0020current\u0020locale\u0020\u0028\u0060\u0024date\u002D\u003Elocale\u0028\u0029\u0060\u0029\u0020to\u0020an\u0020other.", + "url": "classes/Carbon-Traits-Localization.html#method_translateTimeStringTo" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003Alocale\u0028\u0029", + "name": "locale", + "summary": "Get\/set\u0020the\u0020locale\u0020for\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Localization.html#method_locale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Get\u0020the\u0020current\u0020translator\u0020locale.", + "url": "classes/Carbon-Traits-Localization.html#method_getLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Set\u0020the\u0020current\u0020translator\u0020locale\u0020and\u0020indicate\u0020if\u0020the\u0020source\u0020locale\u0020file\u0020exists.", + "url": "classes/Carbon-Traits-Localization.html#method_setLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AsetFallbackLocale\u0028\u0029", + "name": "setFallbackLocale", + "summary": "Set\u0020the\u0020fallback\u0020locale.", + "url": "classes/Carbon-Traits-Localization.html#method_setFallbackLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetFallbackLocale\u0028\u0029", + "name": "getFallbackLocale", + "summary": "Get\u0020the\u0020fallback\u0020locale.", + "url": "classes/Carbon-Traits-Localization.html#method_getFallbackLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AexecuteWithLocale\u0028\u0029", + "name": "executeWithLocale", + "summary": "Set\u0020the\u0020current\u0020locale\u0020to\u0020the\u0020given,\u0020execute\u0020the\u0020passed\u0020function,\u0020reset\u0020the\u0020locale\u0020to\u0020previous\u0020one,\nthen\u0020return\u0020the\u0020result\u0020of\u0020the\u0020closure\u0020\u0028or\u0020null\u0020if\u0020the\u0020closure\u0020was\u0020void\u0029.", + "url": "classes/Carbon-Traits-Localization.html#method_executeWithLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AlocaleHasShortUnits\u0028\u0029", + "name": "localeHasShortUnits", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020short\u002Dunits\u0020support.", + "url": "classes/Carbon-Traits-Localization.html#method_localeHasShortUnits" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AlocaleHasDiffSyntax\u0028\u0029", + "name": "localeHasDiffSyntax", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020diff\u0020syntax\u0020support\u0020\u0028ago,\u0020from\u0020now,\u0020before,\u0020after\u0029.", + "url": "classes/Carbon-Traits-Localization.html#method_localeHasDiffSyntax" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AlocaleHasDiffOneDayWords\u0028\u0029", + "name": "localeHasDiffOneDayWords", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020words\u0020for\u00201\u002Dday\u0020diff\u0020\u0028just\u0020now,\u0020yesterday,\u0020tomorrow\u0029.", + "url": "classes/Carbon-Traits-Localization.html#method_localeHasDiffOneDayWords" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AlocaleHasDiffTwoDayWords\u0028\u0029", + "name": "localeHasDiffTwoDayWords", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020words\u0020for\u00202\u002Ddays\u0020diff\u0020\u0028before\u0020yesterday,\u0020after\u0020tomorrow\u0029.", + "url": "classes/Carbon-Traits-Localization.html#method_localeHasDiffTwoDayWords" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AlocaleHasPeriodSyntax\u0028\u0029", + "name": "localeHasPeriodSyntax", + "summary": "Returns\u0020true\u0020if\u0020the\u0020given\u0020locale\u0020is\u0020internally\u0020supported\u0020and\u0020has\u0020period\u0020syntax\u0020support\u0020\u0028X\u0020times,\u0020every\u0020X,\u0020from\u0020X,\u0020to\u0020X\u0029.", + "url": "classes/Carbon-Traits-Localization.html#method_localeHasPeriodSyntax" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetAvailableLocales\u0028\u0029", + "name": "getAvailableLocales", + "summary": "Returns\u0020the\u0020list\u0020of\u0020internally\u0020available\u0020locales\u0020and\u0020already\u0020loaded\u0020custom\u0020locales.", + "url": "classes/Carbon-Traits-Localization.html#method_getAvailableLocales" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetAvailableLocalesInfo\u0028\u0029", + "name": "getAvailableLocalesInfo", + "summary": "Returns\u0020list\u0020of\u0020Language\u0020object\u0020for\u0020each\u0020available\u0020locale.\u0020This\u0020object\u0020allow\u0020you\u0020to\u0020get\u0020the\u0020ISO\u0020name,\u0020native\nname,\u0020region\u0020and\u0020variant\u0020of\u0020the\u0020locale.", + "url": "classes/Carbon-Traits-Localization.html#method_getAvailableLocalesInfo" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003A\u0024translator", + "name": "translator", + "summary": "Default\u0020translator.", + "url": "classes/Carbon-Traits-Localization.html#property_translator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetTranslatorLocale\u0028\u0029", + "name": "getTranslatorLocale", + "summary": "Get\u0020the\u0020locale\u0020of\u0020a\u0020given\u0020translator.", + "url": "classes/Carbon-Traits-Localization.html#method_getTranslatorLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetLocaleAwareTranslator\u0028\u0029", + "name": "getLocaleAwareTranslator", + "summary": "Throw\u0020an\u0020error\u0020if\u0020passed\u0020object\u0020is\u0020not\u0020LocaleAwareInterface.", + "url": "classes/Carbon-Traits-Localization.html#method_getLocaleAwareTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetFromCatalogue\u0028\u0029", + "name": "getFromCatalogue", + "summary": "", + "url": "classes/Carbon-Traits-Localization.html#method_getFromCatalogue" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AcleanWordFromTranslationString\u0028\u0029", + "name": "cleanWordFromTranslationString", + "summary": "Return\u0020the\u0020word\u0020cleaned\u0020from\u0020its\u0020translation\u0020codes.", + "url": "classes/Carbon-Traits-Localization.html#method_cleanWordFromTranslationString" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AtranslateWordsByKeys\u0028\u0029", + "name": "translateWordsByKeys", + "summary": "Translate\u0020a\u0020list\u0020of\u0020words.", + "url": "classes/Carbon-Traits-Localization.html#method_translateWordsByKeys" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AgetTranslationArray\u0028\u0029", + "name": "getTranslationArray", + "summary": "Get\u0020an\u0020array\u0020of\u0020translations\u0020based\u0020on\u0020the\u0020current\u0020date.", + "url": "classes/Carbon-Traits-Localization.html#method_getTranslationArray" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003AreplaceOrdinalWords\u0028\u0029", + "name": "replaceOrdinalWords", + "summary": "", + "url": "classes/Carbon-Traits-Localization.html#method_replaceOrdinalWords" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003A\u0024localTranslator", + "name": "localTranslator", + "summary": "Specific\u0020translator\u0020of\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Localization.html#property_localTranslator" + }, { + "fqsen": "\\Carbon\\Traits\\Localization\u003A\u003A\u0024humanDiffOptions", + "name": "humanDiffOptions", + "summary": "Options\u0020for\u0020diffForHumans\u0028\u0029.", + "url": "classes/Carbon-Traits-Localization.html#property_humanDiffOptions" + }, { + "fqsen": "\\Carbon\\Traits\\Macro", + "name": "Macro", + "summary": "Trait\u0020Macros.", + "url": "classes/Carbon-Traits-Macro.html" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003Amacro\u0028\u0029", + "name": "macro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Carbon-Traits-Macro.html#method_macro" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003AresetMacros\u0028\u0029", + "name": "resetMacros", + "summary": "Remove\u0020all\u0020macros\u0020and\u0020generic\u0020macros.", + "url": "classes/Carbon-Traits-Macro.html#method_resetMacros" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003AgenericMacro\u0028\u0029", + "name": "genericMacro", + "summary": "Register\u0020a\u0020custom\u0020macro.", + "url": "classes/Carbon-Traits-Macro.html#method_genericMacro" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003AhasMacro\u0028\u0029", + "name": "hasMacro", + "summary": "Checks\u0020if\u0020macro\u0020is\u0020registered\u0020globally.", + "url": "classes/Carbon-Traits-Macro.html#method_hasMacro" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003AgetMacro\u0028\u0029", + "name": "getMacro", + "summary": "Get\u0020the\u0020raw\u0020callable\u0020macro\u0020registered\u0020globally\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Carbon-Traits-Macro.html#method_getMacro" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003AhasLocalMacro\u0028\u0029", + "name": "hasLocalMacro", + "summary": "Checks\u0020if\u0020macro\u0020is\u0020registered\u0020globally\u0020or\u0020locally.", + "url": "classes/Carbon-Traits-Macro.html#method_hasLocalMacro" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003AgetLocalMacro\u0028\u0029", + "name": "getLocalMacro", + "summary": "Get\u0020the\u0020raw\u0020callable\u0020macro\u0020registered\u0020globally\u0020or\u0020locally\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Carbon-Traits-Macro.html#method_getLocalMacro" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003A\u0024globalMacros", + "name": "globalMacros", + "summary": "The\u0020registered\u0020macros.", + "url": "classes/Carbon-Traits-Macro.html#property_globalMacros" + }, { + "fqsen": "\\Carbon\\Traits\\Macro\u003A\u003A\u0024globalGenericMacros", + "name": "globalGenericMacros", + "summary": "The\u0020registered\u0020generic\u0020macros.", + "url": "classes/Carbon-Traits-Macro.html#property_globalGenericMacros" + }, { + "fqsen": "\\Carbon\\Traits\\MagicParameter", + "name": "MagicParameter", + "summary": "Trait\u0020MagicParameter.", + "url": "classes/Carbon-Traits-MagicParameter.html" + }, { + "fqsen": "\\Carbon\\Traits\\MagicParameter\u003A\u003AgetMagicParameter\u0028\u0029", + "name": "getMagicParameter", + "summary": "", + "url": "classes/Carbon-Traits-MagicParameter.html#method_getMagicParameter" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin", + "name": "Mixin", + "summary": "Trait\u0020Mixin.", + "url": "classes/Carbon-Traits-Mixin.html" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003Amixin\u0028\u0029", + "name": "mixin", + "summary": "Mix\u0020another\u0020object\u0020into\u0020the\u0020class.", + "url": "classes/Carbon-Traits-Mixin.html#method_mixin" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003AloadMixinClass\u0028\u0029", + "name": "loadMixinClass", + "summary": "", + "url": "classes/Carbon-Traits-Mixin.html#method_loadMixinClass" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003AloadMixinTrait\u0028\u0029", + "name": "loadMixinTrait", + "summary": "", + "url": "classes/Carbon-Traits-Mixin.html#method_loadMixinTrait" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003AgetAnonymousClassCodeForTrait\u0028\u0029", + "name": "getAnonymousClassCodeForTrait", + "summary": "", + "url": "classes/Carbon-Traits-Mixin.html#method_getAnonymousClassCodeForTrait" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003AgetMixableMethods\u0028\u0029", + "name": "getMixableMethods", + "summary": "", + "url": "classes/Carbon-Traits-Mixin.html#method_getMixableMethods" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003AbindMacroContext\u0028\u0029", + "name": "bindMacroContext", + "summary": "Stack\u0020a\u0020Carbon\u0020context\u0020from\u0020inside\u0020calls\u0020of\u0020self\u003A\u003Athis\u0028\u0029\u0020and\u0020execute\u0020a\u0020given\u0020action.", + "url": "classes/Carbon-Traits-Mixin.html#method_bindMacroContext" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003Acontext\u0028\u0029", + "name": "context", + "summary": "Return\u0020the\u0020current\u0020context\u0020from\u0020inside\u0020a\u0020macro\u0020callee\u0020or\u0020a\u0020null\u0020if\u0020static.", + "url": "classes/Carbon-Traits-Mixin.html#method_context" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003Athis\u0028\u0029", + "name": "this", + "summary": "Return\u0020the\u0020current\u0020context\u0020from\u0020inside\u0020a\u0020macro\u0020callee\u0020or\u0020a\u0020new\u0020one\u0020if\u0020static.", + "url": "classes/Carbon-Traits-Mixin.html#method_this" + }, { + "fqsen": "\\Carbon\\Traits\\Mixin\u003A\u003A\u0024macroContextStack", + "name": "macroContextStack", + "summary": "Stack\u0020of\u0020macro\u0020instance\u0020contexts.", + "url": "classes/Carbon-Traits-Mixin.html#property_macroContextStack" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers", + "name": "Modifiers", + "summary": "Trait\u0020Modifiers.", + "url": "classes/Carbon-Traits-Modifiers.html" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AgetMidDayAt\u0028\u0029", + "name": "getMidDayAt", + "summary": "get\u0020midday\/noon\u0020hour", + "url": "classes/Carbon-Traits-Modifiers.html#method_getMidDayAt" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AsetMidDayAt\u0028\u0029", + "name": "setMidDayAt", + "summary": "", + "url": "classes/Carbon-Traits-Modifiers.html#method_setMidDayAt" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AmidDay\u0028\u0029", + "name": "midDay", + "summary": "Modify\u0020to\u0020midday,\u0020default\u0020to\u0020self\u003A\u003A\u0024midDayAt", + "url": "classes/Carbon-Traits-Modifiers.html#method_midDay" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "Modify\u0020to\u0020the\u0020next\u0020occurrence\u0020of\u0020a\u0020given\u0020modifier\u0020such\u0020as\u0020a\u0020day\u0020of\nthe\u0020week.\u0020If\u0020no\u0020modifier\u0020is\u0020provided,\u0020modify\u0020to\u0020the\u0020next\u0020occurrence\nof\u0020the\u0020current\u0020day\u0020of\u0020the\u0020week.\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_next" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AnextOrPreviousDay\u0028\u0029", + "name": "nextOrPreviousDay", + "summary": "Go\u0020forward\u0020or\u0020backward\u0020to\u0020the\u0020next\u0020week\u002D\u0020or\u0020weekend\u002Dday.", + "url": "classes/Carbon-Traits-Modifiers.html#method_nextOrPreviousDay" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AnextWeekday\u0028\u0029", + "name": "nextWeekday", + "summary": "Go\u0020forward\u0020to\u0020the\u0020next\u0020weekday.", + "url": "classes/Carbon-Traits-Modifiers.html#method_nextWeekday" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003ApreviousWeekday\u0028\u0029", + "name": "previousWeekday", + "summary": "Go\u0020backward\u0020to\u0020the\u0020previous\u0020weekday.", + "url": "classes/Carbon-Traits-Modifiers.html#method_previousWeekday" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AnextWeekendDay\u0028\u0029", + "name": "nextWeekendDay", + "summary": "Go\u0020forward\u0020to\u0020the\u0020next\u0020weekend\u0020day.", + "url": "classes/Carbon-Traits-Modifiers.html#method_nextWeekendDay" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003ApreviousWeekendDay\u0028\u0029", + "name": "previousWeekendDay", + "summary": "Go\u0020backward\u0020to\u0020the\u0020previous\u0020weekend\u0020day.", + "url": "classes/Carbon-Traits-Modifiers.html#method_previousWeekendDay" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Aprevious\u0028\u0029", + "name": "previous", + "summary": "Modify\u0020to\u0020the\u0020previous\u0020occurrence\u0020of\u0020a\u0020given\u0020modifier\u0020such\u0020as\u0020a\u0020day\u0020of\nthe\u0020week.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\u0020previous\u0020occurrence\nof\u0020the\u0020current\u0020day\u0020of\u0020the\u0020week.\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_previous" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AfirstOfMonth\u0028\u0029", + "name": "firstOfMonth", + "summary": "Modify\u0020to\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020month.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nfirst\u0020day\u0020of\u0020the\u0020current\u0020month.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_firstOfMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AlastOfMonth\u0028\u0029", + "name": "lastOfMonth", + "summary": "Modify\u0020to\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020month.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nlast\u0020day\u0020of\u0020the\u0020current\u0020month.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_lastOfMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AnthOfMonth\u0028\u0029", + "name": "nthOfMonth", + "summary": "Modify\u0020to\u0020the\u0020given\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020month.\u0020If\u0020the\u0020calculated\u0020occurrence\u0020is\u0020outside\u0020the\u0020scope\nof\u0020the\u0020current\u0020month,\u0020then\u0020return\u0020false\u0020and\u0020no\u0020modifications\u0020are\u0020made.", + "url": "classes/Carbon-Traits-Modifiers.html#method_nthOfMonth" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AfirstOfQuarter\u0028\u0029", + "name": "firstOfQuarter", + "summary": "Modify\u0020to\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020quarter.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nfirst\u0020day\u0020of\u0020the\u0020current\u0020quarter.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_firstOfQuarter" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AlastOfQuarter\u0028\u0029", + "name": "lastOfQuarter", + "summary": "Modify\u0020to\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020quarter.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nlast\u0020day\u0020of\u0020the\u0020current\u0020quarter.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_lastOfQuarter" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AnthOfQuarter\u0028\u0029", + "name": "nthOfQuarter", + "summary": "Modify\u0020to\u0020the\u0020given\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020quarter.\u0020If\u0020the\u0020calculated\u0020occurrence\u0020is\u0020outside\u0020the\u0020scope\nof\u0020the\u0020current\u0020quarter,\u0020then\u0020return\u0020false\u0020and\u0020no\u0020modifications\u0020are\u0020made.", + "url": "classes/Carbon-Traits-Modifiers.html#method_nthOfQuarter" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AfirstOfYear\u0028\u0029", + "name": "firstOfYear", + "summary": "Modify\u0020to\u0020the\u0020first\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020year.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nfirst\u0020day\u0020of\u0020the\u0020current\u0020year.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_firstOfYear" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AlastOfYear\u0028\u0029", + "name": "lastOfYear", + "summary": "Modify\u0020to\u0020the\u0020last\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020year.\u0020If\u0020no\u0020dayOfWeek\u0020is\u0020provided,\u0020modify\u0020to\u0020the\nlast\u0020day\u0020of\u0020the\u0020current\u0020year.\u0020\u0020Use\u0020the\u0020supplied\u0020constants\nto\u0020indicate\u0020the\u0020desired\u0020dayOfWeek,\u0020ex.\u0020static\u003A\u003AMONDAY.", + "url": "classes/Carbon-Traits-Modifiers.html#method_lastOfYear" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003AnthOfYear\u0028\u0029", + "name": "nthOfYear", + "summary": "Modify\u0020to\u0020the\u0020given\u0020occurrence\u0020of\u0020a\u0020given\u0020day\u0020of\u0020the\u0020week\nin\u0020the\u0020current\u0020year.\u0020If\u0020the\u0020calculated\u0020occurrence\u0020is\u0020outside\u0020the\u0020scope\nof\u0020the\u0020current\u0020year,\u0020then\u0020return\u0020false\u0020and\u0020no\u0020modifications\u0020are\u0020made.", + "url": "classes/Carbon-Traits-Modifiers.html#method_nthOfYear" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Aaverage\u0028\u0029", + "name": "average", + "summary": "Modify\u0020the\u0020current\u0020instance\u0020to\u0020the\u0020average\u0020of\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance\n\u0028second\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Modifiers.html#method_average" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Aclosest\u0028\u0029", + "name": "closest", + "summary": "Get\u0020the\u0020closest\u0020date\u0020from\u0020the\u0020instance\u0020\u0028second\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Modifiers.html#method_closest" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Afarthest\u0028\u0029", + "name": "farthest", + "summary": "Get\u0020the\u0020farthest\u0020date\u0020from\u0020the\u0020instance\u0020\u0028second\u002Dprecision\u0029.", + "url": "classes/Carbon-Traits-Modifiers.html#method_farthest" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Amin\u0028\u0029", + "name": "min", + "summary": "Get\u0020the\u0020minimum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Modifiers.html#method_min" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Aminimum\u0028\u0029", + "name": "minimum", + "summary": "Get\u0020the\u0020minimum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Modifiers.html#method_minimum" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Amax\u0028\u0029", + "name": "max", + "summary": "Get\u0020the\u0020maximum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Modifiers.html#method_max" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Amaximum\u0028\u0029", + "name": "maximum", + "summary": "Get\u0020the\u0020maximum\u0020instance\u0020between\u0020a\u0020given\u0020instance\u0020\u0028default\u0020now\u0029\u0020and\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Modifiers.html#method_maximum" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Amodify\u0028\u0029", + "name": "modify", + "summary": "Calls\u0020\\DateTime\u003A\u003Amodify\u0020if\u0020mutable\u0020or\u0020\\DateTimeImmutable\u003A\u003Amodify\u0020else.", + "url": "classes/Carbon-Traits-Modifiers.html#method_modify" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003Achange\u0028\u0029", + "name": "change", + "summary": "Similar\u0020to\u0020native\u0020modify\u0028\u0029\u0020method\u0020of\u0020DateTime\u0020but\u0020can\u0020handle\u0020more\u0020grammars.", + "url": "classes/Carbon-Traits-Modifiers.html#method_change" + }, { + "fqsen": "\\Carbon\\Traits\\Modifiers\u003A\u003A\u0024midDayAt", + "name": "midDayAt", + "summary": "Midday\/noon\u0020hour.", + "url": "classes/Carbon-Traits-Modifiers.html#property_midDayAt" + }, { + "fqsen": "\\Carbon\\Traits\\Mutability", + "name": "Mutability", + "summary": "Trait\u0020Mutability.", + "url": "classes/Carbon-Traits-Mutability.html" + }, { + "fqsen": "\\Carbon\\Traits\\Mutability\u003A\u003AisMutable\u0028\u0029", + "name": "isMutable", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020class\/instance\u0020is\u0020mutable.", + "url": "classes/Carbon-Traits-Mutability.html#method_isMutable" + }, { + "fqsen": "\\Carbon\\Traits\\Mutability\u003A\u003AisImmutable\u0028\u0029", + "name": "isImmutable", + "summary": "Returns\u0020true\u0020if\u0020the\u0020current\u0020class\/instance\u0020is\u0020immutable.", + "url": "classes/Carbon-Traits-Mutability.html#method_isImmutable" + }, { + "fqsen": "\\Carbon\\Traits\\Mutability\u003A\u003AtoMutable\u0028\u0029", + "name": "toMutable", + "summary": "Return\u0020a\u0020mutable\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-Traits-Mutability.html#method_toMutable" + }, { + "fqsen": "\\Carbon\\Traits\\Mutability\u003A\u003AtoImmutable\u0028\u0029", + "name": "toImmutable", + "summary": "Return\u0020a\u0020immutable\u0020copy\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-Traits-Mutability.html#method_toImmutable" + }, { + "fqsen": "\\Carbon\\Traits\\ObjectInitialisation", + "name": "ObjectInitialisation", + "summary": "", + "url": "classes/Carbon-Traits-ObjectInitialisation.html" + }, { + "fqsen": "\\Carbon\\Traits\\ObjectInitialisation\u003A\u003A\u0024constructedObjectId", + "name": "constructedObjectId", + "summary": "True\u0020when\u0020parent\u003A\u003A__construct\u0020has\u0020been\u0020called.", + "url": "classes/Carbon-Traits-ObjectInitialisation.html#property_constructedObjectId" + }, { + "fqsen": "\\Carbon\\Traits\\Options", + "name": "Options", + "summary": "Trait\u0020Options.", + "url": "classes/Carbon-Traits-Options.html" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AuseStrictMode\u0028\u0029", + "name": "useStrictMode", + "summary": "", + "url": "classes/Carbon-Traits-Options.html#method_useStrictMode" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AisStrictModeEnabled\u0028\u0029", + "name": "isStrictModeEnabled", + "summary": "Returns\u0020true\u0020if\u0020the\u0020strict\u0020mode\u0020is\u0020globally\u0020in\u0020use,\u0020false\u0020else.", + "url": "classes/Carbon-Traits-Options.html#method_isStrictModeEnabled" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AuseMonthsOverflow\u0028\u0029", + "name": "useMonthsOverflow", + "summary": "", + "url": "classes/Carbon-Traits-Options.html#method_useMonthsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AresetMonthsOverflow\u0028\u0029", + "name": "resetMonthsOverflow", + "summary": "", + "url": "classes/Carbon-Traits-Options.html#method_resetMonthsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AshouldOverflowMonths\u0028\u0029", + "name": "shouldOverflowMonths", + "summary": "Get\u0020the\u0020month\u0020overflow\u0020global\u0020behavior\u0020\u0028can\u0020be\u0020overridden\u0020in\u0020specific\u0020instances\u0029.", + "url": "classes/Carbon-Traits-Options.html#method_shouldOverflowMonths" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AuseYearsOverflow\u0028\u0029", + "name": "useYearsOverflow", + "summary": "", + "url": "classes/Carbon-Traits-Options.html#method_useYearsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AresetYearsOverflow\u0028\u0029", + "name": "resetYearsOverflow", + "summary": "", + "url": "classes/Carbon-Traits-Options.html#method_resetYearsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AshouldOverflowYears\u0028\u0029", + "name": "shouldOverflowYears", + "summary": "Get\u0020the\u0020month\u0020overflow\u0020global\u0020behavior\u0020\u0028can\u0020be\u0020overridden\u0020in\u0020specific\u0020instances\u0029.", + "url": "classes/Carbon-Traits-Options.html#method_shouldOverflowYears" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003Asettings\u0028\u0029", + "name": "settings", + "summary": "Set\u0020specific\u0020options.", + "url": "classes/Carbon-Traits-Options.html#method_settings" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AgetSettings\u0028\u0029", + "name": "getSettings", + "summary": "Returns\u0020current\u0020local\u0020settings.", + "url": "classes/Carbon-Traits-Options.html#method_getSettings" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A__debugInfo\u0028\u0029", + "name": "__debugInfo", + "summary": "Show\u0020truthy\u0020properties\u0020on\u0020var_dump\u0028\u0029.", + "url": "classes/Carbon-Traits-Options.html#method___debugInfo" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003AaddExtraDebugInfos\u0028\u0029", + "name": "addExtraDebugInfos", + "summary": "", + "url": "classes/Carbon-Traits-Options.html#method_addExtraDebugInfos" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024PHPIntSize", + "name": "PHPIntSize", + "summary": "Customizable\u0020PHP_INT_SIZE\u0020override.", + "url": "classes/Carbon-Traits-Options.html#property_PHPIntSize" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024weekStartsAt", + "name": "weekStartsAt", + "summary": "First\u0020day\u0020of\u0020week.", + "url": "classes/Carbon-Traits-Options.html#property_weekStartsAt" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024weekEndsAt", + "name": "weekEndsAt", + "summary": "Last\u0020day\u0020of\u0020week.", + "url": "classes/Carbon-Traits-Options.html#property_weekEndsAt" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024weekendDays", + "name": "weekendDays", + "summary": "Days\u0020of\u0020weekend.", + "url": "classes/Carbon-Traits-Options.html#property_weekendDays" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024regexFormats", + "name": "regexFormats", + "summary": "Format\u0020regex\u0020patterns.", + "url": "classes/Carbon-Traits-Options.html#property_regexFormats" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024regexFormatModifiers", + "name": "regexFormatModifiers", + "summary": "Format\u0020modifiers\u0020\u0028such\u0020as\u0020available\u0020in\u0020createFromFormat\u0029\u0020regex\u0020patterns.", + "url": "classes/Carbon-Traits-Options.html#property_regexFormatModifiers" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024monthsOverflow", + "name": "monthsOverflow", + "summary": "Indicates\u0020if\u0020months\u0020should\u0020be\u0020calculated\u0020with\u0020overflow.", + "url": "classes/Carbon-Traits-Options.html#property_monthsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024yearsOverflow", + "name": "yearsOverflow", + "summary": "Indicates\u0020if\u0020years\u0020should\u0020be\u0020calculated\u0020with\u0020overflow.", + "url": "classes/Carbon-Traits-Options.html#property_yearsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024strictModeEnabled", + "name": "strictModeEnabled", + "summary": "Indicates\u0020if\u0020the\u0020strict\u0020mode\u0020is\u0020in\u0020use.", + "url": "classes/Carbon-Traits-Options.html#property_strictModeEnabled" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024formatFunction", + "name": "formatFunction", + "summary": "Function\u0020to\u0020call\u0020instead\u0020of\u0020format.", + "url": "classes/Carbon-Traits-Options.html#property_formatFunction" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024createFromFormatFunction", + "name": "createFromFormatFunction", + "summary": "Function\u0020to\u0020call\u0020instead\u0020of\u0020createFromFormat.", + "url": "classes/Carbon-Traits-Options.html#property_createFromFormatFunction" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024parseFunction", + "name": "parseFunction", + "summary": "Function\u0020to\u0020call\u0020instead\u0020of\u0020parse.", + "url": "classes/Carbon-Traits-Options.html#property_parseFunction" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localMonthsOverflow", + "name": "localMonthsOverflow", + "summary": "Indicates\u0020if\u0020months\u0020should\u0020be\u0020calculated\u0020with\u0020overflow.", + "url": "classes/Carbon-Traits-Options.html#property_localMonthsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localYearsOverflow", + "name": "localYearsOverflow", + "summary": "Indicates\u0020if\u0020years\u0020should\u0020be\u0020calculated\u0020with\u0020overflow.", + "url": "classes/Carbon-Traits-Options.html#property_localYearsOverflow" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localStrictModeEnabled", + "name": "localStrictModeEnabled", + "summary": "Indicates\u0020if\u0020the\u0020strict\u0020mode\u0020is\u0020in\u0020use.", + "url": "classes/Carbon-Traits-Options.html#property_localStrictModeEnabled" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localHumanDiffOptions", + "name": "localHumanDiffOptions", + "summary": "Options\u0020for\u0020diffForHumans\u0020and\u0020forHumans\u0020methods.", + "url": "classes/Carbon-Traits-Options.html#property_localHumanDiffOptions" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localToStringFormat", + "name": "localToStringFormat", + "summary": "Format\u0020to\u0020use\u0020on\u0020string\u0020cast.", + "url": "classes/Carbon-Traits-Options.html#property_localToStringFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localSerializer", + "name": "localSerializer", + "summary": "Format\u0020to\u0020use\u0020on\u0020JSON\u0020serialization.", + "url": "classes/Carbon-Traits-Options.html#property_localSerializer" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localMacros", + "name": "localMacros", + "summary": "Instance\u002Dspecific\u0020macros.", + "url": "classes/Carbon-Traits-Options.html#property_localMacros" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localGenericMacros", + "name": "localGenericMacros", + "summary": "Instance\u002Dspecific\u0020generic\u0020macros.", + "url": "classes/Carbon-Traits-Options.html#property_localGenericMacros" + }, { + "fqsen": "\\Carbon\\Traits\\Options\u003A\u003A\u0024localFormatFunction", + "name": "localFormatFunction", + "summary": "Function\u0020to\u0020call\u0020instead\u0020of\u0020format.", + "url": "classes/Carbon-Traits-Options.html#property_localFormatFunction" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding", + "name": "Rounding", + "summary": "Trait\u0020Rounding.", + "url": "classes/Carbon-Traits-Rounding.html" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003AroundUnit\u0028\u0029", + "name": "roundUnit", + "summary": "Round\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified\u0020and\u0020the\u0020given\u0020function.", + "url": "classes/Carbon-Traits-Rounding.html#method_roundUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003AfloorUnit\u0028\u0029", + "name": "floorUnit", + "summary": "Truncate\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-Traits-Rounding.html#method_floorUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003AceilUnit\u0028\u0029", + "name": "ceilUnit", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020at\u0020the\u0020given\u0020unit\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-Traits-Rounding.html#method_ceilUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003Around\u0028\u0029", + "name": "round", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-Traits-Rounding.html#method_round" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003Afloor\u0028\u0029", + "name": "floor", + "summary": "Round\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-Traits-Rounding.html#method_floor" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003Aceil\u0028\u0029", + "name": "ceil", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020second\u0020with\u0020given\u0020precision\u0020if\u0020specified.", + "url": "classes/Carbon-Traits-Rounding.html#method_ceil" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003AroundWeek\u0028\u0029", + "name": "roundWeek", + "summary": "Round\u0020the\u0020current\u0020instance\u0020week.", + "url": "classes/Carbon-Traits-Rounding.html#method_roundWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003AfloorWeek\u0028\u0029", + "name": "floorWeek", + "summary": "Truncate\u0020the\u0020current\u0020instance\u0020week.", + "url": "classes/Carbon-Traits-Rounding.html#method_floorWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Rounding\u003A\u003AceilWeek\u0028\u0029", + "name": "ceilWeek", + "summary": "Ceil\u0020the\u0020current\u0020instance\u0020week.", + "url": "classes/Carbon-Traits-Rounding.html#method_ceilWeek" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization", + "name": "Serialization", + "summary": "Trait\u0020Serialization.", + "url": "classes/Carbon-Traits-Serialization.html" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003Aserialize\u0028\u0029", + "name": "serialize", + "summary": "Return\u0020a\u0020serialized\u0020string\u0020of\u0020the\u0020instance.", + "url": "classes/Carbon-Traits-Serialization.html#method_serialize" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003AfromSerialized\u0028\u0029", + "name": "fromSerialized", + "summary": "Create\u0020an\u0020instance\u0020from\u0020a\u0020serialized\u0020string.", + "url": "classes/Carbon-Traits-Serialization.html#method_fromSerialized" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A__set_state\u0028\u0029", + "name": "__set_state", + "summary": "The\u0020__set_state\u0020handler.", + "url": "classes/Carbon-Traits-Serialization.html#method___set_state" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A__sleep\u0028\u0029", + "name": "__sleep", + "summary": "Returns\u0020the\u0020list\u0020of\u0020properties\u0020to\u0020dump\u0020on\u0020serialize\u0028\u0029\u0020called\u0020on.", + "url": "classes/Carbon-Traits-Serialization.html#method___sleep" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A__serialize\u0028\u0029", + "name": "__serialize", + "summary": "Returns\u0020the\u0020values\u0020to\u0020dump\u0020on\u0020serialize\u0028\u0029\u0020called\u0020on.", + "url": "classes/Carbon-Traits-Serialization.html#method___serialize" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A__wakeup\u0028\u0029", + "name": "__wakeup", + "summary": "Set\u0020locale\u0020if\u0020specified\u0020on\u0020unserialize\u0028\u0029\u0020called.", + "url": "classes/Carbon-Traits-Serialization.html#method___wakeup" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A__unserialize\u0028\u0029", + "name": "__unserialize", + "summary": "Set\u0020locale\u0020if\u0020specified\u0020on\u0020unserialize\u0028\u0029\u0020called.", + "url": "classes/Carbon-Traits-Serialization.html#method___unserialize" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "Prepare\u0020the\u0020object\u0020for\u0020JSON\u0020serialization.", + "url": "classes/Carbon-Traits-Serialization.html#method_jsonSerialize" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003AserializeUsing\u0028\u0029", + "name": "serializeUsing", + "summary": "", + "url": "classes/Carbon-Traits-Serialization.html#method_serializeUsing" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003AcleanupDumpProperties\u0028\u0029", + "name": "cleanupDumpProperties", + "summary": "Cleanup\u0020properties\u0020attached\u0020to\u0020the\u0020public\u0020scope\u0020of\u0020DateTime\u0020when\u0020a\u0020dump\u0020of\u0020the\u0020date\u0020is\u0020requested.", + "url": "classes/Carbon-Traits-Serialization.html#method_cleanupDumpProperties" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003AgetSleepProperties\u0028\u0029", + "name": "getSleepProperties", + "summary": "", + "url": "classes/Carbon-Traits-Serialization.html#method_getSleepProperties" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A\u0024serializer", + "name": "serializer", + "summary": "The\u0020custom\u0020Carbon\u0020JSON\u0020serializer.", + "url": "classes/Carbon-Traits-Serialization.html#property_serializer" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A\u0024dumpProperties", + "name": "dumpProperties", + "summary": "List\u0020of\u0020key\u0020to\u0020use\u0020for\u0020dump\/serialization.", + "url": "classes/Carbon-Traits-Serialization.html#property_dumpProperties" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A\u0024dumpLocale", + "name": "dumpLocale", + "summary": "Locale\u0020to\u0020dump\u0020comes\u0020here\u0020before\u0020serialization.", + "url": "classes/Carbon-Traits-Serialization.html#property_dumpLocale" + }, { + "fqsen": "\\Carbon\\Traits\\Serialization\u003A\u003A\u0024dumpDateProperties", + "name": "dumpDateProperties", + "summary": "Embed\u0020date\u0020properties\u0020to\u0020dump\u0020in\u0020a\u0020dedicated\u0020variables\u0020so\u0020it\u0020won\u0027t\u0020overlap\u0020native\nDateTime\u0020ones.", + "url": "classes/Carbon-Traits-Serialization.html#property_dumpDateProperties" + }, { + "fqsen": "\\Carbon\\Traits\\Test", + "name": "Test", + "summary": "", + "url": "classes/Carbon-Traits-Test.html" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AsetTestNow\u0028\u0029", + "name": "setTestNow", + "summary": "Set\u0020a\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.\u0020\u0020The\u0020provided\u0020instance\u0020will\u0020be\u0020returned\nspecifically\u0020under\u0020the\u0020following\u0020conditions\u003A\n\u0020\u0020\u002D\u0020A\u0020call\u0020to\u0020the\u0020static\u0020now\u0028\u0029\u0020method,\u0020ex.\u0020Carbon\u003A\u003Anow\u0028\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020null\u0020\u0028or\u0020blank\u0020string\u0029\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028null\u0029\n\u0020\u0020\u002D\u0020When\u0020the\u0020string\u0020\u0022now\u0022\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028\u0027now\u0027\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020string\u0020containing\u0020the\u0020desired\u0020time\u0020is\u0020passed\u0020to\u0020Carbon\u003A\u003Aparse\u0028\u0029.", + "url": "classes/Carbon-Traits-Test.html#method_setTestNow" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AsetTestNowAndTimezone\u0028\u0029", + "name": "setTestNowAndTimezone", + "summary": "Set\u0020a\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.\u0020\u0020The\u0020provided\u0020instance\u0020will\u0020be\u0020returned\nspecifically\u0020under\u0020the\u0020following\u0020conditions\u003A\n\u0020\u0020\u002D\u0020A\u0020call\u0020to\u0020the\u0020static\u0020now\u0028\u0029\u0020method,\u0020ex.\u0020Carbon\u003A\u003Anow\u0028\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020null\u0020\u0028or\u0020blank\u0020string\u0029\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028null\u0029\n\u0020\u0020\u002D\u0020When\u0020the\u0020string\u0020\u0022now\u0022\u0020is\u0020passed\u0020to\u0020the\u0020constructor\u0020or\u0020parse\u0028\u0029,\u0020ex.\u0020new\u0020Carbon\u0028\u0027now\u0027\u0029\n\u0020\u0020\u002D\u0020When\u0020a\u0020string\u0020containing\u0020the\u0020desired\u0020time\u0020is\u0020passed\u0020to\u0020Carbon\u003A\u003Aparse\u0028\u0029.", + "url": "classes/Carbon-Traits-Test.html#method_setTestNowAndTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AwithTestNow\u0028\u0029", + "name": "withTestNow", + "summary": "Temporarily\u0020sets\u0020a\u0020static\u0020date\u0020to\u0020be\u0020used\u0020within\u0020the\u0020callback.", + "url": "classes/Carbon-Traits-Test.html#method_withTestNow" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AgetTestNow\u0028\u0029", + "name": "getTestNow", + "summary": "Get\u0020the\u0020Carbon\u0020instance\u0020\u0028real\u0020or\u0020mock\u0029\u0020to\u0020be\u0020returned\u0020when\u0020a\u0020\u0022now\u0022\ninstance\u0020is\u0020created.", + "url": "classes/Carbon-Traits-Test.html#method_getTestNow" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AhasTestNow\u0028\u0029", + "name": "hasTestNow", + "summary": "Determine\u0020if\u0020there\u0020is\u0020a\u0020valid\u0020test\u0020instance\u0020set.\u0020A\u0020valid\u0020test\u0020instance\nis\u0020anything\u0020that\u0020is\u0020not\u0020null.", + "url": "classes/Carbon-Traits-Test.html#method_hasTestNow" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AgetMockedTestNow\u0028\u0029", + "name": "getMockedTestNow", + "summary": "Get\u0020the\u0020mocked\u0020date\u0020passed\u0020in\u0020setTestNow\u0028\u0029\u0020and\u0020if\u0020it\u0027s\u0020a\u0020Closure,\u0020execute\u0020it.", + "url": "classes/Carbon-Traits-Test.html#method_getMockedTestNow" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AmockConstructorParameters\u0028\u0029", + "name": "mockConstructorParameters", + "summary": "", + "url": "classes/Carbon-Traits-Test.html#method_mockConstructorParameters" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003AsetDefaultTimezone\u0028\u0029", + "name": "setDefaultTimezone", + "summary": "", + "url": "classes/Carbon-Traits-Test.html#method_setDefaultTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003A\u0024testNow", + "name": "testNow", + "summary": "A\u0020test\u0020Carbon\u0020instance\u0020to\u0020be\u0020returned\u0020when\u0020now\u0020instances\u0020are\u0020created.", + "url": "classes/Carbon-Traits-Test.html#property_testNow" + }, { + "fqsen": "\\Carbon\\Traits\\Test\u003A\u003A\u0024testDefaultTimezone", + "name": "testDefaultTimezone", + "summary": "The\u0020timezone\u0020to\u0020resto\u0020to\u0020when\u0020clearing\u0020the\u0020time\u0020mock.", + "url": "classes/Carbon-Traits-Test.html#property_testDefaultTimezone" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp", + "name": "Timestamp", + "summary": "Trait\u0020Timestamp.", + "url": "classes/Carbon-Traits-Timestamp.html" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AcreateFromTimestamp\u0028\u0029", + "name": "createFromTimestamp", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020timestamp\u0020and\u0020set\u0020the\u0020timezone\u0020\u0028use\u0020default\u0020one\u0020if\u0020not\u0020specified\u0029.", + "url": "classes/Carbon-Traits-Timestamp.html#method_createFromTimestamp" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AcreateFromTimestampUTC\u0028\u0029", + "name": "createFromTimestampUTC", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020an\u0020timestamp\u0020keeping\u0020the\u0020timezone\u0020to\u0020UTC.", + "url": "classes/Carbon-Traits-Timestamp.html#method_createFromTimestampUTC" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AcreateFromTimestampMsUTC\u0028\u0029", + "name": "createFromTimestampMsUTC", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020timestamp\u0020in\u0020milliseconds.", + "url": "classes/Carbon-Traits-Timestamp.html#method_createFromTimestampMsUTC" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AcreateFromTimestampMs\u0028\u0029", + "name": "createFromTimestampMs", + "summary": "Create\u0020a\u0020Carbon\u0020instance\u0020from\u0020a\u0020timestamp\u0020in\u0020milliseconds.", + "url": "classes/Carbon-Traits-Timestamp.html#method_createFromTimestampMs" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003Atimestamp\u0028\u0029", + "name": "timestamp", + "summary": "Set\u0020the\u0020instance\u0027s\u0020timestamp.", + "url": "classes/Carbon-Traits-Timestamp.html#method_timestamp" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AgetPreciseTimestamp\u0028\u0029", + "name": "getPreciseTimestamp", + "summary": "Returns\u0020a\u0020timestamp\u0020rounded\u0020with\u0020the\u0020given\u0020precision\u0020\u00286\u0020by\u0020default\u0029.", + "url": "classes/Carbon-Traits-Timestamp.html#method_getPreciseTimestamp" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AvalueOf\u0028\u0029", + "name": "valueOf", + "summary": "Returns\u0020the\u0020milliseconds\u0020timestamps\u0020used\u0020amongst\u0020other\u0020by\u0020Date\u0020javascript\u0020objects.", + "url": "classes/Carbon-Traits-Timestamp.html#method_valueOf" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AgetTimestampMs\u0028\u0029", + "name": "getTimestampMs", + "summary": "Returns\u0020the\u0020timestamp\u0020with\u0020millisecond\u0020precision.", + "url": "classes/Carbon-Traits-Timestamp.html#method_getTimestampMs" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003Aunix\u0028\u0029", + "name": "unix", + "summary": "", + "url": "classes/Carbon-Traits-Timestamp.html#method_unix" + }, { + "fqsen": "\\Carbon\\Traits\\Timestamp\u003A\u003AgetIntegerAndDecimalParts\u0028\u0029", + "name": "getIntegerAndDecimalParts", + "summary": "Return\u0020an\u0020array\u0020with\u0020integer\u0020part\u0020digits\u0020and\u0020decimals\u0020digits\u0020split\u0020from\u0020one\u0020or\u0020more\u0020positive\u0020numbers\n\u0028such\u0020as\u0020timestamps\u0029\u0020as\u0020string\u0020with\u0020the\u0020given\u0020number\u0020of\u0020decimals\u0020\u00286\u0020by\u0020default\u0029.", + "url": "classes/Carbon-Traits-Timestamp.html#method_getIntegerAndDecimalParts" + }, { + "fqsen": "\\Carbon\\Traits\\ToStringFormat", + "name": "ToStringFormat", + "summary": "Trait\u0020ToStringFormat.", + "url": "classes/Carbon-Traits-ToStringFormat.html" + }, { + "fqsen": "\\Carbon\\Traits\\ToStringFormat\u003A\u003AresetToStringFormat\u0028\u0029", + "name": "resetToStringFormat", + "summary": "Reset\u0020the\u0020format\u0020used\u0020to\u0020the\u0020default\u0020when\u0020type\u0020juggling\u0020a\u0020Carbon\u0020instance\u0020to\u0020a\u0020string", + "url": "classes/Carbon-Traits-ToStringFormat.html#method_resetToStringFormat" + }, { + "fqsen": "\\Carbon\\Traits\\ToStringFormat\u003A\u003AsetToStringFormat\u0028\u0029", + "name": "setToStringFormat", + "summary": "", + "url": "classes/Carbon-Traits-ToStringFormat.html#method_setToStringFormat" + }, { + "fqsen": "\\Carbon\\Traits\\ToStringFormat\u003A\u003A\u0024toStringFormat", + "name": "toStringFormat", + "summary": "Format\u0020to\u0020use\u0020for\u0020__toString\u0020method\u0020when\u0020type\u0020juggling\u0020occurs.", + "url": "classes/Carbon-Traits-ToStringFormat.html#property_toStringFormat" + }, { + "fqsen": "\\Carbon\\Traits\\Units", + "name": "Units", + "summary": "Trait\u0020Units.", + "url": "classes/Carbon-Traits-Units.html" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003AaddRealUnit\u0028\u0029", + "name": "addRealUnit", + "summary": "Add\u0020seconds\u0020to\u0020the\u0020instance\u0020using\u0020timestamp.\u0020Positive\u0020\u0024value\u0020travels\nforward\u0020while\u0020negative\u0020\u0024value\u0020travels\u0020into\u0020the\u0020past.", + "url": "classes/Carbon-Traits-Units.html#method_addRealUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003AsubRealUnit\u0028\u0029", + "name": "subRealUnit", + "summary": "", + "url": "classes/Carbon-Traits-Units.html#method_subRealUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003AisModifiableUnit\u0028\u0029", + "name": "isModifiableUnit", + "summary": "Returns\u0020true\u0020if\u0020a\u0020property\u0020can\u0020be\u0020changed\u0020via\u0020setter.", + "url": "classes/Carbon-Traits-Units.html#method_isModifiableUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003ArawAdd\u0028\u0029", + "name": "rawAdd", + "summary": "Call\u0020native\u0020PHP\u0020DateTime\/DateTimeImmutable\u0020add\u0028\u0029\u0020method.", + "url": "classes/Carbon-Traits-Units.html#method_rawAdd" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Add\u0020given\u0020units\u0020or\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Units.html#method_add" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003AaddUnit\u0028\u0029", + "name": "addUnit", + "summary": "Add\u0020given\u0020units\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Units.html#method_addUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003AsubUnit\u0028\u0029", + "name": "subUnit", + "summary": "Subtract\u0020given\u0020units\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Units.html#method_subUnit" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003ArawSub\u0028\u0029", + "name": "rawSub", + "summary": "Call\u0020native\u0020PHP\u0020DateTime\/DateTimeImmutable\u0020sub\u0028\u0029\u0020method.", + "url": "classes/Carbon-Traits-Units.html#method_rawSub" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003Asub\u0028\u0029", + "name": "sub", + "summary": "Subtract\u0020given\u0020units\u0020or\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Units.html#method_sub" + }, { + "fqsen": "\\Carbon\\Traits\\Units\u003A\u003Asubtract\u0028\u0029", + "name": "subtract", + "summary": "Subtract\u0020given\u0020units\u0020or\u0020interval\u0020to\u0020the\u0020current\u0020instance.", + "url": "classes/Carbon-Traits-Units.html#method_subtract" + }, { + "fqsen": "\\Carbon\\Traits\\Week", + "name": "Week", + "summary": "Trait\u0020Week.", + "url": "classes/Carbon-Traits-Week.html" + }, { + "fqsen": "\\Carbon\\Traits\\Week\u003A\u003AisoWeekYear\u0028\u0029", + "name": "isoWeekYear", + "summary": "Set\/get\u0020the\u0020week\u0020number\u0020of\u0020year\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020ISO\u0020format\u0020if\u0020no\u0020settings\ngiven.", + "url": "classes/Carbon-Traits-Week.html#method_isoWeekYear" + }, { + "fqsen": "\\Carbon\\Traits\\Week\u003A\u003AweekYear\u0028\u0029", + "name": "weekYear", + "summary": "Set\/get\u0020the\u0020week\u0020number\u0020of\u0020year\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020US\u0020format\u0020if\u0020no\u0020settings\ngiven\u0020\u0028Sunday\u0020\/\u0020Jan\u00206\u0029.", + "url": "classes/Carbon-Traits-Week.html#method_weekYear" + }, { + "fqsen": "\\Carbon\\Traits\\Week\u003A\u003AisoWeeksInYear\u0028\u0029", + "name": "isoWeeksInYear", + "summary": "Get\u0020the\u0020number\u0020of\u0020weeks\u0020of\u0020the\u0020current\u0020week\u002Dyear\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020ISO\u0020format\u0020if\u0020no\u0020settings\ngiven.", + "url": "classes/Carbon-Traits-Week.html#method_isoWeeksInYear" + }, { + "fqsen": "\\Carbon\\Traits\\Week\u003A\u003AweeksInYear\u0028\u0029", + "name": "weeksInYear", + "summary": "Get\u0020the\u0020number\u0020of\u0020weeks\u0020of\u0020the\u0020current\u0020week\u002Dyear\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020US\u0020format\u0020if\u0020no\u0020settings\ngiven\u0020\u0028Sunday\u0020\/\u0020Jan\u00206\u0029.", + "url": "classes/Carbon-Traits-Week.html#method_weeksInYear" + }, { + "fqsen": "\\Carbon\\Traits\\Week\u003A\u003Aweek\u0028\u0029", + "name": "week", + "summary": "Get\/set\u0020the\u0020week\u0020number\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020US\u0020format\u0020if\u0020no\u0020settings\ngiven\u0020\u0028Sunday\u0020\/\u0020Jan\u00206\u0029.", + "url": "classes/Carbon-Traits-Week.html#method_week" + }, { + "fqsen": "\\Carbon\\Traits\\Week\u003A\u003AisoWeek\u0028\u0029", + "name": "isoWeek", + "summary": "Get\/set\u0020the\u0020week\u0020number\u0020using\u0020given\u0020first\u0020day\u0020of\u0020week\u0020and\u0020first\nday\u0020of\u0020year\u0020included\u0020in\u0020the\u0020first\u0020week.\u0020Or\u0020use\u0020ISO\u0020format\u0020if\u0020no\u0020settings\ngiven.", + "url": "classes/Carbon-Traits-Week.html#method_isoWeek" + }, { + "fqsen": "\\Carbon\\Translator", + "name": "Translator", + "summary": "", + "url": "classes/Carbon-Translator.html" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable", + "name": "TranslatorImmutable", + "summary": "", + "url": "classes/Carbon-TranslatorImmutable.html" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Carbon-TranslatorImmutable.html#method___construct" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AsetDirectories\u0028\u0029", + "name": "setDirectories", + "summary": "Set\u0020list\u0020of\u0020directories\u0020translation\u0020files\u0020are\u0020searched\u0020in.", + "url": "classes/Carbon-TranslatorImmutable.html#method_setDirectories" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Set\u0020the\u0020current\u0020translator\u0020locale\u0020and\u0020indicate\u0020if\u0020the\u0020source\u0020locale\u0020file\u0020exists", + "url": "classes/Carbon-TranslatorImmutable.html#method_setLocale" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AsetMessages\u0028\u0029", + "name": "setMessages", + "summary": "Set\u0020messages\u0020of\u0020a\u0020locale\u0020and\u0020take\u0020file\u0020first\u0020if\u0020present.", + "url": "classes/Carbon-TranslatorImmutable.html#method_setMessages" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AsetTranslations\u0028\u0029", + "name": "setTranslations", + "summary": "Set\u0020messages\u0020of\u0020the\u0020current\u0020locale\u0020and\u0020take\u0020file\u0020first\u0020if\u0020present.", + "url": "classes/Carbon-TranslatorImmutable.html#method_setTranslations" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AsetConfigCacheFactory\u0028\u0029", + "name": "setConfigCacheFactory", + "summary": "", + "url": "classes/Carbon-TranslatorImmutable.html#method_setConfigCacheFactory" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AresetMessages\u0028\u0029", + "name": "resetMessages", + "summary": "Reset\u0020messages\u0020of\u0020a\u0020locale\u0020\u0028all\u0020locale\u0020if\u0020no\u0020locale\u0020passed\u0029.", + "url": "classes/Carbon-TranslatorImmutable.html#method_resetMessages" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AsetFallbackLocales\u0028\u0029", + "name": "setFallbackLocales", + "summary": "Sets\u0020the\u0020fallback\u0020locales.", + "url": "classes/Carbon-TranslatorImmutable.html#method_setFallbackLocales" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003AdisallowMutation\u0028\u0029", + "name": "disallowMutation", + "summary": "", + "url": "classes/Carbon-TranslatorImmutable.html#method_disallowMutation" + }, { + "fqsen": "\\Carbon\\TranslatorImmutable\u003A\u003A\u0024constructed", + "name": "constructed", + "summary": "", + "url": "classes/Carbon-TranslatorImmutable.html#property_constructed" + }, { + "fqsen": "\\Carbon\\TranslatorStrongTypeInterface", + "name": "TranslatorStrongTypeInterface", + "summary": "Mark\u0020translator\u0020using\u0020strong\u0020type\u0020from\u0020symfony\/translation\u0020\u003E\u003D\u00206.", + "url": "classes/Carbon-TranslatorStrongTypeInterface.html" + }, { + "fqsen": "\\Carbon\\TranslatorStrongTypeInterface\u003A\u003AgetFromCatalogue\u0028\u0029", + "name": "getFromCatalogue", + "summary": "", + "url": "classes/Carbon-TranslatorStrongTypeInterface.html#method_getFromCatalogue" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_", + "name": "Class_", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020class\u0020builder.", + "url": "classes/PhpParser-Builder-Class.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Extends\u0020a\u0020class.", + "url": "classes/PhpParser-Builder-Class.html#method_extend" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003Aimplement\u0028\u0029", + "name": "implement", + "summary": "Implements\u0020one\u0020or\u0020more\u0020interfaces.", + "url": "classes/PhpParser-Builder-Class.html#method_implement" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003AmakeAbstract\u0028\u0029", + "name": "makeAbstract", + "summary": "Makes\u0020the\u0020class\u0020abstract.", + "url": "classes/PhpParser-Builder-Class.html#method_makeAbstract" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003AmakeFinal\u0028\u0029", + "name": "makeFinal", + "summary": "Makes\u0020the\u0020class\u0020final.", + "url": "classes/PhpParser-Builder-Class.html#method_makeFinal" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003AmakeReadonly\u0028\u0029", + "name": "makeReadonly", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#method_makeReadonly" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Class.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Class.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020class\u0020node.", + "url": "classes/PhpParser-Builder-Class.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024extends", + "name": "extends", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_extends" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024implements", + "name": "implements", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_implements" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024uses", + "name": "uses", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_uses" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024constants", + "name": "constants", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_constants" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024properties", + "name": "properties", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_properties" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024methods", + "name": "methods", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_methods" + }, { + "fqsen": "\\PhpParser\\Builder\\Class_\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Class.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst", + "name": "ClassConst", + "summary": "", + "url": "classes/PhpParser-Builder-ClassConst.html" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020class\u0020constant\u0020builder", + "url": "classes/PhpParser-Builder-ClassConst.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AaddConst\u0028\u0029", + "name": "addConst", + "summary": "Add\u0020another\u0020constant\u0020to\u0020const\u0020group", + "url": "classes/PhpParser-Builder-ClassConst.html#method_addConst" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AmakePublic\u0028\u0029", + "name": "makePublic", + "summary": "Makes\u0020the\u0020constant\u0020public.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_makePublic" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AmakeProtected\u0028\u0029", + "name": "makeProtected", + "summary": "Makes\u0020the\u0020constant\u0020protected.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_makeProtected" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AmakePrivate\u0028\u0029", + "name": "makePrivate", + "summary": "Makes\u0020the\u0020constant\u0020private.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_makePrivate" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AmakeFinal\u0028\u0029", + "name": "makeFinal", + "summary": "Makes\u0020the\u0020constant\u0020final.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_makeFinal" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AsetDocComment\u0028\u0029", + "name": "setDocComment", + "summary": "Sets\u0020doc\u0020comment\u0020for\u0020the\u0020constant.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_setDocComment" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AsetType\u0028\u0029", + "name": "setType", + "summary": "Sets\u0020the\u0020constant\u0020type.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_setType" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020class\u0020node.", + "url": "classes/PhpParser-Builder-ClassConst.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Builder-ClassConst.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/PhpParser-Builder-ClassConst.html#property_attributes" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003A\u0024constants", + "name": "constants", + "summary": "", + "url": "classes/PhpParser-Builder-ClassConst.html#property_constants" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-ClassConst.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\ClassConst\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Builder-ClassConst.html#property_type" + }, { + "fqsen": "\\PhpParser\\Builder\\Declaration", + "name": "Declaration", + "summary": "", + "url": "classes/PhpParser-Builder-Declaration.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Declaration\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "", + "url": "classes/PhpParser-Builder-Declaration.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Declaration\u003A\u003AaddStmts\u0028\u0029", + "name": "addStmts", + "summary": "Adds\u0020multiple\u0020statements.", + "url": "classes/PhpParser-Builder-Declaration.html#method_addStmts" + }, { + "fqsen": "\\PhpParser\\Builder\\Declaration\u003A\u003AsetDocComment\u0028\u0029", + "name": "setDocComment", + "summary": "Sets\u0020doc\u0020comment\u0020for\u0020the\u0020declaration.", + "url": "classes/PhpParser-Builder-Declaration.html#method_setDocComment" + }, { + "fqsen": "\\PhpParser\\Builder\\Declaration\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/PhpParser-Builder-Declaration.html#property_attributes" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_", + "name": "Enum_", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020an\u0020enum\u0020builder.", + "url": "classes/PhpParser-Builder-Enum.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003AsetScalarType\u0028\u0029", + "name": "setScalarType", + "summary": "Sets\u0020the\u0020scalar\u0020type.", + "url": "classes/PhpParser-Builder-Enum.html#method_setScalarType" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003Aimplement\u0028\u0029", + "name": "implement", + "summary": "Implements\u0020one\u0020or\u0020more\u0020interfaces.", + "url": "classes/PhpParser-Builder-Enum.html#method_implement" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Enum.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Enum.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020class\u0020node.", + "url": "classes/PhpParser-Builder-Enum.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024scalarType", + "name": "scalarType", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_scalarType" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024implements", + "name": "implements", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_implements" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024uses", + "name": "uses", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_uses" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024enumCases", + "name": "enumCases", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_enumCases" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024constants", + "name": "constants", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_constants" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024methods", + "name": "methods", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_methods" + }, { + "fqsen": "\\PhpParser\\Builder\\Enum_\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Enum.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase", + "name": "EnumCase", + "summary": "", + "url": "classes/PhpParser-Builder-EnumCase.html" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020an\u0020enum\u0020case\u0020builder.", + "url": "classes/PhpParser-Builder-EnumCase.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003AsetValue\u0028\u0029", + "name": "setValue", + "summary": "Sets\u0020the\u0020value.", + "url": "classes/PhpParser-Builder-EnumCase.html#method_setValue" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003AsetDocComment\u0028\u0029", + "name": "setDocComment", + "summary": "Sets\u0020doc\u0020comment\u0020for\u0020the\u0020constant.", + "url": "classes/PhpParser-Builder-EnumCase.html#method_setDocComment" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-EnumCase.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020enum\u0020case\u0020node.", + "url": "classes/PhpParser-Builder-EnumCase.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-EnumCase.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Builder-EnumCase.html#property_value" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/PhpParser-Builder-EnumCase.html#property_attributes" + }, { + "fqsen": "\\PhpParser\\Builder\\EnumCase\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-EnumCase.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_", + "name": "Function_", + "summary": "", + "url": "classes/PhpParser-Builder-Function.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020function\u0020builder.", + "url": "classes/PhpParser-Builder-Function.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Function.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Function.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020function\u0020node.", + "url": "classes/PhpParser-Builder-Function.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Function.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Builder-Function.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Builder\\Function_\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Function.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike", + "name": "FunctionLike", + "summary": "", + "url": "classes/PhpParser-Builder-FunctionLike.html" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003AmakeReturnByRef\u0028\u0029", + "name": "makeReturnByRef", + "summary": "Make\u0020the\u0020function\u0020return\u0020by\u0020reference.", + "url": "classes/PhpParser-Builder-FunctionLike.html#method_makeReturnByRef" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003AaddParam\u0028\u0029", + "name": "addParam", + "summary": "Adds\u0020a\u0020parameter.", + "url": "classes/PhpParser-Builder-FunctionLike.html#method_addParam" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003AaddParams\u0028\u0029", + "name": "addParams", + "summary": "Adds\u0020multiple\u0020parameters.", + "url": "classes/PhpParser-Builder-FunctionLike.html#method_addParams" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003AsetReturnType\u0028\u0029", + "name": "setReturnType", + "summary": "Sets\u0020the\u0020return\u0020type\u0020for\u0020PHP\u00207.", + "url": "classes/PhpParser-Builder-FunctionLike.html#method_setReturnType" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003A\u0024returnByRef", + "name": "returnByRef", + "summary": "", + "url": "classes/PhpParser-Builder-FunctionLike.html#property_returnByRef" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003A\u0024params", + "name": "params", + "summary": "", + "url": "classes/PhpParser-Builder-FunctionLike.html#property_params" + }, { + "fqsen": "\\PhpParser\\Builder\\FunctionLike\u003A\u003A\u0024returnType", + "name": "returnType", + "summary": "", + "url": "classes/PhpParser-Builder-FunctionLike.html#property_returnType" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_", + "name": "Interface_", + "summary": "", + "url": "classes/PhpParser-Builder-Interface.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020an\u0020interface\u0020builder.", + "url": "classes/PhpParser-Builder-Interface.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003Aextend\u0028\u0029", + "name": "extend", + "summary": "Extends\u0020one\u0020or\u0020more\u0020interfaces.", + "url": "classes/PhpParser-Builder-Interface.html#method_extend" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Interface.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Interface.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020interface\u0020node.", + "url": "classes/PhpParser-Builder-Interface.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Interface.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003A\u0024extends", + "name": "extends", + "summary": "", + "url": "classes/PhpParser-Builder-Interface.html#property_extends" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003A\u0024constants", + "name": "constants", + "summary": "", + "url": "classes/PhpParser-Builder-Interface.html#property_constants" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003A\u0024methods", + "name": "methods", + "summary": "", + "url": "classes/PhpParser-Builder-Interface.html#property_methods" + }, { + "fqsen": "\\PhpParser\\Builder\\Interface_\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Interface.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\Method", + "name": "Method", + "summary": "", + "url": "classes/PhpParser-Builder-Method.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020method\u0020builder.", + "url": "classes/PhpParser-Builder-Method.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AmakePublic\u0028\u0029", + "name": "makePublic", + "summary": "Makes\u0020the\u0020method\u0020public.", + "url": "classes/PhpParser-Builder-Method.html#method_makePublic" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AmakeProtected\u0028\u0029", + "name": "makeProtected", + "summary": "Makes\u0020the\u0020method\u0020protected.", + "url": "classes/PhpParser-Builder-Method.html#method_makeProtected" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AmakePrivate\u0028\u0029", + "name": "makePrivate", + "summary": "Makes\u0020the\u0020method\u0020private.", + "url": "classes/PhpParser-Builder-Method.html#method_makePrivate" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AmakeStatic\u0028\u0029", + "name": "makeStatic", + "summary": "Makes\u0020the\u0020method\u0020static.", + "url": "classes/PhpParser-Builder-Method.html#method_makeStatic" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AmakeAbstract\u0028\u0029", + "name": "makeAbstract", + "summary": "Makes\u0020the\u0020method\u0020abstract.", + "url": "classes/PhpParser-Builder-Method.html#method_makeAbstract" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AmakeFinal\u0028\u0029", + "name": "makeFinal", + "summary": "Makes\u0020the\u0020method\u0020final.", + "url": "classes/PhpParser-Builder-Method.html#method_makeFinal" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Method.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Method.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020method\u0020node.", + "url": "classes/PhpParser-Builder-Method.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Method.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Builder-Method.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Builder-Method.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Builder\\Method\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Method.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\Namespace_", + "name": "Namespace_", + "summary": "", + "url": "classes/PhpParser-Builder-Namespace.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Namespace_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020namespace\u0020builder.", + "url": "classes/PhpParser-Builder-Namespace.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Namespace_\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Namespace.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Namespace_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020node.", + "url": "classes/PhpParser-Builder-Namespace.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Namespace_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Namespace.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Namespace_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Builder-Namespace.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Builder\\Param", + "name": "Param", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020parameter\u0020builder.", + "url": "classes/PhpParser-Builder-Param.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AsetDefault\u0028\u0029", + "name": "setDefault", + "summary": "Sets\u0020default\u0020value\u0020for\u0020the\u0020parameter.", + "url": "classes/PhpParser-Builder-Param.html#method_setDefault" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AsetType\u0028\u0029", + "name": "setType", + "summary": "Sets\u0020type\u0020for\u0020the\u0020parameter.", + "url": "classes/PhpParser-Builder-Param.html#method_setType" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AsetTypeHint\u0028\u0029", + "name": "setTypeHint", + "summary": "Sets\u0020type\u0020for\u0020the\u0020parameter.", + "url": "classes/PhpParser-Builder-Param.html#method_setTypeHint" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AmakeByRef\u0028\u0029", + "name": "makeByRef", + "summary": "Make\u0020the\u0020parameter\u0020accept\u0020the\u0020value\u0020by\u0020reference.", + "url": "classes/PhpParser-Builder-Param.html#method_makeByRef" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AmakeVariadic\u0028\u0029", + "name": "makeVariadic", + "summary": "Make\u0020the\u0020parameter\u0020variadic", + "url": "classes/PhpParser-Builder-Param.html#method_makeVariadic" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AmakePublic\u0028\u0029", + "name": "makePublic", + "summary": "Makes\u0020the\u0020\u0028promoted\u0029\u0020parameter\u0020public.", + "url": "classes/PhpParser-Builder-Param.html#method_makePublic" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AmakeProtected\u0028\u0029", + "name": "makeProtected", + "summary": "Makes\u0020the\u0020\u0028promoted\u0029\u0020parameter\u0020protected.", + "url": "classes/PhpParser-Builder-Param.html#method_makeProtected" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AmakePrivate\u0028\u0029", + "name": "makePrivate", + "summary": "Makes\u0020the\u0020\u0028promoted\u0029\u0020parameter\u0020private.", + "url": "classes/PhpParser-Builder-Param.html#method_makePrivate" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AmakeReadonly\u0028\u0029", + "name": "makeReadonly", + "summary": "Makes\u0020the\u0020\u0028promoted\u0029\u0020parameter\u0020readonly.", + "url": "classes/PhpParser-Builder-Param.html#method_makeReadonly" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Param.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020parameter\u0020node.", + "url": "classes/PhpParser-Builder-Param.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_default" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_type" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024variadic", + "name": "variadic", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_variadic" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Builder\\Param\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Param.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\Property", + "name": "Property", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020property\u0020builder.", + "url": "classes/PhpParser-Builder-Property.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AmakePublic\u0028\u0029", + "name": "makePublic", + "summary": "Makes\u0020the\u0020property\u0020public.", + "url": "classes/PhpParser-Builder-Property.html#method_makePublic" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AmakeProtected\u0028\u0029", + "name": "makeProtected", + "summary": "Makes\u0020the\u0020property\u0020protected.", + "url": "classes/PhpParser-Builder-Property.html#method_makeProtected" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AmakePrivate\u0028\u0029", + "name": "makePrivate", + "summary": "Makes\u0020the\u0020property\u0020private.", + "url": "classes/PhpParser-Builder-Property.html#method_makePrivate" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AmakeStatic\u0028\u0029", + "name": "makeStatic", + "summary": "Makes\u0020the\u0020property\u0020static.", + "url": "classes/PhpParser-Builder-Property.html#method_makeStatic" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AmakeReadonly\u0028\u0029", + "name": "makeReadonly", + "summary": "Makes\u0020the\u0020property\u0020readonly.", + "url": "classes/PhpParser-Builder-Property.html#method_makeReadonly" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AsetDefault\u0028\u0029", + "name": "setDefault", + "summary": "Sets\u0020default\u0020value\u0020for\u0020the\u0020property.", + "url": "classes/PhpParser-Builder-Property.html#method_setDefault" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AsetDocComment\u0028\u0029", + "name": "setDocComment", + "summary": "Sets\u0020doc\u0020comment\u0020for\u0020the\u0020property.", + "url": "classes/PhpParser-Builder-Property.html#method_setDocComment" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AsetType\u0028\u0029", + "name": "setType", + "summary": "Sets\u0020the\u0020property\u0020type\u0020for\u0020PHP\u00207.4\u002B.", + "url": "classes/PhpParser-Builder-Property.html#method_setType" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Property.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020class\u0020node.", + "url": "classes/PhpParser-Builder-Property.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html#property_default" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html#property_attributes" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html#property_type" + }, { + "fqsen": "\\PhpParser\\Builder\\Property\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Property.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_", + "name": "Trait_", + "summary": "", + "url": "classes/PhpParser-Builder-Trait.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020an\u0020interface\u0020builder.", + "url": "classes/PhpParser-Builder-Trait.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003AaddStmt\u0028\u0029", + "name": "addStmt", + "summary": "Adds\u0020a\u0020statement.", + "url": "classes/PhpParser-Builder-Trait.html#method_addStmt" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003AaddAttribute\u0028\u0029", + "name": "addAttribute", + "summary": "Adds\u0020an\u0020attribute\u0020group.", + "url": "classes/PhpParser-Builder-Trait.html#method_addAttribute" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020trait\u0020node.", + "url": "classes/PhpParser-Builder-Trait.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Trait.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003A\u0024uses", + "name": "uses", + "summary": "", + "url": "classes/PhpParser-Builder-Trait.html#property_uses" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003A\u0024properties", + "name": "properties", + "summary": "", + "url": "classes/PhpParser-Builder-Trait.html#property_properties" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003A\u0024methods", + "name": "methods", + "summary": "", + "url": "classes/PhpParser-Builder-Trait.html#property_methods" + }, { + "fqsen": "\\PhpParser\\Builder\\Trait_\u003A\u003A\u0024attributeGroups", + "name": "attributeGroups", + "summary": "", + "url": "classes/PhpParser-Builder-Trait.html#property_attributeGroups" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse", + "name": "TraitUse", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUse.html" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020trait\u0020use\u0020builder.", + "url": "classes/PhpParser-Builder-TraitUse.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse\u003A\u003Aand\u0028\u0029", + "name": "and", + "summary": "Adds\u0020used\u0020trait.", + "url": "classes/PhpParser-Builder-TraitUse.html#method_and" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse\u003A\u003Awith\u0028\u0029", + "name": "with", + "summary": "Adds\u0020trait\u0020adaptation.", + "url": "classes/PhpParser-Builder-TraitUse.html#method_with" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020node.", + "url": "classes/PhpParser-Builder-TraitUse.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse\u003A\u003A\u0024traits", + "name": "traits", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUse.html#property_traits" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUse\u003A\u003A\u0024adaptations", + "name": "adaptations", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUse.html#property_adaptations" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation", + "name": "TraitUseAdaptation", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020trait\u0020use\u0020adaptation\u0020builder.", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003Aas\u0028\u0029", + "name": "as", + "summary": "Sets\u0020alias\u0020of\u0020method.", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method_as" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003AmakePublic\u0028\u0029", + "name": "makePublic", + "summary": "Sets\u0020adaptated\u0020method\u0020public.", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method_makePublic" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003AmakeProtected\u0028\u0029", + "name": "makeProtected", + "summary": "Sets\u0020adaptated\u0020method\u0020protected.", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method_makeProtected" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003AmakePrivate\u0028\u0029", + "name": "makePrivate", + "summary": "Sets\u0020adaptated\u0020method\u0020private.", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method_makePrivate" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A\u0024insteadof", + "name": "insteadof", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#property_insteadof" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003AsetModifier\u0028\u0029", + "name": "setModifier", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method_setModifier" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020node.", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003ATYPE_UNDEFINED", + "name": "TYPE_UNDEFINED", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#constant_TYPE_UNDEFINED" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003ATYPE_ALIAS", + "name": "TYPE_ALIAS", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#constant_TYPE_ALIAS" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003ATYPE_PRECEDENCE", + "name": "TYPE_PRECEDENCE", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#constant_TYPE_PRECEDENCE" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#property_type" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A\u0024trait", + "name": "trait", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#property_trait" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A\u0024method", + "name": "method", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#property_method" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A\u0024modifier", + "name": "modifier", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#property_modifier" + }, { + "fqsen": "\\PhpParser\\Builder\\TraitUseAdaptation\u003A\u003A\u0024alias", + "name": "alias", + "summary": "", + "url": "classes/PhpParser-Builder-TraitUseAdaptation.html#property_alias" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_", + "name": "Use_", + "summary": "", + "url": "classes/PhpParser-Builder-Use.html" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020name\u0020use\u0020\u0028alias\u0029\u0020builder.", + "url": "classes/PhpParser-Builder-Use.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_\u003A\u003Aas\u0028\u0029", + "name": "as", + "summary": "Sets\u0020alias\u0020for\u0020used\u0020name.", + "url": "classes/PhpParser-Builder-Use.html#method_as" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020node.", + "url": "classes/PhpParser-Builder-Use.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Builder-Use.html#property_name" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Builder-Use.html#property_type" + }, { + "fqsen": "\\PhpParser\\Builder\\Use_\u003A\u003A\u0024alias", + "name": "alias", + "summary": "", + "url": "classes/PhpParser-Builder-Use.html#property_alias" + }, { + "fqsen": "\\PhpParser\\Builder", + "name": "Builder", + "summary": "", + "url": "classes/PhpParser-Builder.html" + }, { + "fqsen": "\\PhpParser\\Builder\u003A\u003AgetNode\u0028\u0029", + "name": "getNode", + "summary": "Returns\u0020the\u0020built\u0020node.", + "url": "classes/PhpParser-Builder.html#method_getNode" + }, { + "fqsen": "\\PhpParser\\BuilderFactory", + "name": "BuilderFactory", + "summary": "", + "url": "classes/PhpParser-BuilderFactory.html" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aattribute\u0028\u0029", + "name": "attribute", + "summary": "Creates\u0020an\u0020attribute\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_attribute" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Anamespace\u0028\u0029", + "name": "namespace", + "summary": "Creates\u0020a\u0020namespace\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_namespace" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aclass\u0028\u0029", + "name": "class", + "summary": "Creates\u0020a\u0020class\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_class" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Ainterface\u0028\u0029", + "name": "interface", + "summary": "Creates\u0020an\u0020interface\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_interface" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Atrait\u0028\u0029", + "name": "trait", + "summary": "Creates\u0020a\u0020trait\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_trait" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aenum\u0028\u0029", + "name": "enum", + "summary": "Creates\u0020an\u0020enum\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_enum" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AuseTrait\u0028\u0029", + "name": "useTrait", + "summary": "Creates\u0020a\u0020trait\u0020use\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_useTrait" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AtraitUseAdaptation\u0028\u0029", + "name": "traitUseAdaptation", + "summary": "Creates\u0020a\u0020trait\u0020use\u0020adaptation\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_traitUseAdaptation" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Amethod\u0028\u0029", + "name": "method", + "summary": "Creates\u0020a\u0020method\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_method" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aparam\u0028\u0029", + "name": "param", + "summary": "Creates\u0020a\u0020parameter\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_param" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aproperty\u0028\u0029", + "name": "property", + "summary": "Creates\u0020a\u0020property\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_property" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Afunction\u0028\u0029", + "name": "function", + "summary": "Creates\u0020a\u0020function\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_function" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Ause\u0028\u0029", + "name": "use", + "summary": "Creates\u0020a\u0020namespace\/class\u0020use\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_use" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AuseFunction\u0028\u0029", + "name": "useFunction", + "summary": "Creates\u0020a\u0020function\u0020use\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_useFunction" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AuseConst\u0028\u0029", + "name": "useConst", + "summary": "Creates\u0020a\u0020constant\u0020use\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_useConst" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AclassConst\u0028\u0029", + "name": "classConst", + "summary": "Creates\u0020a\u0020class\u0020constant\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_classConst" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AenumCase\u0028\u0029", + "name": "enumCase", + "summary": "Creates\u0020an\u0020enum\u0020case\u0020builder.", + "url": "classes/PhpParser-BuilderFactory.html#method_enumCase" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aval\u0028\u0029", + "name": "val", + "summary": "Creates\u0020node\u0020a\u0020for\u0020a\u0020literal\u0020value.", + "url": "classes/PhpParser-BuilderFactory.html#method_val" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Avar\u0028\u0029", + "name": "var", + "summary": "Creates\u0020variable\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_var" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aargs\u0028\u0029", + "name": "args", + "summary": "Normalizes\u0020an\u0020argument\u0020list.", + "url": "classes/PhpParser-BuilderFactory.html#method_args" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AfuncCall\u0028\u0029", + "name": "funcCall", + "summary": "Creates\u0020a\u0020function\u0020call\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_funcCall" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AmethodCall\u0028\u0029", + "name": "methodCall", + "summary": "Creates\u0020a\u0020method\u0020call\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_methodCall" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AstaticCall\u0028\u0029", + "name": "staticCall", + "summary": "Creates\u0020a\u0020static\u0020method\u0020call\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_staticCall" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Anew\u0028\u0029", + "name": "new", + "summary": "Creates\u0020an\u0020object\u0020creation\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_new" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AconstFetch\u0028\u0029", + "name": "constFetch", + "summary": "Creates\u0020a\u0020constant\u0020fetch\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_constFetch" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003ApropertyFetch\u0028\u0029", + "name": "propertyFetch", + "summary": "Creates\u0020a\u0020property\u0020fetch\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_propertyFetch" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AclassConstFetch\u0028\u0029", + "name": "classConstFetch", + "summary": "Creates\u0020a\u0020class\u0020constant\u0020fetch\u0020node.", + "url": "classes/PhpParser-BuilderFactory.html#method_classConstFetch" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003Aconcat\u0028\u0029", + "name": "concat", + "summary": "Creates\u0020nested\u0020Concat\u0020nodes\u0020from\u0020a\u0020list\u0020of\u0020expressions.", + "url": "classes/PhpParser-BuilderFactory.html#method_concat" + }, { + "fqsen": "\\PhpParser\\BuilderFactory\u003A\u003AnormalizeStringExpr\u0028\u0029", + "name": "normalizeStringExpr", + "summary": "", + "url": "classes/PhpParser-BuilderFactory.html#method_normalizeStringExpr" + }, { + "fqsen": "\\PhpParser\\Comment\\Doc", + "name": "Doc", + "summary": "", + "url": "classes/PhpParser-Comment-Doc.html" + }, { + "fqsen": "\\PhpParser\\Comment", + "name": "Comment", + "summary": "", + "url": "classes/PhpParser-Comment.html" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020comment\u0020node.", + "url": "classes/PhpParser-Comment.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetText\u0028\u0029", + "name": "getText", + "summary": "Gets\u0020the\u0020comment\u0020text.", + "url": "classes/PhpParser-Comment.html#method_getText" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Gets\u0020the\u0020line\u0020number\u0020the\u0020comment\u0020started\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getStartLine" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetStartFilePos\u0028\u0029", + "name": "getStartFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020the\u0020comment\u0020started\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getStartFilePos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetStartTokenPos\u0028\u0029", + "name": "getStartTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020the\u0020comment\u0020started\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getStartTokenPos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "Gets\u0020the\u0020line\u0020number\u0020the\u0020comment\u0020ends\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getEndLine" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetEndFilePos\u0028\u0029", + "name": "getEndFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020the\u0020comment\u0020ends\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getEndFilePos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetEndTokenPos\u0028\u0029", + "name": "getEndTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020the\u0020comment\u0020ends\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getEndTokenPos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetLine\u0028\u0029", + "name": "getLine", + "summary": "Gets\u0020the\u0020line\u0020number\u0020the\u0020comment\u0020started\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getLine" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetFilePos\u0028\u0029", + "name": "getFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020the\u0020comment\u0020started\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getFilePos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetTokenPos\u0028\u0029", + "name": "getTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020the\u0020comment\u0020started\u0020on.", + "url": "classes/PhpParser-Comment.html#method_getTokenPos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Gets\u0020the\u0020comment\u0020text.", + "url": "classes/PhpParser-Comment.html#method___toString" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetReformattedText\u0028\u0029", + "name": "getReformattedText", + "summary": "Gets\u0020the\u0020reformatted\u0020comment\u0020text.", + "url": "classes/PhpParser-Comment.html#method_getReformattedText" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AgetShortestWhitespacePrefixLen\u0028\u0029", + "name": "getShortestWhitespacePrefixLen", + "summary": "Get\u0020length\u0020of\u0020shortest\u0020whitespace\u0020prefix\u0020\u0028at\u0020the\u0020start\u0020of\u0020a\u0020line\u0029.", + "url": "classes/PhpParser-Comment.html#method_getShortestWhitespacePrefixLen" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "", + "url": "classes/PhpParser-Comment.html#method_jsonSerialize" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024text", + "name": "text", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_text" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024startLine", + "name": "startLine", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_startLine" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024startFilePos", + "name": "startFilePos", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_startFilePos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024startTokenPos", + "name": "startTokenPos", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_startTokenPos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024endLine", + "name": "endLine", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_endLine" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024endFilePos", + "name": "endFilePos", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_endFilePos" + }, { + "fqsen": "\\PhpParser\\Comment\u003A\u003A\u0024endTokenPos", + "name": "endTokenPos", + "summary": "", + "url": "classes/PhpParser-Comment.html#property_endTokenPos" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluationException", + "name": "ConstExprEvaluationException", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluationException.html" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator", + "name": "ConstExprEvaluator", + "summary": "Evaluates\u0020constant\u0020expressions.", + "url": "classes/PhpParser-ConstExprEvaluator.html" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020constant\u0020expression\u0020evaluator.", + "url": "classes/PhpParser-ConstExprEvaluator.html#method___construct" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003AevaluateSilently\u0028\u0029", + "name": "evaluateSilently", + "summary": "Silently\u0020evaluates\u0020a\u0020constant\u0020expression\u0020into\u0020a\u0020PHP\u0020value.", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluateSilently" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003AevaluateDirectly\u0028\u0029", + "name": "evaluateDirectly", + "summary": "Directly\u0020evaluates\u0020a\u0020constant\u0020expression\u0020into\u0020a\u0020PHP\u0020value.", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluateDirectly" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003Aevaluate\u0028\u0029", + "name": "evaluate", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluate" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003AevaluateArray\u0028\u0029", + "name": "evaluateArray", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluateArray" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003AevaluateTernary\u0028\u0029", + "name": "evaluateTernary", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluateTernary" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003AevaluateBinaryOp\u0028\u0029", + "name": "evaluateBinaryOp", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluateBinaryOp" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003AevaluateConstFetch\u0028\u0029", + "name": "evaluateConstFetch", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluator.html#method_evaluateConstFetch" + }, { + "fqsen": "\\PhpParser\\ConstExprEvaluator\u003A\u003A\u0024fallbackEvaluator", + "name": "fallbackEvaluator", + "summary": "", + "url": "classes/PhpParser-ConstExprEvaluator.html#property_fallbackEvaluator" + }, { + "fqsen": "\\PhpParser\\Error", + "name": "Error", + "summary": "", + "url": "classes/PhpParser-Error.html" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020an\u0020Exception\u0020signifying\u0020a\u0020parse\u0020error.", + "url": "classes/PhpParser-Error.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Gets\u0020the\u0020error\u0020message", + "url": "classes/PhpParser-Error.html#method_getRawMessage" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Gets\u0020the\u0020line\u0020the\u0020error\u0020starts\u0020in.", + "url": "classes/PhpParser-Error.html#method_getStartLine" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "Gets\u0020the\u0020line\u0020the\u0020error\u0020ends\u0020in.", + "url": "classes/PhpParser-Error.html#method_getEndLine" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetAttributes\u0028\u0029", + "name": "getAttributes", + "summary": "Gets\u0020the\u0020attributes\u0020of\u0020the\u0020node\/token\u0020the\u0020error\u0020occurred\u0020at.", + "url": "classes/PhpParser-Error.html#method_getAttributes" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AsetAttributes\u0028\u0029", + "name": "setAttributes", + "summary": "Sets\u0020the\u0020attributes\u0020of\u0020the\u0020node\/token\u0020the\u0020error\u0020occurred\u0020at.", + "url": "classes/PhpParser-Error.html#method_setAttributes" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AsetRawMessage\u0028\u0029", + "name": "setRawMessage", + "summary": "Sets\u0020the\u0020line\u0020of\u0020the\u0020PHP\u0020file\u0020the\u0020error\u0020occurred\u0020in.", + "url": "classes/PhpParser-Error.html#method_setRawMessage" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AsetStartLine\u0028\u0029", + "name": "setStartLine", + "summary": "Sets\u0020the\u0020line\u0020the\u0020error\u0020starts\u0020in.", + "url": "classes/PhpParser-Error.html#method_setStartLine" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AhasColumnInfo\u0028\u0029", + "name": "hasColumnInfo", + "summary": "Returns\u0020whether\u0020the\u0020error\u0020has\u0020start\u0020and\u0020end\u0020column\u0020information.", + "url": "classes/PhpParser-Error.html#method_hasColumnInfo" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetStartColumn\u0028\u0029", + "name": "getStartColumn", + "summary": "Gets\u0020the\u0020start\u0020column\u0020\u00281\u002Dbased\u0029\u0020into\u0020the\u0020line\u0020where\u0020the\u0020error\u0020started.", + "url": "classes/PhpParser-Error.html#method_getStartColumn" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetEndColumn\u0028\u0029", + "name": "getEndColumn", + "summary": "Gets\u0020the\u0020end\u0020column\u0020\u00281\u002Dbased\u0029\u0020into\u0020the\u0020line\u0020where\u0020the\u0020error\u0020ended.", + "url": "classes/PhpParser-Error.html#method_getEndColumn" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AgetMessageWithColumnInfo\u0028\u0029", + "name": "getMessageWithColumnInfo", + "summary": "Formats\u0020message\u0020including\u0020line\u0020and\u0020column\u0020information.", + "url": "classes/PhpParser-Error.html#method_getMessageWithColumnInfo" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AtoColumn\u0028\u0029", + "name": "toColumn", + "summary": "Converts\u0020a\u0020file\u0020offset\u0020into\u0020a\u0020column.", + "url": "classes/PhpParser-Error.html#method_toColumn" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003AupdateMessage\u0028\u0029", + "name": "updateMessage", + "summary": "Updates\u0020the\u0020exception\u0020message\u0020after\u0020a\u0020change\u0020to\u0020rawMessage\u0020or\u0020rawLine.", + "url": "classes/PhpParser-Error.html#method_updateMessage" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/PhpParser-Error.html#property_rawMessage" + }, { + "fqsen": "\\PhpParser\\Error\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/PhpParser-Error.html#property_attributes" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Collecting", + "name": "Collecting", + "summary": "Error\u0020handler\u0020that\u0020collects\u0020all\u0020errors\u0020into\u0020an\u0020array.", + "url": "classes/PhpParser-ErrorHandler-Collecting.html" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Collecting\u003A\u003AhandleError\u0028\u0029", + "name": "handleError", + "summary": "Handle\u0020an\u0020error\u0020generated\u0020during\u0020lexing,\u0020parsing\u0020or\u0020some\u0020other\u0020operation.", + "url": "classes/PhpParser-ErrorHandler-Collecting.html#method_handleError" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Collecting\u003A\u003AgetErrors\u0028\u0029", + "name": "getErrors", + "summary": "Get\u0020collected\u0020errors.", + "url": "classes/PhpParser-ErrorHandler-Collecting.html#method_getErrors" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Collecting\u003A\u003AhasErrors\u0028\u0029", + "name": "hasErrors", + "summary": "Check\u0020whether\u0020there\u0020are\u0020any\u0020errors.", + "url": "classes/PhpParser-ErrorHandler-Collecting.html#method_hasErrors" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Collecting\u003A\u003AclearErrors\u0028\u0029", + "name": "clearErrors", + "summary": "Reset\/clear\u0020collected\u0020errors.", + "url": "classes/PhpParser-ErrorHandler-Collecting.html#method_clearErrors" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Collecting\u003A\u003A\u0024errors", + "name": "errors", + "summary": "", + "url": "classes/PhpParser-ErrorHandler-Collecting.html#property_errors" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Throwing", + "name": "Throwing", + "summary": "Error\u0020handler\u0020that\u0020handles\u0020all\u0020errors\u0020by\u0020throwing\u0020them.", + "url": "classes/PhpParser-ErrorHandler-Throwing.html" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\\Throwing\u003A\u003AhandleError\u0028\u0029", + "name": "handleError", + "summary": "Handle\u0020an\u0020error\u0020generated\u0020during\u0020lexing,\u0020parsing\u0020or\u0020some\u0020other\u0020operation.", + "url": "classes/PhpParser-ErrorHandler-Throwing.html#method_handleError" + }, { + "fqsen": "\\PhpParser\\ErrorHandler", + "name": "ErrorHandler", + "summary": "", + "url": "classes/PhpParser-ErrorHandler.html" + }, { + "fqsen": "\\PhpParser\\ErrorHandler\u003A\u003AhandleError\u0028\u0029", + "name": "handleError", + "summary": "Handle\u0020an\u0020error\u0020generated\u0020during\u0020lexing,\u0020parsing\u0020or\u0020some\u0020other\u0020operation.", + "url": "classes/PhpParser-ErrorHandler.html#method_handleError" + }, { + "fqsen": "\\PhpParser\\JsonDecoder", + "name": "JsonDecoder", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003Adecode\u0028\u0029", + "name": "decode", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_decode" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003AdecodeRecursive\u0028\u0029", + "name": "decodeRecursive", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_decodeRecursive" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003AdecodeArray\u0028\u0029", + "name": "decodeArray", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_decodeArray" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003AdecodeNode\u0028\u0029", + "name": "decodeNode", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_decodeNode" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003AdecodeComment\u0028\u0029", + "name": "decodeComment", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_decodeComment" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003AreflectionClassFromNodeType\u0028\u0029", + "name": "reflectionClassFromNodeType", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_reflectionClassFromNodeType" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003AclassNameFromNodeType\u0028\u0029", + "name": "classNameFromNodeType", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#method_classNameFromNodeType" + }, { + "fqsen": "\\PhpParser\\JsonDecoder\u003A\u003A\u0024reflectionClassCache", + "name": "reflectionClassCache", + "summary": "", + "url": "classes/PhpParser-JsonDecoder.html#property_reflectionClassCache" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative", + "name": "Emulative", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Lexer.", + "url": "classes/PhpParser-Lexer-Emulative.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003AstartLexing\u0028\u0029", + "name": "startLexing", + "summary": "Initializes\u0020the\u0020lexer\u0020for\u0020lexing\u0020the\u0020provided\u0020source\u0020code.", + "url": "classes/PhpParser-Lexer-Emulative.html#method_startLexing" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003AisForwardEmulationNeeded\u0028\u0029", + "name": "isForwardEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#method_isForwardEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003AisReverseEmulationNeeded\u0028\u0029", + "name": "isReverseEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#method_isReverseEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003AsortPatches\u0028\u0029", + "name": "sortPatches", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#method_sortPatches" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003AfixupTokens\u0028\u0029", + "name": "fixupTokens", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#method_fixupTokens" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003AfixupErrors\u0028\u0029", + "name": "fixupErrors", + "summary": "Fixup\u0020line\u0020and\u0020position\u0020information\u0020in\u0020errors.", + "url": "classes/PhpParser-Lexer-Emulative.html#method_fixupErrors" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003APHP_7_3", + "name": "PHP_7_3", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#constant_PHP_7_3" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003APHP_7_4", + "name": "PHP_7_4", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#constant_PHP_7_4" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003APHP_8_0", + "name": "PHP_8_0", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#constant_PHP_8_0" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003APHP_8_1", + "name": "PHP_8_1", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#constant_PHP_8_1" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003APHP_8_2", + "name": "PHP_8_2", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#constant_PHP_8_2" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003A\u0024patches", + "name": "patches", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#property_patches" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003A\u0024emulators", + "name": "emulators", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#property_emulators" + }, { + "fqsen": "\\PhpParser\\Lexer\\Emulative\u003A\u003A\u0024targetPhpVersion", + "name": "targetPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-Emulative.html#property_targetPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator", + "name": "AttributeEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-AttributeEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-AttributeEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-AttributeEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-AttributeEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-AttributeEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\AttributeEmulator\u003A\u003ApreprocessCode\u0028\u0029", + "name": "preprocessCode", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-AttributeEmulator.html#method_preprocessCode" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator", + "name": "CoaleseEqualTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-CoaleseEqualTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-CoaleseEqualTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-CoaleseEqualTokenEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-CoaleseEqualTokenEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\CoaleseEqualTokenEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-CoaleseEqualTokenEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator", + "name": "EnumTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-EnumTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-EnumTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator\u003A\u003AgetKeywordString\u0028\u0029", + "name": "getKeywordString", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-EnumTokenEmulator.html#method_getKeywordString" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator\u003A\u003AgetKeywordToken\u0028\u0029", + "name": "getKeywordToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-EnumTokenEmulator.html#method_getKeywordToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\EnumTokenEmulator\u003A\u003AisKeywordContext\u0028\u0029", + "name": "isKeywordContext", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-EnumTokenEmulator.html#method_isKeywordContext" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator", + "name": "ExplicitOctalEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ExplicitOctalEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ExplicitOctalEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ExplicitOctalEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ExplicitOctalEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator\u003A\u003AresolveIntegerOrFloatToken\u0028\u0029", + "name": "resolveIntegerOrFloatToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ExplicitOctalEmulator.html#method_resolveIntegerOrFloatToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ExplicitOctalEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ExplicitOctalEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator", + "name": "FlexibleDocStringEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator\u003A\u003ApreprocessCode\u0028\u0029", + "name": "preprocessCode", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html#method_preprocessCode" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FlexibleDocStringEmulator\u003A\u003AFLEXIBLE_DOC_STRING_REGEX", + "name": "FLEXIBLE_DOC_STRING_REGEX", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FlexibleDocStringEmulator.html#constant_FLEXIBLE_DOC_STRING_REGEX" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator", + "name": "FnTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FnTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FnTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator\u003A\u003AgetKeywordString\u0028\u0029", + "name": "getKeywordString", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FnTokenEmulator.html#method_getKeywordString" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\FnTokenEmulator\u003A\u003AgetKeywordToken\u0028\u0029", + "name": "getKeywordToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-FnTokenEmulator.html#method_getKeywordToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator", + "name": "KeywordEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003AgetKeywordString\u0028\u0029", + "name": "getKeywordString", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_getKeywordString" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003AgetKeywordToken\u0028\u0029", + "name": "getKeywordToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_getKeywordToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003AisKeywordContext\u0028\u0029", + "name": "isKeywordContext", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_isKeywordContext" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003AgetPreviousNonSpaceToken\u0028\u0029", + "name": "getPreviousNonSpaceToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_getPreviousNonSpaceToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\KeywordEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-KeywordEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator", + "name": "MatchTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-MatchTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-MatchTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator\u003A\u003AgetKeywordString\u0028\u0029", + "name": "getKeywordString", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-MatchTokenEmulator.html#method_getKeywordString" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\MatchTokenEmulator\u003A\u003AgetKeywordToken\u0028\u0029", + "name": "getKeywordToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-MatchTokenEmulator.html#method_getKeywordToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator", + "name": "NullsafeTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NullsafeTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NullsafeTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NullsafeTokenEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NullsafeTokenEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NullsafeTokenEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NullsafeTokenEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator", + "name": "NumericLiteralSeparatorEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AresolveIntegerOrFloatToken\u0028\u0029", + "name": "resolveIntegerOrFloatToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#method_resolveIntegerOrFloatToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003ABIN", + "name": "BIN", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_BIN" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AHEX", + "name": "HEX", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_HEX" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003ADEC", + "name": "DEC", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_DEC" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003ASIMPLE_FLOAT", + "name": "SIMPLE_FLOAT", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_SIMPLE_FLOAT" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AEXP", + "name": "EXP", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_EXP" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003AFLOAT", + "name": "FLOAT", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_FLOAT" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\NumericLiteralSeparatorEmulator\u003A\u003ANUMBER", + "name": "NUMBER", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-NumericLiteralSeparatorEmulator.html#constant_NUMBER" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator", + "name": "ReadonlyFunctionTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyFunctionTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator\u003A\u003AgetKeywordString\u0028\u0029", + "name": "getKeywordString", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyFunctionTokenEmulator.html#method_getKeywordString" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator\u003A\u003AgetKeywordToken\u0028\u0029", + "name": "getKeywordToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyFunctionTokenEmulator.html#method_getKeywordToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyFunctionTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyFunctionTokenEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyFunctionTokenEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator", + "name": "ReadonlyTokenEmulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyTokenEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyTokenEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator\u003A\u003AgetKeywordString\u0028\u0029", + "name": "getKeywordString", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyTokenEmulator.html#method_getKeywordString" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator\u003A\u003AgetKeywordToken\u0028\u0029", + "name": "getKeywordToken", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyTokenEmulator.html#method_getKeywordToken" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReadonlyTokenEmulator\u003A\u003AisKeywordContext\u0028\u0029", + "name": "isKeywordContext", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReadonlyTokenEmulator.html#method_isKeywordContext" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator", + "name": "ReverseEmulator", + "summary": "Reverses\u0020emulation\u0020direction\u0020of\u0020the\u0020inner\u0020emulator.", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003AgetPhpVersion\u0028\u0029", + "name": "getPhpVersion", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#method_getPhpVersion" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003AisEmulationNeeded\u0028\u0029", + "name": "isEmulationNeeded", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#method_isEmulationNeeded" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003Aemulate\u0028\u0029", + "name": "emulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#method_emulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003AreverseEmulate\u0028\u0029", + "name": "reverseEmulate", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#method_reverseEmulate" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003ApreprocessCode\u0028\u0029", + "name": "preprocessCode", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#method_preprocessCode" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator\\ReverseEmulator\u003A\u003A\u0024emulator", + "name": "emulator", + "summary": "", + "url": "classes/PhpParser-Lexer-TokenEmulator-ReverseEmulator.html#property_emulator" + }, { + "fqsen": "\\PhpParser\\Lexer", + "name": "Lexer", + "summary": "", + "url": "classes/PhpParser-Lexer.html" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Lexer.", + "url": "classes/PhpParser-Lexer.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AstartLexing\u0028\u0029", + "name": "startLexing", + "summary": "Initializes\u0020the\u0020lexer\u0020for\u0020lexing\u0020the\u0020provided\u0020source\u0020code.", + "url": "classes/PhpParser-Lexer.html#method_startLexing" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AhandleInvalidCharacterRange\u0028\u0029", + "name": "handleInvalidCharacterRange", + "summary": "", + "url": "classes/PhpParser-Lexer.html#method_handleInvalidCharacterRange" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AisUnterminatedComment\u0028\u0029", + "name": "isUnterminatedComment", + "summary": "Check\u0020whether\u0020comment\u0020token\u0020is\u0020unterminated.", + "url": "classes/PhpParser-Lexer.html#method_isUnterminatedComment" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003ApostprocessTokens\u0028\u0029", + "name": "postprocessTokens", + "summary": "", + "url": "classes/PhpParser-Lexer.html#method_postprocessTokens" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AgetNextToken\u0028\u0029", + "name": "getNextToken", + "summary": "Fetches\u0020the\u0020next\u0020token.", + "url": "classes/PhpParser-Lexer.html#method_getNextToken" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AgetTokens\u0028\u0029", + "name": "getTokens", + "summary": "Returns\u0020the\u0020token\u0020array\u0020for\u0020current\u0020code.", + "url": "classes/PhpParser-Lexer.html#method_getTokens" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AhandleHaltCompiler\u0028\u0029", + "name": "handleHaltCompiler", + "summary": "Handles\u0020__halt_compiler\u0028\u0029\u0020by\u0020returning\u0020the\u0020text\u0020after\u0020it.", + "url": "classes/PhpParser-Lexer.html#method_handleHaltCompiler" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AdefineCompatibilityTokens\u0028\u0029", + "name": "defineCompatibilityTokens", + "summary": "", + "url": "classes/PhpParser-Lexer.html#method_defineCompatibilityTokens" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AcreateTokenMap\u0028\u0029", + "name": "createTokenMap", + "summary": "Creates\u0020the\u0020token\u0020map.", + "url": "classes/PhpParser-Lexer.html#method_createTokenMap" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003AcreateIdentifierTokenMap\u0028\u0029", + "name": "createIdentifierTokenMap", + "summary": "", + "url": "classes/PhpParser-Lexer.html#method_createIdentifierTokenMap" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024code", + "name": "code", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_code" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024tokens", + "name": "tokens", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_tokens" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024pos", + "name": "pos", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_pos" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024line", + "name": "line", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_line" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024filePos", + "name": "filePos", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_filePos" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024prevCloseTagHasNewline", + "name": "prevCloseTagHasNewline", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_prevCloseTagHasNewline" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024tokenMap", + "name": "tokenMap", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_tokenMap" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024dropTokens", + "name": "dropTokens", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_dropTokens" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024identifierTokens", + "name": "identifierTokens", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_identifierTokens" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeStartLineUsed", + "name": "attributeStartLineUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeStartLineUsed" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeEndLineUsed", + "name": "attributeEndLineUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeEndLineUsed" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeStartTokenPosUsed", + "name": "attributeStartTokenPosUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeStartTokenPosUsed" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeEndTokenPosUsed", + "name": "attributeEndTokenPosUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeEndTokenPosUsed" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeStartFilePosUsed", + "name": "attributeStartFilePosUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeStartFilePosUsed" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeEndFilePosUsed", + "name": "attributeEndFilePosUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeEndFilePosUsed" + }, { + "fqsen": "\\PhpParser\\Lexer\u003A\u003A\u0024attributeCommentsUsed", + "name": "attributeCommentsUsed", + "summary": "", + "url": "classes/PhpParser-Lexer.html#property_attributeCommentsUsed" + }, { + "fqsen": "\\PhpParser\\NameContext", + "name": "NameContext", + "summary": "", + "url": "classes/PhpParser-NameContext.html" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020name\u0020context.", + "url": "classes/PhpParser-NameContext.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AstartNamespace\u0028\u0029", + "name": "startNamespace", + "summary": "Start\u0020a\u0020new\u0020namespace.", + "url": "classes/PhpParser-NameContext.html#method_startNamespace" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AaddAlias\u0028\u0029", + "name": "addAlias", + "summary": "Add\u0020an\u0020alias\u0020\/\u0020import.", + "url": "classes/PhpParser-NameContext.html#method_addAlias" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "Get\u0020current\u0020namespace.", + "url": "classes/PhpParser-NameContext.html#method_getNamespace" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AgetResolvedName\u0028\u0029", + "name": "getResolvedName", + "summary": "Get\u0020resolved\u0020name.", + "url": "classes/PhpParser-NameContext.html#method_getResolvedName" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AgetResolvedClassName\u0028\u0029", + "name": "getResolvedClassName", + "summary": "Get\u0020resolved\u0020class\u0020name.", + "url": "classes/PhpParser-NameContext.html#method_getResolvedClassName" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AgetPossibleNames\u0028\u0029", + "name": "getPossibleNames", + "summary": "Get\u0020possible\u0020ways\u0020of\u0020writing\u0020a\u0020fully\u0020qualified\u0020name\u0020\u0028e.g.,\u0020by\u0020making\u0020use\u0020of\u0020aliases\u0029.", + "url": "classes/PhpParser-NameContext.html#method_getPossibleNames" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AgetShortName\u0028\u0029", + "name": "getShortName", + "summary": "Get\u0020shortest\u0020representation\u0020of\u0020this\u0020fully\u002Dqualified\u0020name.", + "url": "classes/PhpParser-NameContext.html#method_getShortName" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AresolveAlias\u0028\u0029", + "name": "resolveAlias", + "summary": "", + "url": "classes/PhpParser-NameContext.html#method_resolveAlias" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AgetNamespaceRelativeName\u0028\u0029", + "name": "getNamespaceRelativeName", + "summary": "", + "url": "classes/PhpParser-NameContext.html#method_getNamespaceRelativeName" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003AnormalizeConstName\u0028\u0029", + "name": "normalizeConstName", + "summary": "", + "url": "classes/PhpParser-NameContext.html#method_normalizeConstName" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "", + "url": "classes/PhpParser-NameContext.html#property_namespace" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "", + "url": "classes/PhpParser-NameContext.html#property_aliases" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003A\u0024origAliases", + "name": "origAliases", + "summary": "", + "url": "classes/PhpParser-NameContext.html#property_origAliases" + }, { + "fqsen": "\\PhpParser\\NameContext\u003A\u003A\u0024errorHandler", + "name": "errorHandler", + "summary": "", + "url": "classes/PhpParser-NameContext.html#property_errorHandler" + }, { + "fqsen": "\\PhpParser\\Node\\Arg", + "name": "Arg", + "summary": "", + "url": "classes/PhpParser-Node-Arg.html" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020function\u0020call\u0020argument\u0020node.", + "url": "classes/PhpParser-Node-Arg.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Arg.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Arg.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Arg.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Arg.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Arg.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Arg\u003A\u003A\u0024unpack", + "name": "unpack", + "summary": "", + "url": "classes/PhpParser-Node-Arg.html#property_unpack" + }, { + "fqsen": "\\PhpParser\\Node\\Attribute", + "name": "Attribute", + "summary": "", + "url": "classes/PhpParser-Node-Attribute.html" + }, { + "fqsen": "\\PhpParser\\Node\\Attribute\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-Attribute.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Attribute\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Attribute.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Attribute\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Attribute.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Attribute\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Attribute.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Attribute\u003A\u003A\u0024args", + "name": "args", + "summary": "", + "url": "classes/PhpParser-Node-Attribute.html#property_args" + }, { + "fqsen": "\\PhpParser\\Node\\AttributeGroup", + "name": "AttributeGroup", + "summary": "", + "url": "classes/PhpParser-Node-AttributeGroup.html" + }, { + "fqsen": "\\PhpParser\\Node\\AttributeGroup\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-AttributeGroup.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\AttributeGroup\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-AttributeGroup.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\AttributeGroup\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-AttributeGroup.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\AttributeGroup\u003A\u003A\u0024attrs", + "name": "attrs", + "summary": "", + "url": "classes/PhpParser-Node-AttributeGroup.html#property_attrs" + }, { + "fqsen": "\\PhpParser\\Node\\ComplexType", + "name": "ComplexType", + "summary": "This\u0020is\u0020a\u0020base\u0020class\u0020for\u0020complex\u0020types,\u0020including\u0020nullable\u0020types\u0020and\u0020union\u0020types.", + "url": "classes/PhpParser-Node-ComplexType.html" + }, { + "fqsen": "\\PhpParser\\Node\\Const_", + "name": "Const_", + "summary": "", + "url": "classes/PhpParser-Node-Const.html" + }, { + "fqsen": "\\PhpParser\\Node\\Const_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020const\u0020node\u0020for\u0020use\u0020in\u0020class\u0020const\u0020and\u0020const\u0020statements.", + "url": "classes/PhpParser-Node-Const.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Const_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Const.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Const_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Const.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Const_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Const.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Const_\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Const.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Const_\u003A\u003A\u0024namespacedName", + "name": "namespacedName", + "summary": "", + "url": "classes/PhpParser-Node-Const.html#property_namespacedName" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_", + "name": "Array_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Array.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020array\u0020node.", + "url": "classes/PhpParser-Node-Expr-Array.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Array.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Array.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_\u003A\u003AKIND_LONG", + "name": "KIND_LONG", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Array.html#constant_KIND_LONG" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_\u003A\u003AKIND_SHORT", + "name": "KIND_SHORT", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Array.html#constant_KIND_SHORT" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Array_\u003A\u003A\u0024items", + "name": "items", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Array.html#property_items" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayDimFetch", + "name": "ArrayDimFetch", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayDimFetch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayDimFetch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020array\u0020index\u0020fetch\u0020node.", + "url": "classes/PhpParser-Node-Expr-ArrayDimFetch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayDimFetch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ArrayDimFetch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayDimFetch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ArrayDimFetch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayDimFetch\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayDimFetch.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayDimFetch\u003A\u003A\u0024dim", + "name": "dim", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayDimFetch.html#property_dim" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem", + "name": "ArrayItem", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020array\u0020item\u0020node.", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#property_key" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrayItem\u003A\u003A\u0024unpack", + "name": "unpack", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrayItem.html#property_unpack" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction", + "name": "ArrowFunction", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AreturnsByRef\u0028\u0029", + "name": "returnsByRef", + "summary": "Whether\u0020to\u0020return\u0020by\u0020reference", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_returnsByRef" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AgetParams\u0028\u0029", + "name": "getParams", + "summary": "List\u0020of\u0020parameters", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_getParams" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AgetReturnType\u0028\u0029", + "name": "getReturnType", + "summary": "Get\u0020the\u0020declared\u0020return\u0020type\u0020or\u0020null", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_getReturnType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AgetAttrGroups\u0028\u0029", + "name": "getAttrGroups", + "summary": "Get\u0020PHP\u0020attribute\u0020groups.", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_getAttrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AgetStmts\u0028\u0029", + "name": "getStmts", + "summary": "The\u0020function\u0020body", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_getStmts" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A\u0024static", + "name": "static", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#property_static" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A\u0024params", + "name": "params", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#property_params" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A\u0024returnType", + "name": "returnType", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#property_returnType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ArrowFunction\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ArrowFunction.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Assign", + "name": "Assign", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Assign.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Assign\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020assignment\u0020node.", + "url": "classes/PhpParser-Node-Expr-Assign.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Assign\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Assign.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Assign\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Assign.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Assign\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Assign.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Assign\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Assign.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd", + "name": "BitwiseAnd", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-BitwiseAnd.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseAnd\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-BitwiseAnd.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr", + "name": "BitwiseOr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-BitwiseOr.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseOr\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-BitwiseOr.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor", + "name": "BitwiseXor", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-BitwiseXor.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\BitwiseXor\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-BitwiseXor.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Coalesce", + "name": "Coalesce", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Coalesce.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Coalesce\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Coalesce.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Concat", + "name": "Concat", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Concat.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Concat\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Concat.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Div", + "name": "Div", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Div.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Div\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Div.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Minus", + "name": "Minus", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Minus.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Minus\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Minus.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Mod", + "name": "Mod", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Mod.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Mod\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Mod.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Mul", + "name": "Mul", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Mul.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Mul\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Mul.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Plus", + "name": "Plus", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Plus.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Plus\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Plus.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Pow", + "name": "Pow", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-Pow.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\Pow\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-Pow.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft", + "name": "ShiftLeft", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-ShiftLeft.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\ShiftLeft\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-ShiftLeft.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\ShiftRight", + "name": "ShiftRight", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp-ShiftRight.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\\ShiftRight\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp-ShiftRight.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp", + "name": "AssignOp", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020compound\u0020assignment\u0020operation\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignOp.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-AssignOp.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignOp.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignRef", + "name": "AssignRef", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignRef.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignRef\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020assignment\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignRef.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignRef\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-AssignRef.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignRef\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-AssignRef.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignRef\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignRef.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignRef\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-AssignRef.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd", + "name": "BitwiseAnd", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseAnd.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseAnd.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseAnd\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseAnd.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr", + "name": "BitwiseOr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseOr.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseOr.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseOr\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseOr.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor", + "name": "BitwiseXor", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseXor.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseXor.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BitwiseXor\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BitwiseXor.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd", + "name": "BooleanAnd", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BooleanAnd.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BooleanAnd.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanAnd\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BooleanAnd.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr", + "name": "BooleanOr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BooleanOr.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BooleanOr.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\BooleanOr\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-BooleanOr.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce", + "name": "Coalesce", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Coalesce.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Coalesce.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Coalesce\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Coalesce.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Concat", + "name": "Concat", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Concat.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Concat\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Concat.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Concat\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Concat.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Div", + "name": "Div", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Div.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Div\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Div.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Div\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Div.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Equal", + "name": "Equal", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Equal.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Equal\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Equal.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Equal\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Equal.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Greater", + "name": "Greater", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Greater.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Greater\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Greater.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Greater\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Greater.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual", + "name": "GreaterOrEqual", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-GreaterOrEqual.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-GreaterOrEqual.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\GreaterOrEqual\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-GreaterOrEqual.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Identical", + "name": "Identical", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Identical.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Identical\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Identical.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Identical\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Identical.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd", + "name": "LogicalAnd", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalAnd.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalAnd.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalAnd\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalAnd.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr", + "name": "LogicalOr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalOr.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalOr.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalOr\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalOr.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor", + "name": "LogicalXor", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalXor.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalXor.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\LogicalXor\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-LogicalXor.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Minus", + "name": "Minus", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Minus.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Minus\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Minus.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Minus\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Minus.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Mod", + "name": "Mod", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Mod.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Mod\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Mod.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Mod\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Mod.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Mul", + "name": "Mul", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Mul.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Mul\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Mul.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Mul\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Mul.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual", + "name": "NotEqual", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-NotEqual.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-NotEqual.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\NotEqual\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-NotEqual.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical", + "name": "NotIdentical", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-NotIdentical.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-NotIdentical.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-NotIdentical.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Plus", + "name": "Plus", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Plus.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Plus\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Plus.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Plus\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Plus.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Pow", + "name": "Pow", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Pow.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Pow\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Pow.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Pow\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Pow.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft", + "name": "ShiftLeft", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-ShiftLeft.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-ShiftLeft.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftLeft\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-ShiftLeft.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight", + "name": "ShiftRight", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-ShiftRight.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-ShiftRight.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\ShiftRight\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-ShiftRight.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller", + "name": "Smaller", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Smaller.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Smaller.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Smaller\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Smaller.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual", + "name": "SmallerOrEqual", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-SmallerOrEqual.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-SmallerOrEqual.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\SmallerOrEqual\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-SmallerOrEqual.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship", + "name": "Spaceship", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Spaceship.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Spaceship.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\\Spaceship\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp-Spaceship.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp", + "name": "BinaryOp", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020binary\u0020operator\u0020node.", + "url": "classes/PhpParser-Node-Expr-BinaryOp.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-BinaryOp.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\u003A\u003AgetOperatorSigil\u0028\u0029", + "name": "getOperatorSigil", + "summary": "Get\u0020the\u0020operator\u0020sigil\u0020for\u0020this\u0020binary\u0020operation.", + "url": "classes/PhpParser-Node-Expr-BinaryOp.html#method_getOperatorSigil" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\u003A\u003A\u0024left", + "name": "left", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp.html#property_left" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp\u003A\u003A\u0024right", + "name": "right", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BinaryOp.html#property_right" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BitwiseNot", + "name": "BitwiseNot", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BitwiseNot.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BitwiseNot\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020bitwise\u0020not\u0020node.", + "url": "classes/PhpParser-Node-Expr-BitwiseNot.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BitwiseNot\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-BitwiseNot.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BitwiseNot\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BitwiseNot.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BitwiseNot\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BitwiseNot.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BooleanNot", + "name": "BooleanNot", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BooleanNot.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BooleanNot\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020boolean\u0020not\u0020node.", + "url": "classes/PhpParser-Node-Expr-BooleanNot.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BooleanNot\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-BooleanNot.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BooleanNot\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-BooleanNot.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BooleanNot\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-BooleanNot.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\CallLike", + "name": "CallLike", + "summary": "", + "url": "classes/PhpParser-Node-Expr-CallLike.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\CallLike\u003A\u003AgetRawArgs\u0028\u0029", + "name": "getRawArgs", + "summary": "Return\u0020raw\u0020arguments,\u0020which\u0020may\u0020be\u0020actual\u0020Args,\u0020or\u0020VariadicPlaceholders\u0020for\u0020first\u002Dclass\ncallables.", + "url": "classes/PhpParser-Node-Expr-CallLike.html#method_getRawArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\CallLike\u003A\u003AisFirstClassCallable\u0028\u0029", + "name": "isFirstClassCallable", + "summary": "Returns\u0020whether\u0020this\u0020call\u0020expression\u0020is\u0020actually\u0020a\u0020first\u0020class\u0020callable.", + "url": "classes/PhpParser-Node-Expr-CallLike.html#method_isFirstClassCallable" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\CallLike\u003A\u003AgetArgs\u0028\u0029", + "name": "getArgs", + "summary": "Assert\u0020that\u0020this\u0020is\u0020not\u0020a\u0020first\u002Dclass\u0020callable\u0020and\u0020return\u0020only\u0020ordinary\u0020Args.", + "url": "classes/PhpParser-Node-Expr-CallLike.html#method_getArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Array_", + "name": "Array_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Array.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Array_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-Array.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Bool_", + "name": "Bool_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Bool.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Bool_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-Bool.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Double", + "name": "Double", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Double.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Double\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-Double.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Double\u003A\u003AKIND_DOUBLE", + "name": "KIND_DOUBLE", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Double.html#constant_KIND_DOUBLE" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Double\u003A\u003AKIND_FLOAT", + "name": "KIND_FLOAT", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Double.html#constant_KIND_FLOAT" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Double\u003A\u003AKIND_REAL", + "name": "KIND_REAL", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Double.html#constant_KIND_REAL" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Int_", + "name": "Int_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Int.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Int_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-Int.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Object_", + "name": "Object_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Object.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Object_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-Object.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\String_", + "name": "String_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-String.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\String_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-String.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Unset_", + "name": "Unset_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast-Unset.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\\Unset_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast-Unset.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast", + "name": "Cast", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020cast\u0020node.", + "url": "classes/PhpParser-Node-Expr-Cast.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Cast.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Cast.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClassConstFetch", + "name": "ClassConstFetch", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ClassConstFetch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClassConstFetch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020const\u0020fetch\u0020node.", + "url": "classes/PhpParser-Node-Expr-ClassConstFetch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClassConstFetch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ClassConstFetch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClassConstFetch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ClassConstFetch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClassConstFetch\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ClassConstFetch.html#property_class" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClassConstFetch\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ClassConstFetch.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Clone_", + "name": "Clone_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Clone.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Clone_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020clone\u0020node.", + "url": "classes/PhpParser-Node-Expr-Clone.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Clone_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Clone.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Clone_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Clone.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Clone_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Clone.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure", + "name": "Closure", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020lambda\u0020function\u0020node.", + "url": "classes/PhpParser-Node-Expr-Closure.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AreturnsByRef\u0028\u0029", + "name": "returnsByRef", + "summary": "Whether\u0020to\u0020return\u0020by\u0020reference", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_returnsByRef" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AgetParams\u0028\u0029", + "name": "getParams", + "summary": "List\u0020of\u0020parameters", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_getParams" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AgetReturnType\u0028\u0029", + "name": "getReturnType", + "summary": "Get\u0020the\u0020declared\u0020return\u0020type\u0020or\u0020null", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_getReturnType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AgetStmts\u0028\u0029", + "name": "getStmts", + "summary": "The\u0020function\u0020body", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_getStmts" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AgetAttrGroups\u0028\u0029", + "name": "getAttrGroups", + "summary": "Get\u0020PHP\u0020attribute\u0020groups.", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_getAttrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Closure.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024static", + "name": "static", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_static" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024params", + "name": "params", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_params" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024uses", + "name": "uses", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_uses" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024returnType", + "name": "returnType", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_returnType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Closure\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Closure.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClosureUse", + "name": "ClosureUse", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ClosureUse.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClosureUse\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020closure\u0020use\u0020node.", + "url": "classes/PhpParser-Node-Expr-ClosureUse.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClosureUse\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ClosureUse.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClosureUse\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ClosureUse.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClosureUse\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ClosureUse.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ClosureUse\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ClosureUse.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ConstFetch", + "name": "ConstFetch", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ConstFetch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ConstFetch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020const\u0020fetch\u0020node.", + "url": "classes/PhpParser-Node-Expr-ConstFetch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ConstFetch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ConstFetch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ConstFetch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ConstFetch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ConstFetch\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ConstFetch.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Empty_", + "name": "Empty_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Empty.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Empty_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020empty\u0028\u0029\u0020node.", + "url": "classes/PhpParser-Node-Expr-Empty.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Empty_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Empty.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Empty_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Empty.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Empty_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Empty.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Error", + "name": "Error", + "summary": "Error\u0020node\u0020used\u0020during\u0020parsing\u0020with\u0020error\u0020recovery.", + "url": "classes/PhpParser-Node-Expr-Error.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Error\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020error\u0020node.", + "url": "classes/PhpParser-Node-Expr-Error.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Error\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Error.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Error\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Error.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ErrorSuppress", + "name": "ErrorSuppress", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ErrorSuppress.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ErrorSuppress\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020error\u0020suppress\u0020node.", + "url": "classes/PhpParser-Node-Expr-ErrorSuppress.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ErrorSuppress\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ErrorSuppress.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ErrorSuppress\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ErrorSuppress.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ErrorSuppress\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ErrorSuppress.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Eval_", + "name": "Eval_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Eval.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Eval_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020eval\u0028\u0029\u0020node.", + "url": "classes/PhpParser-Node-Expr-Eval.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Eval_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Eval.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Eval_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Eval.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Eval_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Eval.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_", + "name": "Exit_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Exit.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020exit\u0028\u0029\u0020node.", + "url": "classes/PhpParser-Node-Expr-Exit.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Exit.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Exit.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_\u003A\u003AKIND_EXIT", + "name": "KIND_EXIT", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Exit.html#constant_KIND_EXIT" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_\u003A\u003AKIND_DIE", + "name": "KIND_DIE", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Exit.html#constant_KIND_DIE" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Exit_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Exit.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall", + "name": "FuncCall", + "summary": "", + "url": "classes/PhpParser-Node-Expr-FuncCall.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020function\u0020call\u0020node.", + "url": "classes/PhpParser-Node-Expr-FuncCall.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-FuncCall.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-FuncCall.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall\u003A\u003AgetRawArgs\u0028\u0029", + "name": "getRawArgs", + "summary": "Return\u0020raw\u0020arguments,\u0020which\u0020may\u0020be\u0020actual\u0020Args,\u0020or\u0020VariadicPlaceholders\u0020for\u0020first\u002Dclass\ncallables.", + "url": "classes/PhpParser-Node-Expr-FuncCall.html#method_getRawArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-FuncCall.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\FuncCall\u003A\u003A\u0024args", + "name": "args", + "summary": "", + "url": "classes/PhpParser-Node-Expr-FuncCall.html#property_args" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_", + "name": "Include_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020include\u0020node.", + "url": "classes/PhpParser-Node-Expr-Include.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Include.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Include.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003ATYPE_INCLUDE", + "name": "TYPE_INCLUDE", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html#constant_TYPE_INCLUDE" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003ATYPE_INCLUDE_ONCE", + "name": "TYPE_INCLUDE_ONCE", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html#constant_TYPE_INCLUDE_ONCE" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003ATYPE_REQUIRE", + "name": "TYPE_REQUIRE", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html#constant_TYPE_REQUIRE" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003ATYPE_REQUIRE_ONCE", + "name": "TYPE_REQUIRE_ONCE", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html#constant_TYPE_REQUIRE_ONCE" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Include_\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Include.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Instanceof_", + "name": "Instanceof_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Instanceof.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Instanceof_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020instanceof\u0020check\u0020node.", + "url": "classes/PhpParser-Node-Expr-Instanceof.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Instanceof_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Instanceof.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Instanceof_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Instanceof.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Instanceof_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Instanceof.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Instanceof_\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Instanceof.html#property_class" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Isset_", + "name": "Isset_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Isset.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Isset_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020array\u0020node.", + "url": "classes/PhpParser-Node-Expr-Isset.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Isset_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Isset.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Isset_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Isset.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Isset_\u003A\u003A\u0024vars", + "name": "vars", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Isset.html#property_vars" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\List_", + "name": "List_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-List.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\List_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020list\u0028\u0029\u0020destructuring\u0020node.", + "url": "classes/PhpParser-Node-Expr-List.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\List_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-List.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\List_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-List.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\List_\u003A\u003A\u0024items", + "name": "items", + "summary": "", + "url": "classes/PhpParser-Node-Expr-List.html#property_items" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Match_", + "name": "Match_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Match.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Match_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-Expr-Match.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Match_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Match.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Match_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Match.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Match_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Match.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Match_\u003A\u003A\u0024arms", + "name": "arms", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Match.html#property_arms" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall", + "name": "MethodCall", + "summary": "", + "url": "classes/PhpParser-Node-Expr-MethodCall.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020function\u0020call\u0020node.", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003AgetRawArgs\u0028\u0029", + "name": "getRawArgs", + "summary": "Return\u0020raw\u0020arguments,\u0020which\u0020may\u0020be\u0020actual\u0020Args,\u0020or\u0020VariadicPlaceholders\u0020for\u0020first\u002Dclass\ncallables.", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#method_getRawArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\MethodCall\u003A\u003A\u0024args", + "name": "args", + "summary": "", + "url": "classes/PhpParser-Node-Expr-MethodCall.html#property_args" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_", + "name": "New_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-New.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020function\u0020call\u0020node.", + "url": "classes/PhpParser-Node-Expr-New.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-New.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-New.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_\u003A\u003AgetRawArgs\u0028\u0029", + "name": "getRawArgs", + "summary": "Return\u0020raw\u0020arguments,\u0020which\u0020may\u0020be\u0020actual\u0020Args,\u0020or\u0020VariadicPlaceholders\u0020for\u0020first\u002Dclass\ncallables.", + "url": "classes/PhpParser-Node-Expr-New.html#method_getRawArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/PhpParser-Node-Expr-New.html#property_class" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\New_\u003A\u003A\u0024args", + "name": "args", + "summary": "", + "url": "classes/PhpParser-Node-Expr-New.html#property_args" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall", + "name": "NullsafeMethodCall", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020nullsafe\u0020method\u0020call\u0020node.", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003AgetRawArgs\u0028\u0029", + "name": "getRawArgs", + "summary": "Return\u0020raw\u0020arguments,\u0020which\u0020may\u0020be\u0020actual\u0020Args,\u0020or\u0020VariadicPlaceholders\u0020for\u0020first\u002Dclass\ncallables.", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#method_getRawArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafeMethodCall\u003A\u003A\u0024args", + "name": "args", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafeMethodCall.html#property_args" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafePropertyFetch", + "name": "NullsafePropertyFetch", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafePropertyFetch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafePropertyFetch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020nullsafe\u0020property\u0020fetch\u0020node.", + "url": "classes/PhpParser-Node-Expr-NullsafePropertyFetch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafePropertyFetch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-NullsafePropertyFetch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafePropertyFetch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-NullsafePropertyFetch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafePropertyFetch\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafePropertyFetch.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\NullsafePropertyFetch\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-NullsafePropertyFetch.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostDec", + "name": "PostDec", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PostDec.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostDec\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020post\u0020decrement\u0020node.", + "url": "classes/PhpParser-Node-Expr-PostDec.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostDec\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-PostDec.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostDec\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-PostDec.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostDec\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PostDec.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostInc", + "name": "PostInc", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PostInc.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostInc\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020post\u0020increment\u0020node.", + "url": "classes/PhpParser-Node-Expr-PostInc.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostInc\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-PostInc.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostInc\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-PostInc.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PostInc\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PostInc.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreDec", + "name": "PreDec", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PreDec.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreDec\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020pre\u0020decrement\u0020node.", + "url": "classes/PhpParser-Node-Expr-PreDec.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreDec\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-PreDec.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreDec\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-PreDec.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreDec\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PreDec.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreInc", + "name": "PreInc", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PreInc.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreInc\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020pre\u0020increment\u0020node.", + "url": "classes/PhpParser-Node-Expr-PreInc.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreInc\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-PreInc.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreInc\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-PreInc.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PreInc\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PreInc.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Print_", + "name": "Print_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Print.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Print_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020print\u0028\u0029\u0020node.", + "url": "classes/PhpParser-Node-Expr-Print.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Print_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Print.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Print_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Print.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Print_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Print.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PropertyFetch", + "name": "PropertyFetch", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PropertyFetch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PropertyFetch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020function\u0020call\u0020node.", + "url": "classes/PhpParser-Node-Expr-PropertyFetch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PropertyFetch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-PropertyFetch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PropertyFetch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-PropertyFetch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PropertyFetch\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PropertyFetch.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\PropertyFetch\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-PropertyFetch.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ShellExec", + "name": "ShellExec", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ShellExec.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ShellExec\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020shell\u0020exec\u0020\u0028backtick\u0029\u0020node.", + "url": "classes/PhpParser-Node-Expr-ShellExec.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ShellExec\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-ShellExec.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ShellExec\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-ShellExec.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\ShellExec\u003A\u003A\u0024parts", + "name": "parts", + "summary": "", + "url": "classes/PhpParser-Node-Expr-ShellExec.html#property_parts" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall", + "name": "StaticCall", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticCall.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020static\u0020method\u0020call\u0020node.", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003AgetRawArgs\u0028\u0029", + "name": "getRawArgs", + "summary": "Return\u0020raw\u0020arguments,\u0020which\u0020may\u0020be\u0020actual\u0020Args,\u0020or\u0020VariadicPlaceholders\u0020for\u0020first\u002Dclass\ncallables.", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#method_getRawArgs" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#property_class" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticCall\u003A\u003A\u0024args", + "name": "args", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticCall.html#property_args" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticPropertyFetch", + "name": "StaticPropertyFetch", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticPropertyFetch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticPropertyFetch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020static\u0020property\u0020fetch\u0020node.", + "url": "classes/PhpParser-Node-Expr-StaticPropertyFetch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticPropertyFetch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-StaticPropertyFetch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticPropertyFetch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-StaticPropertyFetch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticPropertyFetch\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticPropertyFetch.html#property_class" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\StaticPropertyFetch\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-StaticPropertyFetch.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary", + "name": "Ternary", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Ternary.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020ternary\u0020operator\u0020node.", + "url": "classes/PhpParser-Node-Expr-Ternary.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Ternary.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Ternary.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Ternary.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary\u003A\u003A\u0024if", + "name": "if", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Ternary.html#property_if" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Ternary\u003A\u003A\u0024else", + "name": "else", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Ternary.html#property_else" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Throw_", + "name": "Throw_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Throw.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Throw_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020throw\u0020expression\u0020node.", + "url": "classes/PhpParser-Node-Expr-Throw.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Throw_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Throw.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Throw_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Throw.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Throw_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Throw.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryMinus", + "name": "UnaryMinus", + "summary": "", + "url": "classes/PhpParser-Node-Expr-UnaryMinus.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryMinus\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020unary\u0020minus\u0020node.", + "url": "classes/PhpParser-Node-Expr-UnaryMinus.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryMinus\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-UnaryMinus.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryMinus\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-UnaryMinus.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryMinus\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-UnaryMinus.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryPlus", + "name": "UnaryPlus", + "summary": "", + "url": "classes/PhpParser-Node-Expr-UnaryPlus.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryPlus\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020unary\u0020plus\u0020node.", + "url": "classes/PhpParser-Node-Expr-UnaryPlus.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryPlus\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-UnaryPlus.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryPlus\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-UnaryPlus.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\UnaryPlus\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-UnaryPlus.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Variable", + "name": "Variable", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Variable.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Variable\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020variable\u0020node.", + "url": "classes/PhpParser-Node-Expr-Variable.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Variable\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Variable.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Variable\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Variable.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Variable\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Variable.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Yield_", + "name": "Yield_", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Yield.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Yield_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020yield\u0020expression\u0020node.", + "url": "classes/PhpParser-Node-Expr-Yield.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Yield_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-Yield.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Yield_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-Yield.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Yield_\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Yield.html#property_key" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Yield_\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Expr-Yield.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\YieldFrom", + "name": "YieldFrom", + "summary": "", + "url": "classes/PhpParser-Node-Expr-YieldFrom.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\YieldFrom\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020\u0022yield\u0020from\u0022\u0020node.", + "url": "classes/PhpParser-Node-Expr-YieldFrom.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\YieldFrom\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Expr-YieldFrom.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\YieldFrom\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Expr-YieldFrom.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\YieldFrom\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr-YieldFrom.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Expr", + "name": "Expr", + "summary": "", + "url": "classes/PhpParser-Node-Expr.html" + }, { + "fqsen": "\\PhpParser\\Node\\FunctionLike", + "name": "FunctionLike", + "summary": "", + "url": "classes/PhpParser-Node-FunctionLike.html" + }, { + "fqsen": "\\PhpParser\\Node\\FunctionLike\u003A\u003AreturnsByRef\u0028\u0029", + "name": "returnsByRef", + "summary": "Whether\u0020to\u0020return\u0020by\u0020reference", + "url": "classes/PhpParser-Node-FunctionLike.html#method_returnsByRef" + }, { + "fqsen": "\\PhpParser\\Node\\FunctionLike\u003A\u003AgetParams\u0028\u0029", + "name": "getParams", + "summary": "List\u0020of\u0020parameters", + "url": "classes/PhpParser-Node-FunctionLike.html#method_getParams" + }, { + "fqsen": "\\PhpParser\\Node\\FunctionLike\u003A\u003AgetReturnType\u0028\u0029", + "name": "getReturnType", + "summary": "Get\u0020the\u0020declared\u0020return\u0020type\u0020or\u0020null", + "url": "classes/PhpParser-Node-FunctionLike.html#method_getReturnType" + }, { + "fqsen": "\\PhpParser\\Node\\FunctionLike\u003A\u003AgetStmts\u0028\u0029", + "name": "getStmts", + "summary": "The\u0020function\u0020body", + "url": "classes/PhpParser-Node-FunctionLike.html#method_getStmts" + }, { + "fqsen": "\\PhpParser\\Node\\FunctionLike\u003A\u003AgetAttrGroups\u0028\u0029", + "name": "getAttrGroups", + "summary": "Get\u0020PHP\u0020attribute\u0020groups.", + "url": "classes/PhpParser-Node-FunctionLike.html#method_getAttrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier", + "name": "Identifier", + "summary": "Represents\u0020a\u0020non\u002Dnamespaced\u0020name.\u0020Namespaced\u0020names\u0020are\u0020represented\u0020using\u0020Name\u0020nodes.", + "url": "classes/PhpParser-Node-Identifier.html" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020identifier\u0020node.", + "url": "classes/PhpParser-Node-Identifier.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Identifier.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "Get\u0020identifier\u0020as\u0020string.", + "url": "classes/PhpParser-Node-Identifier.html#method_toString" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003AtoLowerString\u0028\u0029", + "name": "toLowerString", + "summary": "Get\u0020lowercased\u0020identifier\u0020as\u0020string.", + "url": "classes/PhpParser-Node-Identifier.html#method_toLowerString" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003AisSpecialClassName\u0028\u0029", + "name": "isSpecialClassName", + "summary": "Checks\u0020whether\u0020the\u0020identifier\u0020is\u0020a\u0020special\u0020class\u0020name\u0020\u0028self,\u0020parent\u0020or\u0020static\u0029.", + "url": "classes/PhpParser-Node-Identifier.html#method_isSpecialClassName" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Get\u0020identifier\u0020as\u0020string.", + "url": "classes/PhpParser-Node-Identifier.html#method___toString" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Identifier.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Identifier.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Identifier\u003A\u003A\u0024specialClassNames", + "name": "specialClassNames", + "summary": "", + "url": "classes/PhpParser-Node-Identifier.html#property_specialClassNames" + }, { + "fqsen": "\\PhpParser\\Node\\IntersectionType", + "name": "IntersectionType", + "summary": "This\u0020is\u0020a\u0020base\u0020class\u0020for\u0020complex\u0020types,\u0020including\u0020nullable\u0020types\u0020and\u0020union\u0020types.", + "url": "classes/PhpParser-Node-IntersectionType.html" + }, { + "fqsen": "\\PhpParser\\Node\\IntersectionType\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020intersection\u0020type.", + "url": "classes/PhpParser-Node-IntersectionType.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\IntersectionType\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-IntersectionType.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\IntersectionType\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-IntersectionType.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\IntersectionType\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/PhpParser-Node-IntersectionType.html#property_types" + }, { + "fqsen": "\\PhpParser\\Node\\MatchArm", + "name": "MatchArm", + "summary": "", + "url": "classes/PhpParser-Node-MatchArm.html" + }, { + "fqsen": "\\PhpParser\\Node\\MatchArm\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-MatchArm.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\MatchArm\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-MatchArm.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\MatchArm\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-MatchArm.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\MatchArm\u003A\u003A\u0024conds", + "name": "conds", + "summary": "", + "url": "classes/PhpParser-Node-MatchArm.html#property_conds" + }, { + "fqsen": "\\PhpParser\\Node\\MatchArm\u003A\u003A\u0024body", + "name": "body", + "summary": "", + "url": "classes/PhpParser-Node-MatchArm.html#property_body" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified", + "name": "FullyQualified", + "summary": "", + "url": "classes/PhpParser-Node-Name-FullyQualified.html" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified\u003A\u003AisUnqualified\u0028\u0029", + "name": "isUnqualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020unqualified.\u0020\u0028E.g.\u0020Name\u0029", + "url": "classes/PhpParser-Node-Name-FullyQualified.html#method_isUnqualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified\u003A\u003AisQualified\u0028\u0029", + "name": "isQualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020qualified.\u0020\u0028E.g.\u0020Name\\Name\u0029", + "url": "classes/PhpParser-Node-Name-FullyQualified.html#method_isQualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified\u003A\u003AisFullyQualified\u0028\u0029", + "name": "isFullyQualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020fully\u0020qualified.\u0020\u0028E.g.\u0020\\Name\u0029", + "url": "classes/PhpParser-Node-Name-FullyQualified.html#method_isFullyQualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified\u003A\u003AisRelative\u0028\u0029", + "name": "isRelative", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020explicitly\u0020relative\u0020to\u0020the\u0020current\u0020namespace.\u0020\u0028E.g.\u0020namespace\\Name\u0029", + "url": "classes/PhpParser-Node-Name-FullyQualified.html#method_isRelative" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified\u003A\u003AtoCodeString\u0028\u0029", + "name": "toCodeString", + "summary": "Returns\u0020a\u0020string\u0020representation\u0020of\u0020the\u0020name\u0020as\u0020it\u0020would\u0020occur\u0020in\u0020code\u0020\u0028e.g.,\u0020including\nleading\u0020backslash\u0020for\u0020fully\u0020qualified\u0020names.", + "url": "classes/PhpParser-Node-Name-FullyQualified.html#method_toCodeString" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\FullyQualified\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Name-FullyQualified.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative", + "name": "Relative", + "summary": "", + "url": "classes/PhpParser-Node-Name-Relative.html" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative\u003A\u003AisUnqualified\u0028\u0029", + "name": "isUnqualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020unqualified.\u0020\u0028E.g.\u0020Name\u0029", + "url": "classes/PhpParser-Node-Name-Relative.html#method_isUnqualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative\u003A\u003AisQualified\u0028\u0029", + "name": "isQualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020qualified.\u0020\u0028E.g.\u0020Name\\Name\u0029", + "url": "classes/PhpParser-Node-Name-Relative.html#method_isQualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative\u003A\u003AisFullyQualified\u0028\u0029", + "name": "isFullyQualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020fully\u0020qualified.\u0020\u0028E.g.\u0020\\Name\u0029", + "url": "classes/PhpParser-Node-Name-Relative.html#method_isFullyQualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative\u003A\u003AisRelative\u0028\u0029", + "name": "isRelative", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020explicitly\u0020relative\u0020to\u0020the\u0020current\u0020namespace.\u0020\u0028E.g.\u0020namespace\\Name\u0029", + "url": "classes/PhpParser-Node-Name-Relative.html#method_isRelative" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative\u003A\u003AtoCodeString\u0028\u0029", + "name": "toCodeString", + "summary": "Returns\u0020a\u0020string\u0020representation\u0020of\u0020the\u0020name\u0020as\u0020it\u0020would\u0020occur\u0020in\u0020code\u0020\u0028e.g.,\u0020including\nleading\u0020backslash\u0020for\u0020fully\u0020qualified\u0020names.", + "url": "classes/PhpParser-Node-Name-Relative.html#method_toCodeString" + }, { + "fqsen": "\\PhpParser\\Node\\Name\\Relative\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Name-Relative.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Name", + "name": "Name", + "summary": "", + "url": "classes/PhpParser-Node-Name.html" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020name\u0020node.", + "url": "classes/PhpParser-Node-Name.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Name.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AgetParts\u0028\u0029", + "name": "getParts", + "summary": "Get\u0020parts\u0020of\u0020name\u0020\u0028split\u0020by\u0020the\u0020namespace\u0020separator\u0029.", + "url": "classes/PhpParser-Node-Name.html#method_getParts" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AgetFirst\u0028\u0029", + "name": "getFirst", + "summary": "Gets\u0020the\u0020first\u0020part\u0020of\u0020the\u0020name,\u0020i.e.\u0020everything\u0020before\u0020the\u0020first\u0020namespace\u0020separator.", + "url": "classes/PhpParser-Node-Name.html#method_getFirst" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AgetLast\u0028\u0029", + "name": "getLast", + "summary": "Gets\u0020the\u0020last\u0020part\u0020of\u0020the\u0020name,\u0020i.e.\u0020everything\u0020after\u0020the\u0020last\u0020namespace\u0020separator.", + "url": "classes/PhpParser-Node-Name.html#method_getLast" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AisUnqualified\u0028\u0029", + "name": "isUnqualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020unqualified.\u0020\u0028E.g.\u0020Name\u0029", + "url": "classes/PhpParser-Node-Name.html#method_isUnqualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AisQualified\u0028\u0029", + "name": "isQualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020qualified.\u0020\u0028E.g.\u0020Name\\Name\u0029", + "url": "classes/PhpParser-Node-Name.html#method_isQualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AisFullyQualified\u0028\u0029", + "name": "isFullyQualified", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020fully\u0020qualified.\u0020\u0028E.g.\u0020\\Name\u0029", + "url": "classes/PhpParser-Node-Name.html#method_isFullyQualified" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AisRelative\u0028\u0029", + "name": "isRelative", + "summary": "Checks\u0020whether\u0020the\u0020name\u0020is\u0020explicitly\u0020relative\u0020to\u0020the\u0020current\u0020namespace.\u0020\u0028E.g.\u0020namespace\\Name\u0029", + "url": "classes/PhpParser-Node-Name.html#method_isRelative" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "Returns\u0020a\u0020string\u0020representation\u0020of\u0020the\u0020name\u0020itself,\u0020without\u0020taking\u0020the\u0020name\u0020type\u0020into\naccount\u0020\u0028e.g.,\u0020not\u0020including\u0020a\u0020leading\u0020backslash\u0020for\u0020fully\u0020qualified\u0020names\u0029.", + "url": "classes/PhpParser-Node-Name.html#method_toString" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AtoCodeString\u0028\u0029", + "name": "toCodeString", + "summary": "Returns\u0020a\u0020string\u0020representation\u0020of\u0020the\u0020name\u0020as\u0020it\u0020would\u0020occur\u0020in\u0020code\u0020\u0028e.g.,\u0020including\nleading\u0020backslash\u0020for\u0020fully\u0020qualified\u0020names.", + "url": "classes/PhpParser-Node-Name.html#method_toCodeString" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AtoLowerString\u0028\u0029", + "name": "toLowerString", + "summary": "Returns\u0020lowercased\u0020string\u0020representation\u0020of\u0020the\u0020name,\u0020without\u0020taking\u0020the\u0020name\u0020type\u0020into\naccount\u0020\u0028e.g.,\u0020no\u0020leading\u0020backslash\u0020for\u0020fully\u0020qualified\u0020names\u0029.", + "url": "classes/PhpParser-Node-Name.html#method_toLowerString" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AisSpecialClassName\u0028\u0029", + "name": "isSpecialClassName", + "summary": "Checks\u0020whether\u0020the\u0020identifier\u0020is\u0020a\u0020special\u0020class\u0020name\u0020\u0028self,\u0020parent\u0020or\u0020static\u0029.", + "url": "classes/PhpParser-Node-Name.html#method_isSpecialClassName" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Returns\u0020a\u0020string\u0020representation\u0020of\u0020the\u0020name\u0020by\u0020imploding\u0020the\u0020namespace\u0020parts\u0020with\u0020the\nnamespace\u0020separator.", + "url": "classes/PhpParser-Node-Name.html#method___toString" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "Gets\u0020a\u0020slice\u0020of\u0020a\u0020name\u0020\u0028similar\u0020to\u0020array_slice\u0029.", + "url": "classes/PhpParser-Node-Name.html#method_slice" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003Aconcat\u0028\u0029", + "name": "concat", + "summary": "Concatenate\u0020two\u0020names,\u0020yielding\u0020a\u0020new\u0020Name\u0020instance.", + "url": "classes/PhpParser-Node-Name.html#method_concat" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AprepareName\u0028\u0029", + "name": "prepareName", + "summary": "Prepares\u0020a\u0020\u0028string,\u0020array\u0020or\u0020Name\u0020node\u0029\u0020name\u0020for\u0020use\u0020in\u0020name\u0020changing\u0020methods\u0020by\u0020converting\nit\u0020to\u0020an\u0020array.", + "url": "classes/PhpParser-Node-Name.html#method_prepareName" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Name.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003A\u0024parts", + "name": "parts", + "summary": "", + "url": "classes/PhpParser-Node-Name.html#property_parts" + }, { + "fqsen": "\\PhpParser\\Node\\Name\u003A\u003A\u0024specialClassNames", + "name": "specialClassNames", + "summary": "", + "url": "classes/PhpParser-Node-Name.html#property_specialClassNames" + }, { + "fqsen": "\\PhpParser\\Node\\NullableType", + "name": "NullableType", + "summary": "This\u0020is\u0020a\u0020base\u0020class\u0020for\u0020complex\u0020types,\u0020including\u0020nullable\u0020types\u0020and\u0020union\u0020types.", + "url": "classes/PhpParser-Node-NullableType.html" + }, { + "fqsen": "\\PhpParser\\Node\\NullableType\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020nullable\u0020type\u0020\u0028wrapping\u0020another\u0020type\u0029.", + "url": "classes/PhpParser-Node-NullableType.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\NullableType\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-NullableType.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\NullableType\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-NullableType.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\NullableType\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-NullableType.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Param", + "name": "Param", + "summary": "", + "url": "classes/PhpParser-Node-Param.html" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020parameter\u0020node.", + "url": "classes/PhpParser-Node-Param.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Param.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Param.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024variadic", + "name": "variadic", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_variadic" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_default" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Node\\Param\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Param.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\DNumber", + "name": "DNumber", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-DNumber.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\DNumber\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020float\u0020number\u0020scalar\u0020node.", + "url": "classes/PhpParser-Node-Scalar-DNumber.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\DNumber\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Scalar-DNumber.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\DNumber\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-DNumber.html#method_fromString" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\DNumber\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-DNumber.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\DNumber\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-DNumber.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\Encapsed", + "name": "Encapsed", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-Encapsed.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\Encapsed\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020encapsed\u0020string\u0020node.", + "url": "classes/PhpParser-Node-Scalar-Encapsed.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\Encapsed\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Scalar-Encapsed.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\Encapsed\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-Encapsed.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\Encapsed\u003A\u003A\u0024parts", + "name": "parts", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-Encapsed.html#property_parts" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\EncapsedStringPart", + "name": "EncapsedStringPart", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-EncapsedStringPart.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\EncapsedStringPart\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020node\u0020representing\u0020a\u0020string\u0020part\u0020of\u0020an\u0020encapsed\u0020string.", + "url": "classes/PhpParser-Node-Scalar-EncapsedStringPart.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\EncapsedStringPart\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Scalar-EncapsedStringPart.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\EncapsedStringPart\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-EncapsedStringPart.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\EncapsedStringPart\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-EncapsedStringPart.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber", + "name": "LNumber", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-LNumber.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020integer\u0020number\u0020scalar\u0020node.", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "Constructs\u0020an\u0020LNumber\u0020node\u0020from\u0020a\u0020string\u0020number\u0020literal.", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#method_fromString" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AKIND_BIN", + "name": "KIND_BIN", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#constant_KIND_BIN" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AKIND_OCT", + "name": "KIND_OCT", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#constant_KIND_OCT" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AKIND_DEC", + "name": "KIND_DEC", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#constant_KIND_DEC" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003AKIND_HEX", + "name": "KIND_HEX", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#constant_KIND_HEX" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\LNumber\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-LNumber.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Class_", + "name": "Class_", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Class.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Class_\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Class.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Class_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Class.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Dir", + "name": "Dir", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Dir.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Dir\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Dir.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Dir\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Dir.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\File", + "name": "File", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-File.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\File\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-File.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\File\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-File.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Function_", + "name": "Function_", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Function.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Function_\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Function.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Function_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Function.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Line", + "name": "Line", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Line.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Line\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Line.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Line\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Line.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Method", + "name": "Method", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Method.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Method\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Method.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Method\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Method.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_", + "name": "Namespace_", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Namespace.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Namespace.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Namespace_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Namespace.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_", + "name": "Trait_", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Trait.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Trait.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\\Trait_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst-Trait.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst", + "name": "MagicConst", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-MagicConst.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020magic\u0020constant\u0020node.", + "url": "classes/PhpParser-Node-Scalar-MagicConst.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Scalar-MagicConst.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020name\u0020of\u0020magic\u0020constant.", + "url": "classes/PhpParser-Node-Scalar-MagicConst.html#method_getName" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_", + "name": "String_", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020string\u0020scalar\u0020node.", + "url": "classes/PhpParser-Node-Scalar-String.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Scalar-String.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#method_fromString" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AcodePointToUtf8\u0028\u0029", + "name": "codePointToUtf8", + "summary": "Converts\u0020a\u0020Unicode\u0020code\u0020point\u0020to\u0020its\u0020UTF\u002D8\u0020encoded\u0020representation.", + "url": "classes/PhpParser-Node-Scalar-String.html#method_codePointToUtf8" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Scalar-String.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AKIND_SINGLE_QUOTED", + "name": "KIND_SINGLE_QUOTED", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#constant_KIND_SINGLE_QUOTED" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AKIND_DOUBLE_QUOTED", + "name": "KIND_DOUBLE_QUOTED", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#constant_KIND_DOUBLE_QUOTED" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AKIND_HEREDOC", + "name": "KIND_HEREDOC", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#constant_KIND_HEREDOC" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003AKIND_NOWDOC", + "name": "KIND_NOWDOC", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#constant_KIND_NOWDOC" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\String_\u003A\u003A\u0024replacements", + "name": "replacements", + "summary": "", + "url": "classes/PhpParser-Node-Scalar-String.html#property_replacements" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar", + "name": "Scalar", + "summary": "", + "url": "classes/PhpParser-Node-Scalar.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Break_", + "name": "Break_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Break.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Break_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020break\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Break.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Break_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Break.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Break_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Break.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Break_\u003A\u003A\u0024num", + "name": "num", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Break.html#property_num" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Case_", + "name": "Case_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Case.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Case_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020case\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Case.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Case_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Case.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Case_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Case.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Case_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Case.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Case_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Case.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_", + "name": "Catch_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Catch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020catch\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Catch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Catch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Catch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Catch.html#property_types" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Catch.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Catch_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Catch.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_", + "name": "Class_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Class.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Class.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AisAbstract\u0028\u0029", + "name": "isAbstract", + "summary": "Whether\u0020the\u0020class\u0020is\u0020explicitly\u0020abstract.", + "url": "classes/PhpParser-Node-Stmt-Class.html#method_isAbstract" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AisFinal\u0028\u0029", + "name": "isFinal", + "summary": "Whether\u0020the\u0020class\u0020is\u0020final.", + "url": "classes/PhpParser-Node-Stmt-Class.html#method_isFinal" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AisReadonly\u0028\u0029", + "name": "isReadonly", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#method_isReadonly" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AisAnonymous\u0028\u0029", + "name": "isAnonymous", + "summary": "Whether\u0020the\u0020class\u0020is\u0020anonymous.", + "url": "classes/PhpParser-Node-Stmt-Class.html#method_isAnonymous" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Class.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_PUBLIC", + "name": "MODIFIER_PUBLIC", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_PUBLIC" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_PROTECTED", + "name": "MODIFIER_PROTECTED", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_PROTECTED" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_PRIVATE", + "name": "MODIFIER_PRIVATE", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_PRIVATE" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_STATIC", + "name": "MODIFIER_STATIC", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_STATIC" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_ABSTRACT", + "name": "MODIFIER_ABSTRACT", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_ABSTRACT" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_FINAL", + "name": "MODIFIER_FINAL", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_FINAL" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AMODIFIER_READONLY", + "name": "MODIFIER_READONLY", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_MODIFIER_READONLY" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003AVISIBILITY_MODIFIER_MASK", + "name": "VISIBILITY_MODIFIER_MASK", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#constant_VISIBILITY_MODIFIER_MASK" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003A\u0024extends", + "name": "extends", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#property_extends" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Class_\u003A\u003A\u0024implements", + "name": "implements", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Class.html#property_implements" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst", + "name": "ClassConst", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020const\u0020list\u0020node.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003AisPublic\u0028\u0029", + "name": "isPublic", + "summary": "Whether\u0020constant\u0020is\u0020explicitly\u0020or\u0020implicitly\u0020public.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method_isPublic" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003AisProtected\u0028\u0029", + "name": "isProtected", + "summary": "Whether\u0020constant\u0020is\u0020protected.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method_isProtected" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003AisPrivate\u0028\u0029", + "name": "isPrivate", + "summary": "Whether\u0020constant\u0020is\u0020private.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method_isPrivate" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003AisFinal\u0028\u0029", + "name": "isFinal", + "summary": "Whether\u0020constant\u0020is\u0020final.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method_isFinal" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003A\u0024consts", + "name": "consts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#property_consts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassConst\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassConst.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike", + "name": "ClassLike", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003AgetTraitUses\u0028\u0029", + "name": "getTraitUses", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#method_getTraitUses" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003AgetConstants\u0028\u0029", + "name": "getConstants", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#method_getConstants" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003AgetProperties\u0028\u0029", + "name": "getProperties", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#method_getProperties" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003AgetProperty\u0028\u0029", + "name": "getProperty", + "summary": "Gets\u0020property\u0020with\u0020the\u0020given\u0020name\u0020defined\u0020directly\u0020in\u0020this\u0020class\/interface\/trait.", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#method_getProperty" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003AgetMethods\u0028\u0029", + "name": "getMethods", + "summary": "Gets\u0020all\u0020methods\u0020defined\u0020directly\u0020in\u0020this\u0020class\/interface\/trait", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#method_getMethods" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003AgetMethod\u0028\u0029", + "name": "getMethod", + "summary": "Gets\u0020method\u0020with\u0020the\u0020given\u0020name\u0020defined\u0020directly\u0020in\u0020this\u0020class\/interface\/trait.", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#method_getMethod" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassLike\u003A\u003A\u0024namespacedName", + "name": "namespacedName", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassLike.html#property_namespacedName" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod", + "name": "ClassMethod", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020method\u0020node.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AreturnsByRef\u0028\u0029", + "name": "returnsByRef", + "summary": "Whether\u0020to\u0020return\u0020by\u0020reference", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_returnsByRef" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AgetParams\u0028\u0029", + "name": "getParams", + "summary": "List\u0020of\u0020parameters", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_getParams" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AgetReturnType\u0028\u0029", + "name": "getReturnType", + "summary": "Get\u0020the\u0020declared\u0020return\u0020type\u0020or\u0020null", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_getReturnType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AgetStmts\u0028\u0029", + "name": "getStmts", + "summary": "The\u0020function\u0020body", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_getStmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AgetAttrGroups\u0028\u0029", + "name": "getAttrGroups", + "summary": "Get\u0020PHP\u0020attribute\u0020groups.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_getAttrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisPublic\u0028\u0029", + "name": "isPublic", + "summary": "Whether\u0020the\u0020method\u0020is\u0020explicitly\u0020or\u0020implicitly\u0020public.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isPublic" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisProtected\u0028\u0029", + "name": "isProtected", + "summary": "Whether\u0020the\u0020method\u0020is\u0020protected.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isProtected" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisPrivate\u0028\u0029", + "name": "isPrivate", + "summary": "Whether\u0020the\u0020method\u0020is\u0020private.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isPrivate" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisAbstract\u0028\u0029", + "name": "isAbstract", + "summary": "Whether\u0020the\u0020method\u0020is\u0020abstract.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isAbstract" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisFinal\u0028\u0029", + "name": "isFinal", + "summary": "Whether\u0020the\u0020method\u0020is\u0020final.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isFinal" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisStatic\u0028\u0029", + "name": "isStatic", + "summary": "Whether\u0020the\u0020method\u0020is\u0020static.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isStatic" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AisMagic\u0028\u0029", + "name": "isMagic", + "summary": "Whether\u0020the\u0020method\u0020is\u0020magic.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_isMagic" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024params", + "name": "params", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_params" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024returnType", + "name": "returnType", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_returnType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ClassMethod\u003A\u003A\u0024magicNames", + "name": "magicNames", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ClassMethod.html#property_magicNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Const_", + "name": "Const_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Const.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Const_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020const\u0020list\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Const.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Const_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Const.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Const_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Const.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Const_\u003A\u003A\u0024consts", + "name": "consts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Const.html#property_consts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Continue_", + "name": "Continue_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Continue.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Continue_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020continue\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Continue.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Continue_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Continue.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Continue_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Continue.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Continue_\u003A\u003A\u0024num", + "name": "num", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Continue.html#property_num" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Declare_", + "name": "Declare_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Declare.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Declare_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020declare\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Declare.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Declare_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Declare.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Declare_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Declare.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Declare_\u003A\u003A\u0024declares", + "name": "declares", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Declare.html#property_declares" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Declare_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Declare.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\DeclareDeclare", + "name": "DeclareDeclare", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-DeclareDeclare.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\DeclareDeclare\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020declare\u0020key\u003D\u003Evalue\u0020pair\u0020node.", + "url": "classes/PhpParser-Node-Stmt-DeclareDeclare.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\DeclareDeclare\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-DeclareDeclare.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\DeclareDeclare\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-DeclareDeclare.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\DeclareDeclare\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-DeclareDeclare.html#property_key" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\DeclareDeclare\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-DeclareDeclare.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Do_", + "name": "Do_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Do.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Do_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020do\u0020while\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Do.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Do_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Do.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Do_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Do.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Do_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Do.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Do_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Do.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Echo_", + "name": "Echo_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Echo.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Echo_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020echo\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Echo.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Echo_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Echo.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Echo_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Echo.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Echo_\u003A\u003A\u0024exprs", + "name": "exprs", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Echo.html#property_exprs" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Else_", + "name": "Else_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Else.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Else_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020else\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Else.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Else_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Else.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Else_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Else.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Else_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Else.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ElseIf_", + "name": "ElseIf_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ElseIf.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ElseIf_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020elseif\u0020node.", + "url": "classes/PhpParser-Node-Stmt-ElseIf.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ElseIf_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-ElseIf.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ElseIf_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-ElseIf.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ElseIf_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ElseIf.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\ElseIf_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-ElseIf.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Enum_", + "name": "Enum_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Enum.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Enum_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-Stmt-Enum.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Enum_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Enum.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Enum_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Enum.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Enum_\u003A\u003A\u0024scalarType", + "name": "scalarType", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Enum.html#property_scalarType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Enum_\u003A\u003A\u0024implements", + "name": "implements", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Enum.html#property_implements" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase", + "name": "EnumCase", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\EnumCase\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-EnumCase.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Expression", + "name": "Expression", + "summary": "Represents\u0020statements\u0020of\u0020type\u0020\u0022expr\u003B\u0022", + "url": "classes/PhpParser-Node-Stmt-Expression.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Expression\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020expression\u0020statement.", + "url": "classes/PhpParser-Node-Stmt-Expression.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Expression\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Expression.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Expression\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Expression.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Expression\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Expression.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Finally_", + "name": "Finally_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Finally.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Finally_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020finally\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Finally.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Finally_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Finally.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Finally_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Finally.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Finally_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Finally.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_", + "name": "For_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-For.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020for\u0020loop\u0020node.", + "url": "classes/PhpParser-Node-Stmt-For.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-For.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-For.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003A\u0024init", + "name": "init", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-For.html#property_init" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-For.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003A\u0024loop", + "name": "loop", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-For.html#property_loop" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\For_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-For.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_", + "name": "Foreach_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Foreach.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020foreach\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003A\u0024keyVar", + "name": "keyVar", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#property_keyVar" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003A\u0024valueVar", + "name": "valueVar", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#property_valueVar" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Foreach_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Foreach.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_", + "name": "Function_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020function\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Function.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AreturnsByRef\u0028\u0029", + "name": "returnsByRef", + "summary": "Whether\u0020to\u0020return\u0020by\u0020reference", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_returnsByRef" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AgetParams\u0028\u0029", + "name": "getParams", + "summary": "List\u0020of\u0020parameters", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_getParams" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AgetReturnType\u0028\u0029", + "name": "getReturnType", + "summary": "Get\u0020the\u0020declared\u0020return\u0020type\u0020or\u0020null", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_getReturnType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AgetAttrGroups\u0028\u0029", + "name": "getAttrGroups", + "summary": "Get\u0020PHP\u0020attribute\u0020groups.", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_getAttrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AgetStmts\u0028\u0029", + "name": "getStmts", + "summary": "The\u0020function\u0020body", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_getStmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Function.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024byRef", + "name": "byRef", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_byRef" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024params", + "name": "params", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_params" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024returnType", + "name": "returnType", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_returnType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Function_\u003A\u003A\u0024namespacedName", + "name": "namespacedName", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Function.html#property_namespacedName" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Global_", + "name": "Global_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Global.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Global_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020global\u0020variables\u0020list\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Global.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Global_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Global.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Global_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Global.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Global_\u003A\u003A\u0024vars", + "name": "vars", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Global.html#property_vars" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Goto_", + "name": "Goto_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Goto.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Goto_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020goto\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Goto.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Goto_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Goto.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Goto_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Goto.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Goto_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Goto.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse", + "name": "GroupUse", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020group\u0020use\u0020node.", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html#property_prefix" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\GroupUse\u003A\u003A\u0024uses", + "name": "uses", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-GroupUse.html#property_uses" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\HaltCompiler", + "name": "HaltCompiler", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-HaltCompiler.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\HaltCompiler\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020__halt_compiler\u0020node.", + "url": "classes/PhpParser-Node-Stmt-HaltCompiler.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\HaltCompiler\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-HaltCompiler.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\HaltCompiler\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-HaltCompiler.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\HaltCompiler\u003A\u003A\u0024remaining", + "name": "remaining", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-HaltCompiler.html#property_remaining" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_", + "name": "If_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-If.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020if\u0020node.", + "url": "classes/PhpParser-Node-Stmt-If.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-If.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-If.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-If.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-If.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003A\u0024elseifs", + "name": "elseifs", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-If.html#property_elseifs" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\If_\u003A\u003A\u0024else", + "name": "else", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-If.html#property_else" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\InlineHTML", + "name": "InlineHTML", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-InlineHTML.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\InlineHTML\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020inline\u0020HTML\u0020node.", + "url": "classes/PhpParser-Node-Stmt-InlineHTML.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\InlineHTML\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-InlineHTML.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\InlineHTML\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-InlineHTML.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\InlineHTML\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-InlineHTML.html#property_value" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Interface_", + "name": "Interface_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Interface.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Interface_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Interface.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Interface_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Interface.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Interface_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Interface.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Interface_\u003A\u003A\u0024extends", + "name": "extends", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Interface.html#property_extends" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Label", + "name": "Label", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Label.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Label\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020label\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Label.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Label\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Label.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Label\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Label.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Label\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Label.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_", + "name": "Namespace_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Namespace.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020namespace\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003AKIND_SEMICOLON", + "name": "KIND_SEMICOLON", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#constant_KIND_SEMICOLON" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003AKIND_BRACED", + "name": "KIND_BRACED", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#constant_KIND_BRACED" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Namespace_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Namespace.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Nop", + "name": "Nop", + "summary": "Nop\/empty\u0020statement\u0020\u0028\u003B\u0029.", + "url": "classes/PhpParser-Node-Stmt-Nop.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Nop\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Nop.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Nop\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Nop.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property", + "name": "Property", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Property.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020property\u0020list\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AisPublic\u0028\u0029", + "name": "isPublic", + "summary": "Whether\u0020the\u0020property\u0020is\u0020explicitly\u0020or\u0020implicitly\u0020public.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_isPublic" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AisProtected\u0028\u0029", + "name": "isProtected", + "summary": "Whether\u0020the\u0020property\u0020is\u0020protected.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_isProtected" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AisPrivate\u0028\u0029", + "name": "isPrivate", + "summary": "Whether\u0020the\u0020property\u0020is\u0020private.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_isPrivate" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AisStatic\u0028\u0029", + "name": "isStatic", + "summary": "Whether\u0020the\u0020property\u0020is\u0020static.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_isStatic" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AisReadonly\u0028\u0029", + "name": "isReadonly", + "summary": "Whether\u0020the\u0020property\u0020is\u0020readonly.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_isReadonly" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Property.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Property.html#property_flags" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003A\u0024props", + "name": "props", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Property.html#property_props" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Property.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Property\u003A\u003A\u0024attrGroups", + "name": "attrGroups", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Property.html#property_attrGroups" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\PropertyProperty", + "name": "PropertyProperty", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-PropertyProperty.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\PropertyProperty\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020class\u0020property\u0020node.", + "url": "classes/PhpParser-Node-Stmt-PropertyProperty.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\PropertyProperty\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-PropertyProperty.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\PropertyProperty\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-PropertyProperty.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\PropertyProperty\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-PropertyProperty.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\PropertyProperty\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-PropertyProperty.html#property_default" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Return_", + "name": "Return_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Return.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Return_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020return\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Return.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Return_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Return.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Return_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Return.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Return_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Return.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Static_", + "name": "Static_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Static.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Static_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020static\u0020variables\u0020list\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Static.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Static_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Static.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Static_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Static.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Static_\u003A\u003A\u0024vars", + "name": "vars", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Static.html#property_vars" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\StaticVar", + "name": "StaticVar", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-StaticVar.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\StaticVar\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020static\u0020variable\u0020node.", + "url": "classes/PhpParser-Node-Stmt-StaticVar.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\StaticVar\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-StaticVar.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\StaticVar\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-StaticVar.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\StaticVar\u003A\u003A\u0024var", + "name": "var", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-StaticVar.html#property_var" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\StaticVar\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-StaticVar.html#property_default" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Switch_", + "name": "Switch_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Switch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Switch_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020case\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Switch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Switch_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Switch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Switch_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Switch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Switch_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Switch.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Switch_\u003A\u003A\u0024cases", + "name": "cases", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Switch.html#property_cases" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Throw_", + "name": "Throw_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Throw.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Throw_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020legacy\u0020throw\u0020statement\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Throw.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Throw_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Throw.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Throw_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Throw.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Throw_\u003A\u003A\u0024expr", + "name": "expr", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Throw.html#property_expr" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Trait_", + "name": "Trait_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Trait.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Trait_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020trait\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Trait.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Trait_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Trait.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Trait_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Trait.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUse", + "name": "TraitUse", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUse.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUse\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020trait\u0020use\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TraitUse.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUse\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-TraitUse.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUse\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TraitUse.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUse\u003A\u003A\u0024traits", + "name": "traits", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUse.html#property_traits" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUse\u003A\u003A\u0024adaptations", + "name": "adaptations", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUse.html#property_adaptations" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias", + "name": "Alias", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Alias.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020trait\u0020use\u0020precedence\u0020adaptation\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Alias.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Alias.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Alias.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias\u003A\u003A\u0024newModifier", + "name": "newModifier", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Alias.html#property_newModifier" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Alias\u003A\u003A\u0024newName", + "name": "newName", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Alias.html#property_newName" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence", + "name": "Precedence", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Precedence.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020trait\u0020use\u0020precedence\u0020adaptation\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Precedence.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Precedence.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Precedence.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\\Precedence\u003A\u003A\u0024insteadof", + "name": "insteadof", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation-Precedence.html#property_insteadof" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation", + "name": "TraitUseAdaptation", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\u003A\u003A\u0024trait", + "name": "trait", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation.html#property_trait" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation\u003A\u003A\u0024method", + "name": "method", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TraitUseAdaptation.html#property_method" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch", + "name": "TryCatch", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020try\u0020catch\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch\u003A\u003A\u0024catches", + "name": "catches", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html#property_catches" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TryCatch\u003A\u003A\u0024finally", + "name": "finally", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-TryCatch.html#property_finally" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Unset_", + "name": "Unset_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Unset.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Unset_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020unset\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Unset.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Unset_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Unset.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Unset_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Unset.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Unset_\u003A\u003A\u0024vars", + "name": "vars", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Unset.html#property_vars" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_", + "name": "Use_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Use.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020alias\u0020\u0028use\u0029\u0020list\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Use.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-Use.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-Use.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003ATYPE_UNKNOWN", + "name": "TYPE_UNKNOWN", + "summary": "Unknown\u0020type.\u0020Both\u0020Stmt\\Use_\u0020\/\u0020Stmt\\GroupUse\u0020and\u0020Stmt\\UseUse\u0020have\u0020a\u0020\u0024type\u0020property,\u0020one\u0020of\u0020them\u0020will\u0020always\u0020be\nTYPE_UNKNOWN\u0020while\u0020the\u0020other\u0020has\u0020one\u0020of\u0020the\u0020three\u0020other\u0020possible\u0020types.\u0020For\u0020normal\u0020use\u0020statements\u0020the\u0020type\u0020on\u0020the\nStmt\\UseUse\u0020is\u0020unknown.\u0020It\u0027s\u0020only\u0020the\u0020other\u0020way\u0020around\u0020for\u0020mixed\u0020group\u0020use\u0020declarations.", + "url": "classes/PhpParser-Node-Stmt-Use.html#constant_TYPE_UNKNOWN" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003ATYPE_NORMAL", + "name": "TYPE_NORMAL", + "summary": "Class\u0020or\u0020namespace\u0020import", + "url": "classes/PhpParser-Node-Stmt-Use.html#constant_TYPE_NORMAL" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003ATYPE_FUNCTION", + "name": "TYPE_FUNCTION", + "summary": "Function\u0020import", + "url": "classes/PhpParser-Node-Stmt-Use.html#constant_TYPE_FUNCTION" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003ATYPE_CONSTANT", + "name": "TYPE_CONSTANT", + "summary": "Constant\u0020import", + "url": "classes/PhpParser-Node-Stmt-Use.html#constant_TYPE_CONSTANT" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Use.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\Use_\u003A\u003A\u0024uses", + "name": "uses", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-Use.html#property_uses" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse", + "name": "UseUse", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-UseUse.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020an\u0020alias\u0020\u0028use\u0029\u0020node.", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003AgetAlias\u0028\u0029", + "name": "getAlias", + "summary": "Get\u0020alias.\u0020If\u0020not\u0020explicitly\u0020given\u0020this\u0020is\u0020the\u0020last\u0020component\u0020of\u0020the\u0020used\u0020name.", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#method_getAlias" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#property_type" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#property_name" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\UseUse\u003A\u003A\u0024alias", + "name": "alias", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-UseUse.html#property_alias" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\While_", + "name": "While_", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-While.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\While_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020while\u0020node.", + "url": "classes/PhpParser-Node-Stmt-While.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\While_\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-Stmt-While.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\While_\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-Stmt-While.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\While_\u003A\u003A\u0024cond", + "name": "cond", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-While.html#property_cond" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\While_\u003A\u003A\u0024stmts", + "name": "stmts", + "summary": "", + "url": "classes/PhpParser-Node-Stmt-While.html#property_stmts" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt", + "name": "Stmt", + "summary": "", + "url": "classes/PhpParser-Node-Stmt.html" + }, { + "fqsen": "\\PhpParser\\Node\\UnionType", + "name": "UnionType", + "summary": "This\u0020is\u0020a\u0020base\u0020class\u0020for\u0020complex\u0020types,\u0020including\u0020nullable\u0020types\u0020and\u0020union\u0020types.", + "url": "classes/PhpParser-Node-UnionType.html" + }, { + "fqsen": "\\PhpParser\\Node\\UnionType\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020union\u0020type.", + "url": "classes/PhpParser-Node-UnionType.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\UnionType\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-UnionType.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\UnionType\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-UnionType.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\UnionType\u003A\u003A\u0024types", + "name": "types", + "summary": "", + "url": "classes/PhpParser-Node-UnionType.html#property_types" + }, { + "fqsen": "\\PhpParser\\Node\\VariadicPlaceholder", + "name": "VariadicPlaceholder", + "summary": "Represents\u0020the\u0020\u0022...\u0022\u0020in\u0020\u0022foo\u0028...\u0029\u0022\u0020of\u0020the\u0020first\u002Dclass\u0020callable\u0020syntax.", + "url": "classes/PhpParser-Node-VariadicPlaceholder.html" + }, { + "fqsen": "\\PhpParser\\Node\\VariadicPlaceholder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020variadic\u0020argument\u0020placeholder\u0020\u0028first\u002Dclass\u0020callable\u0020syntax\u0029.", + "url": "classes/PhpParser-Node-VariadicPlaceholder.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Node\\VariadicPlaceholder\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-VariadicPlaceholder.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\\VariadicPlaceholder\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node-VariadicPlaceholder.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\\VarLikeIdentifier", + "name": "VarLikeIdentifier", + "summary": "Represents\u0020a\u0020name\u0020that\u0020is\u0020written\u0020in\u0020source\u0020code\u0020with\u0020a\u0020leading\u0020dollar,\nbut\u0020is\u0020not\u0020a\u0020proper\u0020variable.\u0020The\u0020leading\u0020dollar\u0020is\u0020not\u0020stored\u0020as\u0020part\u0020of\u0020the\u0020name.", + "url": "classes/PhpParser-Node-VarLikeIdentifier.html" + }, { + "fqsen": "\\PhpParser\\Node\\VarLikeIdentifier\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node-VarLikeIdentifier.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node", + "name": "Node", + "summary": "", + "url": "classes/PhpParser-Node.html" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "Gets\u0020the\u0020type\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node.html#method_getType" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetSubNodeNames\u0028\u0029", + "name": "getSubNodeNames", + "summary": "Gets\u0020the\u0020names\u0020of\u0020the\u0020sub\u0020nodes.", + "url": "classes/PhpParser-Node.html#method_getSubNodeNames" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetLine\u0028\u0029", + "name": "getLine", + "summary": "Gets\u0020line\u0020the\u0020node\u0020started\u0020in\u0020\u0028alias\u0020of\u0020getStartLine\u0029.", + "url": "classes/PhpParser-Node.html#method_getLine" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Gets\u0020line\u0020the\u0020node\u0020started\u0020in.", + "url": "classes/PhpParser-Node.html#method_getStartLine" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "Gets\u0020the\u0020line\u0020the\u0020node\u0020ended\u0020in.", + "url": "classes/PhpParser-Node.html#method_getEndLine" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetStartTokenPos\u0028\u0029", + "name": "getStartTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020of\u0020the\u0020first\u0020token\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_getStartTokenPos" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetEndTokenPos\u0028\u0029", + "name": "getEndTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020of\u0020the\u0020last\u0020token\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_getEndTokenPos" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetStartFilePos\u0028\u0029", + "name": "getStartFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020of\u0020the\u0020first\u0020character\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_getStartFilePos" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetEndFilePos\u0028\u0029", + "name": "getEndFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020of\u0020the\u0020last\u0020character\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_getEndFilePos" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetComments\u0028\u0029", + "name": "getComments", + "summary": "Gets\u0020all\u0020comments\u0020directly\u0020preceding\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_getComments" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetDocComment\u0028\u0029", + "name": "getDocComment", + "summary": "Gets\u0020the\u0020doc\u0020comment\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node.html#method_getDocComment" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AsetDocComment\u0028\u0029", + "name": "setDocComment", + "summary": "Sets\u0020the\u0020doc\u0020comment\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-Node.html#method_setDocComment" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AsetAttribute\u0028\u0029", + "name": "setAttribute", + "summary": "Sets\u0020an\u0020attribute\u0020on\u0020a\u0020node.", + "url": "classes/PhpParser-Node.html#method_setAttribute" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AhasAttribute\u0028\u0029", + "name": "hasAttribute", + "summary": "Returns\u0020whether\u0020an\u0020attribute\u0020exists.", + "url": "classes/PhpParser-Node.html#method_hasAttribute" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetAttribute\u0028\u0029", + "name": "getAttribute", + "summary": "Returns\u0020the\u0020value\u0020of\u0020an\u0020attribute.", + "url": "classes/PhpParser-Node.html#method_getAttribute" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AgetAttributes\u0028\u0029", + "name": "getAttributes", + "summary": "Returns\u0020all\u0020the\u0020attributes\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_getAttributes" + }, { + "fqsen": "\\PhpParser\\Node\u003A\u003AsetAttributes\u0028\u0029", + "name": "setAttributes", + "summary": "Replaces\u0020all\u0020the\u0020attributes\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-Node.html#method_setAttributes" + }, { + "fqsen": "\\PhpParser\\NodeAbstract", + "name": "NodeAbstract", + "summary": "", + "url": "classes/PhpParser-NodeAbstract.html" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020Node.", + "url": "classes/PhpParser-NodeAbstract.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetLine\u0028\u0029", + "name": "getLine", + "summary": "Gets\u0020line\u0020the\u0020node\u0020started\u0020in\u0020\u0028alias\u0020of\u0020getStartLine\u0029.", + "url": "classes/PhpParser-NodeAbstract.html#method_getLine" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Gets\u0020line\u0020the\u0020node\u0020started\u0020in.", + "url": "classes/PhpParser-NodeAbstract.html#method_getStartLine" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "Gets\u0020the\u0020line\u0020the\u0020node\u0020ended\u0020in.", + "url": "classes/PhpParser-NodeAbstract.html#method_getEndLine" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetStartTokenPos\u0028\u0029", + "name": "getStartTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020of\u0020the\u0020first\u0020token\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getStartTokenPos" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetEndTokenPos\u0028\u0029", + "name": "getEndTokenPos", + "summary": "Gets\u0020the\u0020token\u0020offset\u0020of\u0020the\u0020last\u0020token\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getEndTokenPos" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetStartFilePos\u0028\u0029", + "name": "getStartFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020of\u0020the\u0020first\u0020character\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getStartFilePos" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetEndFilePos\u0028\u0029", + "name": "getEndFilePos", + "summary": "Gets\u0020the\u0020file\u0020offset\u0020of\u0020the\u0020last\u0020character\u0020that\u0020is\u0020part\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getEndFilePos" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetComments\u0028\u0029", + "name": "getComments", + "summary": "Gets\u0020all\u0020comments\u0020directly\u0020preceding\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getComments" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetDocComment\u0028\u0029", + "name": "getDocComment", + "summary": "Gets\u0020the\u0020doc\u0020comment\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getDocComment" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AsetDocComment\u0028\u0029", + "name": "setDocComment", + "summary": "Sets\u0020the\u0020doc\u0020comment\u0020of\u0020the\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_setDocComment" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AsetAttribute\u0028\u0029", + "name": "setAttribute", + "summary": "Sets\u0020an\u0020attribute\u0020on\u0020a\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_setAttribute" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AhasAttribute\u0028\u0029", + "name": "hasAttribute", + "summary": "Returns\u0020whether\u0020an\u0020attribute\u0020exists.", + "url": "classes/PhpParser-NodeAbstract.html#method_hasAttribute" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetAttribute\u0028\u0029", + "name": "getAttribute", + "summary": "Returns\u0020the\u0020value\u0020of\u0020an\u0020attribute.", + "url": "classes/PhpParser-NodeAbstract.html#method_getAttribute" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AgetAttributes\u0028\u0029", + "name": "getAttributes", + "summary": "Returns\u0020all\u0020the\u0020attributes\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_getAttributes" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AsetAttributes\u0028\u0029", + "name": "setAttributes", + "summary": "Replaces\u0020all\u0020the\u0020attributes\u0020of\u0020this\u0020node.", + "url": "classes/PhpParser-NodeAbstract.html#method_setAttributes" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "", + "url": "classes/PhpParser-NodeAbstract.html#method_jsonSerialize" + }, { + "fqsen": "\\PhpParser\\NodeAbstract\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/PhpParser-NodeAbstract.html#property_attributes" + }, { + "fqsen": "\\PhpParser\\NodeDumper", + "name": "NodeDumper", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020NodeDumper.", + "url": "classes/PhpParser-NodeDumper.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020a\u0020node\u0020or\u0020array.", + "url": "classes/PhpParser-NodeDumper.html#method_dump" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003AdumpRecursive\u0028\u0029", + "name": "dumpRecursive", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#method_dumpRecursive" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003AdumpFlags\u0028\u0029", + "name": "dumpFlags", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#method_dumpFlags" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003AdumpIncludeType\u0028\u0029", + "name": "dumpIncludeType", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#method_dumpIncludeType" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003AdumpUseType\u0028\u0029", + "name": "dumpUseType", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#method_dumpUseType" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003AdumpPosition\u0028\u0029", + "name": "dumpPosition", + "summary": "Dump\u0020node\u0020position,\u0020if\u0020possible.", + "url": "classes/PhpParser-NodeDumper.html#method_dumpPosition" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003AtoColumn\u0028\u0029", + "name": "toColumn", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#method_toColumn" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003A\u0024dumpComments", + "name": "dumpComments", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#property_dumpComments" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003A\u0024dumpPositions", + "name": "dumpPositions", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#property_dumpPositions" + }, { + "fqsen": "\\PhpParser\\NodeDumper\u003A\u003A\u0024code", + "name": "code", + "summary": "", + "url": "classes/PhpParser-NodeDumper.html#property_code" + }, { + "fqsen": "\\PhpParser\\NodeFinder", + "name": "NodeFinder", + "summary": "", + "url": "classes/PhpParser-NodeFinder.html" + }, { + "fqsen": "\\PhpParser\\NodeFinder\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Find\u0020all\u0020nodes\u0020satisfying\u0020a\u0020filter\u0020callback.", + "url": "classes/PhpParser-NodeFinder.html#method_find" + }, { + "fqsen": "\\PhpParser\\NodeFinder\u003A\u003AfindInstanceOf\u0028\u0029", + "name": "findInstanceOf", + "summary": "Find\u0020all\u0020nodes\u0020that\u0020are\u0020instances\u0020of\u0020a\u0020certain\u0020class.", + "url": "classes/PhpParser-NodeFinder.html#method_findInstanceOf" + }, { + "fqsen": "\\PhpParser\\NodeFinder\u003A\u003AfindFirst\u0028\u0029", + "name": "findFirst", + "summary": "Find\u0020first\u0020node\u0020satisfying\u0020a\u0020filter\u0020callback.", + "url": "classes/PhpParser-NodeFinder.html#method_findFirst" + }, { + "fqsen": "\\PhpParser\\NodeFinder\u003A\u003AfindFirstInstanceOf\u0028\u0029", + "name": "findFirstInstanceOf", + "summary": "Find\u0020first\u0020node\u0020that\u0020is\u0020an\u0020instance\u0020of\u0020a\u0020certain\u0020class.", + "url": "classes/PhpParser-NodeFinder.html#method_findFirstInstanceOf" + }, { + "fqsen": "\\PhpParser\\NodeTraverser", + "name": "NodeTraverser", + "summary": "", + "url": "classes/PhpParser-NodeTraverser.html" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpParser-NodeTraverser.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003AaddVisitor\u0028\u0029", + "name": "addVisitor", + "summary": "Adds\u0020a\u0020visitor.", + "url": "classes/PhpParser-NodeTraverser.html#method_addVisitor" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003AremoveVisitor\u0028\u0029", + "name": "removeVisitor", + "summary": "Removes\u0020an\u0020added\u0020visitor.", + "url": "classes/PhpParser-NodeTraverser.html#method_removeVisitor" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003Atraverse\u0028\u0029", + "name": "traverse", + "summary": "Traverses\u0020an\u0020array\u0020of\u0020nodes\u0020using\u0020the\u0020registered\u0020visitors.", + "url": "classes/PhpParser-NodeTraverser.html#method_traverse" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003AtraverseNode\u0028\u0029", + "name": "traverseNode", + "summary": "Recursively\u0020traverse\u0020a\u0020node.", + "url": "classes/PhpParser-NodeTraverser.html#method_traverseNode" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003AtraverseArray\u0028\u0029", + "name": "traverseArray", + "summary": "Recursively\u0020traverse\u0020array\u0020\u0028usually\u0020of\u0020nodes\u0029.", + "url": "classes/PhpParser-NodeTraverser.html#method_traverseArray" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003AensureReplacementReasonable\u0028\u0029", + "name": "ensureReplacementReasonable", + "summary": "", + "url": "classes/PhpParser-NodeTraverser.html#method_ensureReplacementReasonable" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003ADONT_TRAVERSE_CHILDREN", + "name": "DONT_TRAVERSE_CHILDREN", + "summary": "If\u0020NodeVisitor\u003A\u003AenterNode\u0028\u0029\u0020returns\u0020DONT_TRAVERSE_CHILDREN,\u0020child\u0020nodes\nof\u0020the\u0020current\u0020node\u0020will\u0020not\u0020be\u0020traversed\u0020for\u0020any\u0020visitors.", + "url": "classes/PhpParser-NodeTraverser.html#constant_DONT_TRAVERSE_CHILDREN" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003ASTOP_TRAVERSAL", + "name": "STOP_TRAVERSAL", + "summary": "If\u0020NodeVisitor\u003A\u003AenterNode\u0028\u0029\u0020or\u0020NodeVisitor\u003A\u003AleaveNode\u0028\u0029\u0020returns\nSTOP_TRAVERSAL,\u0020traversal\u0020is\u0020aborted.", + "url": "classes/PhpParser-NodeTraverser.html#constant_STOP_TRAVERSAL" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003AREMOVE_NODE", + "name": "REMOVE_NODE", + "summary": "If\u0020NodeVisitor\u003A\u003AleaveNode\u0028\u0029\u0020returns\u0020REMOVE_NODE\u0020for\u0020a\u0020node\u0020that\u0020occurs\nin\u0020an\u0020array,\u0020it\u0020will\u0020be\u0020removed\u0020from\u0020the\u0020array.", + "url": "classes/PhpParser-NodeTraverser.html#constant_REMOVE_NODE" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003ADONT_TRAVERSE_CURRENT_AND_CHILDREN", + "name": "DONT_TRAVERSE_CURRENT_AND_CHILDREN", + "summary": "If\u0020NodeVisitor\u003A\u003AenterNode\u0028\u0029\u0020returns\u0020DONT_TRAVERSE_CURRENT_AND_CHILDREN,\u0020child\u0020nodes\nof\u0020the\u0020current\u0020node\u0020will\u0020not\u0020be\u0020traversed\u0020for\u0020any\u0020visitors.", + "url": "classes/PhpParser-NodeTraverser.html#constant_DONT_TRAVERSE_CURRENT_AND_CHILDREN" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003A\u0024visitors", + "name": "visitors", + "summary": "", + "url": "classes/PhpParser-NodeTraverser.html#property_visitors" + }, { + "fqsen": "\\PhpParser\\NodeTraverser\u003A\u003A\u0024stopTraversal", + "name": "stopTraversal", + "summary": "", + "url": "classes/PhpParser-NodeTraverser.html#property_stopTraversal" + }, { + "fqsen": "\\PhpParser\\NodeTraverserInterface", + "name": "NodeTraverserInterface", + "summary": "", + "url": "classes/PhpParser-NodeTraverserInterface.html" + }, { + "fqsen": "\\PhpParser\\NodeTraverserInterface\u003A\u003AaddVisitor\u0028\u0029", + "name": "addVisitor", + "summary": "Adds\u0020a\u0020visitor.", + "url": "classes/PhpParser-NodeTraverserInterface.html#method_addVisitor" + }, { + "fqsen": "\\PhpParser\\NodeTraverserInterface\u003A\u003AremoveVisitor\u0028\u0029", + "name": "removeVisitor", + "summary": "Removes\u0020an\u0020added\u0020visitor.", + "url": "classes/PhpParser-NodeTraverserInterface.html#method_removeVisitor" + }, { + "fqsen": "\\PhpParser\\NodeTraverserInterface\u003A\u003Atraverse\u0028\u0029", + "name": "traverse", + "summary": "Traverses\u0020an\u0020array\u0020of\u0020nodes\u0020using\u0020the\u0020registered\u0020visitors.", + "url": "classes/PhpParser-NodeTraverserInterface.html#method_traverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\CloningVisitor", + "name": "CloningVisitor", + "summary": "Visitor\u0020cloning\u0020all\u0020nodes\u0020and\u0020linking\u0020to\u0020the\u0020original\u0020nodes\u0020using\u0020an\u0020attribute.", + "url": "classes/PhpParser-NodeVisitor-CloningVisitor.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\CloningVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-CloningVisitor.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor", + "name": "FindingVisitor", + "summary": "This\u0020visitor\u0020can\u0020be\u0020used\u0020to\u0020find\u0020and\u0020collect\u0020all\u0020nodes\u0020satisfying\u0020some\u0020criterion\u0020determined\u0020by\na\u0020filter\u0020callback.", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor\u003A\u003AgetFoundNodes\u0028\u0029", + "name": "getFoundNodes", + "summary": "Get\u0020found\u0020nodes\u0020satisfying\u0020the\u0020filter\u0020callback.", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html#method_getFoundNodes" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor\u003A\u003A\u0024filterCallback", + "name": "filterCallback", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html#property_filterCallback" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FindingVisitor\u003A\u003A\u0024foundNodes", + "name": "foundNodes", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-FindingVisitor.html#property_foundNodes" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor", + "name": "FirstFindingVisitor", + "summary": "This\u0020visitor\u0020can\u0020be\u0020used\u0020to\u0020find\u0020the\u0020first\u0020node\u0020satisfying\u0020some\u0020criterion\u0020determined\u0020by\na\u0020filter\u0020callback.", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor\u003A\u003AgetFoundNode\u0028\u0029", + "name": "getFoundNode", + "summary": "Get\u0020found\u0020node\u0020satisfying\u0020the\u0020filter\u0020callback.", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html#method_getFoundNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor\u003A\u003A\u0024filterCallback", + "name": "filterCallback", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html#property_filterCallback" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\FirstFindingVisitor\u003A\u003A\u0024foundNode", + "name": "foundNode", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-FirstFindingVisitor.html#property_foundNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver", + "name": "NameResolver", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructs\u0020a\u0020name\u0020resolution\u0020visitor.", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method___construct" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AgetNameContext\u0028\u0029", + "name": "getNameContext", + "summary": "Get\u0020name\u0020resolution\u0020context.", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_getNameContext" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AaddAlias\u0028\u0029", + "name": "addAlias", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_addAlias" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AresolveSignature\u0028\u0029", + "name": "resolveSignature", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_resolveSignature" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AresolveType\u0028\u0029", + "name": "resolveType", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_resolveType" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AresolveName\u0028\u0029", + "name": "resolveName", + "summary": "Resolve\u0020name,\u0020according\u0020to\u0020name\u0020resolver\u0020options.", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_resolveName" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AresolveClassName\u0028\u0029", + "name": "resolveClassName", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_resolveClassName" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AaddNamespacedName\u0028\u0029", + "name": "addNamespacedName", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_addNamespacedName" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003AresolveAttrGroups\u0028\u0029", + "name": "resolveAttrGroups", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#method_resolveAttrGroups" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003A\u0024nameContext", + "name": "nameContext", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#property_nameContext" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003A\u0024preserveOriginalNames", + "name": "preserveOriginalNames", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#property_preserveOriginalNames" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NameResolver\u003A\u003A\u0024replaceNodes", + "name": "replaceNodes", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NameResolver.html#property_replaceNodes" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NodeConnectingVisitor", + "name": "NodeConnectingVisitor", + "summary": "Visitor\u0020that\u0020connects\u0020a\u0020child\u0020node\u0020to\u0020its\u0020parent\u0020node\nas\u0020well\u0020as\u0020its\u0020sibling\u0020nodes.", + "url": "classes/PhpParser-NodeVisitor-NodeConnectingVisitor.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NodeConnectingVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor-NodeConnectingVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NodeConnectingVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-NodeConnectingVisitor.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NodeConnectingVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-NodeConnectingVisitor.html#method_leaveNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NodeConnectingVisitor\u003A\u003A\u0024stack", + "name": "stack", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NodeConnectingVisitor.html#property_stack" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\NodeConnectingVisitor\u003A\u003A\u0024previous", + "name": "previous", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-NodeConnectingVisitor.html#property_previous" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\ParentConnectingVisitor", + "name": "ParentConnectingVisitor", + "summary": "Visitor\u0020that\u0020connects\u0020a\u0020child\u0020node\u0020to\u0020its\u0020parent\u0020node.", + "url": "classes/PhpParser-NodeVisitor-ParentConnectingVisitor.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\ParentConnectingVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor-ParentConnectingVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\ParentConnectingVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-ParentConnectingVisitor.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\ParentConnectingVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor-ParentConnectingVisitor.html#method_leaveNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\\ParentConnectingVisitor\u003A\u003A\u0024stack", + "name": "stack", + "summary": "", + "url": "classes/PhpParser-NodeVisitor-ParentConnectingVisitor.html#property_stack" + }, { + "fqsen": "\\PhpParser\\NodeVisitor", + "name": "NodeVisitor", + "summary": "", + "url": "classes/PhpParser-NodeVisitor.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitor.html#method_leaveNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitor\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/PhpParser-NodeVisitor.html#method_afterTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitorAbstract", + "name": "NodeVisitorAbstract", + "summary": "", + "url": "classes/PhpParser-NodeVisitorAbstract.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitorAbstract\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/PhpParser-NodeVisitorAbstract.html#method_beforeTraverse" + }, { + "fqsen": "\\PhpParser\\NodeVisitorAbstract\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitorAbstract.html#method_enterNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitorAbstract\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/PhpParser-NodeVisitorAbstract.html#method_leaveNode" + }, { + "fqsen": "\\PhpParser\\NodeVisitorAbstract\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/PhpParser-NodeVisitorAbstract.html#method_afterTraverse" + }, { + "fqsen": "\\PhpParser\\Parser\\Multiple", + "name": "Multiple", + "summary": "", + "url": "classes/PhpParser-Parser-Multiple.html" + }, { + "fqsen": "\\PhpParser\\Parser\\Multiple\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020parser\u0020which\u0020will\u0020try\u0020multiple\u0020parsers\u0020in\u0020an\u0020order\u0020of\u0020preference.", + "url": "classes/PhpParser-Parser-Multiple.html#method___construct" + }, { + "fqsen": "\\PhpParser\\Parser\\Multiple\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parses\u0020PHP\u0020code\u0020into\u0020a\u0020node\u0020tree.", + "url": "classes/PhpParser-Parser-Multiple.html#method_parse" + }, { + "fqsen": "\\PhpParser\\Parser\\Multiple\u003A\u003AtryParse\u0028\u0029", + "name": "tryParse", + "summary": "", + "url": "classes/PhpParser-Parser-Multiple.html#method_tryParse" + }, { + "fqsen": "\\PhpParser\\Parser\\Multiple\u003A\u003A\u0024parsers", + "name": "parsers", + "summary": "", + "url": "classes/PhpParser-Parser-Multiple.html#property_parsers" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5", + "name": "Php5", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003AinitReduceCallbacks\u0028\u0029", + "name": "initReduceCallbacks", + "summary": "Initialize\u0020\u0024reduceCallbacks\u0020map.", + "url": "classes/PhpParser-Parser-Php5.html#method_initReduceCallbacks" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024tokenToSymbolMapSize", + "name": "tokenToSymbolMapSize", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_tokenToSymbolMapSize" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024actionTableSize", + "name": "actionTableSize", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_actionTableSize" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024gotoTableSize", + "name": "gotoTableSize", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_gotoTableSize" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024invalidSymbol", + "name": "invalidSymbol", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_invalidSymbol" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024errorSymbol", + "name": "errorSymbol", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_errorSymbol" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024defaultAction", + "name": "defaultAction", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_defaultAction" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024unexpectedTokenRule", + "name": "unexpectedTokenRule", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_unexpectedTokenRule" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024YY2TBLSTATE", + "name": "YY2TBLSTATE", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_YY2TBLSTATE" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024numNonLeafStates", + "name": "numNonLeafStates", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_numNonLeafStates" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024symbolToName", + "name": "symbolToName", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_symbolToName" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024tokenToSymbol", + "name": "tokenToSymbol", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_tokenToSymbol" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024action", + "name": "action", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_action" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024actionCheck", + "name": "actionCheck", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_actionCheck" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024actionBase", + "name": "actionBase", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_actionBase" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024actionDefault", + "name": "actionDefault", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_actionDefault" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024goto", + "name": "goto", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_goto" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024gotoCheck", + "name": "gotoCheck", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_gotoCheck" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024gotoBase", + "name": "gotoBase", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_gotoBase" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024gotoDefault", + "name": "gotoDefault", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_gotoDefault" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024ruleToNonTerminal", + "name": "ruleToNonTerminal", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_ruleToNonTerminal" + }, { + "fqsen": "\\PhpParser\\Parser\\Php5\u003A\u003A\u0024ruleToLength", + "name": "ruleToLength", + "summary": "", + "url": "classes/PhpParser-Parser-Php5.html#property_ruleToLength" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7", + "name": "Php7", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003AinitReduceCallbacks\u0028\u0029", + "name": "initReduceCallbacks", + "summary": "Initialize\u0020\u0024reduceCallbacks\u0020map.", + "url": "classes/PhpParser-Parser-Php7.html#method_initReduceCallbacks" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024tokenToSymbolMapSize", + "name": "tokenToSymbolMapSize", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_tokenToSymbolMapSize" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024actionTableSize", + "name": "actionTableSize", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_actionTableSize" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024gotoTableSize", + "name": "gotoTableSize", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_gotoTableSize" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024invalidSymbol", + "name": "invalidSymbol", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_invalidSymbol" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024errorSymbol", + "name": "errorSymbol", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_errorSymbol" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024defaultAction", + "name": "defaultAction", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_defaultAction" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024unexpectedTokenRule", + "name": "unexpectedTokenRule", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_unexpectedTokenRule" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024YY2TBLSTATE", + "name": "YY2TBLSTATE", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_YY2TBLSTATE" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024numNonLeafStates", + "name": "numNonLeafStates", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_numNonLeafStates" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024symbolToName", + "name": "symbolToName", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_symbolToName" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024tokenToSymbol", + "name": "tokenToSymbol", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_tokenToSymbol" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024action", + "name": "action", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_action" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024actionCheck", + "name": "actionCheck", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_actionCheck" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024actionBase", + "name": "actionBase", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_actionBase" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024actionDefault", + "name": "actionDefault", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_actionDefault" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024goto", + "name": "goto", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_goto" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024gotoCheck", + "name": "gotoCheck", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_gotoCheck" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024gotoBase", + "name": "gotoBase", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_gotoBase" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024gotoDefault", + "name": "gotoDefault", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_gotoDefault" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024ruleToNonTerminal", + "name": "ruleToNonTerminal", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_ruleToNonTerminal" + }, { + "fqsen": "\\PhpParser\\Parser\\Php7\u003A\u003A\u0024ruleToLength", + "name": "ruleToLength", + "summary": "", + "url": "classes/PhpParser-Parser-Php7.html#property_ruleToLength" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens", + "name": "Tokens", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AYYERRTOK", + "name": "YYERRTOK", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_YYERRTOK" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_THROW", + "name": "T_THROW", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_THROW" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INCLUDE", + "name": "T_INCLUDE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INCLUDE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INCLUDE_ONCE", + "name": "T_INCLUDE_ONCE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INCLUDE_ONCE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_EVAL", + "name": "T_EVAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_EVAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_REQUIRE", + "name": "T_REQUIRE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_REQUIRE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_REQUIRE_ONCE", + "name": "T_REQUIRE_ONCE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_REQUIRE_ONCE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_LOGICAL_OR", + "name": "T_LOGICAL_OR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_LOGICAL_OR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_LOGICAL_XOR", + "name": "T_LOGICAL_XOR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_LOGICAL_XOR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_LOGICAL_AND", + "name": "T_LOGICAL_AND", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_LOGICAL_AND" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_PRINT", + "name": "T_PRINT", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_PRINT" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_YIELD", + "name": "T_YIELD", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_YIELD" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DOUBLE_ARROW", + "name": "T_DOUBLE_ARROW", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DOUBLE_ARROW" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_YIELD_FROM", + "name": "T_YIELD_FROM", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_YIELD_FROM" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_PLUS_EQUAL", + "name": "T_PLUS_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_PLUS_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_MINUS_EQUAL", + "name": "T_MINUS_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_MINUS_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_MUL_EQUAL", + "name": "T_MUL_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_MUL_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DIV_EQUAL", + "name": "T_DIV_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DIV_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CONCAT_EQUAL", + "name": "T_CONCAT_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CONCAT_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_MOD_EQUAL", + "name": "T_MOD_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_MOD_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_AND_EQUAL", + "name": "T_AND_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_AND_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_OR_EQUAL", + "name": "T_OR_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_OR_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_XOR_EQUAL", + "name": "T_XOR_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_XOR_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_SL_EQUAL", + "name": "T_SL_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_SL_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_SR_EQUAL", + "name": "T_SR_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_SR_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_POW_EQUAL", + "name": "T_POW_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_POW_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_COALESCE_EQUAL", + "name": "T_COALESCE_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_COALESCE_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_COALESCE", + "name": "T_COALESCE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_COALESCE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_BOOLEAN_OR", + "name": "T_BOOLEAN_OR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_BOOLEAN_OR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_BOOLEAN_AND", + "name": "T_BOOLEAN_AND", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_BOOLEAN_AND" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG", + "name": "T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_AMPERSAND_NOT_FOLLOWED_BY_VAR_OR_VARARG" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG", + "name": "T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_AMPERSAND_FOLLOWED_BY_VAR_OR_VARARG" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IS_EQUAL", + "name": "T_IS_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IS_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IS_NOT_EQUAL", + "name": "T_IS_NOT_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IS_NOT_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IS_IDENTICAL", + "name": "T_IS_IDENTICAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IS_IDENTICAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IS_NOT_IDENTICAL", + "name": "T_IS_NOT_IDENTICAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IS_NOT_IDENTICAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_SPACESHIP", + "name": "T_SPACESHIP", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_SPACESHIP" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IS_SMALLER_OR_EQUAL", + "name": "T_IS_SMALLER_OR_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IS_SMALLER_OR_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IS_GREATER_OR_EQUAL", + "name": "T_IS_GREATER_OR_EQUAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IS_GREATER_OR_EQUAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_SL", + "name": "T_SL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_SL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_SR", + "name": "T_SR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_SR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INSTANCEOF", + "name": "T_INSTANCEOF", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INSTANCEOF" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INC", + "name": "T_INC", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INC" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DEC", + "name": "T_DEC", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DEC" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INT_CAST", + "name": "T_INT_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INT_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DOUBLE_CAST", + "name": "T_DOUBLE_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DOUBLE_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_STRING_CAST", + "name": "T_STRING_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_STRING_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ARRAY_CAST", + "name": "T_ARRAY_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ARRAY_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_OBJECT_CAST", + "name": "T_OBJECT_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_OBJECT_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_BOOL_CAST", + "name": "T_BOOL_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_BOOL_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_UNSET_CAST", + "name": "T_UNSET_CAST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_UNSET_CAST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_POW", + "name": "T_POW", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_POW" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NEW", + "name": "T_NEW", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NEW" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CLONE", + "name": "T_CLONE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CLONE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_EXIT", + "name": "T_EXIT", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_EXIT" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IF", + "name": "T_IF", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IF" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ELSEIF", + "name": "T_ELSEIF", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ELSEIF" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ELSE", + "name": "T_ELSE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ELSE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENDIF", + "name": "T_ENDIF", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENDIF" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_LNUMBER", + "name": "T_LNUMBER", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_LNUMBER" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DNUMBER", + "name": "T_DNUMBER", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DNUMBER" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_STRING", + "name": "T_STRING", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_STRING" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_STRING_VARNAME", + "name": "T_STRING_VARNAME", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_STRING_VARNAME" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_VARIABLE", + "name": "T_VARIABLE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_VARIABLE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NUM_STRING", + "name": "T_NUM_STRING", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NUM_STRING" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INLINE_HTML", + "name": "T_INLINE_HTML", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INLINE_HTML" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENCAPSED_AND_WHITESPACE", + "name": "T_ENCAPSED_AND_WHITESPACE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENCAPSED_AND_WHITESPACE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CONSTANT_ENCAPSED_STRING", + "name": "T_CONSTANT_ENCAPSED_STRING", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CONSTANT_ENCAPSED_STRING" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ECHO", + "name": "T_ECHO", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ECHO" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DO", + "name": "T_DO", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DO" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_WHILE", + "name": "T_WHILE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_WHILE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENDWHILE", + "name": "T_ENDWHILE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENDWHILE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FOR", + "name": "T_FOR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FOR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENDFOR", + "name": "T_ENDFOR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENDFOR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FOREACH", + "name": "T_FOREACH", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FOREACH" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENDFOREACH", + "name": "T_ENDFOREACH", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENDFOREACH" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DECLARE", + "name": "T_DECLARE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DECLARE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENDDECLARE", + "name": "T_ENDDECLARE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENDDECLARE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_AS", + "name": "T_AS", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_AS" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_SWITCH", + "name": "T_SWITCH", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_SWITCH" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_MATCH", + "name": "T_MATCH", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_MATCH" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENDSWITCH", + "name": "T_ENDSWITCH", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENDSWITCH" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CASE", + "name": "T_CASE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CASE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DEFAULT", + "name": "T_DEFAULT", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DEFAULT" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_BREAK", + "name": "T_BREAK", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_BREAK" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CONTINUE", + "name": "T_CONTINUE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CONTINUE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_GOTO", + "name": "T_GOTO", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_GOTO" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FUNCTION", + "name": "T_FUNCTION", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FUNCTION" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FN", + "name": "T_FN", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FN" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CONST", + "name": "T_CONST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CONST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_RETURN", + "name": "T_RETURN", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_RETURN" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_TRY", + "name": "T_TRY", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_TRY" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CATCH", + "name": "T_CATCH", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CATCH" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FINALLY", + "name": "T_FINALLY", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FINALLY" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_USE", + "name": "T_USE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_USE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INSTEADOF", + "name": "T_INSTEADOF", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INSTEADOF" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_GLOBAL", + "name": "T_GLOBAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_GLOBAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_STATIC", + "name": "T_STATIC", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_STATIC" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ABSTRACT", + "name": "T_ABSTRACT", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ABSTRACT" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FINAL", + "name": "T_FINAL", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FINAL" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_PRIVATE", + "name": "T_PRIVATE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_PRIVATE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_PROTECTED", + "name": "T_PROTECTED", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_PROTECTED" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_PUBLIC", + "name": "T_PUBLIC", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_PUBLIC" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_READONLY", + "name": "T_READONLY", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_READONLY" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_VAR", + "name": "T_VAR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_VAR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_UNSET", + "name": "T_UNSET", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_UNSET" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ISSET", + "name": "T_ISSET", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ISSET" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_EMPTY", + "name": "T_EMPTY", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_EMPTY" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_HALT_COMPILER", + "name": "T_HALT_COMPILER", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_HALT_COMPILER" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CLASS", + "name": "T_CLASS", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CLASS" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_TRAIT", + "name": "T_TRAIT", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_TRAIT" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_INTERFACE", + "name": "T_INTERFACE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_INTERFACE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ENUM", + "name": "T_ENUM", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ENUM" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_EXTENDS", + "name": "T_EXTENDS", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_EXTENDS" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_IMPLEMENTS", + "name": "T_IMPLEMENTS", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_IMPLEMENTS" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_OBJECT_OPERATOR", + "name": "T_OBJECT_OPERATOR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_OBJECT_OPERATOR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NULLSAFE_OBJECT_OPERATOR", + "name": "T_NULLSAFE_OBJECT_OPERATOR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NULLSAFE_OBJECT_OPERATOR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_LIST", + "name": "T_LIST", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_LIST" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ARRAY", + "name": "T_ARRAY", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ARRAY" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CALLABLE", + "name": "T_CALLABLE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CALLABLE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CLASS_C", + "name": "T_CLASS_C", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CLASS_C" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_TRAIT_C", + "name": "T_TRAIT_C", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_TRAIT_C" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_METHOD_C", + "name": "T_METHOD_C", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_METHOD_C" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FUNC_C", + "name": "T_FUNC_C", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FUNC_C" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_LINE", + "name": "T_LINE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_LINE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_FILE", + "name": "T_FILE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_FILE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_START_HEREDOC", + "name": "T_START_HEREDOC", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_START_HEREDOC" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_END_HEREDOC", + "name": "T_END_HEREDOC", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_END_HEREDOC" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DOLLAR_OPEN_CURLY_BRACES", + "name": "T_DOLLAR_OPEN_CURLY_BRACES", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DOLLAR_OPEN_CURLY_BRACES" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_CURLY_OPEN", + "name": "T_CURLY_OPEN", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_CURLY_OPEN" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_PAAMAYIM_NEKUDOTAYIM", + "name": "T_PAAMAYIM_NEKUDOTAYIM", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_PAAMAYIM_NEKUDOTAYIM" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NAMESPACE", + "name": "T_NAMESPACE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NAMESPACE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NS_C", + "name": "T_NS_C", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NS_C" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_DIR", + "name": "T_DIR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_DIR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NS_SEPARATOR", + "name": "T_NS_SEPARATOR", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NS_SEPARATOR" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ELLIPSIS", + "name": "T_ELLIPSIS", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ELLIPSIS" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NAME_FULLY_QUALIFIED", + "name": "T_NAME_FULLY_QUALIFIED", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NAME_FULLY_QUALIFIED" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NAME_QUALIFIED", + "name": "T_NAME_QUALIFIED", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NAME_QUALIFIED" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_NAME_RELATIVE", + "name": "T_NAME_RELATIVE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_NAME_RELATIVE" + }, { + "fqsen": "\\PhpParser\\Parser\\Tokens\u003A\u003AT_ATTRIBUTE", + "name": "T_ATTRIBUTE", + "summary": "", + "url": "classes/PhpParser-Parser-Tokens.html#constant_T_ATTRIBUTE" + }, { + "fqsen": "\\PhpParser\\Parser", + "name": "Parser", + "summary": "", + "url": "classes/PhpParser-Parser.html" + }, { + "fqsen": "\\PhpParser\\Parser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parses\u0020PHP\u0020code\u0020into\u0020a\u0020node\u0020tree.", + "url": "classes/PhpParser-Parser.html#method_parse" + }, { + "fqsen": "\\PhpParser\\ParserAbstract", + "name": "ParserAbstract", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AinitReduceCallbacks\u0028\u0029", + "name": "initReduceCallbacks", + "summary": "Initialize\u0020\u0024reduceCallbacks\u0020map.", + "url": "classes/PhpParser-ParserAbstract.html#method_initReduceCallbacks" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020parser\u0020instance.", + "url": "classes/PhpParser-ParserAbstract.html#method___construct" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parses\u0020PHP\u0020code\u0020into\u0020a\u0020node\u0020tree.", + "url": "classes/PhpParser-ParserAbstract.html#method_parse" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AdoParse\u0028\u0029", + "name": "doParse", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_doParse" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AemitError\u0028\u0029", + "name": "emitError", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_emitError" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AgetErrorMessage\u0028\u0029", + "name": "getErrorMessage", + "summary": "Format\u0020error\u0020message\u0020including\u0020expected\u0020tokens.", + "url": "classes/PhpParser-ParserAbstract.html#method_getErrorMessage" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AgetExpectedTokens\u0028\u0029", + "name": "getExpectedTokens", + "summary": "Get\u0020limited\u0020number\u0020of\u0020expected\u0020tokens\u0020in\u0020given\u0020state.", + "url": "classes/PhpParser-ParserAbstract.html#method_getExpectedTokens" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AhandleNamespaces\u0028\u0029", + "name": "handleNamespaces", + "summary": "Moves\u0020statements\u0020of\u0020semicolon\u002Dstyle\u0020namespaces\u0020into\u0020\u0024ns\u002D\u003Estmts\u0020and\u0020checks\u0020various\u0020error\u0020conditions.", + "url": "classes/PhpParser-ParserAbstract.html#method_handleNamespaces" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AfixupNamespaceAttributes\u0028\u0029", + "name": "fixupNamespaceAttributes", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_fixupNamespaceAttributes" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AgetNamespacingStyle\u0028\u0029", + "name": "getNamespacingStyle", + "summary": "Determine\u0020namespacing\u0020style\u0020\u0028semicolon\u0020or\u0020brace\u0029", + "url": "classes/PhpParser-ParserAbstract.html#method_getNamespacingStyle" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AfixupPhp5StaticPropCall\u0028\u0029", + "name": "fixupPhp5StaticPropCall", + "summary": "Fix\u0020up\u0020parsing\u0020of\u0020static\u0020property\u0020calls\u0020in\u0020PHP\u00205.", + "url": "classes/PhpParser-ParserAbstract.html#method_fixupPhp5StaticPropCall" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AfixupStartAttributes\u0028\u0029", + "name": "fixupStartAttributes", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_fixupStartAttributes" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AhandleBuiltinTypes\u0028\u0029", + "name": "handleBuiltinTypes", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_handleBuiltinTypes" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AgetAttributesAt\u0028\u0029", + "name": "getAttributesAt", + "summary": "Get\u0020combined\u0020start\u0020and\u0020end\u0020attributes\u0020at\u0020a\u0020stack\u0020location", + "url": "classes/PhpParser-ParserAbstract.html#method_getAttributesAt" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AgetFloatCastKind\u0028\u0029", + "name": "getFloatCastKind", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_getFloatCastKind" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AparseLNumber\u0028\u0029", + "name": "parseLNumber", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_parseLNumber" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AparseNumString\u0028\u0029", + "name": "parseNumString", + "summary": "Parse\u0020a\u0020T_NUM_STRING\u0020token\u0020into\u0020either\u0020an\u0020integer\u0020or\u0020string\u0020node.", + "url": "classes/PhpParser-ParserAbstract.html#method_parseNumString" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AstripIndentation\u0028\u0029", + "name": "stripIndentation", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_stripIndentation" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AparseDocString\u0028\u0029", + "name": "parseDocString", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_parseDocString" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcreateCommentNopAttributes\u0028\u0029", + "name": "createCommentNopAttributes", + "summary": "Create\u0020attributes\u0020for\u0020a\u0020zero\u002Dlength\u0020common\u002Dcapturing\u0020nop.", + "url": "classes/PhpParser-ParserAbstract.html#method_createCommentNopAttributes" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AfixupAlternativeElse\u0028\u0029", + "name": "fixupAlternativeElse", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_fixupAlternativeElse" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckClassModifier\u0028\u0029", + "name": "checkClassModifier", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkClassModifier" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckModifier\u0028\u0029", + "name": "checkModifier", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkModifier" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckParam\u0028\u0029", + "name": "checkParam", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkParam" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckTryCatch\u0028\u0029", + "name": "checkTryCatch", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkTryCatch" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckNamespace\u0028\u0029", + "name": "checkNamespace", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkNamespace" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckClassName\u0028\u0029", + "name": "checkClassName", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkClassName" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckImplementedInterfaces\u0028\u0029", + "name": "checkImplementedInterfaces", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkImplementedInterfaces" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckClass\u0028\u0029", + "name": "checkClass", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkClass" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckInterface\u0028\u0029", + "name": "checkInterface", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkInterface" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckEnum\u0028\u0029", + "name": "checkEnum", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkEnum" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckClassMethod\u0028\u0029", + "name": "checkClassMethod", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkClassMethod" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckClassConst\u0028\u0029", + "name": "checkClassConst", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkClassConst" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckProperty\u0028\u0029", + "name": "checkProperty", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkProperty" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003AcheckUseUse\u0028\u0029", + "name": "checkUseUse", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#method_checkUseUse" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003ASYMBOL_NONE", + "name": "SYMBOL_NONE", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#constant_SYMBOL_NONE" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024tokenToSymbolMapSize", + "name": "tokenToSymbolMapSize", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_tokenToSymbolMapSize" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024actionTableSize", + "name": "actionTableSize", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_actionTableSize" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024gotoTableSize", + "name": "gotoTableSize", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_gotoTableSize" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024invalidSymbol", + "name": "invalidSymbol", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_invalidSymbol" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024errorSymbol", + "name": "errorSymbol", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_errorSymbol" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024defaultAction", + "name": "defaultAction", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_defaultAction" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024unexpectedTokenRule", + "name": "unexpectedTokenRule", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_unexpectedTokenRule" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024YY2TBLSTATE", + "name": "YY2TBLSTATE", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_YY2TBLSTATE" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024numNonLeafStates", + "name": "numNonLeafStates", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_numNonLeafStates" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024tokenToSymbol", + "name": "tokenToSymbol", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_tokenToSymbol" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024symbolToName", + "name": "symbolToName", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_symbolToName" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024productions", + "name": "productions", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_productions" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024actionBase", + "name": "actionBase", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_actionBase" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024action", + "name": "action", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_action" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024actionCheck", + "name": "actionCheck", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_actionCheck" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024actionDefault", + "name": "actionDefault", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_actionDefault" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024reduceCallbacks", + "name": "reduceCallbacks", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_reduceCallbacks" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024gotoBase", + "name": "gotoBase", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_gotoBase" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024goto", + "name": "goto", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_goto" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024gotoCheck", + "name": "gotoCheck", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_gotoCheck" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024gotoDefault", + "name": "gotoDefault", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_gotoDefault" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024ruleToNonTerminal", + "name": "ruleToNonTerminal", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_ruleToNonTerminal" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024ruleToLength", + "name": "ruleToLength", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_ruleToLength" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024lexer", + "name": "lexer", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_lexer" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024semValue", + "name": "semValue", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_semValue" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024semStack", + "name": "semStack", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_semStack" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024startAttributeStack", + "name": "startAttributeStack", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_startAttributeStack" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024endAttributeStack", + "name": "endAttributeStack", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_endAttributeStack" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024endAttributes", + "name": "endAttributes", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_endAttributes" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024lookaheadStartAttributes", + "name": "lookaheadStartAttributes", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_lookaheadStartAttributes" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024errorHandler", + "name": "errorHandler", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_errorHandler" + }, { + "fqsen": "\\PhpParser\\ParserAbstract\u003A\u003A\u0024errorState", + "name": "errorState", + "summary": "", + "url": "classes/PhpParser-ParserAbstract.html#property_errorState" + }, { + "fqsen": "\\PhpParser\\ParserFactory", + "name": "ParserFactory", + "summary": "", + "url": "classes/PhpParser-ParserFactory.html" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Creates\u0020a\u0020Parser\u0020instance,\u0020according\u0020to\u0020the\u0020provided\u0020kind.", + "url": "classes/PhpParser-ParserFactory.html#method_create" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003AcreateForNewestSupportedVersion\u0028\u0029", + "name": "createForNewestSupportedVersion", + "summary": "Create\u0020a\u0020parser\u0020targeting\u0020the\u0020newest\u0020version\u0020supported\u0020by\u0020this\u0020library.\u0020Code\u0020for\u0020older\nversions\u0020will\u0020be\u0020accepted\u0020if\u0020there\u0020have\u0020been\u0020no\u0020relevant\u0020backwards\u002Dcompatibility\u0020breaks\u0020in\nPHP.", + "url": "classes/PhpParser-ParserFactory.html#method_createForNewestSupportedVersion" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003AcreateForHostVersion\u0028\u0029", + "name": "createForHostVersion", + "summary": "Create\u0020a\u0020parser\u0020targeting\u0020the\u0020host\u0020PHP\u0020version,\u0020that\u0020is\u0020the\u0020PHP\u0020version\u0020we\u0027re\u0020currently\nrunning\u0020on.\u0020This\u0020parser\u0020will\u0020not\u0020use\u0020any\u0020token\u0020emulation.", + "url": "classes/PhpParser-ParserFactory.html#method_createForHostVersion" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003AgetLexerOptions\u0028\u0029", + "name": "getLexerOptions", + "summary": "", + "url": "classes/PhpParser-ParserFactory.html#method_getLexerOptions" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003APREFER_PHP7", + "name": "PREFER_PHP7", + "summary": "", + "url": "classes/PhpParser-ParserFactory.html#constant_PREFER_PHP7" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003APREFER_PHP5", + "name": "PREFER_PHP5", + "summary": "", + "url": "classes/PhpParser-ParserFactory.html#constant_PREFER_PHP5" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003AONLY_PHP7", + "name": "ONLY_PHP7", + "summary": "", + "url": "classes/PhpParser-ParserFactory.html#constant_ONLY_PHP7" + }, { + "fqsen": "\\PhpParser\\ParserFactory\u003A\u003AONLY_PHP5", + "name": "ONLY_PHP5", + "summary": "", + "url": "classes/PhpParser-ParserFactory.html#constant_ONLY_PHP5" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard", + "name": "Standard", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApParam\u0028\u0029", + "name": "pParam", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pParam" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApArg\u0028\u0029", + "name": "pArg", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pArg" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApVariadicPlaceholder\u0028\u0029", + "name": "pVariadicPlaceholder", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pVariadicPlaceholder" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApConst\u0028\u0029", + "name": "pConst", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pConst" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApNullableType\u0028\u0029", + "name": "pNullableType", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pNullableType" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApUnionType\u0028\u0029", + "name": "pUnionType", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pUnionType" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApIntersectionType\u0028\u0029", + "name": "pIntersectionType", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pIntersectionType" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApIdentifier\u0028\u0029", + "name": "pIdentifier", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pIdentifier" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApVarLikeIdentifier\u0028\u0029", + "name": "pVarLikeIdentifier", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pVarLikeIdentifier" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApAttribute\u0028\u0029", + "name": "pAttribute", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pAttribute" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApAttributeGroup\u0028\u0029", + "name": "pAttributeGroup", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pAttributeGroup" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApName\u0028\u0029", + "name": "pName", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pName" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApName_FullyQualified\u0028\u0029", + "name": "pName_FullyQualified", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pName_FullyQualified" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApName_Relative\u0028\u0029", + "name": "pName_Relative", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pName_Relative" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Class\u0028\u0029", + "name": "pScalar_MagicConst_Class", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Class" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Dir\u0028\u0029", + "name": "pScalar_MagicConst_Dir", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Dir" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_File\u0028\u0029", + "name": "pScalar_MagicConst_File", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_File" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Function\u0028\u0029", + "name": "pScalar_MagicConst_Function", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Function" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Line\u0028\u0029", + "name": "pScalar_MagicConst_Line", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Line" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Method\u0028\u0029", + "name": "pScalar_MagicConst_Method", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Method" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Namespace\u0028\u0029", + "name": "pScalar_MagicConst_Namespace", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Namespace" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_MagicConst_Trait\u0028\u0029", + "name": "pScalar_MagicConst_Trait", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_MagicConst_Trait" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_String\u0028\u0029", + "name": "pScalar_String", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_String" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_Encapsed\u0028\u0029", + "name": "pScalar_Encapsed", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_Encapsed" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_LNumber\u0028\u0029", + "name": "pScalar_LNumber", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_LNumber" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_DNumber\u0028\u0029", + "name": "pScalar_DNumber", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_DNumber" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApScalar_EncapsedStringPart\u0028\u0029", + "name": "pScalar_EncapsedStringPart", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pScalar_EncapsedStringPart" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Assign\u0028\u0029", + "name": "pExpr_Assign", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Assign" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignRef\u0028\u0029", + "name": "pExpr_AssignRef", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignRef" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Plus\u0028\u0029", + "name": "pExpr_AssignOp_Plus", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Plus" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Minus\u0028\u0029", + "name": "pExpr_AssignOp_Minus", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Minus" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Mul\u0028\u0029", + "name": "pExpr_AssignOp_Mul", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Mul" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Div\u0028\u0029", + "name": "pExpr_AssignOp_Div", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Div" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Concat\u0028\u0029", + "name": "pExpr_AssignOp_Concat", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Concat" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Mod\u0028\u0029", + "name": "pExpr_AssignOp_Mod", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Mod" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_BitwiseAnd\u0028\u0029", + "name": "pExpr_AssignOp_BitwiseAnd", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_BitwiseAnd" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_BitwiseOr\u0028\u0029", + "name": "pExpr_AssignOp_BitwiseOr", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_BitwiseOr" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_BitwiseXor\u0028\u0029", + "name": "pExpr_AssignOp_BitwiseXor", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_BitwiseXor" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_ShiftLeft\u0028\u0029", + "name": "pExpr_AssignOp_ShiftLeft", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_ShiftLeft" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_ShiftRight\u0028\u0029", + "name": "pExpr_AssignOp_ShiftRight", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_ShiftRight" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Pow\u0028\u0029", + "name": "pExpr_AssignOp_Pow", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Pow" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_AssignOp_Coalesce\u0028\u0029", + "name": "pExpr_AssignOp_Coalesce", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_AssignOp_Coalesce" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Plus\u0028\u0029", + "name": "pExpr_BinaryOp_Plus", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Plus" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Minus\u0028\u0029", + "name": "pExpr_BinaryOp_Minus", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Minus" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Mul\u0028\u0029", + "name": "pExpr_BinaryOp_Mul", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Mul" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Div\u0028\u0029", + "name": "pExpr_BinaryOp_Div", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Div" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Concat\u0028\u0029", + "name": "pExpr_BinaryOp_Concat", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Concat" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Mod\u0028\u0029", + "name": "pExpr_BinaryOp_Mod", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Mod" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_BooleanAnd\u0028\u0029", + "name": "pExpr_BinaryOp_BooleanAnd", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_BooleanAnd" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_BooleanOr\u0028\u0029", + "name": "pExpr_BinaryOp_BooleanOr", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_BooleanOr" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_BitwiseAnd\u0028\u0029", + "name": "pExpr_BinaryOp_BitwiseAnd", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_BitwiseAnd" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_BitwiseOr\u0028\u0029", + "name": "pExpr_BinaryOp_BitwiseOr", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_BitwiseOr" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_BitwiseXor\u0028\u0029", + "name": "pExpr_BinaryOp_BitwiseXor", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_BitwiseXor" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_ShiftLeft\u0028\u0029", + "name": "pExpr_BinaryOp_ShiftLeft", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_ShiftLeft" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_ShiftRight\u0028\u0029", + "name": "pExpr_BinaryOp_ShiftRight", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_ShiftRight" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Pow\u0028\u0029", + "name": "pExpr_BinaryOp_Pow", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Pow" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_LogicalAnd\u0028\u0029", + "name": "pExpr_BinaryOp_LogicalAnd", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_LogicalAnd" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_LogicalOr\u0028\u0029", + "name": "pExpr_BinaryOp_LogicalOr", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_LogicalOr" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_LogicalXor\u0028\u0029", + "name": "pExpr_BinaryOp_LogicalXor", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_LogicalXor" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Equal\u0028\u0029", + "name": "pExpr_BinaryOp_Equal", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Equal" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_NotEqual\u0028\u0029", + "name": "pExpr_BinaryOp_NotEqual", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_NotEqual" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Identical\u0028\u0029", + "name": "pExpr_BinaryOp_Identical", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Identical" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_NotIdentical\u0028\u0029", + "name": "pExpr_BinaryOp_NotIdentical", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_NotIdentical" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Spaceship\u0028\u0029", + "name": "pExpr_BinaryOp_Spaceship", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Spaceship" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Greater\u0028\u0029", + "name": "pExpr_BinaryOp_Greater", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Greater" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_GreaterOrEqual\u0028\u0029", + "name": "pExpr_BinaryOp_GreaterOrEqual", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_GreaterOrEqual" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Smaller\u0028\u0029", + "name": "pExpr_BinaryOp_Smaller", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Smaller" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_SmallerOrEqual\u0028\u0029", + "name": "pExpr_BinaryOp_SmallerOrEqual", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_SmallerOrEqual" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BinaryOp_Coalesce\u0028\u0029", + "name": "pExpr_BinaryOp_Coalesce", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BinaryOp_Coalesce" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Instanceof\u0028\u0029", + "name": "pExpr_Instanceof", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Instanceof" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BooleanNot\u0028\u0029", + "name": "pExpr_BooleanNot", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BooleanNot" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_BitwiseNot\u0028\u0029", + "name": "pExpr_BitwiseNot", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_BitwiseNot" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_UnaryMinus\u0028\u0029", + "name": "pExpr_UnaryMinus", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_UnaryMinus" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_UnaryPlus\u0028\u0029", + "name": "pExpr_UnaryPlus", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_UnaryPlus" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_PreInc\u0028\u0029", + "name": "pExpr_PreInc", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_PreInc" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_PreDec\u0028\u0029", + "name": "pExpr_PreDec", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_PreDec" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_PostInc\u0028\u0029", + "name": "pExpr_PostInc", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_PostInc" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_PostDec\u0028\u0029", + "name": "pExpr_PostDec", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_PostDec" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ErrorSuppress\u0028\u0029", + "name": "pExpr_ErrorSuppress", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ErrorSuppress" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_YieldFrom\u0028\u0029", + "name": "pExpr_YieldFrom", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_YieldFrom" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Print\u0028\u0029", + "name": "pExpr_Print", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Print" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_Int\u0028\u0029", + "name": "pExpr_Cast_Int", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_Int" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_Double\u0028\u0029", + "name": "pExpr_Cast_Double", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_Double" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_String\u0028\u0029", + "name": "pExpr_Cast_String", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_String" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_Array\u0028\u0029", + "name": "pExpr_Cast_Array", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_Array" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_Object\u0028\u0029", + "name": "pExpr_Cast_Object", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_Object" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_Bool\u0028\u0029", + "name": "pExpr_Cast_Bool", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_Bool" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Cast_Unset\u0028\u0029", + "name": "pExpr_Cast_Unset", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Cast_Unset" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_FuncCall\u0028\u0029", + "name": "pExpr_FuncCall", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_FuncCall" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_MethodCall\u0028\u0029", + "name": "pExpr_MethodCall", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_MethodCall" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_NullsafeMethodCall\u0028\u0029", + "name": "pExpr_NullsafeMethodCall", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_NullsafeMethodCall" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_StaticCall\u0028\u0029", + "name": "pExpr_StaticCall", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_StaticCall" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Empty\u0028\u0029", + "name": "pExpr_Empty", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Empty" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Isset\u0028\u0029", + "name": "pExpr_Isset", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Isset" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Eval\u0028\u0029", + "name": "pExpr_Eval", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Eval" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Include\u0028\u0029", + "name": "pExpr_Include", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Include" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_List\u0028\u0029", + "name": "pExpr_List", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_List" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Error\u0028\u0029", + "name": "pExpr_Error", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Error" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Variable\u0028\u0029", + "name": "pExpr_Variable", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Variable" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Array\u0028\u0029", + "name": "pExpr_Array", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Array" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ArrayItem\u0028\u0029", + "name": "pExpr_ArrayItem", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ArrayItem" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ArrayDimFetch\u0028\u0029", + "name": "pExpr_ArrayDimFetch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ArrayDimFetch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ConstFetch\u0028\u0029", + "name": "pExpr_ConstFetch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ConstFetch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ClassConstFetch\u0028\u0029", + "name": "pExpr_ClassConstFetch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ClassConstFetch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_PropertyFetch\u0028\u0029", + "name": "pExpr_PropertyFetch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_PropertyFetch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_NullsafePropertyFetch\u0028\u0029", + "name": "pExpr_NullsafePropertyFetch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_NullsafePropertyFetch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_StaticPropertyFetch\u0028\u0029", + "name": "pExpr_StaticPropertyFetch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_StaticPropertyFetch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ShellExec\u0028\u0029", + "name": "pExpr_ShellExec", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ShellExec" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Closure\u0028\u0029", + "name": "pExpr_Closure", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Closure" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Match\u0028\u0029", + "name": "pExpr_Match", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Match" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApMatchArm\u0028\u0029", + "name": "pMatchArm", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pMatchArm" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ArrowFunction\u0028\u0029", + "name": "pExpr_ArrowFunction", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ArrowFunction" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_ClosureUse\u0028\u0029", + "name": "pExpr_ClosureUse", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_ClosureUse" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_New\u0028\u0029", + "name": "pExpr_New", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_New" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Clone\u0028\u0029", + "name": "pExpr_Clone", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Clone" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Ternary\u0028\u0029", + "name": "pExpr_Ternary", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Ternary" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Exit\u0028\u0029", + "name": "pExpr_Exit", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Exit" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Throw\u0028\u0029", + "name": "pExpr_Throw", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Throw" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApExpr_Yield\u0028\u0029", + "name": "pExpr_Yield", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pExpr_Yield" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Namespace\u0028\u0029", + "name": "pStmt_Namespace", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Namespace" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Use\u0028\u0029", + "name": "pStmt_Use", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Use" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_GroupUse\u0028\u0029", + "name": "pStmt_GroupUse", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_GroupUse" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_UseUse\u0028\u0029", + "name": "pStmt_UseUse", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_UseUse" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApUseType\u0028\u0029", + "name": "pUseType", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pUseType" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Interface\u0028\u0029", + "name": "pStmt_Interface", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Interface" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Enum\u0028\u0029", + "name": "pStmt_Enum", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Enum" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Class\u0028\u0029", + "name": "pStmt_Class", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Class" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Trait\u0028\u0029", + "name": "pStmt_Trait", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Trait" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_EnumCase\u0028\u0029", + "name": "pStmt_EnumCase", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_EnumCase" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_TraitUse\u0028\u0029", + "name": "pStmt_TraitUse", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_TraitUse" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_TraitUseAdaptation_Precedence\u0028\u0029", + "name": "pStmt_TraitUseAdaptation_Precedence", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_TraitUseAdaptation_Precedence" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_TraitUseAdaptation_Alias\u0028\u0029", + "name": "pStmt_TraitUseAdaptation_Alias", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_TraitUseAdaptation_Alias" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Property\u0028\u0029", + "name": "pStmt_Property", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Property" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_PropertyProperty\u0028\u0029", + "name": "pStmt_PropertyProperty", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_PropertyProperty" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_ClassMethod\u0028\u0029", + "name": "pStmt_ClassMethod", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_ClassMethod" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_ClassConst\u0028\u0029", + "name": "pStmt_ClassConst", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_ClassConst" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Function\u0028\u0029", + "name": "pStmt_Function", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Function" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Const\u0028\u0029", + "name": "pStmt_Const", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Const" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Declare\u0028\u0029", + "name": "pStmt_Declare", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Declare" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_DeclareDeclare\u0028\u0029", + "name": "pStmt_DeclareDeclare", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_DeclareDeclare" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_If\u0028\u0029", + "name": "pStmt_If", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_If" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_ElseIf\u0028\u0029", + "name": "pStmt_ElseIf", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_ElseIf" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Else\u0028\u0029", + "name": "pStmt_Else", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Else" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_For\u0028\u0029", + "name": "pStmt_For", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_For" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Foreach\u0028\u0029", + "name": "pStmt_Foreach", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Foreach" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_While\u0028\u0029", + "name": "pStmt_While", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_While" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Do\u0028\u0029", + "name": "pStmt_Do", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Do" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Switch\u0028\u0029", + "name": "pStmt_Switch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Switch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Case\u0028\u0029", + "name": "pStmt_Case", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Case" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_TryCatch\u0028\u0029", + "name": "pStmt_TryCatch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_TryCatch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Catch\u0028\u0029", + "name": "pStmt_Catch", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Catch" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Finally\u0028\u0029", + "name": "pStmt_Finally", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Finally" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Break\u0028\u0029", + "name": "pStmt_Break", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Break" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Continue\u0028\u0029", + "name": "pStmt_Continue", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Continue" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Return\u0028\u0029", + "name": "pStmt_Return", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Return" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Throw\u0028\u0029", + "name": "pStmt_Throw", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Throw" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Label\u0028\u0029", + "name": "pStmt_Label", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Label" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Goto\u0028\u0029", + "name": "pStmt_Goto", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Goto" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Expression\u0028\u0029", + "name": "pStmt_Expression", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Expression" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Echo\u0028\u0029", + "name": "pStmt_Echo", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Echo" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Static\u0028\u0029", + "name": "pStmt_Static", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Static" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Global\u0028\u0029", + "name": "pStmt_Global", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Global" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_StaticVar\u0028\u0029", + "name": "pStmt_StaticVar", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_StaticVar" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Unset\u0028\u0029", + "name": "pStmt_Unset", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Unset" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_InlineHTML\u0028\u0029", + "name": "pStmt_InlineHTML", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_InlineHTML" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_HaltCompiler\u0028\u0029", + "name": "pStmt_HaltCompiler", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_HaltCompiler" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStmt_Nop\u0028\u0029", + "name": "pStmt_Nop", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStmt_Nop" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApClassCommon\u0028\u0029", + "name": "pClassCommon", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pClassCommon" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApObjectProperty\u0028\u0029", + "name": "pObjectProperty", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pObjectProperty" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApEncapsList\u0028\u0029", + "name": "pEncapsList", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pEncapsList" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApSingleQuotedString\u0028\u0029", + "name": "pSingleQuotedString", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pSingleQuotedString" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003AescapeString\u0028\u0029", + "name": "escapeString", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_escapeString" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003AcontainsEndLabel\u0028\u0029", + "name": "containsEndLabel", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_containsEndLabel" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003AencapsedContainsEndLabel\u0028\u0029", + "name": "encapsedContainsEndLabel", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_encapsedContainsEndLabel" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApDereferenceLhs\u0028\u0029", + "name": "pDereferenceLhs", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pDereferenceLhs" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApStaticDereferenceLhs\u0028\u0029", + "name": "pStaticDereferenceLhs", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pStaticDereferenceLhs" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApCallLhs\u0028\u0029", + "name": "pCallLhs", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pCallLhs" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApNewVariable\u0028\u0029", + "name": "pNewVariable", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pNewVariable" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003AhasNodeWithComments\u0028\u0029", + "name": "hasNodeWithComments", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_hasNodeWithComments" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApMaybeMultiline\u0028\u0029", + "name": "pMaybeMultiline", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pMaybeMultiline" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter\\Standard\u003A\u003ApAttrGroups\u0028\u0029", + "name": "pAttrGroups", + "summary": "", + "url": "classes/PhpParser-PrettyPrinter-Standard.html#method_pAttrGroups" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract", + "name": "PrettyPrinterAbstract", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Creates\u0020a\u0020pretty\u0020printer\u0020instance\u0020using\u0020the\u0020given\u0020options.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method___construct" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AresetState\u0028\u0029", + "name": "resetState", + "summary": "Reset\u0020pretty\u0020printing\u0020state.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_resetState" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AsetIndentLevel\u0028\u0029", + "name": "setIndentLevel", + "summary": "Set\u0020indentation\u0020level", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_setIndentLevel" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003Aindent\u0028\u0029", + "name": "indent", + "summary": "Increase\u0020indentation\u0020level.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_indent" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003Aoutdent\u0028\u0029", + "name": "outdent", + "summary": "Decrease\u0020indentation\u0020level.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_outdent" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AprettyPrint\u0028\u0029", + "name": "prettyPrint", + "summary": "Pretty\u0020prints\u0020an\u0020array\u0020of\u0020statements.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_prettyPrint" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AprettyPrintExpr\u0028\u0029", + "name": "prettyPrintExpr", + "summary": "Pretty\u0020prints\u0020an\u0020expression.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_prettyPrintExpr" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AprettyPrintFile\u0028\u0029", + "name": "prettyPrintFile", + "summary": "Pretty\u0020prints\u0020a\u0020file\u0020of\u0020statements\u0020\u0028includes\u0020the\u0020opening\u0020\u003C\u003Fphp\u0020tag\u0020if\u0020it\u0020is\u0020required\u0029.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_prettyPrintFile" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApreprocessNodes\u0028\u0029", + "name": "preprocessNodes", + "summary": "Preprocesses\u0020the\u0020top\u002Dlevel\u0020nodes\u0020to\u0020initialize\u0020pretty\u0020printer\u0020state.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_preprocessNodes" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AhandleMagicTokens\u0028\u0029", + "name": "handleMagicTokens", + "summary": "Handles\u0020\u0028and\u0020removes\u0029\u0020no\u002Dindent\u0020and\u0020doc\u002Dstring\u002Dend\u0020tokens.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_handleMagicTokens" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApStmts\u0028\u0029", + "name": "pStmts", + "summary": "Pretty\u0020prints\u0020an\u0020array\u0020of\u0020nodes\u0020\u0028statements\u0029\u0020and\u0020indents\u0020them\u0020optionally.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pStmts" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApInfixOp\u0028\u0029", + "name": "pInfixOp", + "summary": "Pretty\u002Dprint\u0020an\u0020infix\u0020operation\u0020while\u0020taking\u0020precedence\u0020into\u0020account.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pInfixOp" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApPrefixOp\u0028\u0029", + "name": "pPrefixOp", + "summary": "Pretty\u002Dprint\u0020a\u0020prefix\u0020operation\u0020while\u0020taking\u0020precedence\u0020into\u0020account.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pPrefixOp" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApPostfixOp\u0028\u0029", + "name": "pPostfixOp", + "summary": "Pretty\u002Dprint\u0020a\u0020postfix\u0020operation\u0020while\u0020taking\u0020precedence\u0020into\u0020account.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pPostfixOp" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApPrec\u0028\u0029", + "name": "pPrec", + "summary": "Prints\u0020an\u0020expression\u0020node\u0020with\u0020the\u0020least\u0020amount\u0020of\u0020parentheses\u0020necessary\u0020to\u0020preserve\u0020the\u0020meaning.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pPrec" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApImplode\u0028\u0029", + "name": "pImplode", + "summary": "Pretty\u0020prints\u0020an\u0020array\u0020of\u0020nodes\u0020and\u0020implodes\u0020the\u0020printed\u0020values.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pImplode" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApCommaSeparated\u0028\u0029", + "name": "pCommaSeparated", + "summary": "Pretty\u0020prints\u0020an\u0020array\u0020of\u0020nodes\u0020and\u0020implodes\u0020the\u0020printed\u0020values\u0020with\u0020commas.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pCommaSeparated" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApCommaSeparatedMultiline\u0028\u0029", + "name": "pCommaSeparatedMultiline", + "summary": "Pretty\u0020prints\u0020a\u0020comma\u002Dseparated\u0020list\u0020of\u0020nodes\u0020in\u0020multiline\u0020style,\u0020including\u0020comments.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pCommaSeparatedMultiline" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApComments\u0028\u0029", + "name": "pComments", + "summary": "Prints\u0020reformatted\u0020text\u0020of\u0020the\u0020passed\u0020comments.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pComments" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AprintFormatPreserving\u0028\u0029", + "name": "printFormatPreserving", + "summary": "Perform\u0020a\u0020format\u002Dpreserving\u0020pretty\u0020print\u0020of\u0020an\u0020AST.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_printFormatPreserving" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApFallback\u0028\u0029", + "name": "pFallback", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pFallback" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003Ap\u0028\u0029", + "name": "p", + "summary": "Pretty\u0020prints\u0020a\u0020node.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_p" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApArray\u0028\u0029", + "name": "pArray", + "summary": "Perform\u0020a\u0020format\u002Dpreserving\u0020pretty\u0020print\u0020of\u0020an\u0020array.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pArray" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApFixup\u0028\u0029", + "name": "pFixup", + "summary": "Print\u0020node\u0020with\u0020fixups.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pFixup" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AsafeAppend\u0028\u0029", + "name": "safeAppend", + "summary": "Appends\u0020to\u0020a\u0020string,\u0020ensuring\u0020whitespace\u0020between\u0020label\u0020characters.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_safeAppend" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AcallLhsRequiresParens\u0028\u0029", + "name": "callLhsRequiresParens", + "summary": "Determines\u0020whether\u0020the\u0020LHS\u0020of\u0020a\u0020call\u0020must\u0020be\u0020wrapped\u0020in\u0020parenthesis.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_callLhsRequiresParens" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AdereferenceLhsRequiresParens\u0028\u0029", + "name": "dereferenceLhsRequiresParens", + "summary": "Determines\u0020whether\u0020the\u0020LHS\u0020of\u0020an\u0020array\/object\u0020operation\u0020must\u0020be\u0020wrapped\u0020in\u0020parentheses.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_dereferenceLhsRequiresParens" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AstaticDereferenceLhsRequiresParens\u0028\u0029", + "name": "staticDereferenceLhsRequiresParens", + "summary": "Determines\u0020whether\u0020the\u0020LHS\u0020of\u0020a\u0020static\u0020operation\u0020must\u0020be\u0020wrapped\u0020in\u0020parentheses.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_staticDereferenceLhsRequiresParens" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AnewOperandRequiresParens\u0028\u0029", + "name": "newOperandRequiresParens", + "summary": "Determines\u0020whether\u0020an\u0020expression\u0020used\u0020in\u0020\u0022new\u0022\u0020or\u0020\u0022instanceof\u0022\u0020requires\u0020parentheses.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_newOperandRequiresParens" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003ApModifiers\u0028\u0029", + "name": "pModifiers", + "summary": "Print\u0020modifiers,\u0020including\u0020trailing\u0020whitespace.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_pModifiers" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AisMultiline\u0028\u0029", + "name": "isMultiline", + "summary": "Determine\u0020whether\u0020a\u0020list\u0020of\u0020nodes\u0020uses\u0020multiline\u0020formatting.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_isMultiline" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeLabelCharMap\u0028\u0029", + "name": "initializeLabelCharMap", + "summary": "Lazily\u0020initializes\u0020label\u0020char\u0020map.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeLabelCharMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeNodeListDiffer\u0028\u0029", + "name": "initializeNodeListDiffer", + "summary": "Lazily\u0020initializes\u0020node\u0020list\u0020differ.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeNodeListDiffer" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeFixupMap\u0028\u0029", + "name": "initializeFixupMap", + "summary": "Lazily\u0020initializes\u0020fixup\u0020map.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeFixupMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeRemovalMap\u0028\u0029", + "name": "initializeRemovalMap", + "summary": "Lazily\u0020initializes\u0020the\u0020removal\u0020map.", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeRemovalMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeInsertionMap\u0028\u0029", + "name": "initializeInsertionMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeInsertionMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeListInsertionMap\u0028\u0029", + "name": "initializeListInsertionMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeListInsertionMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeEmptyListInsertionMap\u0028\u0029", + "name": "initializeEmptyListInsertionMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeEmptyListInsertionMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AinitializeModifierChangeMap\u0028\u0029", + "name": "initializeModifierChangeMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#method_initializeModifierChangeMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_PREC_LEFT", + "name": "FIXUP_PREC_LEFT", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_PREC_LEFT" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_PREC_RIGHT", + "name": "FIXUP_PREC_RIGHT", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_PREC_RIGHT" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_CALL_LHS", + "name": "FIXUP_CALL_LHS", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_CALL_LHS" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_DEREF_LHS", + "name": "FIXUP_DEREF_LHS", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_DEREF_LHS" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_BRACED_NAME", + "name": "FIXUP_BRACED_NAME", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_BRACED_NAME" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_VAR_BRACED_NAME", + "name": "FIXUP_VAR_BRACED_NAME", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_VAR_BRACED_NAME" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_ENCAPSED", + "name": "FIXUP_ENCAPSED", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_ENCAPSED" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_NEW", + "name": "FIXUP_NEW", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_NEW" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003AFIXUP_STATIC_DEREF_LHS", + "name": "FIXUP_STATIC_DEREF_LHS", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#constant_FIXUP_STATIC_DEREF_LHS" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024precedenceMap", + "name": "precedenceMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_precedenceMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024indentLevel", + "name": "indentLevel", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_indentLevel" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024nl", + "name": "nl", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_nl" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024docStringEndToken", + "name": "docStringEndToken", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_docStringEndToken" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024canUseSemicolonNamespaces", + "name": "canUseSemicolonNamespaces", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_canUseSemicolonNamespaces" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_options" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024origTokens", + "name": "origTokens", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_origTokens" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024nodeListDiffer", + "name": "nodeListDiffer", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_nodeListDiffer" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024labelCharMap", + "name": "labelCharMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_labelCharMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024fixupMap", + "name": "fixupMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_fixupMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024removalMap", + "name": "removalMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_removalMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024insertionMap", + "name": "insertionMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_insertionMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024listInsertionMap", + "name": "listInsertionMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_listInsertionMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024emptyListInsertionMap", + "name": "emptyListInsertionMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_emptyListInsertionMap" + }, { + "fqsen": "\\PhpParser\\PrettyPrinterAbstract\u003A\u003A\u0024modifierChangeMap", + "name": "modifierChangeMap", + "summary": "", + "url": "classes/PhpParser-PrettyPrinterAbstract.html#property_modifierChangeMap" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Config", + "name": "Config", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Config.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Config\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Config.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Config\u003A\u003A\u0024package", + "name": "package", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Config.html#property_package" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Config\u003A\u003A\u0024keyDirectory", + "name": "keyDirectory", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Config.html#property_keyDirectory" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Config\u003A\u003A\u0024phars", + "name": "phars", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Config.html#property_phars" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\FileNotFound", + "name": "FileNotFound", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-FileNotFound.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\FileNotFound\u003A\u003AfromFile\u0028\u0029", + "name": "fromFile", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-FileNotFound.html#method_fromFile" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\InvalidPackageName", + "name": "InvalidPackageName", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-InvalidPackageName.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\InvalidPackageName\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-InvalidPackageName.html#method_fromString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\InvalidXML", + "name": "InvalidXML", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-InvalidXML.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\InvalidXML\u003A\u003AfromXMLErrors\u0028\u0029", + "name": "fromXMLErrors", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-InvalidXML.html#method_fromXMLErrors" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Loader", + "name": "Loader", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Loader.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Loader\u003A\u003AloadFile\u0028\u0029", + "name": "loadFile", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Loader.html#method_loadFile" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Loader\u003A\u003AloadXmlFile\u0028\u0029", + "name": "loadXmlFile", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Loader.html#method_loadXmlFile" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper", + "name": "Mapper", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper\u003A\u003AcreateConfig\u0028\u0029", + "name": "createConfig", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html#method_createConfig" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper\u003A\u003AvalidateConfigurationAgainstSchema\u0028\u0029", + "name": "validateConfigurationAgainstSchema", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html#method_validateConfigurationAgainstSchema" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper\u003A\u003ApackageName\u0028\u0029", + "name": "packageName", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html#method_packageName" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper\u003A\u003AcreatePhars\u0028\u0029", + "name": "createPhars", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html#method_createPhars" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper\u003A\u003AcreateKeyDir\u0028\u0029", + "name": "createKeyDir", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html#method_createKeyDir" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\Mapper\u003A\u003A\u0024document", + "name": "document", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-Mapper.html#property_document" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\ValidationFailed", + "name": "ValidationFailed", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-ValidationFailed.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config\\ValidationFailed\u003A\u003AfromXMLErrors\u0028\u0029", + "name": "fromXMLErrors", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Config-ValidationFailed.html#method_fromXMLErrors" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator", + "name": "ConfiguredMediator", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Config\u0020has\u0020to\u0020be\u0020loaded\u0020on\u0020instantiation\u0020because\u0020on\u0020uninstall\u0020all\u0020external\u0020dependencies\u0020are\nremoved\u0020before\u0020\u0060uninstall\u0060\u0020is\u0020called\u0020and\u0020auto\u002Dloading\u0020any\u0020external\u0020phar\u002Dio\u0020dependencies\u0020then\u0020will\u0020fail.", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AgetDistributorConfig\u0028\u0029", + "name": "getDistributorConfig", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_getDistributorConfig" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003Auninstall\u0028\u0029", + "name": "uninstall", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_uninstall" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AinstallOrUpdateFunction\u0028\u0029", + "name": "installOrUpdateFunction", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_installOrUpdateFunction" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AcreateGnuPG\u0028\u0029", + "name": "createGnuPG", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_createGnuPG" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AcreateInstallerFromConfig\u0028\u0029", + "name": "createInstallerFromConfig", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_createInstallerFromConfig" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AcreateKeyDirectory\u0028\u0029", + "name": "createKeyDirectory", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_createKeyDirectory" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AremovePhars\u0028\u0029", + "name": "removePhars", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_removePhars" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003AdeleteFile\u0028\u0029", + "name": "deleteFile", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#method_deleteFile" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\ConfiguredMediator\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-ConfiguredMediator.html#property_config" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File", + "name": "File", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003ApharName\u0028\u0029", + "name": "pharName", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#method_pharName" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003ApharUrl\u0028\u0029", + "name": "pharUrl", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#method_pharUrl" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003AsignatureUrl\u0028\u0029", + "name": "signatureUrl", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#method_signatureUrl" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#property_name" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003A\u0024pharLocation", + "name": "pharLocation", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#property_pharLocation" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\File\u003A\u003A\u0024signatureLocation", + "name": "signatureLocation", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-File.html#property_signatureLocation" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\FileList", + "name": "FileList", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-FileList.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\FileList\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-FileList.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\FileList\u003A\u003AgetList\u0028\u0029", + "name": "getList", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-FileList.html#method_getList" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\FileList\u003A\u003A\u0024list", + "name": "list", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-FileList.html#property_list" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation", + "name": "IteratorImplementation", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation\u003A\u003AgetList\u0028\u0029", + "name": "getList", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html#method_getList" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation\u003A\u003Acurrent\u0028\u0029", + "name": "current", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html#method_current" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html#method_next" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation\u003A\u003Akey\u0028\u0029", + "name": "key", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html#method_key" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation\u003A\u003Avalid\u0028\u0029", + "name": "valid", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html#method_valid" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\IteratorImplementation\u003A\u003Arewind\u0028\u0029", + "name": "rewind", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-IteratorImplementation.html#method_rewind" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\KeyDirectory", + "name": "KeyDirectory", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-KeyDirectory.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\KeyDirectory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-KeyDirectory.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\KeyDirectory\u003A\u003AgetList\u0028\u0029", + "name": "getList", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-KeyDirectory.html#method_getList" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\KeyDirectory\u003A\u003A\u0024keys", + "name": "keys", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-KeyDirectory.html#property_keys" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\KeyNotFound", + "name": "KeyNotFound", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-KeyNotFound.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\KeyNotFound\u003A\u003AfromInvalidPath\u0028\u0029", + "name": "fromInvalidPath", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-KeyNotFound.html#method_fromInvalidPath" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\NoSemanticVersioning", + "name": "NoSemanticVersioning", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-NoSemanticVersioning.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\NoSemanticVersioning\u003A\u003AfromVersionString\u0028\u0029", + "name": "fromVersionString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-NoSemanticVersioning.html#method_fromVersionString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\OperationPackage", + "name": "OperationPackage", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-OperationPackage.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\OperationPackage\u003A\u003AcreateFromEvent\u0028\u0029", + "name": "createFromEvent", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-OperationPackage.html#method_createFromEvent" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion", + "name": "PackageVersion", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#property_name" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003AfullVersion\u0028\u0029", + "name": "fullVersion", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_fullVersion" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003Amajor\u0028\u0029", + "name": "major", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_major" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003Aminor\u0028\u0029", + "name": "minor", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_minor" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003Apatch\u0028\u0029", + "name": "patch", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_patch" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003Abuild\u0028\u0029", + "name": "build", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_build" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003ApreRelease\u0028\u0029", + "name": "preRelease", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_preRelease" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003AfromPackageEvent\u0028\u0029", + "name": "fromPackageEvent", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#method_fromPackageEvent" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003A\u0024versionString", + "name": "versionString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#property_versionString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PackageVersion\u003A\u003A\u0024semver", + "name": "semver", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PackageVersion.html#property_semver" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase", + "name": "PluginBase", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003AinstallOrUpdateFunction\u0028\u0029", + "name": "installOrUpdateFunction", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_installOrUpdateFunction" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003Aactivate\u0028\u0029", + "name": "activate", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_activate" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003Adeactivate\u0028\u0029", + "name": "deactivate", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_deactivate" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003Auninstall\u0028\u0029", + "name": "uninstall", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_uninstall" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_getSubscribedEvents" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003AcreateInstaller\u0028\u0029", + "name": "createInstaller", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_createInstaller" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003AgetIO\u0028\u0029", + "name": "getIO", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_getIO" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003AgetComposer\u0028\u0029", + "name": "getComposer", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_getComposer" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003AisDesiredPackageEvent\u0028\u0029", + "name": "isDesiredPackageEvent", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#method_isDesiredPackageEvent" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003A\u0024composer", + "name": "composer", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#property_composer" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\PluginBase\u003A\u003A\u0024io", + "name": "io", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-PluginBase.html#property_io" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion", + "name": "SemanticVersion", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003AfromVersionString\u0028\u0029", + "name": "fromVersionString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#method_fromVersionString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003A\u0024major", + "name": "major", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#property_major" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003A\u0024minor", + "name": "minor", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#property_minor" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003A\u0024patch", + "name": "patch", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#property_patch" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003A\u0024preRelease", + "name": "preRelease", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#property_preRelease" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SemanticVersion\u003A\u003A\u0024build", + "name": "build", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SemanticVersion.html#property_build" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Download", + "name": "Download", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Download.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Download\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Download.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Download\u003A\u003AtoLocation\u0028\u0029", + "name": "toLocation", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Download.html#method_toLocation" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Download\u003A\u003AgetStreamContext\u0028\u0029", + "name": "getStreamContext", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Download.html#method_getStreamContext" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Download\u003A\u003A\u0024url", + "name": "url", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Download.html#property_url" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\GpgError", + "name": "GpgError", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-GpgError.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\GpgError\u003A\u003AverificationFailed\u0028\u0029", + "name": "verificationFailed", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-GpgError.html#method_verificationFailed" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer", + "name": "Installer", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003Ainstall\u0028\u0029", + "name": "install", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#method_install" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003AdownloadAndVerify\u0028\u0029", + "name": "downloadAndVerify", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#method_downloadAndVerify" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003AdownloadPhar\u0028\u0029", + "name": "downloadPhar", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#method_downloadPhar" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003AdownloadSignature\u0028\u0029", + "name": "downloadSignature", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#method_downloadSignature" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003AverifyPharWithSignature\u0028\u0029", + "name": "verifyPharWithSignature", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#method_verifyPharWithSignature" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003A\u0024io", + "name": "io", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#property_io" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#property_name" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003A\u0024keys", + "name": "keys", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#property_keys" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003A\u0024event", + "name": "event", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#property_event" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Installer\u003A\u003A\u0024gpg", + "name": "gpg", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Installer.html#property_gpg" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\KeyError", + "name": "KeyError", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-KeyError.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\KeyError\u003A\u003AimportFailure\u0028\u0029", + "name": "importFailure", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-KeyError.html#method_importFailure" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Verify", + "name": "Verify", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Verify.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Verify\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Verify.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Verify\u003A\u003AfileWithSignature\u0028\u0029", + "name": "fileWithSignature", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Verify.html#method_fileWithSignature" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\Verify\u003A\u003A\u0024gpg", + "name": "gpg", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-Verify.html#property_gpg" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\VersionConstraintReplacer", + "name": "VersionConstraintReplacer", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-VersionConstraintReplacer.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\VersionConstraintReplacer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-VersionConstraintReplacer.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\VersionConstraintReplacer\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-VersionConstraintReplacer.html#method_replace" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service\\VersionConstraintReplacer\u003A\u003A\u0024versionConstraint", + "name": "versionConstraint", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Service-VersionConstraintReplacer.html#property_versionConstraint" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SomebodyElsesProblem", + "name": "SomebodyElsesProblem", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SomebodyElsesProblem.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\SomebodyElsesProblem\u003A\u003Ahere\u0028\u0029", + "name": "here", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-SomebodyElsesProblem.html#method_here" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url", + "name": "Url", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#method___construct" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#method_fromString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#method_toString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#method___toString" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024scheme", + "name": "scheme", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_scheme" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024host", + "name": "host", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_host" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024port", + "name": "port", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_port" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024user", + "name": "user", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_user" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024password", + "name": "password", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_password" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024path", + "name": "path", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_path" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024query", + "name": "query", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_query" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Url\u003A\u003A\u0024fragment", + "name": "fragment", + "summary": "", + "url": "classes/PharIo-ComposerDistributor-Url.html#property_fragment" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\InstallationTest", + "name": "InstallationTest", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-InstallationTest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\InstallationTest\u003A\u003AtestInstallationWithoutSignatureWorks\u0028\u0029", + "name": "testInstallationWithoutSignatureWorks", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-InstallationTest.html#method_testInstallationWithoutSignatureWorks" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\InstallationTest\u003A\u003AtestInstallationWithSignatureWorks\u0028\u0029", + "name": "testInstallationWithSignatureWorks", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-InstallationTest.html#method_testInstallationWithSignatureWorks" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\InstallationTest\u003A\u003AtestInstallationWithFaultySignatureFails\u0028\u0029", + "name": "testInstallationWithFaultySignatureFails", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-InstallationTest.html#method_testInstallationWithFaultySignatureFails" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\InstallationTest\u003A\u003AsetUp\u0028\u0029", + "name": "setUp", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-InstallationTest.html#method_setUp" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\LoaderTest", + "name": "LoaderTest", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-LoaderTest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\LoaderTest\u003A\u003AtestLoadConfigSuccess\u0028\u0029", + "name": "testLoadConfigSuccess", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-LoaderTest.html#method_testLoadConfigSuccess" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\LoaderTest\u003A\u003AtestConfigDoesNotExist\u0028\u0029", + "name": "testConfigDoesNotExist", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-LoaderTest.html#method_testConfigDoesNotExist" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\LoaderTest\u003A\u003AtestLoadInvalidXml\u0028\u0029", + "name": "testLoadInvalidXml", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-LoaderTest.html#method_testLoadInvalidXml" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\MapperTest", + "name": "MapperTest", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-MapperTest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\MapperTest\u003A\u003AtestLoadConfigSuccessfully\u0028\u0029", + "name": "testLoadConfigSuccessfully", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-MapperTest.html#method_testLoadConfigSuccessfully" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config\\MapperTest\u003A\u003AtestLoadInvalidConfigFailure\u0028\u0029", + "name": "testLoadInvalidConfigFailure", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Config-MapperTest.html#method_testLoadInvalidConfigFailure" + }, { + "fqsen": "\\GnuPG", + "name": "GnuPG", + "summary": "", + "url": "classes/GnuPG.html" + }, { + "fqsen": "\\GnuPG\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "", + "url": "classes/GnuPG.html#method_verify" + }, { + "fqsen": "\\GnuPG\u003A\u003Aimport\u0028\u0029", + "name": "import", + "summary": "", + "url": "classes/GnuPG.html#method_import" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\SemanticVersionTest", + "name": "SemanticVersionTest", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-SemanticVersionTest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\SemanticVersionTest\u003A\u003AtestThatSemVerIsCorrectlySplitUp\u0028\u0029", + "name": "testThatSemVerIsCorrectlySplitUp", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-SemanticVersionTest.html#method_testThatSemVerIsCorrectlySplitUp" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\SemanticVersionTest\u003A\u003AsemVerIsCorrectlySplitUpProvider\u0028\u0029", + "name": "semVerIsCorrectlySplitUpProvider", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-SemanticVersionTest.html#method_semVerIsCorrectlySplitUpProvider" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\SemanticVersionTest\u003A\u003AtestExceptionIsThrownOnIncorrectSemVer\u0028\u0029", + "name": "testExceptionIsThrownOnIncorrectSemVer", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-SemanticVersionTest.html#method_testExceptionIsThrownOnIncorrectSemVer" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\SemanticVersionTest\u003A\u003AexceptionIsThrownOnIncorrectSemVerProvider\u0028\u0029", + "name": "exceptionIsThrownOnIncorrectSemVerProvider", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-SemanticVersionTest.html#method_exceptionIsThrownOnIncorrectSemVerProvider" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\unit\\Service\\DownloadTest", + "name": "DownloadTest", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-unit-Service-DownloadTest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\unit\\Service\\DownloadTest\u003A\u003AtestDownloadWithoutProxy\u0028\u0029", + "name": "testDownloadWithoutProxy", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-unit-Service-DownloadTest.html#method_testDownloadWithoutProxy" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\unit\\Service\\DownloadTest\u003A\u003AtestDownloadWithProxy\u0028\u0029", + "name": "testDownloadWithProxy", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-unit-Service-DownloadTest.html#method_testDownloadWithProxy" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest", + "name": "VerifyTest", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest\u003A\u003AsetUp\u0028\u0029", + "name": "setUp", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html#method_setUp" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest\u003A\u003AtestThatConstructorThrowsWithoutKeys\u0028\u0029", + "name": "testThatConstructorThrowsWithoutKeys", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html#method_testThatConstructorThrowsWithoutKeys" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest\u003A\u003AtestThatConstructorWorksWithSingleKey\u0028\u0029", + "name": "testThatConstructorWorksWithSingleKey", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html#method_testThatConstructorWorksWithSingleKey" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest\u003A\u003AtestThatConstructorWorksWithAlreadyImportedKey\u0028\u0029", + "name": "testThatConstructorWorksWithAlreadyImportedKey", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html#method_testThatConstructorWorksWithAlreadyImportedKey" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest\u003A\u003AtestThatCorrectVerificationWillNotThrowAnException\u0028\u0029", + "name": "testThatCorrectVerificationWillNotThrowAnException", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html#method_testThatCorrectVerificationWillNotThrowAnException" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service\\VerifyTest\u003A\u003AsetupEmptyKeyDir\u0028\u0029", + "name": "setupEmptyKeyDir", + "summary": "", + "url": "classes/PharIo-ComposerDistributorTest-Service-VerifyTest.html#method_setupEmptyKeyDir" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer", + "name": "PhpdocSingleLineVarFixer", + "summary": "Main\u0020implementation\u0020taken\u0020from\u0020kubawerlos\/php\u002Dcs\u002Dfixer\u002Dcustomere\u002Dfixers\nCopyright\u0020\u0028c\u0029\u00202018\u0020Kuba\u0020Wer\u0142os", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003AgetDefinition\u0028\u0029", + "name": "getDefinition", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_getDefinition" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003AisCandidate\u0028\u0029", + "name": "isCandidate", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_isCandidate" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003AisRisky\u0028\u0029", + "name": "isRisky", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_isRisky" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003Afix\u0028\u0029", + "name": "fix", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_fix" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003AgetPriority\u0028\u0029", + "name": "getPriority", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_getPriority" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_getName" + }, { + "fqsen": "\\PharIo\\CSFixer\\PhpdocSingleLineVarFixer\u003A\u003Asupports\u0028\u0029", + "name": "supports", + "summary": "", + "url": "classes/PharIo-CSFixer-PhpdocSingleLineVarFixer.html#method_supports" + }, { + "fqsen": "\\PharIo\\Executor\\Executor", + "name": "Executor", + "summary": "", + "url": "classes/PharIo-Executor-Executor.html" + }, { + "fqsen": "\\PharIo\\Executor\\Executor\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "", + "url": "classes/PharIo-Executor-Executor.html#method_execute" + }, { + "fqsen": "\\PharIo\\Executor\\Executor\u003A\u003AensureFileExists\u0028\u0029", + "name": "ensureFileExists", + "summary": "", + "url": "classes/PharIo-Executor-Executor.html#method_ensureFileExists" + }, { + "fqsen": "\\PharIo\\Executor\\Executor\u003A\u003AensureExecutable\u0028\u0029", + "name": "ensureExecutable", + "summary": "", + "url": "classes/PharIo-Executor-Executor.html#method_ensureExecutable" + }, { + "fqsen": "\\PharIo\\Executor\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/PharIo-Executor-Exception.html" + }, { + "fqsen": "\\PharIo\\Executor\\Exception\u003A\u003ANotFound", + "name": "NotFound", + "summary": "", + "url": "classes/PharIo-Executor-Exception.html#constant_NotFound" + }, { + "fqsen": "\\PharIo\\Executor\\Exception\u003A\u003ANotExecutable", + "name": "NotExecutable", + "summary": "", + "url": "classes/PharIo-Executor-Exception.html#constant_NotExecutable" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult", + "name": "ExecutorResult", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "ExecutorResult\u0020constructor.", + "url": "classes/PharIo-Executor-ExecutorResult.html#method___construct" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003AisSuccess\u0028\u0029", + "name": "isSuccess", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#method_isSuccess" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003AgetExitCode\u0028\u0029", + "name": "getExitCode", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#method_getExitCode" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#method_getOutput" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#method_getCommand" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#property_command" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#property_output" + }, { + "fqsen": "\\PharIo\\Executor\\ExecutorResult\u003A\u003A\u0024exitCode", + "name": "exitCode", + "summary": "", + "url": "classes/PharIo-Executor-ExecutorResult.html#property_exitCode" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory", + "name": "Directory", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method___construct" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AgetRelativePathTo\u0028\u0029", + "name": "getRelativePathTo", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_getRelativePathTo" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_exists" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AensureExists\u0028\u0029", + "name": "ensureExists", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_ensureExists" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003Achild\u0028\u0029", + "name": "child", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_child" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AhasChild\u0028\u0029", + "name": "hasChild", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_hasChild" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003Afile\u0028\u0029", + "name": "file", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_file" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AasString\u0028\u0029", + "name": "asString", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_asString" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AwithAbsolutePath\u0028\u0029", + "name": "withAbsolutePath", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_withAbsolutePath" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AisWritable\u0028\u0029", + "name": "isWritable", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_isWritable" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AensureIsDirectory\u0028\u0029", + "name": "ensureIsDirectory", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_ensureIsDirectory" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003AensureValidMode\u0028\u0029", + "name": "ensureValidMode", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#method_ensureValidMode" + }, { + "fqsen": "\\PharIo\\FileSystem\\Directory\u003A\u003A\u0024path", + "name": "path", + "summary": "", + "url": "classes/PharIo-FileSystem-Directory.html#property_path" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryException", + "name": "DirectoryException", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryException.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryException\u003A\u003AInvalidMode", + "name": "InvalidMode", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryException.html#constant_InvalidMode" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryException\u003A\u003ACreateFailed", + "name": "CreateFailed", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryException.html#constant_CreateFailed" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryException\u003A\u003AChmodFailed", + "name": "ChmodFailed", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryException.html#constant_ChmodFailed" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryException\u003A\u003AInvalidType", + "name": "InvalidType", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryException.html#constant_InvalidType" + }, { + "fqsen": "\\PharIo\\FileSystem\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/PharIo-FileSystem-Exception.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\File", + "name": "File", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\File\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html#method___construct" + }, { + "fqsen": "\\PharIo\\FileSystem\\File\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html#method_getFilename" + }, { + "fqsen": "\\PharIo\\FileSystem\\File\u003A\u003AsaveAs\u0028\u0029", + "name": "saveAs", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html#method_saveAs" + }, { + "fqsen": "\\PharIo\\FileSystem\\File\u003A\u003AgetContent\u0028\u0029", + "name": "getContent", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html#method_getContent" + }, { + "fqsen": "\\PharIo\\FileSystem\\File\u003A\u003A\u0024filename", + "name": "filename", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html#property_filename" + }, { + "fqsen": "\\PharIo\\FileSystem\\File\u003A\u003A\u0024content", + "name": "content", + "summary": "", + "url": "classes/PharIo-FileSystem-File.html#property_content" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename", + "name": "Filename", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method___construct" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AasString\u0028\u0029", + "name": "asString", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_asString" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_exists" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AisLink\u0028\u0029", + "name": "isLink", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_isLink" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AisWritable\u0028\u0029", + "name": "isWritable", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_isWritable" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AisExecutable\u0028\u0029", + "name": "isExecutable", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_isExecutable" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_read" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AwithAbsolutePath\u0028\u0029", + "name": "withAbsolutePath", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_withAbsolutePath" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AgetDirectory\u0028\u0029", + "name": "getDirectory", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_getDirectory" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AgetRelativePathTo\u0028\u0029", + "name": "getRelativePathTo", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_getRelativePathTo" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AputContent\u0028\u0029", + "name": "putContent", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_putContent" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_delete" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003ArenameTo\u0028\u0029", + "name": "renameTo", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_renameTo" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AisOlderThan\u0028\u0029", + "name": "isOlderThan", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_isOlderThan" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AwithoutExtension\u0028\u0029", + "name": "withoutExtension", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_withoutExtension" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AgetLastModified\u0028\u0029", + "name": "getLastModified", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_getLastModified" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003AgetBasename\u0028\u0029", + "name": "getBasename", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#method_getBasename" + }, { + "fqsen": "\\PharIo\\FileSystem\\Filename\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/PharIo-FileSystem-Filename.html#property_name" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameException", + "name": "FilenameException", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameException.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDate", + "name": "LastModifiedDate", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDate.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDate\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDate.html#method___construct" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDate\u003A\u003AfromTimestamp\u0028\u0029", + "name": "fromTimestamp", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDate.html#method_fromTimestamp" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDate\u003A\u003AisOlderThan\u0028\u0029", + "name": "isOlderThan", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDate.html#method_isOlderThan" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDate\u003A\u003A\u0024dateTime", + "name": "dateTime", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDate.html#property_dateTime" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest", + "name": "DirectoryTest", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AsetUp\u0028\u0029", + "name": "setUp", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_setUp" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestCanBeConvertedToString\u0028\u0029", + "name": "testCanBeConvertedToString", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testCanBeConvertedToString" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestDirectoryIsCreatedWhenMissing\u0028\u0029", + "name": "testDirectoryIsCreatedWhenMissing", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testDirectoryIsCreatedWhenMissing" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestTryingToInstantiateOnFileThrowsException\u0028\u0029", + "name": "testTryingToInstantiateOnFileThrowsException", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testTryingToInstantiateOnFileThrowsException" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestRequestingFileFromDirectoryReturnsFilenameInstance\u0028\u0029", + "name": "testRequestingFileFromDirectoryReturnsFilenameInstance", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testRequestingFileFromDirectoryReturnsFilenameInstance" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestRequestingChildFromDirectoryReturnsNewDirectoryInstance\u0028\u0029", + "name": "testRequestingChildFromDirectoryReturnsNewDirectoryInstance", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testRequestingChildFromDirectoryReturnsNewDirectoryInstance" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestThrowsExceptionInvalidMode\u0028\u0029", + "name": "testThrowsExceptionInvalidMode", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testThrowsExceptionInvalidMode" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestThrowsExceptionIfGivenPathCannotBeCreated\u0028\u0029", + "name": "testThrowsExceptionIfGivenPathCannotBeCreated", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testThrowsExceptionIfGivenPathCannotBeCreated" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003AtestReturnsExpectedRelativePath\u0028\u0029", + "name": "testReturnsExpectedRelativePath", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_testReturnsExpectedRelativePath" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003ArelativePathTestDataProvider\u0028\u0029", + "name": "relativePathTestDataProvider", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#method_relativePathTestDataProvider" + }, { + "fqsen": "\\PharIo\\FileSystem\\DirectoryTest\u003A\u003A\u0024testDir", + "name": "testDir", + "summary": "", + "url": "classes/PharIo-FileSystem-DirectoryTest.html#property_testDir" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest", + "name": "FilenameTest", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestCanBeConvertedToString\u0028\u0029", + "name": "testCanBeConvertedToString", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testCanBeConvertedToString" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestFileExistsReturnsFalseOnMissingFile\u0028\u0029", + "name": "testFileExistsReturnsFalseOnMissingFile", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testFileExistsReturnsFalseOnMissingFile" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestFileExistsReturnsTrueOnExistingFile\u0028\u0029", + "name": "testFileExistsReturnsTrueOnExistingFile", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testFileExistsReturnsTrueOnExistingFile" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestReadThrowsExceptionIfFileDoesNotExist\u0028\u0029", + "name": "testReadThrowsExceptionIfFileDoesNotExist", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testReadThrowsExceptionIfFileDoesNotExist" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestReadReturnsExpectedFile\u0028\u0029", + "name": "testReadReturnsExpectedFile", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testReadReturnsExpectedFile" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestReturnsExpectedFilenameWithoutExtension\u0028\u0029", + "name": "testReturnsExpectedFilenameWithoutExtension", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testReturnsExpectedFilenameWithoutExtension" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestIsWritable\u0028\u0029", + "name": "testIsWritable", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testIsWritable" + }, { + "fqsen": "\\PharIo\\FileSystem\\FilenameTest\u003A\u003AtestIsLink\u0028\u0029", + "name": "testIsLink", + "summary": "", + "url": "classes/PharIo-FileSystem-FilenameTest.html#method_testIsLink" + }, { + "fqsen": "\\PharIo\\FileSystem\\FileTest", + "name": "FileTest", + "summary": "", + "url": "classes/PharIo-FileSystem-FileTest.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\FileTest\u003A\u003AtestFilename\u0028\u0029", + "name": "testFilename", + "summary": "", + "url": "classes/PharIo-FileSystem-FileTest.html#method_testFilename" + }, { + "fqsen": "\\PharIo\\FileSystem\\FileTest\u003A\u003AtestContent\u0028\u0029", + "name": "testContent", + "summary": "", + "url": "classes/PharIo-FileSystem-FileTest.html#method_testContent" + }, { + "fqsen": "\\PharIo\\FileSystem\\FileTest\u003A\u003AtestSaveAs\u0028\u0029", + "name": "testSaveAs", + "summary": "", + "url": "classes/PharIo-FileSystem-FileTest.html#method_testSaveAs" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDateTest", + "name": "LastModifiedDateTest", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDateTest.html" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDateTest\u003A\u003AtestCreatesInstanceFromTimestamp\u0028\u0029", + "name": "testCreatesInstanceFromTimestamp", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDateTest.html#method_testCreatesInstanceFromTimestamp" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDateTest\u003A\u003AtestIsOlderThanReturnsExpectedValue\u0028\u0029", + "name": "testIsOlderThanReturnsExpectedValue", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDateTest.html#method_testIsOlderThanReturnsExpectedValue" + }, { + "fqsen": "\\PharIo\\FileSystem\\LastModifiedDateTest\u003A\u003AisOlderTestProvider\u0028\u0029", + "name": "isOlderTestProvider", + "summary": "", + "url": "classes/PharIo-FileSystem-LastModifiedDateTest.html#method_isOlderTestProvider" + }, { + "fqsen": "\\PharIo\\GnuPG\\ErrorStrings", + "name": "ErrorStrings", + "summary": "", + "url": "classes/PharIo-GnuPG-ErrorStrings.html" + }, { + "fqsen": "\\PharIo\\GnuPG\\ErrorStrings\u003A\u003AfromCode\u0028\u0029", + "name": "fromCode", + "summary": "", + "url": "classes/PharIo-GnuPG-ErrorStrings.html#method_fromCode" + }, { + "fqsen": "\\PharIo\\GnuPG\\ErrorStrings\u003A\u003Amap", + "name": "map", + "summary": "", + "url": "classes/PharIo-GnuPG-ErrorStrings.html#constant_map" + }, { + "fqsen": "\\PharIo\\GnuPG\\Exception", + "name": "Exception", + "summary": "", + "url": "classes/PharIo-GnuPG-Exception.html" + }, { + "fqsen": "\\PharIo\\GnuPG\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/PharIo-GnuPG-Factory.html" + }, { + "fqsen": "\\PharIo\\GnuPG\\Factory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Factory\u0020constructor.", + "url": "classes/PharIo-GnuPG-Factory.html#method___construct" + }, { + "fqsen": "\\PharIo\\GnuPG\\Factory\u003A\u003AcreateGnuPG\u0028\u0029", + "name": "createGnuPG", + "summary": "", + "url": "classes/PharIo-GnuPG-Factory.html#method_createGnuPG" + }, { + "fqsen": "\\PharIo\\GnuPG\\Factory\u003A\u003AgetGPGBinaryPath\u0028\u0029", + "name": "getGPGBinaryPath", + "summary": "", + "url": "classes/PharIo-GnuPG-Factory.html#method_getGPGBinaryPath" + }, { + "fqsen": "\\PharIo\\GnuPG\\Factory\u003A\u003AgetTempDirectory\u0028\u0029", + "name": "getTempDirectory", + "summary": "", + "url": "classes/PharIo-GnuPG-Factory.html#method_getTempDirectory" + }, { + "fqsen": "\\PharIo\\GnuPG\\Factory\u003A\u003A\u0024gpgBinary", + "name": "gpgBinary", + "summary": "", + "url": "classes/PharIo-GnuPG-Factory.html#property_gpgBinary" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG", + "name": "GnuPG", + "summary": "This\u0020is\u0020a\u0020\u0028thin\u0029\u0020wrapper\u0020around\u0020the\u0020gnupg\u0020binary,\u0020mimicking\u0020the\u0020pecl\/gnupg\u0020api\nCurrently,\u0020only\u0020the\u0020methods\u0020required\u0020by\u0020phive\u0020\u0028import,\u0020info,\u0020geterror\u0020and\u0020verify\u0029\u0020are\u0020implemented", + "url": "classes/PharIo-GnuPG-GnuPG.html" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method___construct" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003Aimport\u0028\u0029", + "name": "import", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_import" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003Akeyinfo\u0028\u0029", + "name": "keyinfo", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_keyinfo" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_verify" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003Ageterror\u0028\u0029", + "name": "geterror", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_geterror" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003AparseVerifyOutput\u0028\u0029", + "name": "parseVerifyOutput", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_parseVerifyOutput" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003AgetDefaultGpgParams\u0028\u0029", + "name": "getDefaultGpgParams", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_getDefaultGpgParams" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_execute" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003AcreateTemporaryFile\u0028\u0029", + "name": "createTemporaryFile", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_createTemporaryFile" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003AparseInfoOutput\u0028\u0029", + "name": "parseInfoOutput", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_parseInfoOutput" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003AparseValidity\u0028\u0029", + "name": "parseValidity", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_parseValidity" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003AparseCapabilities\u0028\u0029", + "name": "parseCapabilities", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#method_parseCapabilities" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003A\u0024executor", + "name": "executor", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#property_executor" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003A\u0024homeDirectory", + "name": "homeDirectory", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#property_homeDirectory" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003A\u0024tmpDirectory", + "name": "tmpDirectory", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#property_tmpDirectory" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003A\u0024gpgBinary", + "name": "gpgBinary", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#property_gpgBinary" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPG\u003A\u003A\u0024lastExitCode", + "name": "lastExitCode", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPG.html#property_lastExitCode" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest", + "name": "GnuPGTest", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AimportExecutionResultProvider\u0028\u0029", + "name": "importExecutionResultProvider", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_importExecutionResultProvider" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AverifyExecutionResultProvider\u0028\u0029", + "name": "verifyExecutionResultProvider", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_verifyExecutionResultProvider" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AtestImportReturnsExpectedArray\u0028\u0029", + "name": "testImportReturnsExpectedArray", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_testImportReturnsExpectedArray" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AtestVerifyReturnsExpectedArray\u0028\u0029", + "name": "testVerifyReturnsExpectedArray", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_testVerifyReturnsExpectedArray" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AtestInfoReturnsExpectedArray\u0028\u0029", + "name": "testInfoReturnsExpectedArray", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_testInfoReturnsExpectedArray" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AinfoExecutionResultProvider\u0028\u0029", + "name": "infoExecutionResultProvider", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_infoExecutionResultProvider" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AgetExecutorResultMock\u0028\u0029", + "name": "getExecutorResultMock", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_getExecutorResultMock" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AgetDirectoryMock\u0028\u0029", + "name": "getDirectoryMock", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_getDirectoryMock" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AgetFilenameMock\u0028\u0029", + "name": "getFilenameMock", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_getFilenameMock" + }, { + "fqsen": "\\PharIo\\GnuPG\\GnuPGTest\u003A\u003AgetExecutorMock\u0028\u0029", + "name": "getExecutorMock", + "summary": "", + "url": "classes/PharIo-GnuPG-GnuPGTest.html#method_getExecutorMock" + }, { + "fqsen": "\\phpDocumentor\\Plugin", + "name": "Plugin", + "summary": "", + "url": "classes/phpDocumentor-Plugin.html" + }, { + "fqsen": "\\phpDocumentor\\Plugin\u003A\u003AgetDistributorConfig\u0028\u0029", + "name": "getDistributorConfig", + "summary": "", + "url": "classes/phpDocumentor-Plugin.html#method_getDistributorConfig" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator", + "name": "DSNConfigurator", + "summary": "Configure\u0020PHPMailer\u0020with\u0020DSN\u0020string.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003Amailer\u0028\u0029", + "name": "mailer", + "summary": "Create\u0020new\u0020PHPMailer\u0020instance\u0020configured\u0020by\u0020DSN.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_mailer" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configure\u0020PHPMailer\u0020instance\u0020with\u0020DSN\u0020string.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_configure" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AparseDSN\u0028\u0029", + "name": "parseDSN", + "summary": "Parse\u0020DSN\u0020string.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_parseDSN" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AapplyConfig\u0028\u0029", + "name": "applyConfig", + "summary": "Apply\u0020configuration\u0020to\u0020mailer.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_applyConfig" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AconfigureSMTP\u0028\u0029", + "name": "configureSMTP", + "summary": "Configure\u0020SMTP.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_configureSMTP" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AconfigureOptions\u0028\u0029", + "name": "configureOptions", + "summary": "Configure\u0020options.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_configureOptions" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\DSNConfigurator\u003A\u003AparseUrl\u0028\u0029", + "name": "parseUrl", + "summary": "Parse\u0020a\u0020URL.", + "url": "classes/PHPMailer-PHPMailer-DSNConfigurator.html#method_parseUrl" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\Exception", + "name": "Exception", + "summary": "PHPMailer\u0020exception\u0020handler.", + "url": "classes/PHPMailer-PHPMailer-Exception.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\Exception\u003A\u003AerrorMessage\u0028\u0029", + "name": "errorMessage", + "summary": "Prettify\u0020error\u0020message\u0020output.", + "url": "classes/PHPMailer-PHPMailer-Exception.html#method_errorMessage" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth", + "name": "OAuth", + "summary": "OAuth\u0020\u002D\u0020OAuth2\u0020authentication\u0020wrapper\u0020class.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "OAuth\u0020constructor.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#method___construct" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003AgetGrant\u0028\u0029", + "name": "getGrant", + "summary": "Get\u0020a\u0020new\u0020RefreshToken.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#method_getGrant" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003AgetToken\u0028\u0029", + "name": "getToken", + "summary": "Get\u0020a\u0020new\u0020AccessToken.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#method_getToken" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003AgetOauth64\u0028\u0029", + "name": "getOauth64", + "summary": "Generate\u0020a\u0020base64\u002Dencoded\u0020OAuth\u0020token.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#method_getOauth64" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024provider", + "name": "provider", + "summary": "An\u0020instance\u0020of\u0020the\u0020League\u0020OAuth\u0020Client\u0020Provider.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_provider" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthToken", + "name": "oauthToken", + "summary": "The\u0020current\u0020OAuth\u0020access\u0020token.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthToken" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthUserEmail", + "name": "oauthUserEmail", + "summary": "The\u0020user\u0027s\u0020email\u0020address,\u0020usually\u0020used\u0020as\u0020the\u0020login\u0020ID\nand\u0020also\u0020the\u0020from\u0020address\u0020when\u0020sending\u0020email.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthUserEmail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthClientSecret", + "name": "oauthClientSecret", + "summary": "The\u0020client\u0020secret,\u0020generated\u0020in\u0020the\u0020app\u0020definition\u0020of\u0020the\u0020service\u0020you\u0027re\u0020connecting\u0020to.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthClientSecret" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthClientId", + "name": "oauthClientId", + "summary": "The\u0020client\u0020ID,\u0020generated\u0020in\u0020the\u0020app\u0020definition\u0020of\u0020the\u0020service\u0020you\u0027re\u0020connecting\u0020to.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthClientId" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuth\u003A\u003A\u0024oauthRefreshToken", + "name": "oauthRefreshToken", + "summary": "The\u0020refresh\u0020token,\u0020used\u0020to\u0020obtain\u0020new\u0020AccessTokens.", + "url": "classes/PHPMailer-PHPMailer-OAuth.html#property_oauthRefreshToken" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuthTokenProvider", + "name": "OAuthTokenProvider", + "summary": "OAuthTokenProvider\u0020\u002D\u0020OAuth2\u0020token\u0020provider\u0020interface.", + "url": "classes/PHPMailer-PHPMailer-OAuthTokenProvider.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\OAuthTokenProvider\u003A\u003AgetOauth64\u0028\u0029", + "name": "getOauth64", + "summary": "Generate\u0020a\u0020base64\u002Dencoded\u0020OAuth\u0020token\u0020ensuring\u0020that\u0020the\u0020access\u0020token\u0020has\u0020not\u0020expired.", + "url": "classes/PHPMailer-PHPMailer-OAuthTokenProvider.html#method_getOauth64" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer", + "name": "PHPMailer", + "summary": "PHPMailer\u0020\u002D\u0020PHP\u0020email\u0020creation\u0020and\u0020transport\u0020class.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method___construct" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "Destructor.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method___destruct" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AmailPassthru\u0028\u0029", + "name": "mailPassthru", + "summary": "Call\u0020mail\u0028\u0029\u0020in\u0020a\u0020safe_mode\u002Daware\u0020fashion.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_mailPassthru" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Aedebug\u0028\u0029", + "name": "edebug", + "summary": "Output\u0020debugging\u0020info\u0020via\u0020a\u0020user\u002Ddefined\u0020method.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_edebug" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisHTML\u0028\u0029", + "name": "isHTML", + "summary": "Sets\u0020message\u0020type\u0020to\u0020HTML\u0020or\u0020plain.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isHTML" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisSMTP\u0028\u0029", + "name": "isSMTP", + "summary": "Send\u0020messages\u0020using\u0020SMTP.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isSMTP" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisMail\u0028\u0029", + "name": "isMail", + "summary": "Send\u0020messages\u0020using\u0020PHP\u0027s\u0020mail\u0028\u0029\u0020function.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isMail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisSendmail\u0028\u0029", + "name": "isSendmail", + "summary": "Send\u0020messages\u0020using\u0020\u0024Sendmail.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isSendmail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisQmail\u0028\u0029", + "name": "isQmail", + "summary": "Send\u0020messages\u0020using\u0020qmail.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isQmail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddAddress\u0028\u0029", + "name": "addAddress", + "summary": "Add\u0020a\u0020\u0022To\u0022\u0020address.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addAddress" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddCC\u0028\u0029", + "name": "addCC", + "summary": "Add\u0020a\u0020\u0022CC\u0022\u0020address.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addCC" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddBCC\u0028\u0029", + "name": "addBCC", + "summary": "Add\u0020a\u0020\u0022BCC\u0022\u0020address.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addBCC" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddReplyTo\u0028\u0029", + "name": "addReplyTo", + "summary": "Add\u0020a\u0020\u0022Reply\u002DTo\u0022\u0020address.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addReplyTo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddOrEnqueueAnAddress\u0028\u0029", + "name": "addOrEnqueueAnAddress", + "summary": "Add\u0020an\u0020address\u0020to\u0020one\u0020of\u0020the\u0020recipient\u0020arrays\u0020or\u0020to\u0020the\u0020ReplyTo\u0020array.\u0020Because\u0020PHPMailer\ncan\u0027t\u0020validate\u0020addresses\u0020with\u0020an\u0020IDN\u0020without\u0020knowing\u0020the\u0020PHPMailer\u003A\u003A\u0024CharSet\u0020\u0028that\u0020can\u0020still\nbe\u0020modified\u0020after\u0020calling\u0020this\u0020function\u0029,\u0020addition\u0020of\u0020such\u0020addresses\u0020is\u0020delayed\u0020until\u0020send\u0028\u0029.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addOrEnqueueAnAddress" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetBoundaries\u0028\u0029", + "name": "setBoundaries", + "summary": "Set\u0020the\u0020boundaries\u0020to\u0020use\u0020for\u0020delimiting\u0020MIME\u0020parts.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setBoundaries" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddAnAddress\u0028\u0029", + "name": "addAnAddress", + "summary": "Add\u0020an\u0020address\u0020to\u0020one\u0020of\u0020the\u0020recipient\u0020arrays\u0020or\u0020to\u0020the\u0020ReplyTo\u0020array.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addAnAddress" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AparseAddresses\u0028\u0029", + "name": "parseAddresses", + "summary": "Parse\u0020and\u0020validate\u0020a\u0020string\u0020containing\u0020one\u0020or\u0020more\u0020RFC822\u002Dstyle\u0020comma\u002Dseparated\u0020email\u0020addresses\nof\u0020the\u0020form\u0020\u0022display\u0020name\u0020\u003Caddress\u003E\u0022\u0020into\u0020an\u0020array\u0020of\u0020name\/address\u0020pairs.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_parseAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetFrom\u0028\u0029", + "name": "setFrom", + "summary": "Set\u0020the\u0020From\u0020and\u0020FromName\u0020properties.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setFrom" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetLastMessageID\u0028\u0029", + "name": "getLastMessageID", + "summary": "Return\u0020the\u0020Message\u002DID\u0020header\u0020of\u0020the\u0020last\u0020email.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getLastMessageID" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AvalidateAddress\u0028\u0029", + "name": "validateAddress", + "summary": "Check\u0020that\u0020a\u0020string\u0020looks\u0020like\u0020an\u0020email\u0020address.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_validateAddress" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AidnSupported\u0028\u0029", + "name": "idnSupported", + "summary": "Tells\u0020whether\u0020IDNs\u0020\u0028Internationalized\u0020Domain\u0020Names\u0029\u0020are\u0020supported\u0020or\u0020not.\u0020This\u0020requires\u0020the\n\u0060intl\u0060\u0020and\u0020\u0060mbstring\u0060\u0020PHP\u0020extensions.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_idnSupported" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ApunyencodeAddress\u0028\u0029", + "name": "punyencodeAddress", + "summary": "Converts\u0020IDN\u0020in\u0020given\u0020email\u0020address\u0020to\u0020its\u0020ASCII\u0020form,\u0020also\u0020known\u0020as\u0020punycode,\u0020if\u0020possible.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_punyencodeAddress" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Create\u0020a\u0020message\u0020and\u0020send\u0020it.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_send" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ApreSend\u0028\u0029", + "name": "preSend", + "summary": "Prepare\u0020a\u0020message\u0020for\u0020sending.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_preSend" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ApostSend\u0028\u0029", + "name": "postSend", + "summary": "Actually\u0020send\u0020a\u0020message\u0020via\u0020the\u0020selected\u0020mechanism.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_postSend" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsendmailSend\u0028\u0029", + "name": "sendmailSend", + "summary": "Send\u0020mail\u0020using\u0020the\u0020\u0024Sendmail\u0020program.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_sendmailSend" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisShellSafe\u0028\u0029", + "name": "isShellSafe", + "summary": "Fix\u0020CVE\u002D2016\u002D10033\u0020and\u0020CVE\u002D2016\u002D10045\u0020by\u0020disallowing\u0020potentially\u0020unsafe\u0020shell\u0020characters.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isShellSafe" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisPermittedPath\u0028\u0029", + "name": "isPermittedPath", + "summary": "Check\u0020whether\u0020a\u0020file\u0020path\u0020is\u0020of\u0020a\u0020permitted\u0020type.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isPermittedPath" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AfileIsAccessible\u0028\u0029", + "name": "fileIsAccessible", + "summary": "Check\u0020whether\u0020a\u0020file\u0020path\u0020is\u0020safe,\u0020accessible,\u0020and\u0020readable.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_fileIsAccessible" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AmailSend\u0028\u0029", + "name": "mailSend", + "summary": "Send\u0020mail\u0020using\u0020the\u0020PHP\u0020mail\u0028\u0029\u0020function.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_mailSend" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSMTPInstance\u0028\u0029", + "name": "getSMTPInstance", + "summary": "Get\u0020an\u0020instance\u0020to\u0020use\u0020for\u0020SMTP\u0020operations.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSMTPInstance" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetSMTPInstance\u0028\u0029", + "name": "setSMTPInstance", + "summary": "Provide\u0020an\u0020instance\u0020to\u0020use\u0020for\u0020SMTP\u0020operations.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setSMTPInstance" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetSMTPXclientAttribute\u0028\u0029", + "name": "setSMTPXclientAttribute", + "summary": "Provide\u0020SMTP\u0020XCLIENT\u0020attributes", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setSMTPXclientAttribute" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSMTPXclientAttributes\u0028\u0029", + "name": "getSMTPXclientAttributes", + "summary": "Get\u0020SMTP\u0020XCLIENT\u0020attributes", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSMTPXclientAttributes" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsmtpSend\u0028\u0029", + "name": "smtpSend", + "summary": "Send\u0020mail\u0020via\u0020SMTP.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_smtpSend" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsmtpConnect\u0028\u0029", + "name": "smtpConnect", + "summary": "Initiate\u0020a\u0020connection\u0020to\u0020an\u0020SMTP\u0020server.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_smtpConnect" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsmtpClose\u0028\u0029", + "name": "smtpClose", + "summary": "Close\u0020the\u0020active\u0020SMTP\u0020session\u0020if\u0020one\u0020exists.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_smtpClose" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetLanguage\u0028\u0029", + "name": "setLanguage", + "summary": "Set\u0020the\u0020language\u0020for\u0020error\u0020messages.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setLanguage" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetTranslations\u0028\u0029", + "name": "getTranslations", + "summary": "Get\u0020the\u0020array\u0020of\u0020strings\u0020for\u0020the\u0020current\u0020language.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getTranslations" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddrAppend\u0028\u0029", + "name": "addrAppend", + "summary": "Create\u0020recipient\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addrAppend" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddrFormat\u0028\u0029", + "name": "addrFormat", + "summary": "Format\u0020an\u0020address\u0020for\u0020use\u0020in\u0020a\u0020message\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addrFormat" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AwrapText\u0028\u0029", + "name": "wrapText", + "summary": "Word\u002Dwrap\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_wrapText" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Autf8CharBoundary\u0028\u0029", + "name": "utf8CharBoundary", + "summary": "Find\u0020the\u0020last\u0020character\u0020boundary\u0020prior\u0020to\u0020\u0024maxLength\u0020in\u0020a\u0020utf\u002D8\nquoted\u002Dprintable\u0020encoded\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_utf8CharBoundary" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetWordWrap\u0028\u0029", + "name": "setWordWrap", + "summary": "Apply\u0020word\u0020wrapping\u0020to\u0020the\u0020message\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setWordWrap" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AcreateHeader\u0028\u0029", + "name": "createHeader", + "summary": "Assemble\u0020message\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_createHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetMailMIME\u0028\u0029", + "name": "getMailMIME", + "summary": "Get\u0020the\u0020message\u0020MIME\u0020type\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getMailMIME" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSentMIMEMessage\u0028\u0029", + "name": "getSentMIMEMessage", + "summary": "Returns\u0020the\u0020whole\u0020MIME\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSentMIMEMessage" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgenerateId\u0028\u0029", + "name": "generateId", + "summary": "Create\u0020a\u0020unique\u0020ID\u0020to\u0020use\u0020for\u0020boundaries.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_generateId" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AcreateBody\u0028\u0029", + "name": "createBody", + "summary": "Assemble\u0020the\u0020message\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_createBody" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetBoundaries\u0028\u0029", + "name": "getBoundaries", + "summary": "Get\u0020the\u0020boundaries\u0020that\u0020this\u0020message\u0020will\u0020use", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getBoundaries" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetBoundary\u0028\u0029", + "name": "getBoundary", + "summary": "Return\u0020the\u0020start\u0020of\u0020a\u0020message\u0020boundary.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getBoundary" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AendBoundary\u0028\u0029", + "name": "endBoundary", + "summary": "Return\u0020the\u0020end\u0020of\u0020a\u0020message\u0020boundary.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_endBoundary" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetMessageType\u0028\u0029", + "name": "setMessageType", + "summary": "Set\u0020the\u0020message\u0020type.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setMessageType" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AheaderLine\u0028\u0029", + "name": "headerLine", + "summary": "Format\u0020a\u0020header\u0020line.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_headerLine" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AtextLine\u0028\u0029", + "name": "textLine", + "summary": "Return\u0020a\u0020formatted\u0020mail\u0020line.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_textLine" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddAttachment\u0028\u0029", + "name": "addAttachment", + "summary": "Add\u0020an\u0020attachment\u0020from\u0020a\u0020path\u0020on\u0020the\u0020filesystem.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addAttachment" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetAttachments\u0028\u0029", + "name": "getAttachments", + "summary": "Return\u0020the\u0020array\u0020of\u0020attachments.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getAttachments" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AattachAll\u0028\u0029", + "name": "attachAll", + "summary": "Attach\u0020all\u0020file,\u0020string,\u0020and\u0020binary\u0020attachments\u0020to\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_attachAll" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeFile\u0028\u0029", + "name": "encodeFile", + "summary": "Encode\u0020a\u0020file\u0020attachment\u0020in\u0020requested\u0020format.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeFile" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeString\u0028\u0029", + "name": "encodeString", + "summary": "Encode\u0020a\u0020string\u0020in\u0020requested\u0020format.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeString" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeHeader\u0028\u0029", + "name": "encodeHeader", + "summary": "Encode\u0020a\u0020header\u0020value\u0020\u0028not\u0020including\u0020its\u0020label\u0029\u0020optimally.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AhasMultiBytes\u0028\u0029", + "name": "hasMultiBytes", + "summary": "Check\u0020if\u0020a\u0020string\u0020contains\u0020multi\u002Dbyte\u0020characters.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_hasMultiBytes" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Ahas8bitChars\u0028\u0029", + "name": "has8bitChars", + "summary": "Does\u0020a\u0020string\u0020contain\u0020any\u00208\u002Dbit\u0020chars\u0020\u0028in\u0020any\u0020charset\u0029\u003F", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_has8bitChars" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Abase64EncodeWrapMB\u0028\u0029", + "name": "base64EncodeWrapMB", + "summary": "Encode\u0020and\u0020wrap\u0020long\u0020multibyte\u0020strings\u0020for\u0020mail\u0020headers\nwithout\u0020breaking\u0020lines\u0020within\u0020a\u0020character.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_base64EncodeWrapMB" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeQP\u0028\u0029", + "name": "encodeQP", + "summary": "Encode\u0020a\u0020string\u0020in\u0020quoted\u002Dprintable\u0020format.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeQP" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AencodeQ\u0028\u0029", + "name": "encodeQ", + "summary": "Encode\u0020a\u0020string\u0020using\u0020Q\u0020encoding.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_encodeQ" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddStringAttachment\u0028\u0029", + "name": "addStringAttachment", + "summary": "Add\u0020a\u0020string\u0020or\u0020binary\u0020attachment\u0020\u0028non\u002Dfilesystem\u0029.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addStringAttachment" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddEmbeddedImage\u0028\u0029", + "name": "addEmbeddedImage", + "summary": "Add\u0020an\u0020embedded\u0020\u0028inline\u0029\u0020attachment\u0020from\u0020a\u0020file.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addEmbeddedImage" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddStringEmbeddedImage\u0028\u0029", + "name": "addStringEmbeddedImage", + "summary": "Add\u0020an\u0020embedded\u0020stringified\u0020attachment.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addStringEmbeddedImage" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AvalidateEncoding\u0028\u0029", + "name": "validateEncoding", + "summary": "Validate\u0020encodings.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_validateEncoding" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AcidExists\u0028\u0029", + "name": "cidExists", + "summary": "Check\u0020if\u0020an\u0020embedded\u0020attachment\u0020is\u0020present\u0020with\u0020this\u0020cid.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_cidExists" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AinlineImageExists\u0028\u0029", + "name": "inlineImageExists", + "summary": "Check\u0020if\u0020an\u0020inline\u0020attachment\u0020is\u0020present.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_inlineImageExists" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AattachmentExists\u0028\u0029", + "name": "attachmentExists", + "summary": "Check\u0020if\u0020an\u0020attachment\u0020\u0028non\u002Dinline\u0029\u0020is\u0020present.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_attachmentExists" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AalternativeExists\u0028\u0029", + "name": "alternativeExists", + "summary": "Check\u0020if\u0020this\u0020message\u0020has\u0020an\u0020alternative\u0020body\u0020set.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_alternativeExists" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearQueuedAddresses\u0028\u0029", + "name": "clearQueuedAddresses", + "summary": "Clear\u0020queued\u0020addresses\u0020of\u0020given\u0020kind.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearQueuedAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearAddresses\u0028\u0029", + "name": "clearAddresses", + "summary": "Clear\u0020all\u0020To\u0020recipients.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearCCs\u0028\u0029", + "name": "clearCCs", + "summary": "Clear\u0020all\u0020CC\u0020recipients.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearCCs" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearBCCs\u0028\u0029", + "name": "clearBCCs", + "summary": "Clear\u0020all\u0020BCC\u0020recipients.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearBCCs" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearReplyTos\u0028\u0029", + "name": "clearReplyTos", + "summary": "Clear\u0020all\u0020ReplyTo\u0020recipients.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearReplyTos" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearAllRecipients\u0028\u0029", + "name": "clearAllRecipients", + "summary": "Clear\u0020all\u0020recipient\u0020types.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearAllRecipients" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearAttachments\u0028\u0029", + "name": "clearAttachments", + "summary": "Clear\u0020all\u0020filesystem,\u0020string,\u0020and\u0020binary\u0020attachments.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearAttachments" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearCustomHeaders\u0028\u0029", + "name": "clearCustomHeaders", + "summary": "Clear\u0020all\u0020custom\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearCustomHeaders" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AclearCustomHeader\u0028\u0029", + "name": "clearCustomHeader", + "summary": "Clear\u0020a\u0020specific\u0020custom\u0020header\u0020by\u0020name\u0020or\u0020name\u0020and\u0020value.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_clearCustomHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AreplaceCustomHeader\u0028\u0029", + "name": "replaceCustomHeader", + "summary": "Replace\u0020a\u0020custom\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_replaceCustomHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetError\u0028\u0029", + "name": "setError", + "summary": "Add\u0020an\u0020error\u0020message\u0020to\u0020the\u0020error\u0020container.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setError" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ArfcDate\u0028\u0029", + "name": "rfcDate", + "summary": "Return\u0020an\u0020RFC\u0020822\u0020formatted\u0020date.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_rfcDate" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AserverHostname\u0028\u0029", + "name": "serverHostname", + "summary": "Get\u0020the\u0020server\u0020hostname.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_serverHostname" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisValidHost\u0028\u0029", + "name": "isValidHost", + "summary": "Validate\u0020whether\u0020a\u0020string\u0020contains\u0020a\u0020valid\u0020value\u0020to\u0020use\u0020as\u0020a\u0020hostname\u0020or\u0020IP\u0020address.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isValidHost" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Alang\u0028\u0029", + "name": "lang", + "summary": "Get\u0020an\u0020error\u0020message\u0020in\u0020the\u0020current\u0020language.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_lang" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetSmtpErrorMessage\u0028\u0029", + "name": "getSmtpErrorMessage", + "summary": "Build\u0020an\u0020error\u0020message\u0020starting\u0020with\u0020a\u0020generic\u0020one\u0020and\u0020adding\u0020details\u0020if\u0020possible.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getSmtpErrorMessage" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AisError\u0028\u0029", + "name": "isError", + "summary": "Check\u0020if\u0020an\u0020error\u0020occurred.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_isError" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AaddCustomHeader\u0028\u0029", + "name": "addCustomHeader", + "summary": "Add\u0020a\u0020custom\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_addCustomHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetCustomHeaders\u0028\u0029", + "name": "getCustomHeaders", + "summary": "Returns\u0020all\u0020custom\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getCustomHeaders" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AmsgHTML\u0028\u0029", + "name": "msgHTML", + "summary": "Create\u0020a\u0020message\u0020body\u0020from\u0020an\u0020HTML\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_msgHTML" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Ahtml2text\u0028\u0029", + "name": "html2text", + "summary": "Convert\u0020an\u0020HTML\u0020string\u0020into\u0020plain\u0020text.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_html2text" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A_mime_types\u0028\u0029", + "name": "_mime_types", + "summary": "Get\u0020the\u0020MIME\u0020type\u0020for\u0020a\u0020file\u0020extension.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method__mime_types" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AfilenameToType\u0028\u0029", + "name": "filenameToType", + "summary": "Map\u0020a\u0020file\u0020name\u0020to\u0020a\u0020MIME\u0020type.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_filenameToType" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Amb_pathinfo\u0028\u0029", + "name": "mb_pathinfo", + "summary": "Multi\u002Dbyte\u002Dsafe\u0020pathinfo\u0020replacement.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_mb_pathinfo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020or\u0020reset\u0020instance\u0020properties.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_set" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsecureHeader\u0028\u0029", + "name": "secureHeader", + "summary": "Strip\u0020newlines\u0020to\u0020prevent\u0020header\u0020injection.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_secureHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AnormalizeBreaks\u0028\u0029", + "name": "normalizeBreaks", + "summary": "Normalize\u0020line\u0020breaks\u0020in\u0020a\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_normalizeBreaks" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AstripTrailingWSP\u0028\u0029", + "name": "stripTrailingWSP", + "summary": "Remove\u0020trailing\u0020whitespace\u0020from\u0020a\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_stripTrailingWSP" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AstripTrailingBreaks\u0028\u0029", + "name": "stripTrailingBreaks", + "summary": "Strip\u0020trailing\u0020line\u0020breaks\u0020from\u0020a\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_stripTrailingBreaks" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetLE\u0028\u0029", + "name": "getLE", + "summary": "Return\u0020the\u0020current\u0020line\u0020break\u0020format\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getLE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetLE\u0028\u0029", + "name": "setLE", + "summary": "Set\u0020the\u0020line\u0020break\u0020format\u0020string,\u0020e.g.\u0020\u0022\\r\\n\u0022.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setLE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003Asign\u0028\u0029", + "name": "sign", + "summary": "Set\u0020the\u0020public\u0020and\u0020private\u0020key\u0020files\u0020and\u0020password\u0020for\u0020S\/MIME\u0020signing.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_sign" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_QP\u0028\u0029", + "name": "DKIM_QP", + "summary": "Quoted\u002DPrintable\u002Dencode\u0020a\u0020DKIM\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_QP" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_Sign\u0028\u0029", + "name": "DKIM_Sign", + "summary": "Generate\u0020a\u0020DKIM\u0020signature.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_Sign" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_HeaderC\u0028\u0029", + "name": "DKIM_HeaderC", + "summary": "Generate\u0020a\u0020DKIM\u0020canonicalization\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_HeaderC" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_BodyC\u0028\u0029", + "name": "DKIM_BodyC", + "summary": "Generate\u0020a\u0020DKIM\u0020canonicalization\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_BodyC" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ADKIM_Add\u0028\u0029", + "name": "DKIM_Add", + "summary": "Create\u0020the\u0020DKIM\u0020header\u0020and\u0020body\u0020in\u0020a\u0020new\u0020message\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_DKIM_Add" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AhasLineLongerThanMax\u0028\u0029", + "name": "hasLineLongerThanMax", + "summary": "Detect\u0020if\u0020a\u0020string\u0020contains\u0020a\u0020line\u0020longer\u0020than\u0020the\u0020maximum\u0020line\u0020length\nallowed\u0020by\u0020RFC\u00202822\u0020section\u00202.1.1.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_hasLineLongerThanMax" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AquotedString\u0028\u0029", + "name": "quotedString", + "summary": "If\u0020a\u0020string\u0020contains\u0020any\u0020\u0022special\u0022\u0020characters,\u0020double\u002Dquote\u0020the\u0020name,\nand\u0020escape\u0020any\u0020double\u0020quotes\u0020with\u0020a\u0020backslash.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_quotedString" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetToAddresses\u0028\u0029", + "name": "getToAddresses", + "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027to\u0027\u0020property.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getToAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetCcAddresses\u0028\u0029", + "name": "getCcAddresses", + "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027cc\u0027\u0020property.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getCcAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetBccAddresses\u0028\u0029", + "name": "getBccAddresses", + "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027bcc\u0027\u0020property.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getBccAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetReplyToAddresses\u0028\u0029", + "name": "getReplyToAddresses", + "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027ReplyTo\u0027\u0020property.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getReplyToAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetAllRecipientAddresses\u0028\u0029", + "name": "getAllRecipientAddresses", + "summary": "Allows\u0020for\u0020public\u0020read\u0020access\u0020to\u0020\u0027all_recipients\u0027\u0020property.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getAllRecipientAddresses" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AdoCallback\u0028\u0029", + "name": "doCallback", + "summary": "Perform\u0020a\u0020callback.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_doCallback" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AgetOAuth\u0028\u0029", + "name": "getOAuth", + "summary": "Get\u0020the\u0020OAuthTokenProvider\u0020instance.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_getOAuth" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AsetOAuth\u0028\u0029", + "name": "setOAuth", + "summary": "Set\u0020an\u0020OAuthTokenProvider\u0020instance.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#method_setOAuth" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACHARSET_ASCII", + "name": "CHARSET_ASCII", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CHARSET_ASCII" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACHARSET_ISO88591", + "name": "CHARSET_ISO88591", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CHARSET_ISO88591" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACHARSET_UTF8", + "name": "CHARSET_UTF8", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CHARSET_UTF8" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_PLAINTEXT", + "name": "CONTENT_TYPE_PLAINTEXT", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_PLAINTEXT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_TEXT_CALENDAR", + "name": "CONTENT_TYPE_TEXT_CALENDAR", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_TEXT_CALENDAR" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_TEXT_HTML", + "name": "CONTENT_TYPE_TEXT_HTML", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_TEXT_HTML" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_MULTIPART_ALTERNATIVE", + "name": "CONTENT_TYPE_MULTIPART_ALTERNATIVE", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_MULTIPART_ALTERNATIVE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_MULTIPART_MIXED", + "name": "CONTENT_TYPE_MULTIPART_MIXED", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_MULTIPART_MIXED" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACONTENT_TYPE_MULTIPART_RELATED", + "name": "CONTENT_TYPE_MULTIPART_RELATED", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CONTENT_TYPE_MULTIPART_RELATED" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_7BIT", + "name": "ENCODING_7BIT", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_7BIT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_8BIT", + "name": "ENCODING_8BIT", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_8BIT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_BASE64", + "name": "ENCODING_BASE64", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_BASE64" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_BINARY", + "name": "ENCODING_BINARY", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_BINARY" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCODING_QUOTED_PRINTABLE", + "name": "ENCODING_QUOTED_PRINTABLE", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCODING_QUOTED_PRINTABLE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCRYPTION_STARTTLS", + "name": "ENCRYPTION_STARTTLS", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCRYPTION_STARTTLS" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AENCRYPTION_SMTPS", + "name": "ENCRYPTION_SMTPS", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ENCRYPTION_SMTPS" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_REQUEST", + "name": "ICAL_METHOD_REQUEST", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_REQUEST" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_PUBLISH", + "name": "ICAL_METHOD_PUBLISH", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_PUBLISH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_REPLY", + "name": "ICAL_METHOD_REPLY", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_REPLY" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_ADD", + "name": "ICAL_METHOD_ADD", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_ADD" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_CANCEL", + "name": "ICAL_METHOD_CANCEL", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_CANCEL" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_REFRESH", + "name": "ICAL_METHOD_REFRESH", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_REFRESH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_COUNTER", + "name": "ICAL_METHOD_COUNTER", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_COUNTER" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AICAL_METHOD_DECLINECOUNTER", + "name": "ICAL_METHOD_DECLINECOUNTER", + "summary": "", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_ICAL_METHOD_DECLINECOUNTER" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AVERSION", + "name": "VERSION", + "summary": "The\u0020PHPMailer\u0020Version\u0020number.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_VERSION" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTOP_MESSAGE", + "name": "STOP_MESSAGE", + "summary": "Error\u0020severity\u003A\u0020message\u0020only,\u0020continue\u0020processing.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STOP_MESSAGE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTOP_CONTINUE", + "name": "STOP_CONTINUE", + "summary": "Error\u0020severity\u003A\u0020message,\u0020likely\u0020ok\u0020to\u0020continue\u0020processing.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STOP_CONTINUE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTOP_CRITICAL", + "name": "STOP_CRITICAL", + "summary": "Error\u0020severity\u003A\u0020message,\u0020plus\u0020full\u0020stop,\u0020critical\u0020error\u0020reached.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STOP_CRITICAL" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ACRLF", + "name": "CRLF", + "summary": "The\u0020SMTP\u0020standard\u0020CRLF\u0020line\u0020break.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_CRLF" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AFWS", + "name": "FWS", + "summary": "\u0022Folding\u0020White\u0020Space\u0022\u0020a\u0020white\u0020space\u0020string\u0020used\u0020for\u0020line\u0020folding.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_FWS" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AMAIL_MAX_LINE_LENGTH", + "name": "MAIL_MAX_LINE_LENGTH", + "summary": "The\u0020maximum\u0020line\u0020length\u0020supported\u0020by\u0020mail\u0028\u0029.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_MAIL_MAX_LINE_LENGTH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003AMAX_LINE_LENGTH", + "name": "MAX_LINE_LENGTH", + "summary": "The\u0020maximum\u0020line\u0020length\u0020allowed\u0020by\u0020RFC\u00202822\u0020section\u00202.1.1.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_MAX_LINE_LENGTH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003ASTD_LINE_LENGTH", + "name": "STD_LINE_LENGTH", + "summary": "The\u0020lower\u0020maximum\u0020line\u0020length\u0020allowed\u0020by\u0020RFC\u00202822\u0020section\u00202.1.1.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#constant_STD_LINE_LENGTH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Priority", + "name": "Priority", + "summary": "Email\u0020priority.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Priority" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024CharSet", + "name": "CharSet", + "summary": "The\u0020character\u0020set\u0020of\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_CharSet" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ContentType", + "name": "ContentType", + "summary": "The\u0020MIME\u0020Content\u002Dtype\u0020of\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ContentType" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Encoding", + "name": "Encoding", + "summary": "The\u0020message\u0020encoding.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Encoding" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ErrorInfo", + "name": "ErrorInfo", + "summary": "Holds\u0020the\u0020most\u0020recent\u0020mailer\u0020error\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ErrorInfo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024From", + "name": "From", + "summary": "The\u0020From\u0020email\u0020address\u0020for\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_From" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024FromName", + "name": "FromName", + "summary": "The\u0020From\u0020name\u0020of\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_FromName" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Sender", + "name": "Sender", + "summary": "The\u0020envelope\u0020sender\u0020of\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Sender" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Subject", + "name": "Subject", + "summary": "The\u0020Subject\u0020of\u0020the\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Subject" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Body", + "name": "Body", + "summary": "An\u0020HTML\u0020or\u0020plain\u0020text\u0020message\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Body" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024AltBody", + "name": "AltBody", + "summary": "The\u0020plain\u002Dtext\u0020message\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_AltBody" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Ical", + "name": "Ical", + "summary": "An\u0020iCal\u0020message\u0020part\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Ical" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024IcalMethods", + "name": "IcalMethods", + "summary": "Value\u002Darray\u0020of\u0020\u0022method\u0022\u0020in\u0020Contenttype\u0020header\u0020\u0022text\/calendar\u0022", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_IcalMethods" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MIMEBody", + "name": "MIMEBody", + "summary": "The\u0020complete\u0020compiled\u0020MIME\u0020message\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MIMEBody" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MIMEHeader", + "name": "MIMEHeader", + "summary": "The\u0020complete\u0020compiled\u0020MIME\u0020message\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MIMEHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024mailHeader", + "name": "mailHeader", + "summary": "Extra\u0020headers\u0020that\u0020createHeader\u0028\u0029\u0020doesn\u0027t\u0020fold\u0020in.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_mailHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024WordWrap", + "name": "WordWrap", + "summary": "Word\u002Dwrap\u0020the\u0020message\u0020body\u0020to\u0020this\u0020number\u0020of\u0020chars.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_WordWrap" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Mailer", + "name": "Mailer", + "summary": "Which\u0020method\u0020to\u0020use\u0020to\u0020send\u0020mail.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Mailer" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Sendmail", + "name": "Sendmail", + "summary": "The\u0020path\u0020to\u0020the\u0020sendmail\u0020program.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Sendmail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024UseSendmailOptions", + "name": "UseSendmailOptions", + "summary": "Whether\u0020mail\u0028\u0029\u0020uses\u0020a\u0020fully\u0020sendmail\u002Dcompatible\u0020MTA.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_UseSendmailOptions" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ConfirmReadingTo", + "name": "ConfirmReadingTo", + "summary": "The\u0020email\u0020address\u0020that\u0020a\u0020reading\u0020confirmation\u0020should\u0020be\u0020sent\u0020to,\u0020also\u0020known\u0020as\u0020read\u0020receipt.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ConfirmReadingTo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Hostname", + "name": "Hostname", + "summary": "The\u0020hostname\u0020to\u0020use\u0020in\u0020the\u0020Message\u002DID\u0020header\u0020and\u0020as\u0020default\u0020HELO\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Hostname" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MessageID", + "name": "MessageID", + "summary": "An\u0020ID\u0020to\u0020be\u0020used\u0020in\u0020the\u0020Message\u002DID\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MessageID" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024MessageDate", + "name": "MessageDate", + "summary": "The\u0020message\u0020Date\u0020to\u0020be\u0020used\u0020in\u0020the\u0020Date\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_MessageDate" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Host", + "name": "Host", + "summary": "SMTP\u0020hosts.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Host" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Port", + "name": "Port", + "summary": "The\u0020default\u0020SMTP\u0020server\u0020port.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Port" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Helo", + "name": "Helo", + "summary": "The\u0020SMTP\u0020HELO\/EHLO\u0020name\u0020used\u0020for\u0020the\u0020SMTP\u0020connection.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Helo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPSecure", + "name": "SMTPSecure", + "summary": "What\u0020kind\u0020of\u0020encryption\u0020to\u0020use\u0020on\u0020the\u0020SMTP\u0020connection.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPSecure" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPAutoTLS", + "name": "SMTPAutoTLS", + "summary": "Whether\u0020to\u0020enable\u0020TLS\u0020encryption\u0020automatically\u0020if\u0020a\u0020server\u0020supports\u0020it,\neven\u0020if\u0020\u0060SMTPSecure\u0060\u0020is\u0020not\u0020set\u0020to\u0020\u0027tls\u0027.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPAutoTLS" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPAuth", + "name": "SMTPAuth", + "summary": "Whether\u0020to\u0020use\u0020SMTP\u0020authentication.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPAuth" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPOptions", + "name": "SMTPOptions", + "summary": "Options\u0020array\u0020passed\u0020to\u0020stream_context_create\u0020when\u0020connecting\u0020via\u0020SMTP.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPOptions" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Username", + "name": "Username", + "summary": "SMTP\u0020username.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Username" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Password", + "name": "Password", + "summary": "SMTP\u0020password.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Password" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024AuthType", + "name": "AuthType", + "summary": "SMTP\u0020authentication\u0020type.\u0020Options\u0020are\u0020CRAM\u002DMD5,\u0020LOGIN,\u0020PLAIN,\u0020XOAUTH2.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_AuthType" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPXClient", + "name": "SMTPXClient", + "summary": "SMTP\u0020SMTPXClient\u0020command\u0020attributes", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPXClient" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024oauth", + "name": "oauth", + "summary": "An\u0020implementation\u0020of\u0020the\u0020PHPMailer\u0020OAuthTokenProvider\u0020interface.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_oauth" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Timeout", + "name": "Timeout", + "summary": "The\u0020SMTP\u0020server\u0020timeout\u0020in\u0020seconds.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Timeout" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024dsn", + "name": "dsn", + "summary": "Comma\u0020separated\u0020list\u0020of\u0020DSN\u0020notifications\n\u0027NEVER\u0027\u0020under\u0020no\u0020circumstances\u0020a\u0020DSN\u0020must\u0020be\u0020returned\u0020to\u0020the\u0020sender.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_dsn" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPDebug", + "name": "SMTPDebug", + "summary": "SMTP\u0020class\u0020debug\u0020output\u0020mode.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPDebug" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024Debugoutput", + "name": "Debugoutput", + "summary": "How\u0020to\u0020handle\u0020debug\u0020output.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_Debugoutput" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SMTPKeepAlive", + "name": "SMTPKeepAlive", + "summary": "Whether\u0020to\u0020keep\u0020the\u0020SMTP\u0020connection\u0020open\u0020after\u0020each\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SMTPKeepAlive" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SingleTo", + "name": "SingleTo", + "summary": "Whether\u0020to\u0020split\u0020multiple\u0020to\u0020addresses\u0020into\u0020multiple\u0020messages\nor\u0020send\u0020them\u0020all\u0020in\u0020one\u0020message.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SingleTo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024SingleToArray", + "name": "SingleToArray", + "summary": "Storage\u0020for\u0020addresses\u0020when\u0020SingleTo\u0020is\u0020enabled.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_SingleToArray" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024do_verp", + "name": "do_verp", + "summary": "Whether\u0020to\u0020generate\u0020VERP\u0020addresses\u0020on\u0020send.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_do_verp" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024AllowEmpty", + "name": "AllowEmpty", + "summary": "Whether\u0020to\u0020allow\u0020sending\u0020messages\u0020with\u0020an\u0020empty\u0020body.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_AllowEmpty" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_selector", + "name": "DKIM_selector", + "summary": "DKIM\u0020selector.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_selector" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_identity", + "name": "DKIM_identity", + "summary": "DKIM\u0020Identity.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_identity" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_passphrase", + "name": "DKIM_passphrase", + "summary": "DKIM\u0020passphrase.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_passphrase" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_domain", + "name": "DKIM_domain", + "summary": "DKIM\u0020signing\u0020domain\u0020name.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_domain" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_copyHeaderFields", + "name": "DKIM_copyHeaderFields", + "summary": "DKIM\u0020Copy\u0020header\u0020field\u0020values\u0020for\u0020diagnostic\u0020use.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_copyHeaderFields" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_extraHeaders", + "name": "DKIM_extraHeaders", + "summary": "DKIM\u0020Extra\u0020signing\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_extraHeaders" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_private", + "name": "DKIM_private", + "summary": "DKIM\u0020private\u0020key\u0020file\u0020path.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_private" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024DKIM_private_string", + "name": "DKIM_private_string", + "summary": "DKIM\u0020private\u0020key\u0020string.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_DKIM_private_string" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024action_function", + "name": "action_function", + "summary": "Callback\u0020Action\u0020function\u0020name.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_action_function" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024XMailer", + "name": "XMailer", + "summary": "What\u0020to\u0020put\u0020in\u0020the\u0020X\u002DMailer\u0020header.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_XMailer" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024validator", + "name": "validator", + "summary": "Which\u0020validator\u0020to\u0020use\u0020by\u0020default\u0020when\u0020validating\u0020email\u0020addresses.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_validator" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024smtp", + "name": "smtp", + "summary": "An\u0020instance\u0020of\u0020the\u0020SMTP\u0020sender\u0020class.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_smtp" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024to", + "name": "to", + "summary": "The\u0020array\u0020of\u0020\u0027to\u0027\u0020names\u0020and\u0020addresses.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_to" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024cc", + "name": "cc", + "summary": "The\u0020array\u0020of\u0020\u0027cc\u0027\u0020names\u0020and\u0020addresses.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_cc" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024bcc", + "name": "bcc", + "summary": "The\u0020array\u0020of\u0020\u0027bcc\u0027\u0020names\u0020and\u0020addresses.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_bcc" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ReplyTo", + "name": "ReplyTo", + "summary": "The\u0020array\u0020of\u0020reply\u002Dto\u0020names\u0020and\u0020addresses.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ReplyTo" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024all_recipients", + "name": "all_recipients", + "summary": "An\u0020array\u0020of\u0020all\u0020kinds\u0020of\u0020addresses.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_all_recipients" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024RecipientsQueue", + "name": "RecipientsQueue", + "summary": "An\u0020array\u0020of\u0020names\u0020and\u0020addresses\u0020queued\u0020for\u0020validation.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_RecipientsQueue" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024ReplyToQueue", + "name": "ReplyToQueue", + "summary": "An\u0020array\u0020of\u0020reply\u002Dto\u0020names\u0020and\u0020addresses\u0020queued\u0020for\u0020validation.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_ReplyToQueue" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024attachment", + "name": "attachment", + "summary": "The\u0020array\u0020of\u0020attachments.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_attachment" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024CustomHeader", + "name": "CustomHeader", + "summary": "The\u0020array\u0020of\u0020custom\u0020headers.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_CustomHeader" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024lastMessageID", + "name": "lastMessageID", + "summary": "The\u0020most\u0020recent\u0020Message\u002DID\u0020\u0028including\u0020angular\u0020brackets\u0029.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_lastMessageID" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024message_type", + "name": "message_type", + "summary": "The\u0020message\u0027s\u0020MIME\u0020type.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_message_type" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024boundary", + "name": "boundary", + "summary": "The\u0020array\u0020of\u0020MIME\u0020boundary\u0020strings.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_boundary" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024language", + "name": "language", + "summary": "The\u0020array\u0020of\u0020available\u0020text\u0020strings\u0020for\u0020the\u0020current\u0020language.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_language" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024error_count", + "name": "error_count", + "summary": "The\u0020number\u0020of\u0020errors\u0020encountered.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_error_count" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_cert_file", + "name": "sign_cert_file", + "summary": "The\u0020S\/MIME\u0020certificate\u0020file\u0020path.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_cert_file" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_key_file", + "name": "sign_key_file", + "summary": "The\u0020S\/MIME\u0020key\u0020file\u0020path.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_key_file" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_extracerts_file", + "name": "sign_extracerts_file", + "summary": "The\u0020optional\u0020S\/MIME\u0020extra\u0020certificates\u0020\u0028\u0022CA\u0020Chain\u0022\u0029\u0020file\u0020path.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_extracerts_file" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024sign_key_pass", + "name": "sign_key_pass", + "summary": "The\u0020S\/MIME\u0020password\u0020for\u0020the\u0020key.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_sign_key_pass" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024exceptions", + "name": "exceptions", + "summary": "Whether\u0020to\u0020throw\u0020exceptions\u0020for\u0020errors.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_exceptions" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024uniqueid", + "name": "uniqueid", + "summary": "Unique\u0020ID\u0020used\u0020for\u0020message\u0020ID\u0020and\u0020boundaries.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_uniqueid" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\PHPMailer\u003A\u003A\u0024LE", + "name": "LE", + "summary": "SMTP\u0020RFC\u0020standard\u0020line\u0020ending\u003B\u0020Carriage\u0020Return,\u0020Line\u0020Feed.", + "url": "classes/PHPMailer-PHPMailer-PHPMailer.html#property_LE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3", + "name": "POP3", + "summary": "PHPMailer\u0020POP\u002DBefore\u002DSMTP\u0020Authentication\u0020Class.", + "url": "classes/PHPMailer-PHPMailer-POP3.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ApopBeforeSmtp\u0028\u0029", + "name": "popBeforeSmtp", + "summary": "Simple\u0020static\u0020wrapper\u0020for\u0020all\u002Din\u002Done\u0020POP\u0020before\u0020SMTP.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_popBeforeSmtp" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Aauthorise\u0028\u0029", + "name": "authorise", + "summary": "Authenticate\u0020with\u0020a\u0020POP3\u0020server.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_authorise" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020a\u0020POP3\u0020server.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_connect" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Alogin\u0028\u0029", + "name": "login", + "summary": "Log\u0020in\u0020to\u0020the\u0020POP3\u0020server.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_login" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003Adisconnect\u0028\u0029", + "name": "disconnect", + "summary": "Disconnect\u0020from\u0020the\u0020POP3\u0020server.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_disconnect" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AgetResponse\u0028\u0029", + "name": "getResponse", + "summary": "Get\u0020a\u0020response\u0020from\u0020the\u0020POP3\u0020server.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_getResponse" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AsendString\u0028\u0029", + "name": "sendString", + "summary": "Send\u0020raw\u0020data\u0020to\u0020the\u0020POP3\u0020server.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_sendString" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AcheckResponse\u0028\u0029", + "name": "checkResponse", + "summary": "Checks\u0020the\u0020POP3\u0020server\u0020response.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_checkResponse" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AsetError\u0028\u0029", + "name": "setError", + "summary": "Add\u0020an\u0020error\u0020to\u0020the\u0020internal\u0020error\u0020store.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_setError" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AgetErrors\u0028\u0029", + "name": "getErrors", + "summary": "Get\u0020an\u0020array\u0020of\u0020error\u0020messages,\u0020if\u0020any.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_getErrors" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AcatchWarning\u0028\u0029", + "name": "catchWarning", + "summary": "POP3\u0020connection\u0020error\u0020handler.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#method_catchWarning" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003AVERSION", + "name": "VERSION", + "summary": "The\u0020POP3\u0020PHPMailer\u0020Version\u0020number.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_VERSION" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEFAULT_PORT", + "name": "DEFAULT_PORT", + "summary": "Default\u0020POP3\u0020port\u0020number.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEFAULT_PORT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEFAULT_TIMEOUT", + "name": "DEFAULT_TIMEOUT", + "summary": "Default\u0020timeout\u0020in\u0020seconds.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEFAULT_TIMEOUT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ALE", + "name": "LE", + "summary": "Line\u0020break\u0020constant.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_LE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEBUG_OFF", + "name": "DEBUG_OFF", + "summary": "Debug\u0020level\u0020for\u0020no\u0020output.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEBUG_OFF" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEBUG_SERVER", + "name": "DEBUG_SERVER", + "summary": "Debug\u0020level\u0020to\u0020show\u0020server\u0020\u002D\u003E\u0020client\u0020messages\nalso\u0020shows\u0020clients\u0020connection\u0020errors\u0020or\u0020errors\u0020from\u0020server", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEBUG_SERVER" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003ADEBUG_CLIENT", + "name": "DEBUG_CLIENT", + "summary": "Debug\u0020level\u0020to\u0020show\u0020client\u0020\u002D\u003E\u0020server\u0020and\u0020server\u0020\u002D\u003E\u0020client\u0020messages.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#constant_DEBUG_CLIENT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024do_debug", + "name": "do_debug", + "summary": "POP3\u0020class\u0020debug\u0020output\u0020mode.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_do_debug" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024host", + "name": "host", + "summary": "POP3\u0020mail\u0020server\u0020hostname.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_host" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024port", + "name": "port", + "summary": "POP3\u0020port\u0020number.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_port" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024tval", + "name": "tval", + "summary": "POP3\u0020Timeout\u0020Value\u0020in\u0020seconds.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_tval" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024username", + "name": "username", + "summary": "POP3\u0020username.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_username" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024password", + "name": "password", + "summary": "POP3\u0020password.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_password" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024pop_conn", + "name": "pop_conn", + "summary": "Resource\u0020handle\u0020for\u0020the\u0020POP3\u0020connection\u0020socket.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_pop_conn" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024connected", + "name": "connected", + "summary": "Are\u0020we\u0020connected\u003F", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_connected" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\POP3\u003A\u003A\u0024errors", + "name": "errors", + "summary": "Error\u0020container.", + "url": "classes/PHPMailer-PHPMailer-POP3.html#property_errors" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP", + "name": "SMTP", + "summary": "PHPMailer\u0020RFC821\u0020SMTP\u0020email\u0020transport\u0020class.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aedebug\u0028\u0029", + "name": "edebug", + "summary": "Output\u0020debugging\u0020info\u0020via\u0020a\u0020user\u002Dselected\u0020method.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_edebug" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aconnect\u0028\u0029", + "name": "connect", + "summary": "Connect\u0020to\u0020an\u0020SMTP\u0020server.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_connect" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetSMTPConnection\u0028\u0029", + "name": "getSMTPConnection", + "summary": "Create\u0020connection\u0020to\u0020the\u0020SMTP\u0020server.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getSMTPConnection" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AstartTLS\u0028\u0029", + "name": "startTLS", + "summary": "Initiate\u0020a\u0020TLS\u0020\u0028encrypted\u0029\u0020session.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_startTLS" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aauthenticate\u0028\u0029", + "name": "authenticate", + "summary": "Perform\u0020SMTP\u0020authentication.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_authenticate" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Ahmac\u0028\u0029", + "name": "hmac", + "summary": "Calculate\u0020an\u0020MD5\u0020HMAC\u0020hash.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_hmac" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aconnected\u0028\u0029", + "name": "connected", + "summary": "Check\u0020connection\u0020state.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_connected" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020socket\u0020and\u0020clean\u0020up\u0020the\u0020state\u0020of\u0020the\u0020class.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_close" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Adata\u0028\u0029", + "name": "data", + "summary": "Send\u0020an\u0020SMTP\u0020DATA\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_data" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Ahello\u0028\u0029", + "name": "hello", + "summary": "Send\u0020an\u0020SMTP\u0020HELO\u0020or\u0020EHLO\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_hello" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsendHello\u0028\u0029", + "name": "sendHello", + "summary": "Send\u0020an\u0020SMTP\u0020HELO\u0020or\u0020EHLO\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_sendHello" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AparseHelloFields\u0028\u0029", + "name": "parseHelloFields", + "summary": "Parse\u0020a\u0020reply\u0020to\u0020HELO\/EHLO\u0020command\u0020to\u0020discover\u0020server\u0020extensions.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_parseHelloFields" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Amail\u0028\u0029", + "name": "mail", + "summary": "Send\u0020an\u0020SMTP\u0020MAIL\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_mail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aquit\u0028\u0029", + "name": "quit", + "summary": "Send\u0020an\u0020SMTP\u0020QUIT\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_quit" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Arecipient\u0028\u0029", + "name": "recipient", + "summary": "Send\u0020an\u0020SMTP\u0020RCPT\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_recipient" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Axclient\u0028\u0029", + "name": "xclient", + "summary": "Send\u0020SMTP\u0020XCLIENT\u0020command\u0020to\u0020server\u0020and\u0020check\u0020its\u0020return\u0020code.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_xclient" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Send\u0020an\u0020SMTP\u0020RSET\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_reset" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsendCommand\u0028\u0029", + "name": "sendCommand", + "summary": "Send\u0020a\u0020command\u0020to\u0020an\u0020SMTP\u0020server\u0020and\u0020check\u0020its\u0020return\u0020code.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_sendCommand" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsendAndMail\u0028\u0029", + "name": "sendAndMail", + "summary": "Send\u0020an\u0020SMTP\u0020SAML\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_sendAndMail" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Averify\u0028\u0029", + "name": "verify", + "summary": "Send\u0020an\u0020SMTP\u0020VRFY\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_verify" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Anoop\u0028\u0029", + "name": "noop", + "summary": "Send\u0020an\u0020SMTP\u0020NOOP\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_noop" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aturn\u0028\u0029", + "name": "turn", + "summary": "Send\u0020an\u0020SMTP\u0020TURN\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_turn" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aclient_send\u0028\u0029", + "name": "client_send", + "summary": "Send\u0020raw\u0020data\u0020to\u0020the\u0020server.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_client_send" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetError\u0028\u0029", + "name": "getError", + "summary": "Get\u0020the\u0020latest\u0020error.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getError" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetServerExtList\u0028\u0029", + "name": "getServerExtList", + "summary": "Get\u0020SMTP\u0020extensions\u0020available\u0020on\u0020the\u0020server.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getServerExtList" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetServerExt\u0028\u0029", + "name": "getServerExt", + "summary": "Get\u0020metadata\u0020about\u0020the\u0020SMTP\u0020server\u0020from\u0020its\u0020HELO\/EHLO\u0020response.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getServerExt" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetLastReply\u0028\u0029", + "name": "getLastReply", + "summary": "Get\u0020the\u0020last\u0020reply\u0020from\u0020the\u0020server.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getLastReply" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003Aget_lines\u0028\u0029", + "name": "get_lines", + "summary": "Read\u0020the\u0020SMTP\u0020server\u0027s\u0020response.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_get_lines" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetVerp\u0028\u0029", + "name": "setVerp", + "summary": "Enable\u0020or\u0020disable\u0020VERP\u0020address\u0020generation.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setVerp" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetVerp\u0028\u0029", + "name": "getVerp", + "summary": "Get\u0020VERP\u0020address\u0020generation\u0020mode.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getVerp" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetError\u0028\u0029", + "name": "setError", + "summary": "Set\u0020error\u0020messages\u0020and\u0020codes.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setError" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetDebugOutput\u0028\u0029", + "name": "setDebugOutput", + "summary": "Set\u0020debug\u0020output\u0020method.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setDebugOutput" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetDebugOutput\u0028\u0029", + "name": "getDebugOutput", + "summary": "Get\u0020debug\u0020output\u0020method.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getDebugOutput" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetDebugLevel\u0028\u0029", + "name": "setDebugLevel", + "summary": "Set\u0020debug\u0020output\u0020level.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setDebugLevel" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetDebugLevel\u0028\u0029", + "name": "getDebugLevel", + "summary": "Get\u0020debug\u0020output\u0020level.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getDebugLevel" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AsetTimeout\u0028\u0029", + "name": "setTimeout", + "summary": "Set\u0020SMTP\u0020timeout.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_setTimeout" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetTimeout\u0028\u0029", + "name": "getTimeout", + "summary": "Get\u0020SMTP\u0020timeout.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getTimeout" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AerrorHandler\u0028\u0029", + "name": "errorHandler", + "summary": "Reports\u0020an\u0020error\u0020number\u0020and\u0020string.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_errorHandler" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ArecordLastTransactionID\u0028\u0029", + "name": "recordLastTransactionID", + "summary": "Extract\u0020and\u0020return\u0020the\u0020ID\u0020of\u0020the\u0020last\u0020SMTP\u0020transaction\u0020based\u0020on\na\u0020list\u0020of\u0020patterns\u0020provided\u0020in\u0020SMTP\u003A\u003A\u0024smtp_transaction_id_patterns.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_recordLastTransactionID" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AgetLastTransactionID\u0028\u0029", + "name": "getLastTransactionID", + "summary": "Get\u0020the\u0020queue\/transaction\u0020ID\u0020of\u0020the\u0020last\u0020SMTP\u0020transaction\nIf\u0020no\u0020reply\u0020has\u0020been\u0020received\u0020yet,\u0020it\u0020will\u0020return\u0020null.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#method_getLastTransactionID" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AVERSION", + "name": "VERSION", + "summary": "The\u0020PHPMailer\u0020SMTP\u0020version\u0020number.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_VERSION" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ALE", + "name": "LE", + "summary": "SMTP\u0020line\u0020break\u0020constant.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_LE" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEFAULT_PORT", + "name": "DEFAULT_PORT", + "summary": "The\u0020SMTP\u0020port\u0020to\u0020use\u0020if\u0020one\u0020is\u0020not\u0020specified.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEFAULT_PORT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEFAULT_SECURE_PORT", + "name": "DEFAULT_SECURE_PORT", + "summary": "The\u0020SMTPs\u0020port\u0020to\u0020use\u0020if\u0020one\u0020is\u0020not\u0020specified.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEFAULT_SECURE_PORT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AMAX_LINE_LENGTH", + "name": "MAX_LINE_LENGTH", + "summary": "The\u0020maximum\u0020line\u0020length\u0020allowed\u0020by\u0020RFC\u00205321\u0020section\u00204.5.3.1.6,\n\u002Aexcluding\u002A\u0020a\u0020trailing\u0020CRLF\u0020break.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_MAX_LINE_LENGTH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003AMAX_REPLY_LENGTH", + "name": "MAX_REPLY_LENGTH", + "summary": "The\u0020maximum\u0020line\u0020length\u0020allowed\u0020for\u0020replies\u0020in\u0020RFC\u00205321\u0020section\u00204.5.3.1.5,\n\u002Aincluding\u002A\u0020a\u0020trailing\u0020CRLF\u0020line\u0020break.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_MAX_REPLY_LENGTH" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_OFF", + "name": "DEBUG_OFF", + "summary": "Debug\u0020level\u0020for\u0020no\u0020output.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_OFF" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_CLIENT", + "name": "DEBUG_CLIENT", + "summary": "Debug\u0020level\u0020to\u0020show\u0020client\u0020\u002D\u003E\u0020server\u0020messages.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_CLIENT" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_SERVER", + "name": "DEBUG_SERVER", + "summary": "Debug\u0020level\u0020to\u0020show\u0020client\u0020\u002D\u003E\u0020server\u0020and\u0020server\u0020\u002D\u003E\u0020client\u0020messages.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_SERVER" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_CONNECTION", + "name": "DEBUG_CONNECTION", + "summary": "Debug\u0020level\u0020to\u0020show\u0020connection\u0020status,\u0020client\u0020\u002D\u003E\u0020server\u0020and\u0020server\u0020\u002D\u003E\u0020client\u0020messages.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_CONNECTION" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003ADEBUG_LOWLEVEL", + "name": "DEBUG_LOWLEVEL", + "summary": "Debug\u0020level\u0020to\u0020show\u0020all\u0020messages.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#constant_DEBUG_LOWLEVEL" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024do_debug", + "name": "do_debug", + "summary": "Debug\u0020output\u0020level.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_do_debug" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024Debugoutput", + "name": "Debugoutput", + "summary": "How\u0020to\u0020handle\u0020debug\u0020output.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_Debugoutput" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024do_verp", + "name": "do_verp", + "summary": "Whether\u0020to\u0020use\u0020VERP.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_do_verp" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024Timeout", + "name": "Timeout", + "summary": "The\u0020timeout\u0020value\u0020for\u0020connection,\u0020in\u0020seconds.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_Timeout" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024Timelimit", + "name": "Timelimit", + "summary": "How\u0020long\u0020to\u0020wait\u0020for\u0020commands\u0020to\u0020complete,\u0020in\u0020seconds.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_Timelimit" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024smtp_transaction_id_patterns", + "name": "smtp_transaction_id_patterns", + "summary": "Patterns\u0020to\u0020extract\u0020an\u0020SMTP\u0020transaction\u0020id\u0020from\u0020reply\u0020to\u0020a\u0020DATA\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_smtp_transaction_id_patterns" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024xclient_allowed_attributes", + "name": "xclient_allowed_attributes", + "summary": "Allowed\u0020SMTP\u0020XCLIENT\u0020attributes.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_xclient_allowed_attributes" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024last_smtp_transaction_id", + "name": "last_smtp_transaction_id", + "summary": "The\u0020last\u0020transaction\u0020ID\u0020issued\u0020in\u0020response\u0020to\u0020a\u0020DATA\u0020command,\nif\u0020one\u0020was\u0020detected.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_last_smtp_transaction_id" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024smtp_conn", + "name": "smtp_conn", + "summary": "The\u0020socket\u0020for\u0020the\u0020server\u0020connection.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_smtp_conn" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024error", + "name": "error", + "summary": "Error\u0020information,\u0020if\u0020any,\u0020for\u0020the\u0020last\u0020SMTP\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_error" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024helo_rply", + "name": "helo_rply", + "summary": "The\u0020reply\u0020the\u0020server\u0020sent\u0020to\u0020us\u0020for\u0020HELO.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_helo_rply" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024server_caps", + "name": "server_caps", + "summary": "The\u0020set\u0020of\u0020SMTP\u0020extensions\u0020sent\u0020in\u0020reply\u0020to\u0020EHLO\u0020command.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_server_caps" + }, { + "fqsen": "\\PHPMailer\\PHPMailer\\SMTP\u003A\u003A\u0024last_reply", + "name": "last_reply", + "summary": "The\u0020most\u0020recent\u0020reply\u0020received\u0020from\u0020the\u0020server.", + "url": "classes/PHPMailer-PHPMailer-SMTP.html#property_last_reply" + }, { + "fqsen": "\\PhpOption\\LazyOption", + "name": "LazyOption", + "summary": "", + "url": "classes/PhpOption-LazyOption.html" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "", + "url": "classes/PhpOption-LazyOption.html#method_create" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpOption-LazyOption.html#method___construct" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AisDefined\u0028\u0029", + "name": "isDefined", + "summary": "Returns\u0020true\u0020if\u0020a\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-LazyOption.html#method_isDefined" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020true\u0020if\u0020no\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-LazyOption.html#method_isEmpty" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020an\u0020exception\u0020otherwise.", + "url": "classes/PhpOption-LazyOption.html#method_get" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AgetOrElse\u0028\u0029", + "name": "getOrElse", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020default\u0020value\u0020if\u0020not.", + "url": "classes/PhpOption-LazyOption.html#method_getOrElse" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AgetOrCall\u0028\u0029", + "name": "getOrCall", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020results\u0020of\u0020the\u0020callable.", + "url": "classes/PhpOption-LazyOption.html#method_getOrCall" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AgetOrThrow\u0028\u0029", + "name": "getOrThrow", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020the\u0020passed\u0020exception.", + "url": "classes/PhpOption-LazyOption.html#method_getOrThrow" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AorElse\u0028\u0029", + "name": "orElse", + "summary": "Returns\u0020this\u0020option\u0020if\u0020non\u002Dempty,\u0020or\u0020the\u0020passed\u0020option\u0020otherwise.", + "url": "classes/PhpOption-LazyOption.html#method_orElse" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AifDefined\u0028\u0029", + "name": "ifDefined", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020below\u0020except\u0020that\u0020the\u0020return\u0020value\u0020has\u0020no\u0020meaning\u003B\nthe\u0020passed\u0020callable\u0020is\u0020simply\u0020executed\u0020if\u0020the\u0020option\u0020is\u0020non\u002Dempty,\u0020and\nignored\u0020if\u0020the\u0020option\u0020is\u0020empty.", + "url": "classes/PhpOption-LazyOption.html#method_ifDefined" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AforAll\u0028\u0029", + "name": "forAll", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020except\u0020that\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020has\u0020no\u0020meaning.", + "url": "classes/PhpOption-LazyOption.html#method_forAll" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\nand\u0020returns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020wrapped\u0020in\u0020Some\u0028\u0029.", + "url": "classes/PhpOption-LazyOption.html#method_map" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\u0020and\nreturns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020directly.", + "url": "classes/PhpOption-LazyOption.html#method_flatMap" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-LazyOption.html#method_filter" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AfilterNot\u0028\u0029", + "name": "filterNot", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-LazyOption.html#method_filterNot" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-LazyOption.html#method_select" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003Areject\u0028\u0029", + "name": "reject", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-LazyOption.html#method_reject" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/PhpOption-LazyOption.html#method_getIterator" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AfoldLeft\u0028\u0029", + "name": "foldLeft", + "summary": "Binary\u0020operator\u0020for\u0020the\u0020initial\u0020value\u0020and\u0020the\u0020option\u0027s\u0020value.", + "url": "classes/PhpOption-LazyOption.html#method_foldLeft" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003AfoldRight\u0028\u0029", + "name": "foldRight", + "summary": "foldLeft\u0028\u0029\u0020but\u0020with\u0020reversed\u0020arguments\u0020for\u0020the\u0020callable.", + "url": "classes/PhpOption-LazyOption.html#method_foldRight" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003A\u0024option", + "name": "option", + "summary": "", + "url": "classes/PhpOption-LazyOption.html#property_option" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003A\u0024callback", + "name": "callback", + "summary": "", + "url": "classes/PhpOption-LazyOption.html#property_callback" + }, { + "fqsen": "\\PhpOption\\LazyOption\u003A\u003A\u0024arguments", + "name": "arguments", + "summary": "", + "url": "classes/PhpOption-LazyOption.html#property_arguments" + }, { + "fqsen": "\\PhpOption\\None", + "name": "None", + "summary": "", + "url": "classes/PhpOption-None.html" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "", + "url": "classes/PhpOption-None.html#method_create" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020an\u0020exception\u0020otherwise.", + "url": "classes/PhpOption-None.html#method_get" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AgetOrCall\u0028\u0029", + "name": "getOrCall", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020results\u0020of\u0020the\u0020callable.", + "url": "classes/PhpOption-None.html#method_getOrCall" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AgetOrElse\u0028\u0029", + "name": "getOrElse", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020default\u0020value\u0020if\u0020not.", + "url": "classes/PhpOption-None.html#method_getOrElse" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AgetOrThrow\u0028\u0029", + "name": "getOrThrow", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020the\u0020passed\u0020exception.", + "url": "classes/PhpOption-None.html#method_getOrThrow" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020true\u0020if\u0020no\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-None.html#method_isEmpty" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AisDefined\u0028\u0029", + "name": "isDefined", + "summary": "Returns\u0020true\u0020if\u0020a\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-None.html#method_isDefined" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AorElse\u0028\u0029", + "name": "orElse", + "summary": "Returns\u0020this\u0020option\u0020if\u0020non\u002Dempty,\u0020or\u0020the\u0020passed\u0020option\u0020otherwise.", + "url": "classes/PhpOption-None.html#method_orElse" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AifDefined\u0028\u0029", + "name": "ifDefined", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020below\u0020except\u0020that\u0020the\u0020return\u0020value\u0020has\u0020no\u0020meaning\u003B\nthe\u0020passed\u0020callable\u0020is\u0020simply\u0020executed\u0020if\u0020the\u0020option\u0020is\u0020non\u002Dempty,\u0020and\nignored\u0020if\u0020the\u0020option\u0020is\u0020empty.", + "url": "classes/PhpOption-None.html#method_ifDefined" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AforAll\u0028\u0029", + "name": "forAll", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020except\u0020that\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020has\u0020no\u0020meaning.", + "url": "classes/PhpOption-None.html#method_forAll" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\nand\u0020returns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020wrapped\u0020in\u0020Some\u0028\u0029.", + "url": "classes/PhpOption-None.html#method_map" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\u0020and\nreturns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020directly.", + "url": "classes/PhpOption-None.html#method_flatMap" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-None.html#method_filter" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AfilterNot\u0028\u0029", + "name": "filterNot", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-None.html#method_filterNot" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-None.html#method_select" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003Areject\u0028\u0029", + "name": "reject", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-None.html#method_reject" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/PhpOption-None.html#method_getIterator" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AfoldLeft\u0028\u0029", + "name": "foldLeft", + "summary": "Binary\u0020operator\u0020for\u0020the\u0020initial\u0020value\u0020and\u0020the\u0020option\u0027s\u0020value.", + "url": "classes/PhpOption-None.html#method_foldLeft" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003AfoldRight\u0028\u0029", + "name": "foldRight", + "summary": "foldLeft\u0028\u0029\u0020but\u0020with\u0020reversed\u0020arguments\u0020for\u0020the\u0020callable.", + "url": "classes/PhpOption-None.html#method_foldRight" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpOption-None.html#method___construct" + }, { + "fqsen": "\\PhpOption\\None\u003A\u003A\u0024instance", + "name": "instance", + "summary": "", + "url": "classes/PhpOption-None.html#property_instance" + }, { + "fqsen": "\\PhpOption\\Option", + "name": "Option", + "summary": "", + "url": "classes/PhpOption-Option.html" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AfromValue\u0028\u0029", + "name": "fromValue", + "summary": "Creates\u0020an\u0020option\u0020given\u0020a\u0020return\u0020value.", + "url": "classes/PhpOption-Option.html#method_fromValue" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AfromArraysValue\u0028\u0029", + "name": "fromArraysValue", + "summary": "Creates\u0020an\u0020option\u0020from\u0020an\u0020array\u0027s\u0020value.", + "url": "classes/PhpOption-Option.html#method_fromArraysValue" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AfromReturn\u0028\u0029", + "name": "fromReturn", + "summary": "Creates\u0020a\u0020lazy\u002Doption\u0020with\u0020the\u0020given\u0020callback.", + "url": "classes/PhpOption-Option.html#method_fromReturn" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Aensure\u0028\u0029", + "name": "ensure", + "summary": "Option\u0020factory,\u0020which\u0020creates\u0020new\u0020option\u0020based\u0020on\u0020passed\u0020value.", + "url": "classes/PhpOption-Option.html#method_ensure" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Alift\u0028\u0029", + "name": "lift", + "summary": "Lift\u0020a\u0020function\u0020so\u0020that\u0020it\u0020accepts\u0020Option\u0020as\u0020parameters.", + "url": "classes/PhpOption-Option.html#method_lift" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020an\u0020exception\u0020otherwise.", + "url": "classes/PhpOption-Option.html#method_get" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AgetOrElse\u0028\u0029", + "name": "getOrElse", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020default\u0020value\u0020if\u0020not.", + "url": "classes/PhpOption-Option.html#method_getOrElse" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AgetOrCall\u0028\u0029", + "name": "getOrCall", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020results\u0020of\u0020the\u0020callable.", + "url": "classes/PhpOption-Option.html#method_getOrCall" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AgetOrThrow\u0028\u0029", + "name": "getOrThrow", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020the\u0020passed\u0020exception.", + "url": "classes/PhpOption-Option.html#method_getOrThrow" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020true\u0020if\u0020no\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-Option.html#method_isEmpty" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AisDefined\u0028\u0029", + "name": "isDefined", + "summary": "Returns\u0020true\u0020if\u0020a\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-Option.html#method_isDefined" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AorElse\u0028\u0029", + "name": "orElse", + "summary": "Returns\u0020this\u0020option\u0020if\u0020non\u002Dempty,\u0020or\u0020the\u0020passed\u0020option\u0020otherwise.", + "url": "classes/PhpOption-Option.html#method_orElse" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AifDefined\u0028\u0029", + "name": "ifDefined", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020below\u0020except\u0020that\u0020the\u0020return\u0020value\u0020has\u0020no\u0020meaning\u003B\nthe\u0020passed\u0020callable\u0020is\u0020simply\u0020executed\u0020if\u0020the\u0020option\u0020is\u0020non\u002Dempty,\u0020and\nignored\u0020if\u0020the\u0020option\u0020is\u0020empty.", + "url": "classes/PhpOption-Option.html#method_ifDefined" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AforAll\u0028\u0029", + "name": "forAll", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020except\u0020that\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020has\u0020no\u0020meaning.", + "url": "classes/PhpOption-Option.html#method_forAll" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\nand\u0020returns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020wrapped\u0020in\u0020Some\u0028\u0029.", + "url": "classes/PhpOption-Option.html#method_map" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\u0020and\nreturns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020directly.", + "url": "classes/PhpOption-Option.html#method_flatMap" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-Option.html#method_filter" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AfilterNot\u0028\u0029", + "name": "filterNot", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-Option.html#method_filterNot" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-Option.html#method_select" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003Areject\u0028\u0029", + "name": "reject", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-Option.html#method_reject" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AfoldLeft\u0028\u0029", + "name": "foldLeft", + "summary": "Binary\u0020operator\u0020for\u0020the\u0020initial\u0020value\u0020and\u0020the\u0020option\u0027s\u0020value.", + "url": "classes/PhpOption-Option.html#method_foldLeft" + }, { + "fqsen": "\\PhpOption\\Option\u003A\u003AfoldRight\u0028\u0029", + "name": "foldRight", + "summary": "foldLeft\u0028\u0029\u0020but\u0020with\u0020reversed\u0020arguments\u0020for\u0020the\u0020callable.", + "url": "classes/PhpOption-Option.html#method_foldRight" + }, { + "fqsen": "\\PhpOption\\Some", + "name": "Some", + "summary": "", + "url": "classes/PhpOption-Some.html" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/PhpOption-Some.html#method___construct" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "", + "url": "classes/PhpOption-Some.html#method_create" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AisDefined\u0028\u0029", + "name": "isDefined", + "summary": "Returns\u0020true\u0020if\u0020a\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-Some.html#method_isDefined" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "Returns\u0020true\u0020if\u0020no\u0020value\u0020is\u0020available,\u0020false\u0020otherwise.", + "url": "classes/PhpOption-Some.html#method_isEmpty" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020an\u0020exception\u0020otherwise.", + "url": "classes/PhpOption-Some.html#method_get" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AgetOrElse\u0028\u0029", + "name": "getOrElse", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020default\u0020value\u0020if\u0020not.", + "url": "classes/PhpOption-Some.html#method_getOrElse" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AgetOrCall\u0028\u0029", + "name": "getOrCall", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020the\u0020results\u0020of\u0020the\u0020callable.", + "url": "classes/PhpOption-Some.html#method_getOrCall" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AgetOrThrow\u0028\u0029", + "name": "getOrThrow", + "summary": "Returns\u0020the\u0020value\u0020if\u0020available,\u0020or\u0020throws\u0020the\u0020passed\u0020exception.", + "url": "classes/PhpOption-Some.html#method_getOrThrow" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AorElse\u0028\u0029", + "name": "orElse", + "summary": "Returns\u0020this\u0020option\u0020if\u0020non\u002Dempty,\u0020or\u0020the\u0020passed\u0020option\u0020otherwise.", + "url": "classes/PhpOption-Some.html#method_orElse" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AifDefined\u0028\u0029", + "name": "ifDefined", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020below\u0020except\u0020that\u0020the\u0020return\u0020value\u0020has\u0020no\u0020meaning\u003B\nthe\u0020passed\u0020callable\u0020is\u0020simply\u0020executed\u0020if\u0020the\u0020option\u0020is\u0020non\u002Dempty,\u0020and\nignored\u0020if\u0020the\u0020option\u0020is\u0020empty.", + "url": "classes/PhpOption-Some.html#method_ifDefined" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AforAll\u0028\u0029", + "name": "forAll", + "summary": "This\u0020is\u0020similar\u0020to\u0020map\u0028\u0029\u0020except\u0020that\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020has\u0020no\u0020meaning.", + "url": "classes/PhpOption-Some.html#method_forAll" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003Amap\u0028\u0029", + "name": "map", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\nand\u0020returns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020wrapped\u0020in\u0020Some\u0028\u0029.", + "url": "classes/PhpOption-Some.html#method_map" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AflatMap\u0028\u0029", + "name": "flatMap", + "summary": "Applies\u0020the\u0020callable\u0020to\u0020the\u0020value\u0020of\u0020the\u0020option\u0020if\u0020it\u0020is\u0020non\u002Dempty,\u0020and\nreturns\u0020the\u0020return\u0020value\u0020of\u0020the\u0020callable\u0020directly.", + "url": "classes/PhpOption-Some.html#method_flatMap" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-Some.html#method_filter" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AfilterNot\u0028\u0029", + "name": "filterNot", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately\u0020without\u0020applying\u0020the\u0020callable.", + "url": "classes/PhpOption-Some.html#method_filterNot" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003Aselect\u0028\u0029", + "name": "select", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-Some.html#method_select" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003Areject\u0028\u0029", + "name": "reject", + "summary": "If\u0020the\u0020option\u0020is\u0020empty,\u0020it\u0020is\u0020returned\u0020immediately.", + "url": "classes/PhpOption-Some.html#method_reject" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/PhpOption-Some.html#method_getIterator" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AfoldLeft\u0028\u0029", + "name": "foldLeft", + "summary": "Binary\u0020operator\u0020for\u0020the\u0020initial\u0020value\u0020and\u0020the\u0020option\u0027s\u0020value.", + "url": "classes/PhpOption-Some.html#method_foldLeft" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003AfoldRight\u0028\u0029", + "name": "foldRight", + "summary": "foldLeft\u0028\u0029\u0020but\u0020with\u0020reversed\u0020arguments\u0020for\u0020the\u0020callable.", + "url": "classes/PhpOption-Some.html#method_foldRight" + }, { + "fqsen": "\\PhpOption\\Some\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/PhpOption-Some.html#property_value" + }, { + "fqsen": "\\Psr\\Cache\\CacheException", + "name": "CacheException", + "summary": "Exception\u0020interface\u0020for\u0020all\u0020exceptions\u0020thrown\u0020by\u0020an\u0020Implementing\u0020Library.", + "url": "classes/Psr-Cache-CacheException.html" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface", + "name": "CacheItemInterface", + "summary": "CacheItemInterface\u0020defines\u0020an\u0020interface\u0020for\u0020interacting\u0020with\u0020objects\u0020inside\u0020a\u0020cache.", + "url": "classes/Psr-Cache-CacheItemInterface.html" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface\u003A\u003AgetKey\u0028\u0029", + "name": "getKey", + "summary": "Returns\u0020the\u0020key\u0020for\u0020the\u0020current\u0020cache\u0020item.", + "url": "classes/Psr-Cache-CacheItemInterface.html#method_getKey" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Retrieves\u0020the\u0020value\u0020of\u0020the\u0020item\u0020from\u0020the\u0020cache\u0020associated\u0020with\u0020this\u0020object\u0027s\u0020key.", + "url": "classes/Psr-Cache-CacheItemInterface.html#method_get" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface\u003A\u003AisHit\u0028\u0029", + "name": "isHit", + "summary": "Confirms\u0020if\u0020the\u0020cache\u0020item\u0020lookup\u0020resulted\u0020in\u0020a\u0020cache\u0020hit.", + "url": "classes/Psr-Cache-CacheItemInterface.html#method_isHit" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Sets\u0020the\u0020value\u0020represented\u0020by\u0020this\u0020cache\u0020item.", + "url": "classes/Psr-Cache-CacheItemInterface.html#method_set" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface\u003A\u003AexpiresAt\u0028\u0029", + "name": "expiresAt", + "summary": "Sets\u0020the\u0020expiration\u0020time\u0020for\u0020this\u0020cache\u0020item.", + "url": "classes/Psr-Cache-CacheItemInterface.html#method_expiresAt" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemInterface\u003A\u003AexpiresAfter\u0028\u0029", + "name": "expiresAfter", + "summary": "Sets\u0020the\u0020expiration\u0020time\u0020for\u0020this\u0020cache\u0020item.", + "url": "classes/Psr-Cache-CacheItemInterface.html#method_expiresAfter" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface", + "name": "CacheItemPoolInterface", + "summary": "CacheItemPoolInterface\u0020generates\u0020CacheItemInterface\u0020objects.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003AgetItem\u0028\u0029", + "name": "getItem", + "summary": "Returns\u0020a\u0020Cache\u0020Item\u0020representing\u0020the\u0020specified\u0020key.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_getItem" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003AgetItems\u0028\u0029", + "name": "getItems", + "summary": "Returns\u0020a\u0020traversable\u0020set\u0020of\u0020cache\u0020items.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_getItems" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003AhasItem\u0028\u0029", + "name": "hasItem", + "summary": "Confirms\u0020if\u0020the\u0020cache\u0020contains\u0020specified\u0020cache\u0020item.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_hasItem" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Deletes\u0020all\u0020items\u0020in\u0020the\u0020pool.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_clear" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003AdeleteItem\u0028\u0029", + "name": "deleteItem", + "summary": "Removes\u0020the\u0020item\u0020from\u0020the\u0020pool.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_deleteItem" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003AdeleteItems\u0028\u0029", + "name": "deleteItems", + "summary": "Removes\u0020multiple\u0020items\u0020from\u0020the\u0020pool.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_deleteItems" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Persists\u0020a\u0020cache\u0020item\u0020immediately.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_save" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003AsaveDeferred\u0028\u0029", + "name": "saveDeferred", + "summary": "Sets\u0020a\u0020cache\u0020item\u0020to\u0020be\u0020persisted\u0020later.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_saveDeferred" + }, { + "fqsen": "\\Psr\\Cache\\CacheItemPoolInterface\u003A\u003Acommit\u0028\u0029", + "name": "commit", + "summary": "Persists\u0020any\u0020deferred\u0020cache\u0020items.", + "url": "classes/Psr-Cache-CacheItemPoolInterface.html#method_commit" + }, { + "fqsen": "\\Psr\\Cache\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "Exception\u0020interface\u0020for\u0020invalid\u0020cache\u0020arguments.", + "url": "classes/Psr-Cache-InvalidArgumentException.html" + }, { + "fqsen": "\\Psr\\Clock\\ClockInterface", + "name": "ClockInterface", + "summary": "", + "url": "classes/Psr-Clock-ClockInterface.html" + }, { + "fqsen": "\\Psr\\Clock\\ClockInterface\u003A\u003Anow\u0028\u0029", + "name": "now", + "summary": "Returns\u0020the\u0020current\u0020time\u0020as\u0020a\u0020DateTimeImmutable\u0020Object", + "url": "classes/Psr-Clock-ClockInterface.html#method_now" + }, { + "fqsen": "\\Psr\\Container\\ContainerExceptionInterface", + "name": "ContainerExceptionInterface", + "summary": "Base\u0020interface\u0020representing\u0020a\u0020generic\u0020exception\u0020in\u0020a\u0020container.", + "url": "classes/Psr-Container-ContainerExceptionInterface.html" + }, { + "fqsen": "\\Psr\\Container\\ContainerInterface", + "name": "ContainerInterface", + "summary": "Describes\u0020the\u0020interface\u0020of\u0020a\u0020container\u0020that\u0020exposes\u0020methods\u0020to\u0020read\u0020its\u0020entries.", + "url": "classes/Psr-Container-ContainerInterface.html" + }, { + "fqsen": "\\Psr\\Container\\ContainerInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Finds\u0020an\u0020entry\u0020of\u0020the\u0020container\u0020by\u0020its\u0020identifier\u0020and\u0020returns\u0020it.", + "url": "classes/Psr-Container-ContainerInterface.html#method_get" + }, { + "fqsen": "\\Psr\\Container\\ContainerInterface\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Returns\u0020true\u0020if\u0020the\u0020container\u0020can\u0020return\u0020an\u0020entry\u0020for\u0020the\u0020given\u0020identifier.", + "url": "classes/Psr-Container-ContainerInterface.html#method_has" + }, { + "fqsen": "\\Psr\\Container\\NotFoundExceptionInterface", + "name": "NotFoundExceptionInterface", + "summary": "No\u0020entry\u0020was\u0020found\u0020in\u0020the\u0020container.", + "url": "classes/Psr-Container-NotFoundExceptionInterface.html" + }, { + "fqsen": "\\Psr\\Log\\AbstractLogger", + "name": "AbstractLogger", + "summary": "This\u0020is\u0020a\u0020simple\u0020Logger\u0020implementation\u0020that\u0020other\u0020Loggers\u0020can\u0020inherit\u0020from.", + "url": "classes/Psr-Log-AbstractLogger.html" + }, { + "fqsen": "\\Psr\\Log\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "", + "url": "classes/Psr-Log-InvalidArgumentException.html" + }, { + "fqsen": "\\Psr\\Log\\LoggerAwareInterface", + "name": "LoggerAwareInterface", + "summary": "Describes\u0020a\u0020logger\u002Daware\u0020instance.", + "url": "classes/Psr-Log-LoggerAwareInterface.html" + }, { + "fqsen": "\\Psr\\Log\\LoggerAwareInterface\u003A\u003AsetLogger\u0028\u0029", + "name": "setLogger", + "summary": "Sets\u0020a\u0020logger\u0020instance\u0020on\u0020the\u0020object.", + "url": "classes/Psr-Log-LoggerAwareInterface.html#method_setLogger" + }, { + "fqsen": "\\Psr\\Log\\LoggerAwareTrait", + "name": "LoggerAwareTrait", + "summary": "Basic\u0020Implementation\u0020of\u0020LoggerAwareInterface.", + "url": "classes/Psr-Log-LoggerAwareTrait.html" + }, { + "fqsen": "\\Psr\\Log\\LoggerAwareTrait\u003A\u003AsetLogger\u0028\u0029", + "name": "setLogger", + "summary": "Sets\u0020a\u0020logger.", + "url": "classes/Psr-Log-LoggerAwareTrait.html#method_setLogger" + }, { + "fqsen": "\\Psr\\Log\\LoggerAwareTrait\u003A\u003A\u0024logger", + "name": "logger", + "summary": "The\u0020logger\u0020instance.", + "url": "classes/Psr-Log-LoggerAwareTrait.html#property_logger" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface", + "name": "LoggerInterface", + "summary": "Describes\u0020a\u0020logger\u0020instance.", + "url": "classes/Psr-Log-LoggerInterface.html" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Aemergency\u0028\u0029", + "name": "emergency", + "summary": "System\u0020is\u0020unusable.", + "url": "classes/Psr-Log-LoggerInterface.html#method_emergency" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Aalert\u0028\u0029", + "name": "alert", + "summary": "Action\u0020must\u0020be\u0020taken\u0020immediately.", + "url": "classes/Psr-Log-LoggerInterface.html#method_alert" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Acritical\u0028\u0029", + "name": "critical", + "summary": "Critical\u0020conditions.", + "url": "classes/Psr-Log-LoggerInterface.html#method_critical" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Runtime\u0020errors\u0020that\u0020do\u0020not\u0020require\u0020immediate\u0020action\u0020but\u0020should\u0020typically\nbe\u0020logged\u0020and\u0020monitored.", + "url": "classes/Psr-Log-LoggerInterface.html#method_error" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Awarning\u0028\u0029", + "name": "warning", + "summary": "Exceptional\u0020occurrences\u0020that\u0020are\u0020not\u0020errors.", + "url": "classes/Psr-Log-LoggerInterface.html#method_warning" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Anotice\u0028\u0029", + "name": "notice", + "summary": "Normal\u0020but\u0020significant\u0020events.", + "url": "classes/Psr-Log-LoggerInterface.html#method_notice" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Interesting\u0020events.", + "url": "classes/Psr-Log-LoggerInterface.html#method_info" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Adebug\u0028\u0029", + "name": "debug", + "summary": "Detailed\u0020debug\u0020information.", + "url": "classes/Psr-Log-LoggerInterface.html#method_debug" + }, { + "fqsen": "\\Psr\\Log\\LoggerInterface\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Logs\u0020with\u0020an\u0020arbitrary\u0020level.", + "url": "classes/Psr-Log-LoggerInterface.html#method_log" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait", + "name": "LoggerTrait", + "summary": "This\u0020is\u0020a\u0020simple\u0020Logger\u0020trait\u0020that\u0020classes\u0020unable\u0020to\u0020extend\u0020AbstractLogger\n\u0028because\u0020they\u0020extend\u0020another\u0020class,\u0020etc\u0029\u0020can\u0020include.", + "url": "classes/Psr-Log-LoggerTrait.html" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Aemergency\u0028\u0029", + "name": "emergency", + "summary": "System\u0020is\u0020unusable.", + "url": "classes/Psr-Log-LoggerTrait.html#method_emergency" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Aalert\u0028\u0029", + "name": "alert", + "summary": "Action\u0020must\u0020be\u0020taken\u0020immediately.", + "url": "classes/Psr-Log-LoggerTrait.html#method_alert" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Acritical\u0028\u0029", + "name": "critical", + "summary": "Critical\u0020conditions.", + "url": "classes/Psr-Log-LoggerTrait.html#method_critical" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Runtime\u0020errors\u0020that\u0020do\u0020not\u0020require\u0020immediate\u0020action\u0020but\u0020should\u0020typically\nbe\u0020logged\u0020and\u0020monitored.", + "url": "classes/Psr-Log-LoggerTrait.html#method_error" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Awarning\u0028\u0029", + "name": "warning", + "summary": "Exceptional\u0020occurrences\u0020that\u0020are\u0020not\u0020errors.", + "url": "classes/Psr-Log-LoggerTrait.html#method_warning" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Anotice\u0028\u0029", + "name": "notice", + "summary": "Normal\u0020but\u0020significant\u0020events.", + "url": "classes/Psr-Log-LoggerTrait.html#method_notice" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Interesting\u0020events.", + "url": "classes/Psr-Log-LoggerTrait.html#method_info" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Adebug\u0028\u0029", + "name": "debug", + "summary": "Detailed\u0020debug\u0020information.", + "url": "classes/Psr-Log-LoggerTrait.html#method_debug" + }, { + "fqsen": "\\Psr\\Log\\LoggerTrait\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Logs\u0020with\u0020an\u0020arbitrary\u0020level.", + "url": "classes/Psr-Log-LoggerTrait.html#method_log" + }, { + "fqsen": "\\Psr\\Log\\LogLevel", + "name": "LogLevel", + "summary": "Describes\u0020log\u0020levels.", + "url": "classes/Psr-Log-LogLevel.html" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003AEMERGENCY", + "name": "EMERGENCY", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_EMERGENCY" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003AALERT", + "name": "ALERT", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_ALERT" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003ACRITICAL", + "name": "CRITICAL", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_CRITICAL" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003AERROR", + "name": "ERROR", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_ERROR" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003AWARNING", + "name": "WARNING", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_WARNING" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003ANOTICE", + "name": "NOTICE", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_NOTICE" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003AINFO", + "name": "INFO", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_INFO" + }, { + "fqsen": "\\Psr\\Log\\LogLevel\u003A\u003ADEBUG", + "name": "DEBUG", + "summary": "", + "url": "classes/Psr-Log-LogLevel.html#constant_DEBUG" + }, { + "fqsen": "\\Psr\\Log\\NullLogger", + "name": "NullLogger", + "summary": "This\u0020Logger\u0020can\u0020be\u0020used\u0020to\u0020avoid\u0020conditional\u0020log\u0020calls.", + "url": "classes/Psr-Log-NullLogger.html" + }, { + "fqsen": "\\Psr\\Log\\NullLogger\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Logs\u0020with\u0020an\u0020arbitrary\u0020level.", + "url": "classes/Psr-Log-NullLogger.html#method_log" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheException", + "name": "CacheException", + "summary": "Interface\u0020used\u0020for\u0020all\u0020types\u0020of\u0020exceptions\u0020thrown\u0020by\u0020the\u0020implementing\u0020library.", + "url": "classes/Psr-SimpleCache-CacheException.html" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface", + "name": "CacheInterface", + "summary": "", + "url": "classes/Psr-SimpleCache-CacheInterface.html" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Fetches\u0020a\u0020value\u0020from\u0020the\u0020cache.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_get" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Persists\u0020data\u0020in\u0020the\u0020cache,\u0020uniquely\u0020referenced\u0020by\u0020a\u0020key\u0020with\u0020an\u0020optional\u0020expiration\u0020TTL\u0020time.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_set" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020item\u0020from\u0020the\u0020cache\u0020by\u0020its\u0020unique\u0020key.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_delete" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Wipes\u0020clean\u0020the\u0020entire\u0020cache\u0027s\u0020keys.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_clear" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003AgetMultiple\u0028\u0029", + "name": "getMultiple", + "summary": "Obtains\u0020multiple\u0020cache\u0020items\u0020by\u0020their\u0020unique\u0020keys.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_getMultiple" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003AsetMultiple\u0028\u0029", + "name": "setMultiple", + "summary": "Persists\u0020a\u0020set\u0020of\u0020key\u0020\u003D\u003E\u0020value\u0020pairs\u0020in\u0020the\u0020cache,\u0020with\u0020an\u0020optional\u0020TTL.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_setMultiple" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003AdeleteMultiple\u0028\u0029", + "name": "deleteMultiple", + "summary": "Deletes\u0020multiple\u0020cache\u0020items\u0020in\u0020a\u0020single\u0020operation.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_deleteMultiple" + }, { + "fqsen": "\\Psr\\SimpleCache\\CacheInterface\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determines\u0020whether\u0020an\u0020item\u0020is\u0020present\u0020in\u0020the\u0020cache.", + "url": "classes/Psr-SimpleCache-CacheInterface.html#method_has" + }, { + "fqsen": "\\Psr\\SimpleCache\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "Exception\u0020interface\u0020for\u0020invalid\u0020cache\u0020arguments.", + "url": "classes/Psr-SimpleCache-InvalidArgumentException.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AbstractClassPass", + "name": "AbstractClassPass", + "summary": "The\u0020abstract\u0020class\u0020pass\u0020handles\u0020abstract\u0020classes\u0020and\u0020methods,\u0020complaining\u0020if\u0020there\u0020are\u0020too\u0020few\u0020or\u0020too\u0020many\u0020of\u0020either.", + "url": "classes/Psy-CodeCleaner-AbstractClassPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AbstractClassPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-AbstractClassPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AbstractClassPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-AbstractClassPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AbstractClassPass\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Psy-CodeCleaner-AbstractClassPass.html#property_class" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AbstractClassPass\u003A\u003A\u0024abstractMethods", + "name": "abstractMethods", + "summary": "", + "url": "classes/Psy-CodeCleaner-AbstractClassPass.html#property_abstractMethods" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AssignThisVariablePass", + "name": "AssignThisVariablePass", + "summary": "Validate\u0020that\u0020the\u0020user\u0020input\u0020does\u0020not\u0020assign\u0020the\u0020\u0060\u0024this\u0060\u0020variable.", + "url": "classes/Psy-CodeCleaner-AssignThisVariablePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\AssignThisVariablePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020that\u0020the\u0020user\u0020input\u0020does\u0020not\u0020assign\u0020the\u0020\u0060\u0024this\u0060\u0020variable.", + "url": "classes/Psy-CodeCleaner-AssignThisVariablePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CalledClassPass", + "name": "CalledClassPass", + "summary": "The\u0020called\u0020class\u0020pass\u0020throws\u0020warnings\u0020for\u0020get_class\u0028\u0029\u0020and\u0020get_called_class\u0028\u0029\noutside\u0020a\u0020class\u0020context.", + "url": "classes/Psy-CodeCleaner-CalledClassPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CalledClassPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-CalledClassPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CalledClassPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-CalledClassPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CalledClassPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-CalledClassPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CalledClassPass\u003A\u003AisNull\u0028\u0029", + "name": "isNull", + "summary": "", + "url": "classes/Psy-CodeCleaner-CalledClassPass.html#method_isNull" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CalledClassPass\u003A\u003A\u0024inClass", + "name": "inClass", + "summary": "", + "url": "classes/Psy-CodeCleaner-CalledClassPass.html#property_inClass" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CallTimePassByReferencePass", + "name": "CallTimePassByReferencePass", + "summary": "Validate\u0020that\u0020the\u0020user\u0020did\u0020not\u0020use\u0020the\u0020call\u002Dtime\u0020pass\u002Dby\u002Dreference\u0020that\u0020causes\u0020a\u0020fatal\u0020error.", + "url": "classes/Psy-CodeCleaner-CallTimePassByReferencePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CallTimePassByReferencePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020of\u0020use\u0020call\u002Dtime\u0020pass\u002Dby\u002Dreference.", + "url": "classes/Psy-CodeCleaner-CallTimePassByReferencePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CallTimePassByReferencePass\u003A\u003AEXCEPTION_MESSAGE", + "name": "EXCEPTION_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-CallTimePassByReferencePass.html#constant_EXCEPTION_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\CodeCleanerPass", + "name": "CodeCleanerPass", + "summary": "A\u0020CodeCleaner\u0020pass\u0020is\u0020a\u0020PhpParser\u0020Node\u0020Visitor.", + "url": "classes/Psy-CodeCleaner-CodeCleanerPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\EmptyArrayDimFetchPass", + "name": "EmptyArrayDimFetchPass", + "summary": "Validate\u0020empty\u0020brackets\u0020are\u0020only\u0020used\u0020for\u0020assignment.", + "url": "classes/Psy-CodeCleaner-EmptyArrayDimFetchPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\EmptyArrayDimFetchPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-EmptyArrayDimFetchPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\EmptyArrayDimFetchPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-EmptyArrayDimFetchPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\EmptyArrayDimFetchPass\u003A\u003AEXCEPTION_MESSAGE", + "name": "EXCEPTION_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-EmptyArrayDimFetchPass.html#constant_EXCEPTION_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\EmptyArrayDimFetchPass\u003A\u003A\u0024theseOnesAreFine", + "name": "theseOnesAreFine", + "summary": "", + "url": "classes/Psy-CodeCleaner-EmptyArrayDimFetchPass.html#property_theseOnesAreFine" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ExitPass", + "name": "ExitPass", + "summary": "A\u0020CodeCleaner\u0020pass\u0020is\u0020a\u0020PhpParser\u0020Node\u0020Visitor.", + "url": "classes/Psy-CodeCleaner-ExitPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ExitPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Converts\u0020exit\u0020calls\u0020to\u0020BreakExceptions.", + "url": "classes/Psy-CodeCleaner-ExitPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FinalClassPass", + "name": "FinalClassPass", + "summary": "The\u0020final\u0020class\u0020pass\u0020handles\u0020final\u0020classes.", + "url": "classes/Psy-CodeCleaner-FinalClassPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FinalClassPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-FinalClassPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FinalClassPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-FinalClassPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FinalClassPass\u003A\u003AisFinalClass\u0028\u0029", + "name": "isFinalClass", + "summary": "", + "url": "classes/Psy-CodeCleaner-FinalClassPass.html#method_isFinalClass" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FinalClassPass\u003A\u003A\u0024finalClasses", + "name": "finalClasses", + "summary": "", + "url": "classes/Psy-CodeCleaner-FinalClassPass.html#property_finalClasses" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionContextPass", + "name": "FunctionContextPass", + "summary": "A\u0020CodeCleaner\u0020pass\u0020is\u0020a\u0020PhpParser\u0020Node\u0020Visitor.", + "url": "classes/Psy-CodeCleaner-FunctionContextPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionContextPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-FunctionContextPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionContextPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-FunctionContextPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionContextPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-FunctionContextPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionContextPass\u003A\u003A\u0024functionDepth", + "name": "functionDepth", + "summary": "", + "url": "classes/Psy-CodeCleaner-FunctionContextPass.html#property_functionDepth" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionReturnInWriteContextPass", + "name": "FunctionReturnInWriteContextPass", + "summary": "Validate\u0020that\u0020the\u0020functions\u0020are\u0020used\u0020correctly.", + "url": "classes/Psy-CodeCleaner-FunctionReturnInWriteContextPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionReturnInWriteContextPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020that\u0020the\u0020functions\u0020are\u0020used\u0020correctly.", + "url": "classes/Psy-CodeCleaner-FunctionReturnInWriteContextPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionReturnInWriteContextPass\u003A\u003AisCallNode\u0028\u0029", + "name": "isCallNode", + "summary": "", + "url": "classes/Psy-CodeCleaner-FunctionReturnInWriteContextPass.html#method_isCallNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionReturnInWriteContextPass\u003A\u003AISSET_MESSAGE", + "name": "ISSET_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-FunctionReturnInWriteContextPass.html#constant_ISSET_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\FunctionReturnInWriteContextPass\u003A\u003AEXCEPTION_MESSAGE", + "name": "EXCEPTION_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-FunctionReturnInWriteContextPass.html#constant_EXCEPTION_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ImplicitReturnPass", + "name": "ImplicitReturnPass", + "summary": "Add\u0020an\u0020implicit\u0020\u0022return\u0022\u0020to\u0020the\u0020last\u0020statement,\u0020provided\u0020it\u0020can\u0020be\u0020returned.", + "url": "classes/Psy-CodeCleaner-ImplicitReturnPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ImplicitReturnPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-ImplicitReturnPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ImplicitReturnPass\u003A\u003AaddImplicitReturn\u0028\u0029", + "name": "addImplicitReturn", + "summary": "", + "url": "classes/Psy-CodeCleaner-ImplicitReturnPass.html#method_addImplicitReturn" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ImplicitReturnPass\u003A\u003AisNonExpressionStmt\u0028\u0029", + "name": "isNonExpressionStmt", + "summary": "Check\u0020whether\u0020a\u0020given\u0020node\u0020is\u0020a\u0020non\u002Dexpression\u0020statement.", + "url": "classes/Psy-CodeCleaner-ImplicitReturnPass.html#method_isNonExpressionStmt" + }, { + "fqsen": "\\Psy\\CodeCleaner\\InstanceOfPass", + "name": "InstanceOfPass", + "summary": "Validate\u0020that\u0020the\u0020instanceof\u0020statement\u0020does\u0020not\u0020receive\u0020a\u0020scalar\u0020value\u0020or\u0020a\u0020non\u002Dclass\u0020constant.", + "url": "classes/Psy-CodeCleaner-InstanceOfPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\InstanceOfPass\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-CodeCleaner-InstanceOfPass.html#method___construct" + }, { + "fqsen": "\\Psy\\CodeCleaner\\InstanceOfPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020that\u0020the\u0020instanceof\u0020statement\u0020does\u0020not\u0020receive\u0020a\u0020scalar\u0020value\u0020or\u0020a\u0020non\u002Dclass\u0020constant.", + "url": "classes/Psy-CodeCleaner-InstanceOfPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\InstanceOfPass\u003A\u003AEXCEPTION_MSG", + "name": "EXCEPTION_MSG", + "summary": "", + "url": "classes/Psy-CodeCleaner-InstanceOfPass.html#constant_EXCEPTION_MSG" + }, { + "fqsen": "\\Psy\\CodeCleaner\\InstanceOfPass\u003A\u003A\u0024atLeastPhp73", + "name": "atLeastPhp73", + "summary": "", + "url": "classes/Psy-CodeCleaner-InstanceOfPass.html#property_atLeastPhp73" + }, { + "fqsen": "\\Psy\\CodeCleaner\\IssetPass", + "name": "IssetPass", + "summary": "Code\u0020cleaner\u0020pass\u0020to\u0020ensure\u0020we\u0020only\u0020allow\u0020variables,\u0020array\u0020fetch\u0020and\u0020property\nfetch\u0020expressions\u0020in\u0020isset\u0028\u0029\u0020calls.", + "url": "classes/Psy-CodeCleaner-IssetPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\IssetPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-IssetPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\IssetPass\u003A\u003AEXCEPTION_MSG", + "name": "EXCEPTION_MSG", + "summary": "", + "url": "classes/Psy-CodeCleaner-IssetPass.html#constant_EXCEPTION_MSG" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass", + "name": "LabelContextPass", + "summary": "CodeCleanerPass\u0020for\u0020label\u0020context.", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#method_afterTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003A\u0024functionDepth", + "name": "functionDepth", + "summary": "", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#property_functionDepth" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003A\u0024labelDeclarations", + "name": "labelDeclarations", + "summary": "", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#property_labelDeclarations" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LabelContextPass\u003A\u003A\u0024labelGotos", + "name": "labelGotos", + "summary": "", + "url": "classes/Psy-CodeCleaner-LabelContextPass.html#property_labelGotos" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LeavePsyshAlonePass", + "name": "LeavePsyshAlonePass", + "summary": "Validate\u0020that\u0020the\u0020user\u0020input\u0020does\u0020not\u0020reference\u0020the\u0020\u0060\u0024__psysh__\u0060\u0020variable.", + "url": "classes/Psy-CodeCleaner-LeavePsyshAlonePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LeavePsyshAlonePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020that\u0020the\u0020user\u0020input\u0020does\u0020not\u0020reference\u0020the\u0020\u0060\u0024__psysh__\u0060\u0020variable.", + "url": "classes/Psy-CodeCleaner-LeavePsyshAlonePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ListPass", + "name": "ListPass", + "summary": "Validate\u0020that\u0020the\u0020list\u0020assignment.", + "url": "classes/Psy-CodeCleaner-ListPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ListPass\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-CodeCleaner-ListPass.html#method___construct" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ListPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020use\u0020of\u0020list\u0020assignment.", + "url": "classes/Psy-CodeCleaner-ListPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ListPass\u003A\u003AisValidArrayItem\u0028\u0029", + "name": "isValidArrayItem", + "summary": "Validate\u0020whether\u0020a\u0020given\u0020item\u0020in\u0020an\u0020array\u0020is\u0020valid\u0020for\u0020short\u0020assignment.", + "url": "classes/Psy-CodeCleaner-ListPass.html#method_isValidArrayItem" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ListPass\u003A\u003A\u0024atLeastPhp71", + "name": "atLeastPhp71", + "summary": "", + "url": "classes/Psy-CodeCleaner-ListPass.html#property_atLeastPhp71" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LoopContextPass", + "name": "LoopContextPass", + "summary": "The\u0020loop\u0020context\u0020pass\u0020handles\u0020invalid\u0020\u0060break\u0060\u0020and\u0020\u0060continue\u0060\u0020statements.", + "url": "classes/Psy-CodeCleaner-LoopContextPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LoopContextPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-LoopContextPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LoopContextPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-LoopContextPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LoopContextPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-LoopContextPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\LoopContextPass\u003A\u003A\u0024loopDepth", + "name": "loopDepth", + "summary": "", + "url": "classes/Psy-CodeCleaner-LoopContextPass.html#property_loopDepth" + }, { + "fqsen": "\\Psy\\CodeCleaner\\MagicConstantsPass", + "name": "MagicConstantsPass", + "summary": "Swap\u0020out\u0020__DIR__\u0020and\u0020__FILE__\u0020magic\u0020constants\u0020with\u0020our\u0020best\u0020guess\u003F", + "url": "classes/Psy-CodeCleaner-MagicConstantsPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\MagicConstantsPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Swap\u0020out\u0020__DIR__\u0020and\u0020__FILE__\u0020constants,\u0020because\u0020the\u0020default\u0020ones\u0020when\ncalling\u0020eval\u0028\u0029\u0020don\u0027t\u0020make\u0020sense.", + "url": "classes/Psy-CodeCleaner-MagicConstantsPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespaceAwarePass", + "name": "NamespaceAwarePass", + "summary": "Abstract\u0020namespace\u002Daware\u0020code\u0020cleaner\u0020pass.", + "url": "classes/Psy-CodeCleaner-NamespaceAwarePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespaceAwarePass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-NamespaceAwarePass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespaceAwarePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-NamespaceAwarePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespaceAwarePass\u003A\u003AgetFullyQualifiedName\u0028\u0029", + "name": "getFullyQualifiedName", + "summary": "Get\u0020a\u0020fully\u002Dqualified\u0020name\u0020\u0028class,\u0020function,\u0020interface,\u0020etc\u0029.", + "url": "classes/Psy-CodeCleaner-NamespaceAwarePass.html#method_getFullyQualifiedName" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespaceAwarePass\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "", + "url": "classes/Psy-CodeCleaner-NamespaceAwarePass.html#property_namespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespaceAwarePass\u003A\u003A\u0024currentScope", + "name": "currentScope", + "summary": "", + "url": "classes/Psy-CodeCleaner-NamespaceAwarePass.html#property_currentScope" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespacePass", + "name": "NamespacePass", + "summary": "Provide\u0020implicit\u0020namespaces\u0020for\u0020subsequent\u0020execution.", + "url": "classes/Psy-CodeCleaner-NamespacePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespacePass\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-CodeCleaner-NamespacePass.html#method___construct" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespacePass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "If\u0020this\u0020is\u0020a\u0020standalone\u0020namespace\u0020line,\u0020remember\u0020it\u0020for\u0020later.", + "url": "classes/Psy-CodeCleaner-NamespacePass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespacePass\u003A\u003AsetNamespace\u0028\u0029", + "name": "setNamespace", + "summary": "Remember\u0020the\u0020namespace\u0020and\u0020\u0028re\u0029set\u0020the\u0020namespace\u0020on\u0020the\u0020CodeCleaner\u0020as\nwell.", + "url": "classes/Psy-CodeCleaner-NamespacePass.html#method_setNamespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespacePass\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "", + "url": "classes/Psy-CodeCleaner-NamespacePass.html#property_namespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NamespacePass\u003A\u003A\u0024cleaner", + "name": "cleaner", + "summary": "", + "url": "classes/Psy-CodeCleaner-NamespacePass.html#property_cleaner" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NoReturnValue", + "name": "NoReturnValue", + "summary": "A\u0020class\u0020used\u0020internally\u0020by\u0020CodeCleaner\u0020to\u0020represent\u0020input,\u0020such\u0020as\nnon\u002Dexpression\u0020statements,\u0020with\u0020no\u0020return\u0020value.", + "url": "classes/Psy-CodeCleaner-NoReturnValue.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\NoReturnValue\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Get\u0020PhpParser\u0020AST\u0020expression\u0020for\u0020creating\u0020a\u0020new\u0020NoReturnValue.", + "url": "classes/Psy-CodeCleaner-NoReturnValue.html#method_create" + }, { + "fqsen": "\\Psy\\CodeCleaner\\PassableByReferencePass", + "name": "PassableByReferencePass", + "summary": "Validate\u0020that\u0020only\u0020variables\u0020\u0028and\u0020variable\u002Dlike\u0020things\u0029\u0020are\u0020passed\u0020by\u0020reference.", + "url": "classes/Psy-CodeCleaner-PassableByReferencePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\PassableByReferencePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-PassableByReferencePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\PassableByReferencePass\u003A\u003AisPassableByReference\u0028\u0029", + "name": "isPassableByReference", + "summary": "", + "url": "classes/Psy-CodeCleaner-PassableByReferencePass.html#method_isPassableByReference" + }, { + "fqsen": "\\Psy\\CodeCleaner\\PassableByReferencePass\u003A\u003AvalidateArrayMultisort\u0028\u0029", + "name": "validateArrayMultisort", + "summary": "Because\u0020array_multisort\u0020has\u0020a\u0020problematic\u0020signature...\n\nThe\u0020argument\u0020order\u0020is\u0020all\u0020sorts\u0020of\u0020wonky,\u0020and\u0020whether\u0020something\u0020is\u0020passed\nby\u0020reference\u0020or\u0020not\u0020depends\u0020on\u0020the\u0020values\u0020of\u0020the\u0020two\u0020arguments\u0020before\u0020it.", + "url": "classes/Psy-CodeCleaner-PassableByReferencePass.html#method_validateArrayMultisort" + }, { + "fqsen": "\\Psy\\CodeCleaner\\PassableByReferencePass\u003A\u003AEXCEPTION_MESSAGE", + "name": "EXCEPTION_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-PassableByReferencePass.html#constant_EXCEPTION_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\RequirePass", + "name": "RequirePass", + "summary": "Add\u0020runtime\u0020validation\u0020for\u0020\u0060require\u0060\u0020and\u0020\u0060require_once\u0060\u0020calls.", + "url": "classes/Psy-CodeCleaner-RequirePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\RequirePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-RequirePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\RequirePass\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Runtime\u0020validation\u0020that\u0020\u0024file\u0020can\u0020be\u0020resolved\u0020as\u0020an\u0020include\u0020path.", + "url": "classes/Psy-CodeCleaner-RequirePass.html#method_resolve" + }, { + "fqsen": "\\Psy\\CodeCleaner\\RequirePass\u003A\u003AisRequireNode\u0028\u0029", + "name": "isRequireNode", + "summary": "", + "url": "classes/Psy-CodeCleaner-RequirePass.html#method_isRequireNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\RequirePass\u003A\u003AgetIncludePath\u0028\u0029", + "name": "getIncludePath", + "summary": "", + "url": "classes/Psy-CodeCleaner-RequirePass.html#method_getIncludePath" + }, { + "fqsen": "\\Psy\\CodeCleaner\\RequirePass\u003A\u003A\u0024requireTypes", + "name": "requireTypes", + "summary": "", + "url": "classes/Psy-CodeCleaner-RequirePass.html#property_requireTypes" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass", + "name": "ReturnTypePass", + "summary": "Add\u0020runtime\u0020validation\u0020for\u0020return\u0020types.", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#method___construct" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AisFunctionNode\u0028\u0029", + "name": "isFunctionNode", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#method_isFunctionNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AtypeName\u0028\u0029", + "name": "typeName", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#method_typeName" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AMESSAGE", + "name": "MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#constant_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003ANULLABLE_MESSAGE", + "name": "NULLABLE_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#constant_NULLABLE_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AVOID_MESSAGE", + "name": "VOID_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#constant_VOID_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003AVOID_NULL_MESSAGE", + "name": "VOID_NULL_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#constant_VOID_NULL_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003ANULLABLE_VOID_MESSAGE", + "name": "NULLABLE_VOID_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#constant_NULLABLE_VOID_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003A\u0024atLeastPhp71", + "name": "atLeastPhp71", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#property_atLeastPhp71" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ReturnTypePass\u003A\u003A\u0024returnTypeStack", + "name": "returnTypeStack", + "summary": "", + "url": "classes/Psy-CodeCleaner-ReturnTypePass.html#property_returnTypeStack" + }, { + "fqsen": "\\Psy\\CodeCleaner\\StrictTypesPass", + "name": "StrictTypesPass", + "summary": "Provide\u0020implicit\u0020strict\u0020types\u0020declarations\u0020for\u0020for\u0020subsequent\u0020execution.", + "url": "classes/Psy-CodeCleaner-StrictTypesPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\StrictTypesPass\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-CodeCleaner-StrictTypesPass.html#method___construct" + }, { + "fqsen": "\\Psy\\CodeCleaner\\StrictTypesPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "If\u0020this\u0020is\u0020a\u0020standalone\u0020strict\u0020types\u0020declaration,\u0020remember\u0020it\u0020for\u0020later.", + "url": "classes/Psy-CodeCleaner-StrictTypesPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\StrictTypesPass\u003A\u003AEXCEPTION_MESSAGE", + "name": "EXCEPTION_MESSAGE", + "summary": "", + "url": "classes/Psy-CodeCleaner-StrictTypesPass.html#constant_EXCEPTION_MESSAGE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\StrictTypesPass\u003A\u003A\u0024strictTypes", + "name": "strictTypes", + "summary": "", + "url": "classes/Psy-CodeCleaner-StrictTypesPass.html#property_strictTypes" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass", + "name": "UseStatementPass", + "summary": "Provide\u0020implicit\u0020use\u0020statements\u0020for\u0020subsequent\u0020execution.", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Re\u002Dload\u0020the\u0020last\u0020set\u0020of\u0020use\u0020statements\u0020on\u0020re\u002Dentering\u0020a\u0020namespace.", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "If\u0020this\u0020statement\u0020is\u0020a\u0020namespace,\u0020forget\u0020all\u0020the\u0020aliases\u0020we\u0020had.", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass\u003A\u003AfindAlias\u0028\u0029", + "name": "findAlias", + "summary": "Find\u0020class\/namespace\u0020aliases.", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html#method_findAlias" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html#property_aliases" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass\u003A\u003A\u0024lastAliases", + "name": "lastAliases", + "summary": "", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html#property_lastAliases" + }, { + "fqsen": "\\Psy\\CodeCleaner\\UseStatementPass\u003A\u003A\u0024lastNamespace", + "name": "lastNamespace", + "summary": "", + "url": "classes/Psy-CodeCleaner-UseStatementPass.html#property_lastNamespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass", + "name": "ValidClassNamePass", + "summary": "Validate\u0020that\u0020classes\u0020exist.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020class,\u0020interface\u0020and\u0020trait\u0020definitions.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AisConditional\u0028\u0029", + "name": "isConditional", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_isConditional" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AvalidateClassStatement\u0028\u0029", + "name": "validateClassStatement", + "summary": "Validate\u0020a\u0020class\u0020definition\u0020statement.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_validateClassStatement" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AvalidateInterfaceStatement\u0028\u0029", + "name": "validateInterfaceStatement", + "summary": "Validate\u0020an\u0020interface\u0020definition\u0020statement.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_validateInterfaceStatement" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AvalidateTraitStatement\u0028\u0029", + "name": "validateTraitStatement", + "summary": "Validate\u0020a\u0020trait\u0020definition\u0020statement.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_validateTraitStatement" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AensureCanDefine\u0028\u0029", + "name": "ensureCanDefine", + "summary": "Ensure\u0020that\u0020no\u0020class,\u0020interface\u0020or\u0020trait\u0020name\u0020collides\u0020with\u0020a\u0020new\u0020definition.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_ensureCanDefine" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AensureClassExists\u0028\u0029", + "name": "ensureClassExists", + "summary": "Ensure\u0020that\u0020a\u0020referenced\u0020class\u0020exists.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_ensureClassExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AensureClassOrInterfaceExists\u0028\u0029", + "name": "ensureClassOrInterfaceExists", + "summary": "Ensure\u0020that\u0020a\u0020referenced\u0020class\u0020_or\u0020interface_\u0020exists.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_ensureClassOrInterfaceExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AensureClassOrTraitExists\u0028\u0029", + "name": "ensureClassOrTraitExists", + "summary": "Ensure\u0020that\u0020a\u0020referenced\u0020class\u0020_or\u0020trait_\u0020exists.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_ensureClassOrTraitExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AensureMethodExists\u0028\u0029", + "name": "ensureMethodExists", + "summary": "Ensure\u0020that\u0020a\u0020statically\u0020called\u0020method\u0020exists.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_ensureMethodExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AensureInterfacesExist\u0028\u0029", + "name": "ensureInterfacesExist", + "summary": "Ensure\u0020that\u0020a\u0020referenced\u0020interface\u0020exists.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_ensureInterfacesExist" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AgetScopeType\u0028\u0029", + "name": "getScopeType", + "summary": "Get\u0020a\u0020symbol\u0020type\u0020key\u0020for\u0020storing\u0020in\u0020the\u0020scope\u0020name\u0020cache.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_getScopeType" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AclassExists\u0028\u0029", + "name": "classExists", + "summary": "Check\u0020whether\u0020a\u0020class\u0020exists,\u0020or\u0020has\u0020been\u0020defined\u0020in\u0020the\u0020current\u0020code\u0020snippet.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_classExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AinterfaceExists\u0028\u0029", + "name": "interfaceExists", + "summary": "Check\u0020whether\u0020an\u0020interface\u0020exists,\u0020or\u0020has\u0020been\u0020defined\u0020in\u0020the\u0020current\u0020code\u0020snippet.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_interfaceExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AtraitExists\u0028\u0029", + "name": "traitExists", + "summary": "Check\u0020whether\u0020a\u0020trait\u0020exists,\u0020or\u0020has\u0020been\u0020defined\u0020in\u0020the\u0020current\u0020code\u0020snippet.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_traitExists" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AfindInScope\u0028\u0029", + "name": "findInScope", + "summary": "Find\u0020a\u0020symbol\u0020in\u0020the\u0020current\u0020code\u0020snippet\u0020scope.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_findInScope" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AcreateError\u0028\u0029", + "name": "createError", + "summary": "Error\u0020creation\u0020factory.", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#method_createError" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003ACLASS_TYPE", + "name": "CLASS_TYPE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#constant_CLASS_TYPE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003AINTERFACE_TYPE", + "name": "INTERFACE_TYPE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#constant_INTERFACE_TYPE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003ATRAIT_TYPE", + "name": "TRAIT_TYPE", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#constant_TRAIT_TYPE" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidClassNamePass\u003A\u003A\u0024conditionalScopes", + "name": "conditionalScopes", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidClassNamePass.html#property_conditionalScopes" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidConstructorPass", + "name": "ValidConstructorPass", + "summary": "Validate\u0020that\u0020the\u0020constructor\u0020method\u0020is\u0020not\u0020static,\u0020and\u0020does\u0020not\u0020have\u0020a\nreturn\u0020type.", + "url": "classes/Psy-CodeCleaner-ValidConstructorPass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidConstructorPass\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-CodeCleaner-ValidConstructorPass.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidConstructorPass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Validate\u0020that\u0020the\u0020constructor\u0020is\u0020not\u0020static\u0020and\u0020does\u0020not\u0020have\u0020a\u0020return\u0020type.", + "url": "classes/Psy-CodeCleaner-ValidConstructorPass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidConstructorPass\u003A\u003AvalidateConstructor\u0028\u0029", + "name": "validateConstructor", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidConstructorPass.html#method_validateConstructor" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidConstructorPass\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidConstructorPass.html#property_namespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidFunctionNamePass", + "name": "ValidFunctionNamePass", + "summary": "Validate\u0020that\u0020function\u0020calls\u0020will\u0020succeed.", + "url": "classes/Psy-CodeCleaner-ValidFunctionNamePass.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidFunctionNamePass\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Store\u0020newly\u0020defined\u0020function\u0020names\u0020on\u0020the\u0020way\u0020in,\u0020to\u0020allow\u0020recursion.", + "url": "classes/Psy-CodeCleaner-ValidFunctionNamePass.html#method_enterNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidFunctionNamePass\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-CodeCleaner-ValidFunctionNamePass.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidFunctionNamePass\u003A\u003AisConditional\u0028\u0029", + "name": "isConditional", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidFunctionNamePass.html#method_isConditional" + }, { + "fqsen": "\\Psy\\CodeCleaner\\ValidFunctionNamePass\u003A\u003A\u0024conditionalScopes", + "name": "conditionalScopes", + "summary": "", + "url": "classes/Psy-CodeCleaner-ValidFunctionNamePass.html#property_conditionalScopes" + }, { + "fqsen": "\\Psy\\CodeCleaner", + "name": "CodeCleaner", + "summary": "A\u0020service\u0020to\u0020clean\u0020up\u0020user\u0020input,\u0020detect\u0020parse\u0020errors\u0020before\u0020they\u0020happen,\nand\u0020generally\u0020work\u0020around\u0020issues\u0020with\u0020the\u0020PHP\u0020code\u0020evaluation\u0020experience.", + "url": "classes/Psy-CodeCleaner.html" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "CodeCleaner\u0020constructor.", + "url": "classes/Psy-CodeCleaner.html#method___construct" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A\u0024yolo", + "name": "yolo", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#property_yolo" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AgetDefaultPasses\u0028\u0029", + "name": "getDefaultPasses", + "summary": "Get\u0020default\u0020CodeCleaner\u0020passes.", + "url": "classes/Psy-CodeCleaner.html#method_getDefaultPasses" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AgetYoloPasses\u0028\u0029", + "name": "getYoloPasses", + "summary": "A\u0020set\u0020of\u0020code\u0020cleaner\u0020passes\u0020that\u0020don\u0027t\u0020try\u0020to\u0020do\u0020any\u0020validation,\u0020and\nonly\u0020do\u0020minimal\u0020rewriting\u0020to\u0020make\u0020things\u0020work\u0020inside\u0020the\u0020REPL.", + "url": "classes/Psy-CodeCleaner.html#method_getYoloPasses" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AaddImplicitDebugContext\u0028\u0029", + "name": "addImplicitDebugContext", + "summary": "\u0022Warm\u0020up\u0022\u0020code\u0020cleaner\u0020passes\u0020when\u0020we\u0027re\u0020coming\u0020from\u0020a\u0020debug\u0020call.", + "url": "classes/Psy-CodeCleaner.html#method_addImplicitDebugContext" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AgetDebugFile\u0028\u0029", + "name": "getDebugFile", + "summary": "Search\u0020the\u0020stack\u0020trace\u0020for\u0020a\u0020file\u0020in\u0020which\u0020the\u0020user\u0020called\u0020Psy\\debug.", + "url": "classes/Psy-CodeCleaner.html#method_getDebugFile" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AisDebugCall\u0028\u0029", + "name": "isDebugCall", + "summary": "Check\u0020whether\u0020a\u0020given\u0020backtrace\u0020frame\u0020is\u0020a\u0020call\u0020to\u0020Psy\\debug.", + "url": "classes/Psy-CodeCleaner.html#method_isDebugCall" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003Aclean\u0028\u0029", + "name": "clean", + "summary": "Clean\u0020the\u0020given\u0020array\u0020of\u0020code.", + "url": "classes/Psy-CodeCleaner.html#method_clean" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AsetNamespace\u0028\u0029", + "name": "setNamespace", + "summary": "Set\u0020the\u0020current\u0020local\u0020namespace.", + "url": "classes/Psy-CodeCleaner.html#method_setNamespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "Get\u0020the\u0020current\u0020local\u0020namespace.", + "url": "classes/Psy-CodeCleaner.html#method_getNamespace" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Lex\u0020and\u0020parse\u0020a\u0020block\u0020of\u0020code.", + "url": "classes/Psy-CodeCleaner.html#method_parse" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AparseErrorIsEOF\u0028\u0029", + "name": "parseErrorIsEOF", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#method_parseErrorIsEOF" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AparseErrorIsUnclosedString\u0028\u0029", + "name": "parseErrorIsUnclosedString", + "summary": "A\u0020special\u0020test\u0020for\u0020unclosed\u0020single\u002Dquoted\u0020strings.", + "url": "classes/Psy-CodeCleaner.html#method_parseErrorIsUnclosedString" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AparseErrorIsUnterminatedComment\u0028\u0029", + "name": "parseErrorIsUnterminatedComment", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#method_parseErrorIsUnterminatedComment" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003AparseErrorIsTrailingComma\u0028\u0029", + "name": "parseErrorIsTrailingComma", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#method_parseErrorIsTrailingComma" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A\u0024strictTypes", + "name": "strictTypes", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#property_strictTypes" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#property_parser" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A\u0024printer", + "name": "printer", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#property_printer" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A\u0024traverser", + "name": "traverser", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#property_traverser" + }, { + "fqsen": "\\Psy\\CodeCleaner\u003A\u003A\u0024namespace", + "name": "namespace", + "summary": "", + "url": "classes/Psy-CodeCleaner.html#property_namespace" + }, { + "fqsen": "\\Psy\\Command\\BufferCommand", + "name": "BufferCommand", + "summary": "Interact\u0020with\u0020the\u0020current\u0020code\u0020buffer.", + "url": "classes/Psy-Command-BufferCommand.html" + }, { + "fqsen": "\\Psy\\Command\\BufferCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-BufferCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\BufferCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-BufferCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\BufferCommand\u003A\u003AformatLines\u0028\u0029", + "name": "formatLines", + "summary": "A\u0020helper\u0020method\u0020for\u0020wrapping\u0020buffer\u0020lines\u0020in\u0020\u0060\u003Curgent\u003E\u0060\u0020and\u0020\u0060\u003Creturn\u003E\u0060\u0020formatter\u0020strings.", + "url": "classes/Psy-Command-BufferCommand.html#method_formatLines" + }, { + "fqsen": "\\Psy\\Command\\ClearCommand", + "name": "ClearCommand", + "summary": "Clear\u0020the\u0020Psy\u0020Shell.", + "url": "classes/Psy-Command-ClearCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ClearCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ClearCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\ClearCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ClearCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\CodeArgumentParser", + "name": "CodeArgumentParser", + "summary": "Class\u0020CodeArgumentParser.", + "url": "classes/Psy-Command-CodeArgumentParser.html" + }, { + "fqsen": "\\Psy\\Command\\CodeArgumentParser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-CodeArgumentParser.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\CodeArgumentParser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Lex\u0020and\u0020parse\u0020a\u0020string\u0020of\u0020code\u0020into\u0020statements.", + "url": "classes/Psy-Command-CodeArgumentParser.html#method_parse" + }, { + "fqsen": "\\Psy\\Command\\CodeArgumentParser\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-Command-CodeArgumentParser.html#property_parser" + }, { + "fqsen": "\\Psy\\Command\\Command", + "name": "Command", + "summary": "The\u0020Psy\u0020Shell\u0020base\u0020command.", + "url": "classes/Psy-Command-Command.html" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AsetApplication\u0028\u0029", + "name": "setApplication", + "summary": "Sets\u0020the\u0020application\u0020instance\u0020for\u0020this\u0020command.", + "url": "classes/Psy-Command-Command.html#method_setApplication" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AasText\u0028\u0029", + "name": "asText", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Psy-Command-Command.html#method_asText" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AgetArguments\u0028\u0029", + "name": "getArguments", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Psy-Command-Command.html#method_getArguments" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AgetHiddenArguments\u0028\u0029", + "name": "getHiddenArguments", + "summary": "These\u0020arguments\u0020will\u0020be\u0020excluded\u0020from\u0020help\u0020output.", + "url": "classes/Psy-Command-Command.html#method_getHiddenArguments" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Psy-Command-Command.html#method_getOptions" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AgetHiddenOptions\u0028\u0029", + "name": "getHiddenOptions", + "summary": "These\u0020options\u0020will\u0020be\u0020excluded\u0020from\u0020help\u0020output.", + "url": "classes/Psy-Command-Command.html#method_getHiddenOptions" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AaliasesAsText\u0028\u0029", + "name": "aliasesAsText", + "summary": "Format\u0020command\u0020aliases\u0020as\u0020text.", + "url": "classes/Psy-Command-Command.html#method_aliasesAsText" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AargumentsAsText\u0028\u0029", + "name": "argumentsAsText", + "summary": "Format\u0020command\u0020arguments\u0020as\u0020text.", + "url": "classes/Psy-Command-Command.html#method_argumentsAsText" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AoptionsAsText\u0028\u0029", + "name": "optionsAsText", + "summary": "Format\u0020options\u0020as\u0020text.", + "url": "classes/Psy-Command-Command.html#method_optionsAsText" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AgetMaxWidth\u0028\u0029", + "name": "getMaxWidth", + "summary": "Calculate\u0020the\u0020maximum\u0020padding\u0020width\u0020for\u0020a\u0020set\u0020of\u0020lines.", + "url": "classes/Psy-Command-Command.html#method_getMaxWidth" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AformatDefaultValue\u0028\u0029", + "name": "formatDefaultValue", + "summary": "Format\u0020an\u0020option\u0020default\u0020as\u0020text.", + "url": "classes/Psy-Command-Command.html#method_formatDefaultValue" + }, { + "fqsen": "\\Psy\\Command\\Command\u003A\u003AgetTable\u0028\u0029", + "name": "getTable", + "summary": "Get\u0020a\u0020Table\u0020instance.", + "url": "classes/Psy-Command-Command.html#method_getTable" + }, { + "fqsen": "\\Psy\\Command\\DocCommand", + "name": "DocCommand", + "summary": "Read\u0020the\u0020documentation\u0020for\u0020an\u0020object,\u0020class,\u0020constant,\u0020method\u0020or\u0020property.", + "url": "classes/Psy-Command-DocCommand.html" + }, { + "fqsen": "\\Psy\\Command\\DocCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-DocCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\DocCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-DocCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\DocCommand\u003A\u003AgetManualDoc\u0028\u0029", + "name": "getManualDoc", + "summary": "", + "url": "classes/Psy-Command-DocCommand.html#method_getManualDoc" + }, { + "fqsen": "\\Psy\\Command\\DocCommand\u003A\u003AgetParentReflectors\u0028\u0029", + "name": "getParentReflectors", + "summary": "Get\u0020all\u0020all\u0020parent\u0020Reflectors\u0020for\u0020a\u0020given\u0020Reflector.", + "url": "classes/Psy-Command-DocCommand.html#method_getParentReflectors" + }, { + "fqsen": "\\Psy\\Command\\DocCommand\u003A\u003AgetManualDocById\u0028\u0029", + "name": "getManualDocById", + "summary": "", + "url": "classes/Psy-Command-DocCommand.html#method_getManualDocById" + }, { + "fqsen": "\\Psy\\Command\\DocCommand\u003A\u003AINHERIT_DOC_TAG", + "name": "INHERIT_DOC_TAG", + "summary": "", + "url": "classes/Psy-Command-DocCommand.html#constant_INHERIT_DOC_TAG" + }, { + "fqsen": "\\Psy\\Command\\DumpCommand", + "name": "DumpCommand", + "summary": "Dump\u0020an\u0020object\u0020or\u0020primitive.", + "url": "classes/Psy-Command-DumpCommand.html" + }, { + "fqsen": "\\Psy\\Command\\DumpCommand\u003A\u003AsetPresenter\u0028\u0029", + "name": "setPresenter", + "summary": "PresenterAware\u0020interface.", + "url": "classes/Psy-Command-DumpCommand.html#method_setPresenter" + }, { + "fqsen": "\\Psy\\Command\\DumpCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-DumpCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\DumpCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-DumpCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\DumpCommand\u003A\u003AresolveTarget\u0028\u0029", + "name": "resolveTarget", + "summary": "", + "url": "classes/Psy-Command-DumpCommand.html#method_resolveTarget" + }, { + "fqsen": "\\Psy\\Command\\DumpCommand\u003A\u003A\u0024presenter", + "name": "presenter", + "summary": "", + "url": "classes/Psy-Command-DumpCommand.html#property_presenter" + }, { + "fqsen": "\\Psy\\Command\\EditCommand", + "name": "EditCommand", + "summary": "The\u0020Psy\u0020Shell\u0020base\u0020command.", + "url": "classes/Psy-Command-EditCommand.html" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Command-EditCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-EditCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-EditCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003AshouldExecuteFile\u0028\u0029", + "name": "shouldExecuteFile", + "summary": "", + "url": "classes/Psy-Command-EditCommand.html#method_shouldExecuteFile" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003AextractFilePath\u0028\u0029", + "name": "extractFilePath", + "summary": "", + "url": "classes/Psy-Command-EditCommand.html#method_extractFilePath" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003AeditFile\u0028\u0029", + "name": "editFile", + "summary": "", + "url": "classes/Psy-Command-EditCommand.html#method_editFile" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "Set\u0020the\u0020Context\u0020reference.", + "url": "classes/Psy-Command-EditCommand.html#method_setContext" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003A\u0024runtimeDir", + "name": "runtimeDir", + "summary": "", + "url": "classes/Psy-Command-EditCommand.html#property_runtimeDir" + }, { + "fqsen": "\\Psy\\Command\\EditCommand\u003A\u003A\u0024context", + "name": "context", + "summary": "", + "url": "classes/Psy-Command-EditCommand.html#property_context" + }, { + "fqsen": "\\Psy\\Command\\ExitCommand", + "name": "ExitCommand", + "summary": "Exit\u0020the\u0020Psy\u0020Shell.", + "url": "classes/Psy-Command-ExitCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ExitCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ExitCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\ExitCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ExitCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\HelpCommand", + "name": "HelpCommand", + "summary": "Help\u0020command.", + "url": "classes/Psy-Command-HelpCommand.html" + }, { + "fqsen": "\\Psy\\Command\\HelpCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-HelpCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\HelpCommand\u003A\u003AsetCommand\u0028\u0029", + "name": "setCommand", + "summary": "Helper\u0020for\u0020setting\u0020a\u0020subcommand\u0020to\u0020retrieve\u0020help\u0020for.", + "url": "classes/Psy-Command-HelpCommand.html#method_setCommand" + }, { + "fqsen": "\\Psy\\Command\\HelpCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-HelpCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\HelpCommand\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Psy-Command-HelpCommand.html#property_command" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand", + "name": "HistoryCommand", + "summary": "Psy\u0020Shell\u0020history\u0020command.", + "url": "classes/Psy-Command-HistoryCommand.html" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-HistoryCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003AsetReadline\u0028\u0029", + "name": "setReadline", + "summary": "Set\u0020the\u0020Shell\u0027s\u0020Readline\u0020service.", + "url": "classes/Psy-Command-HistoryCommand.html#method_setReadline" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-HistoryCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-HistoryCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003AextractRange\u0028\u0029", + "name": "extractRange", + "summary": "Extract\u0020a\u0020range\u0020from\u0020a\u0020string.", + "url": "classes/Psy-Command-HistoryCommand.html#method_extractRange" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003AgetHistorySlice\u0028\u0029", + "name": "getHistorySlice", + "summary": "Retrieve\u0020a\u0020slice\u0020of\u0020the\u0020readline\u0020history.", + "url": "classes/Psy-Command-HistoryCommand.html#method_getHistorySlice" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003AvalidateOnlyOne\u0028\u0029", + "name": "validateOnlyOne", + "summary": "Validate\u0020that\u0020only\u0020one\u0020of\u0020the\u0020given\u0020\u0024options\u0020is\u0020set.", + "url": "classes/Psy-Command-HistoryCommand.html#method_validateOnlyOne" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003AclearHistory\u0028\u0029", + "name": "clearHistory", + "summary": "Clear\u0020the\u0020readline\u0020history.", + "url": "classes/Psy-Command-HistoryCommand.html#method_clearHistory" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003Aescape\u0028\u0029", + "name": "escape", + "summary": "", + "url": "classes/Psy-Command-HistoryCommand.html#method_escape" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/Psy-Command-HistoryCommand.html#property_filter" + }, { + "fqsen": "\\Psy\\Command\\HistoryCommand\u003A\u003A\u0024readline", + "name": "readline", + "summary": "", + "url": "classes/Psy-Command-HistoryCommand.html#property_readline" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassConstantEnumerator", + "name": "ClassConstantEnumerator", + "summary": "Class\u0020Constant\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-ClassConstantEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassConstantEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-ClassConstantEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassConstantEnumerator\u003A\u003AgetConstants\u0028\u0029", + "name": "getConstants", + "summary": "Get\u0020defined\u0020constants\u0020for\u0020the\u0020given\u0020class\u0020or\u0020object\u0020Reflector.", + "url": "classes/Psy-Command-ListCommand-ClassConstantEnumerator.html#method_getConstants" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassConstantEnumerator\u003A\u003AprepareConstants\u0028\u0029", + "name": "prepareConstants", + "summary": "Prepare\u0020formatted\u0020constant\u0020array.", + "url": "classes/Psy-Command-ListCommand-ClassConstantEnumerator.html#method_prepareConstants" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassConstantEnumerator\u003A\u003AgetKindLabel\u0028\u0029", + "name": "getKindLabel", + "summary": "Get\u0020a\u0020label\u0020for\u0020the\u0020particular\u0020kind\u0020of\u0020\u0022class\u0022\u0020represented.", + "url": "classes/Psy-Command-ListCommand-ClassConstantEnumerator.html#method_getKindLabel" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassEnumerator", + "name": "ClassEnumerator", + "summary": "Class\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-ClassEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-ClassEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassEnumerator\u003A\u003AfilterClasses\u0028\u0029", + "name": "filterClasses", + "summary": "Filter\u0020a\u0020list\u0020of\u0020classes,\u0020interfaces\u0020or\u0020traits.", + "url": "classes/Psy-Command-ListCommand-ClassEnumerator.html#method_filterClasses" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ClassEnumerator\u003A\u003AprepareClasses\u0028\u0029", + "name": "prepareClasses", + "summary": "Prepare\u0020formatted\u0020class\u0020array.", + "url": "classes/Psy-Command-ListCommand-ClassEnumerator.html#method_prepareClasses" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ConstantEnumerator", + "name": "ConstantEnumerator", + "summary": "Constant\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-ConstantEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ConstantEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-ConstantEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ConstantEnumerator\u003A\u003AgetConstants\u0028\u0029", + "name": "getConstants", + "summary": "Get\u0020defined\u0020constants.", + "url": "classes/Psy-Command-ListCommand-ConstantEnumerator.html#method_getConstants" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ConstantEnumerator\u003A\u003AprepareConstants\u0028\u0029", + "name": "prepareConstants", + "summary": "Prepare\u0020formatted\u0020constant\u0020array.", + "url": "classes/Psy-Command-ListCommand-ConstantEnumerator.html#method_prepareConstants" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\ConstantEnumerator\u003A\u003A\u0024categoryLabels", + "name": "categoryLabels", + "summary": "", + "url": "classes/Psy-Command-ListCommand-ConstantEnumerator.html#property_categoryLabels" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator", + "name": "Enumerator", + "summary": "Abstract\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-Enumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Enumerator\u0020constructor.", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003Aenumerate\u0028\u0029", + "name": "enumerate", + "summary": "Return\u0020a\u0020list\u0020of\u0020categorized\u0020things\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#method_enumerate" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AshowItem\u0028\u0029", + "name": "showItem", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#method_showItem" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003ApresentRef\u0028\u0029", + "name": "presentRef", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#method_presentRef" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003ApresentSignature\u0028\u0029", + "name": "presentSignature", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#method_presentSignature" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_PUBLIC", + "name": "IS_PUBLIC", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_PUBLIC" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_PROTECTED", + "name": "IS_PROTECTED", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_PROTECTED" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_PRIVATE", + "name": "IS_PRIVATE", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_PRIVATE" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_GLOBAL", + "name": "IS_GLOBAL", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_GLOBAL" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_CONSTANT", + "name": "IS_CONSTANT", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_CONSTANT" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_CLASS", + "name": "IS_CLASS", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_CLASS" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003AIS_FUNCTION", + "name": "IS_FUNCTION", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#constant_IS_FUNCTION" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#property_filter" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\Enumerator\u003A\u003A\u0024presenter", + "name": "presenter", + "summary": "", + "url": "classes/Psy-Command-ListCommand-Enumerator.html#property_presenter" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\FunctionEnumerator", + "name": "FunctionEnumerator", + "summary": "Function\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-FunctionEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\FunctionEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-FunctionEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\FunctionEnumerator\u003A\u003AgetFunctions\u0028\u0029", + "name": "getFunctions", + "summary": "Get\u0020defined\u0020functions.", + "url": "classes/Psy-Command-ListCommand-FunctionEnumerator.html#method_getFunctions" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\FunctionEnumerator\u003A\u003AprepareFunctions\u0028\u0029", + "name": "prepareFunctions", + "summary": "Prepare\u0020formatted\u0020function\u0020array.", + "url": "classes/Psy-Command-ListCommand-FunctionEnumerator.html#method_prepareFunctions" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\GlobalVariableEnumerator", + "name": "GlobalVariableEnumerator", + "summary": "Global\u0020Variable\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-GlobalVariableEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\GlobalVariableEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-GlobalVariableEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\GlobalVariableEnumerator\u003A\u003AgetGlobals\u0028\u0029", + "name": "getGlobals", + "summary": "Get\u0020defined\u0020global\u0020variables.", + "url": "classes/Psy-Command-ListCommand-GlobalVariableEnumerator.html#method_getGlobals" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\GlobalVariableEnumerator\u003A\u003AprepareGlobals\u0028\u0029", + "name": "prepareGlobals", + "summary": "Prepare\u0020formatted\u0020global\u0020variable\u0020array.", + "url": "classes/Psy-Command-ListCommand-GlobalVariableEnumerator.html#method_prepareGlobals" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\MethodEnumerator", + "name": "MethodEnumerator", + "summary": "Method\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-MethodEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\MethodEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-MethodEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\MethodEnumerator\u003A\u003AgetMethods\u0028\u0029", + "name": "getMethods", + "summary": "Get\u0020defined\u0020methods\u0020for\u0020the\u0020given\u0020class\u0020or\u0020object\u0020Reflector.", + "url": "classes/Psy-Command-ListCommand-MethodEnumerator.html#method_getMethods" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\MethodEnumerator\u003A\u003AprepareMethods\u0028\u0029", + "name": "prepareMethods", + "summary": "Prepare\u0020formatted\u0020method\u0020array.", + "url": "classes/Psy-Command-ListCommand-MethodEnumerator.html#method_prepareMethods" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\MethodEnumerator\u003A\u003AgetKindLabel\u0028\u0029", + "name": "getKindLabel", + "summary": "Get\u0020a\u0020label\u0020for\u0020the\u0020particular\u0020kind\u0020of\u0020\u0022class\u0022\u0020represented.", + "url": "classes/Psy-Command-ListCommand-MethodEnumerator.html#method_getKindLabel" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\MethodEnumerator\u003A\u003AgetVisibilityStyle\u0028\u0029", + "name": "getVisibilityStyle", + "summary": "Get\u0020output\u0020style\u0020for\u0020the\u0020given\u0020method\u0027s\u0020visibility.", + "url": "classes/Psy-Command-ListCommand-MethodEnumerator.html#method_getVisibilityStyle" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator", + "name": "PropertyEnumerator", + "summary": "Property\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator\u003A\u003AgetProperties\u0028\u0029", + "name": "getProperties", + "summary": "Get\u0020defined\u0020properties\u0020for\u0020the\u0020given\u0020class\u0020or\u0020object\u0020Reflector.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html#method_getProperties" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator\u003A\u003AprepareProperties\u0028\u0029", + "name": "prepareProperties", + "summary": "Prepare\u0020formatted\u0020property\u0020array.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html#method_prepareProperties" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator\u003A\u003AgetKindLabel\u0028\u0029", + "name": "getKindLabel", + "summary": "Get\u0020a\u0020label\u0020for\u0020the\u0020particular\u0020kind\u0020of\u0020\u0022class\u0022\u0020represented.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html#method_getKindLabel" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator\u003A\u003AgetVisibilityStyle\u0028\u0029", + "name": "getVisibilityStyle", + "summary": "Get\u0020output\u0020style\u0020for\u0020the\u0020given\u0020property\u0027s\u0020visibility.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html#method_getVisibilityStyle" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\PropertyEnumerator\u003A\u003ApresentValue\u0028\u0029", + "name": "presentValue", + "summary": "Present\u0020the\u0020\u0024target\u0027s\u0020current\u0020value\u0020for\u0020a\u0020reflection\u0020property.", + "url": "classes/Psy-Command-ListCommand-PropertyEnumerator.html#method_presentValue" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator", + "name": "VariableEnumerator", + "summary": "Variable\u0020Enumerator\u0020class.", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Variable\u0020Enumerator\u0020constructor.", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator\u003A\u003AlistItems\u0028\u0029", + "name": "listItems", + "summary": "Enumerate\u0020specific\u0020items\u0020with\u0020the\u0020given\u0020input\u0020options\u0020and\u0020target.", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html#method_listItems" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator\u003A\u003AgetVariables\u0028\u0029", + "name": "getVariables", + "summary": "Get\u0020scope\u0020variables.", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html#method_getVariables" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator\u003A\u003AprepareVariables\u0028\u0029", + "name": "prepareVariables", + "summary": "Prepare\u0020formatted\u0020variable\u0020array.", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html#method_prepareVariables" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator\u003A\u003A\u0024specialNames", + "name": "specialNames", + "summary": "", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html#property_specialNames" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\\VariableEnumerator\u003A\u003A\u0024context", + "name": "context", + "summary": "", + "url": "classes/Psy-Command-ListCommand-VariableEnumerator.html#property_context" + }, { + "fqsen": "\\Psy\\Command\\ListCommand", + "name": "ListCommand", + "summary": "List\u0020available\u0020local\u0020variables,\u0020object\u0020properties,\u0020etc.", + "url": "classes/Psy-Command-ListCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003AsetPresenter\u0028\u0029", + "name": "setPresenter", + "summary": "PresenterAware\u0020interface.", + "url": "classes/Psy-Command-ListCommand.html#method_setPresenter" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ListCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ListCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003AinitEnumerators\u0028\u0029", + "name": "initEnumerators", + "summary": "Initialize\u0020Enumerators.", + "url": "classes/Psy-Command-ListCommand.html#method_initEnumerators" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020the\u0020list\u0020items\u0020to\u0020\u0024output.", + "url": "classes/Psy-Command-ListCommand.html#method_write" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003AwriteLong\u0028\u0029", + "name": "writeLong", + "summary": "Write\u0020the\u0020list\u0020items\u0020to\u0020\u0024output.", + "url": "classes/Psy-Command-ListCommand.html#method_writeLong" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003AformatItemName\u0028\u0029", + "name": "formatItemName", + "summary": "Format\u0020an\u0020item\u0020name\u0020given\u0020its\u0020visibility.", + "url": "classes/Psy-Command-ListCommand.html#method_formatItemName" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003AvalidateInput\u0028\u0029", + "name": "validateInput", + "summary": "Validate\u0020that\u0020input\u0020options\u0020make\u0020sense,\u0020provide\u0020defaults\u0020when\u0020called\u0020without\u0020options.", + "url": "classes/Psy-Command-ListCommand.html#method_validateInput" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003A\u0024presenter", + "name": "presenter", + "summary": "", + "url": "classes/Psy-Command-ListCommand.html#property_presenter" + }, { + "fqsen": "\\Psy\\Command\\ListCommand\u003A\u003A\u0024enumerators", + "name": "enumerators", + "summary": "", + "url": "classes/Psy-Command-ListCommand.html#property_enumerators" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand", + "name": "ParseCommand", + "summary": "Parse\u0020PHP\u0020code\u0020and\u0020show\u0020the\u0020abstract\u0020syntax\u0020tree.", + "url": "classes/Psy-Command-ParseCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-ParseCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "ContextAware\u0020interface.", + "url": "classes/Psy-Command-ParseCommand.html#method_setContext" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003AsetPresenter\u0028\u0029", + "name": "setPresenter", + "summary": "PresenterAware\u0020interface.", + "url": "classes/Psy-Command-ParseCommand.html#method_setPresenter" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ParseCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ParseCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003AgetParser\u0028\u0029", + "name": "getParser", + "summary": "Get\u0020\u0028or\u0020create\u0029\u0020the\u0020Parser\u0020instance.", + "url": "classes/Psy-Command-ParseCommand.html#method_getParser" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003A\u0024context", + "name": "context", + "summary": "Context\u0020instance\u0020\u0028for\u0020ContextAware\u0020interface\u0029.", + "url": "classes/Psy-Command-ParseCommand.html#property_context" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003A\u0024presenter", + "name": "presenter", + "summary": "", + "url": "classes/Psy-Command-ParseCommand.html#property_presenter" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003A\u0024parserFactory", + "name": "parserFactory", + "summary": "", + "url": "classes/Psy-Command-ParseCommand.html#property_parserFactory" + }, { + "fqsen": "\\Psy\\Command\\ParseCommand\u003A\u003A\u0024parsers", + "name": "parsers", + "summary": "", + "url": "classes/Psy-Command-ParseCommand.html#property_parsers" + }, { + "fqsen": "\\Psy\\Command\\PsyVersionCommand", + "name": "PsyVersionCommand", + "summary": "A\u0020dumb\u0020little\u0020command\u0020for\u0020printing\u0020out\u0020the\u0020current\u0020Psy\u0020Shell\u0020version.", + "url": "classes/Psy-Command-PsyVersionCommand.html" + }, { + "fqsen": "\\Psy\\Command\\PsyVersionCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-PsyVersionCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\PsyVersionCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-PsyVersionCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand", + "name": "ReflectingCommand", + "summary": "An\u0020abstract\u0020command\u0020with\u0020helpers\u0020for\u0020inspecting\u0020the\u0020current\u0020context.", + "url": "classes/Psy-Command-ReflectingCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "ContextAware\u0020interface.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_setContext" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AgetTarget\u0028\u0029", + "name": "getTarget", + "summary": "Get\u0020the\u0020target\u0020for\u0020a\u0020value.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_getTarget" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AresolveName\u0028\u0029", + "name": "resolveName", + "summary": "Resolve\u0020a\u0020class\u0020or\u0020function\u0020name\u0020\u0028with\u0020the\u0020current\u0020shell\u0020namespace\u0029.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_resolveName" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AcouldBeClassName\u0028\u0029", + "name": "couldBeClassName", + "summary": "Check\u0020whether\u0020a\u0020given\u0020name\u0020could\u0020be\u0020a\u0020class\u0020name.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_couldBeClassName" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AgetTargetAndReflector\u0028\u0029", + "name": "getTargetAndReflector", + "summary": "Get\u0020a\u0020Reflector\u0020and\u0020documentation\u0020for\u0020a\u0020function,\u0020class\u0020or\u0020instance,\u0020constant,\u0020method\u0020or\u0020property.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_getTargetAndReflector" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AresolveCode\u0028\u0029", + "name": "resolveCode", + "summary": "Resolve\u0020code\u0020to\u0020a\u0020value\u0020in\u0020the\u0020current\u0020scope.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_resolveCode" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AresolveObject\u0028\u0029", + "name": "resolveObject", + "summary": "Resolve\u0020code\u0020to\u0020an\u0020object\u0020in\u0020the\u0020current\u0020scope.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_resolveObject" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AresolveInstance\u0028\u0029", + "name": "resolveInstance", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#method_resolveInstance" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AgetScopeVariable\u0028\u0029", + "name": "getScopeVariable", + "summary": "Get\u0020a\u0020variable\u0020from\u0020the\u0020current\u0020shell\u0020scope.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_getScopeVariable" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AgetScopeVariables\u0028\u0029", + "name": "getScopeVariables", + "summary": "Get\u0020all\u0020scope\u0020variables\u0020from\u0020the\u0020current\u0020shell\u0020scope.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_getScopeVariables" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AsetCommandScopeVariables\u0028\u0029", + "name": "setCommandScopeVariables", + "summary": "Given\u0020a\u0020Reflector\u0020instance,\u0020set\u0020command\u002Dscope\u0020variables\u0020in\u0020the\u0020shell\nexecution\u0020context.\u0020This\u0020is\u0020used\u0020to\u0020inject\u0020magic\u0020\u0024__class,\u0020\u0024__method\u0020and\n\u0024__file\u0020variables\u0020\u0028as\u0020well\u0020as\u0020a\u0020handful\u0020of\u0020others\u0029.", + "url": "classes/Psy-Command-ReflectingCommand.html#method_setCommandScopeVariables" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003ACLASS_OR_FUNC", + "name": "CLASS_OR_FUNC", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#constant_CLASS_OR_FUNC" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003ACLASS_MEMBER", + "name": "CLASS_MEMBER", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#constant_CLASS_MEMBER" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003ACLASS_STATIC", + "name": "CLASS_STATIC", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#constant_CLASS_STATIC" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003AINSTANCE_MEMBER", + "name": "INSTANCE_MEMBER", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#constant_INSTANCE_MEMBER" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003A\u0024context", + "name": "context", + "summary": "Context\u0020instance\u0020\u0028for\u0020ContextAware\u0020interface\u0029.", + "url": "classes/Psy-Command-ReflectingCommand.html#property_context" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#property_parser" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003A\u0024traverser", + "name": "traverser", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#property_traverser" + }, { + "fqsen": "\\Psy\\Command\\ReflectingCommand\u003A\u003A\u0024printer", + "name": "printer", + "summary": "", + "url": "classes/Psy-Command-ReflectingCommand.html#property_printer" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand", + "name": "ShowCommand", + "summary": "Show\u0020the\u0020code\u0020for\u0020an\u0020object,\u0020class,\u0020constant,\u0020method\u0020or\u0020property.", + "url": "classes/Psy-Command-ShowCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ShowCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ShowCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AwriteCodeContext\u0028\u0029", + "name": "writeCodeContext", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_writeCodeContext" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AwriteExceptionContext\u0028\u0029", + "name": "writeExceptionContext", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_writeExceptionContext" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AwriteTraceLine\u0028\u0029", + "name": "writeTraceLine", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_writeTraceLine" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AreplaceCwd\u0028\u0029", + "name": "replaceCwd", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_replaceCwd" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AwriteTraceCodeSnippet\u0028\u0029", + "name": "writeTraceCodeSnippet", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_writeTraceCodeSnippet" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AsetCommandScopeVariablesFromContext\u0028\u0029", + "name": "setCommandScopeVariablesFromContext", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_setCommandScopeVariablesFromContext" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003AextractEvalFileAndLine\u0028\u0029", + "name": "extractEvalFileAndLine", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#method_extractEvalFileAndLine" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003A\u0024lastException", + "name": "lastException", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#property_lastException" + }, { + "fqsen": "\\Psy\\Command\\ShowCommand\u003A\u003A\u0024lastExceptionIndex", + "name": "lastExceptionIndex", + "summary": "", + "url": "classes/Psy-Command-ShowCommand.html#property_lastExceptionIndex" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand", + "name": "SudoCommand", + "summary": "Evaluate\u0020PHP\u0020code,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Command-SudoCommand.html" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-SudoCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003AsetReadline\u0028\u0029", + "name": "setReadline", + "summary": "Set\u0020the\u0020Shell\u0027s\u0020Readline\u0020service.", + "url": "classes/Psy-Command-SudoCommand.html#method_setReadline" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-SudoCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-SudoCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003A\u0024readline", + "name": "readline", + "summary": "", + "url": "classes/Psy-Command-SudoCommand.html#property_readline" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-Command-SudoCommand.html#property_parser" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003A\u0024traverser", + "name": "traverser", + "summary": "", + "url": "classes/Psy-Command-SudoCommand.html#property_traverser" + }, { + "fqsen": "\\Psy\\Command\\SudoCommand\u003A\u003A\u0024printer", + "name": "printer", + "summary": "", + "url": "classes/Psy-Command-SudoCommand.html#property_printer" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand", + "name": "ThrowUpCommand", + "summary": "Throw\u0020an\u0020exception\u0020or\u0020error\u0020out\u0020of\u0020the\u0020Psy\u0020Shell.", + "url": "classes/Psy-Command-ThrowUpCommand.html" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-ThrowUpCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "Set\u0020the\u0020Context\u0020reference.", + "url": "classes/Psy-Command-ThrowUpCommand.html#method_setContext" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ThrowUpCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-ThrowUpCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003AprepareArgs\u0028\u0029", + "name": "prepareArgs", + "summary": "Parse\u0020the\u0020supplied\u0020command\u0020argument.", + "url": "classes/Psy-Command-ThrowUpCommand.html#method_prepareArgs" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-Command-ThrowUpCommand.html#property_parser" + }, { + "fqsen": "\\Psy\\Command\\ThrowUpCommand\u003A\u003A\u0024printer", + "name": "printer", + "summary": "", + "url": "classes/Psy-Command-ThrowUpCommand.html#property_printer" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor", + "name": "TimeitVisitor", + "summary": "A\u0020node\u0020visitor\u0020for\u0020instrumenting\u0020code\u0020to\u0020be\u0020executed\u0020by\u0020the\u0020\u0060timeit\u0060\u0020command.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_enterNode" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_leaveNode" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_afterTraverse" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AgetStartCall\u0028\u0029", + "name": "getStartCall", + "summary": "Get\u0020PhpParser\u0020AST\u0020nodes\u0020for\u0020a\u0020\u0060markStart\u0060\u0020call.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_getStartCall" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AgetEndCall\u0028\u0029", + "name": "getEndCall", + "summary": "Get\u0020PhpParser\u0020AST\u0020nodes\u0020for\u0020a\u0020\u0060markEnd\u0060\u0020call.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_getEndCall" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003AmaybeExpression\u0028\u0029", + "name": "maybeExpression", + "summary": "Compatibility\u0020shim\u0020for\u0020PHP\u0020Parser\u00203.x.", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#method_maybeExpression" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\\TimeitVisitor\u003A\u003A\u0024functionDepth", + "name": "functionDepth", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand-TimeitVisitor.html#property_functionDepth" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand", + "name": "TimeitCommand", + "summary": "Class\u0020TimeitCommand.", + "url": "classes/Psy-Command-TimeitCommand.html" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-TimeitCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-TimeitCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003AmarkStart\u0028\u0029", + "name": "markStart", + "summary": "Internal\u0020method\u0020for\u0020marking\u0020the\u0020start\u0020of\u0020timeit\u0020execution.", + "url": "classes/Psy-Command-TimeitCommand.html#method_markStart" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003AmarkEnd\u0028\u0029", + "name": "markEnd", + "summary": "Internal\u0020method\u0020for\u0020marking\u0020the\u0020end\u0020of\u0020timeit\u0020execution.", + "url": "classes/Psy-Command-TimeitCommand.html#method_markEnd" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003AensureEndMarked\u0028\u0029", + "name": "ensureEndMarked", + "summary": "Ensure\u0020that\u0020the\u0020end\u0020of\u0020code\u0020execution\u0020was\u0020marked.", + "url": "classes/Psy-Command-TimeitCommand.html#method_ensureEndMarked" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003AinstrumentCode\u0028\u0029", + "name": "instrumentCode", + "summary": "Instrument\u0020code\u0020for\u0020timeit\u0020execution.", + "url": "classes/Psy-Command-TimeitCommand.html#method_instrumentCode" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003ARESULT_MSG", + "name": "RESULT_MSG", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#constant_RESULT_MSG" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003AAVG_RESULT_MSG", + "name": "AVG_RESULT_MSG", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#constant_AVG_RESULT_MSG" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A\u0024useHrtime", + "name": "useHrtime", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#property_useHrtime" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A\u0024start", + "name": "start", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#property_start" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A\u0024times", + "name": "times", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#property_times" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#property_parser" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A\u0024traverser", + "name": "traverser", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#property_traverser" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand\u003A\u003A\u0024printer", + "name": "printer", + "summary": "", + "url": "classes/Psy-Command-TimeitCommand.html#property_printer" + }, { + "fqsen": "\\Psy\\Command\\TraceCommand", + "name": "TraceCommand", + "summary": "Show\u0020the\u0020current\u0020stack\u0020trace.", + "url": "classes/Psy-Command-TraceCommand.html" + }, { + "fqsen": "\\Psy\\Command\\TraceCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-TraceCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\TraceCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-TraceCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\TraceCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-TraceCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\TraceCommand\u003A\u003AgetBacktrace\u0028\u0029", + "name": "getBacktrace", + "summary": "Get\u0020a\u0020backtrace\u0020for\u0020an\u0020exception\u0020or\u0020error.", + "url": "classes/Psy-Command-TraceCommand.html#method_getBacktrace" + }, { + "fqsen": "\\Psy\\Command\\TraceCommand\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/Psy-Command-TraceCommand.html#property_filter" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand", + "name": "WhereamiCommand", + "summary": "Show\u0020the\u0020context\u0020of\u0020where\u0020you\u0020opened\u0020the\u0020debugger.", + "url": "classes/Psy-Command-WhereamiCommand.html" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Command-WhereamiCommand.html#method___construct" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-WhereamiCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003Atrace\u0028\u0029", + "name": "trace", + "summary": "Obtains\u0020the\u0020correct\u0020stack\u0020frame\u0020in\u0020the\u0020full\u0020backtrace.", + "url": "classes/Psy-Command-WhereamiCommand.html#method_trace" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003AisDebugCall\u0028\u0029", + "name": "isDebugCall", + "summary": "", + "url": "classes/Psy-Command-WhereamiCommand.html#method_isDebugCall" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003AfileInfo\u0028\u0029", + "name": "fileInfo", + "summary": "Determine\u0020the\u0020file\u0020and\u0020line\u0020based\u0020on\u0020the\u0020specific\u0020backtrace.", + "url": "classes/Psy-Command-WhereamiCommand.html#method_fileInfo" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-WhereamiCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003AreplaceCwd\u0028\u0029", + "name": "replaceCwd", + "summary": "Replace\u0020the\u0020given\u0020directory\u0020from\u0020the\u0020start\u0020of\u0020a\u0020filepath.", + "url": "classes/Psy-Command-WhereamiCommand.html#method_replaceCwd" + }, { + "fqsen": "\\Psy\\Command\\WhereamiCommand\u003A\u003A\u0024backtrace", + "name": "backtrace", + "summary": "", + "url": "classes/Psy-Command-WhereamiCommand.html#property_backtrace" + }, { + "fqsen": "\\Psy\\Command\\WtfCommand", + "name": "WtfCommand", + "summary": "Show\u0020the\u0020last\u0020uncaught\u0020exception.", + "url": "classes/Psy-Command-WtfCommand.html" + }, { + "fqsen": "\\Psy\\Command\\WtfCommand\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "ContextAware\u0020interface.", + "url": "classes/Psy-Command-WtfCommand.html#method_setContext" + }, { + "fqsen": "\\Psy\\Command\\WtfCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-WtfCommand.html#method_configure" + }, { + "fqsen": "\\Psy\\Command\\WtfCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Psy-Command-WtfCommand.html#method_execute" + }, { + "fqsen": "\\Psy\\Command\\WtfCommand\u003A\u003A\u0024context", + "name": "context", + "summary": "Context\u0020instance\u0020\u0028for\u0020ContextAware\u0020interface\u0029.", + "url": "classes/Psy-Command-WtfCommand.html#property_context" + }, { + "fqsen": "\\Psy\\ConfigPaths", + "name": "ConfigPaths", + "summary": "A\u0020Psy\u0020Shell\u0020configuration\u0020path\u0020helper.", + "url": "classes/Psy-ConfigPaths.html" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "ConfigPaths\u0020constructor.", + "url": "classes/Psy-ConfigPaths.html#method___construct" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AoverrideDirs\u0028\u0029", + "name": "overrideDirs", + "summary": "Provide\u0020\u0060configDir\u0060,\u0020\u0060dataDir\u0060\u0020and\u0020\u0060runtimeDir\u0060\u0020overrides.", + "url": "classes/Psy-ConfigPaths.html#method_overrideDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AhomeDir\u0028\u0029", + "name": "homeDir", + "summary": "Get\u0020the\u0020current\u0020home\u0020directory.", + "url": "classes/Psy-ConfigPaths.html#method_homeDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AwindowsHomeDir\u0028\u0029", + "name": "windowsHomeDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_windowsHomeDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AhomeConfigDir\u0028\u0029", + "name": "homeConfigDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_homeConfigDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AconfigDirs\u0028\u0029", + "name": "configDirs", + "summary": "Get\u0020potential\u0020config\u0020directory\u0020paths.", + "url": "classes/Psy-ConfigPaths.html#method_configDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetConfigDirs\u0028\u0029", + "name": "getConfigDirs", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getConfigDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetHomeConfigDirs\u0028\u0029", + "name": "getHomeConfigDirs", + "summary": "Get\u0020potential\u0020home\u0020config\u0020directory\u0020paths.", + "url": "classes/Psy-ConfigPaths.html#method_getHomeConfigDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AcurrentConfigDir\u0028\u0029", + "name": "currentConfigDir", + "summary": "Get\u0020the\u0020current\u0020home\u0020config\u0020directory.", + "url": "classes/Psy-ConfigPaths.html#method_currentConfigDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetCurrentConfigDir\u0028\u0029", + "name": "getCurrentConfigDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getCurrentConfigDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AconfigFiles\u0028\u0029", + "name": "configFiles", + "summary": "Find\u0020real\u0020config\u0020files\u0020in\u0020config\u0020directories.", + "url": "classes/Psy-ConfigPaths.html#method_configFiles" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetConfigFiles\u0028\u0029", + "name": "getConfigFiles", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getConfigFiles" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AdataDirs\u0028\u0029", + "name": "dataDirs", + "summary": "Get\u0020potential\u0020data\u0020directory\u0020paths.", + "url": "classes/Psy-ConfigPaths.html#method_dataDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetDataDirs\u0028\u0029", + "name": "getDataDirs", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getDataDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AdataFiles\u0028\u0029", + "name": "dataFiles", + "summary": "Find\u0020real\u0020data\u0020files\u0020in\u0020config\u0020directories.", + "url": "classes/Psy-ConfigPaths.html#method_dataFiles" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetDataFiles\u0028\u0029", + "name": "getDataFiles", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getDataFiles" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003A\u0024runtimeDir", + "name": "runtimeDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#property_runtimeDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetRuntimeDir\u0028\u0029", + "name": "getRuntimeDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getRuntimeDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003ApathDirs\u0028\u0029", + "name": "pathDirs", + "summary": "Get\u0020a\u0020list\u0020of\u0020directories\u0020in\u0020PATH.", + "url": "classes/Psy-ConfigPaths.html#method_pathDirs" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003Awhich\u0028\u0029", + "name": "which", + "summary": "Locate\u0020a\u0020command\u0020\u0028an\u0020executable\u0029\u0020in\u0020\u0024PATH.", + "url": "classes/Psy-ConfigPaths.html#method_which" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AallDirNames\u0028\u0029", + "name": "allDirNames", + "summary": "Get\u0020all\u0020PsySH\u0020directory\u0020name\u0020candidates\u0020given\u0020a\u0020list\u0020of\u0020base\u0020directories.", + "url": "classes/Psy-ConfigPaths.html#method_allDirNames" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AallRealFiles\u0028\u0029", + "name": "allRealFiles", + "summary": "Given\u0020a\u0020list\u0020of\u0020directories,\u0020and\u0020a\u0020list\u0020of\u0020filenames,\u0020find\u0020the\u0020ones\u0020that\nare\u0020real\u0020files.", + "url": "classes/Psy-ConfigPaths.html#method_allRealFiles" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AensureDir\u0028\u0029", + "name": "ensureDir", + "summary": "Ensure\u0020that\u0020\u0024dir\u0020exists\u0020and\u0020is\u0020writable.", + "url": "classes/Psy-ConfigPaths.html#method_ensureDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AtouchFileWithMkdir\u0028\u0029", + "name": "touchFileWithMkdir", + "summary": "Ensure\u0020that\u0020\u0024file\u0020exists\u0020and\u0020is\u0020writable,\u0020make\u0020the\u0020parent\u0020directory\u0020if\u0020necessary.", + "url": "classes/Psy-ConfigPaths.html#method_touchFileWithMkdir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetEnv\u0028\u0029", + "name": "getEnv", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getEnv" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003AgetEnvArray\u0028\u0029", + "name": "getEnvArray", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#method_getEnvArray" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003A\u0024configDir", + "name": "configDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#property_configDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003A\u0024dataDir", + "name": "dataDir", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#property_dataDir" + }, { + "fqsen": "\\Psy\\ConfigPaths\u003A\u003A\u0024env", + "name": "env", + "summary": "", + "url": "classes/Psy-ConfigPaths.html#property_env" + }, { + "fqsen": "\\Psy\\Configuration", + "name": "Configuration", + "summary": "The\u0020Psy\u0020Shell\u0020configuration.", + "url": "classes/Psy-Configuration.html" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020Configuration\u0020instance.", + "url": "classes/Psy-Configuration.html#method___construct" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AfromInput\u0028\u0029", + "name": "fromInput", + "summary": "Construct\u0020a\u0020Configuration\u0020object\u0020from\u0020Symfony\u0020Console\u0020input.", + "url": "classes/Psy-Configuration.html#method_fromInput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetConfigFileFromInput\u0028\u0029", + "name": "getConfigFileFromInput", + "summary": "Get\u0020the\u0020desired\u0020config\u0020file\u0020from\u0020the\u0020given\u0020input.", + "url": "classes/Psy-Configuration.html#method_getConfigFileFromInput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetOptionFromInput\u0028\u0029", + "name": "getOptionFromInput", + "summary": "Get\u0020a\u0020boolean\u0020option\u0020from\u0020the\u0020given\u0020input.", + "url": "classes/Psy-Configuration.html#method_getOptionFromInput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetVerbosityFromInput\u0028\u0029", + "name": "getVerbosityFromInput", + "summary": "Get\u0020the\u0020desired\u0020verbosity\u0020from\u0020the\u0020given\u0020input.", + "url": "classes/Psy-Configuration.html#method_getVerbosityFromInput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetInputOptions\u0028\u0029", + "name": "getInputOptions", + "summary": "Get\u0020a\u0020list\u0020of\u0020input\u0020options\u0020expected\u0020when\u0020initializing\u0020Configuration\u0020via\u0020input.", + "url": "classes/Psy-Configuration.html#method_getInputOptions" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003Ainit\u0028\u0029", + "name": "init", + "summary": "Initialize\u0020the\u0020configuration.", + "url": "classes/Psy-Configuration.html#method_init" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetConfigFile\u0028\u0029", + "name": "getConfigFile", + "summary": "Get\u0020the\u0020current\u0020PsySH\u0020config\u0020file.", + "url": "classes/Psy-Configuration.html#method_getConfigFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetLocalConfigFile\u0028\u0029", + "name": "getLocalConfigFile", + "summary": "Get\u0020the\u0020local\u0020PsySH\u0020config\u0020file.", + "url": "classes/Psy-Configuration.html#method_getLocalConfigFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AloadConfig\u0028\u0029", + "name": "loadConfig", + "summary": "Load\u0020configuration\u0020values\u0020from\u0020an\u0020array\u0020of\u0020options.", + "url": "classes/Psy-Configuration.html#method_loadConfig" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AloadConfigFile\u0028\u0029", + "name": "loadConfigFile", + "summary": "Load\u0020a\u0020configuration\u0020file\u0020\u0028default\u003A\u0020\u0060\u0024HOME\/.config\/psysh\/config.php\u0060\u0029.", + "url": "classes/Psy-Configuration.html#method_loadConfigFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetDefaultIncludes\u0028\u0029", + "name": "setDefaultIncludes", + "summary": "Set\u0020files\u0020to\u0020be\u0020included\u0020by\u0020default\u0020at\u0020the\u0020start\u0020of\u0020each\u0020shell\u0020session.", + "url": "classes/Psy-Configuration.html#method_setDefaultIncludes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetDefaultIncludes\u0028\u0029", + "name": "getDefaultIncludes", + "summary": "Get\u0020files\u0020to\u0020be\u0020included\u0020by\u0020default\u0020at\u0020the\u0020start\u0020of\u0020each\u0020shell\u0020session.", + "url": "classes/Psy-Configuration.html#method_getDefaultIncludes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetConfigDir\u0028\u0029", + "name": "setConfigDir", + "summary": "Set\u0020the\u0020shell\u0027s\u0020config\u0020directory\u0020location.", + "url": "classes/Psy-Configuration.html#method_setConfigDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetConfigDir\u0028\u0029", + "name": "getConfigDir", + "summary": "Get\u0020the\u0020current\u0020configuration\u0020directory,\u0020if\u0020any\u0020is\u0020explicitly\u0020set.", + "url": "classes/Psy-Configuration.html#method_getConfigDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetDataDir\u0028\u0029", + "name": "setDataDir", + "summary": "Set\u0020the\u0020shell\u0027s\u0020data\u0020directory\u0020location.", + "url": "classes/Psy-Configuration.html#method_setDataDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetDataDir\u0028\u0029", + "name": "getDataDir", + "summary": "Get\u0020the\u0020current\u0020data\u0020directory,\u0020if\u0020any\u0020is\u0020explicitly\u0020set.", + "url": "classes/Psy-Configuration.html#method_getDataDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetRuntimeDir\u0028\u0029", + "name": "setRuntimeDir", + "summary": "Set\u0020the\u0020shell\u0027s\u0020temporary\u0020directory\u0020location.", + "url": "classes/Psy-Configuration.html#method_setRuntimeDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetRuntimeDir\u0028\u0029", + "name": "getRuntimeDir", + "summary": "Get\u0020the\u0020shell\u0027s\u0020temporary\u0020directory\u0020location.", + "url": "classes/Psy-Configuration.html#method_getRuntimeDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetHistoryFile\u0028\u0029", + "name": "setHistoryFile", + "summary": "Set\u0020the\u0020readline\u0020history\u0020file\u0020path.", + "url": "classes/Psy-Configuration.html#method_setHistoryFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetHistoryFile\u0028\u0029", + "name": "getHistoryFile", + "summary": "Get\u0020the\u0020readline\u0020history\u0020file\u0020path.", + "url": "classes/Psy-Configuration.html#method_getHistoryFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetHistorySize\u0028\u0029", + "name": "setHistorySize", + "summary": "Set\u0020the\u0020readline\u0020max\u0020history\u0020size.", + "url": "classes/Psy-Configuration.html#method_setHistorySize" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetHistorySize\u0028\u0029", + "name": "getHistorySize", + "summary": "Get\u0020the\u0020readline\u0020max\u0020history\u0020size.", + "url": "classes/Psy-Configuration.html#method_getHistorySize" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetEraseDuplicates\u0028\u0029", + "name": "setEraseDuplicates", + "summary": "Sets\u0020whether\u0020readline\u0020erases\u0020old\u0020duplicate\u0020history\u0020entries.", + "url": "classes/Psy-Configuration.html#method_setEraseDuplicates" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetEraseDuplicates\u0028\u0029", + "name": "getEraseDuplicates", + "summary": "Get\u0020whether\u0020readline\u0020erases\u0020old\u0020duplicate\u0020history\u0020entries.", + "url": "classes/Psy-Configuration.html#method_getEraseDuplicates" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetTempFile\u0028\u0029", + "name": "getTempFile", + "summary": "Get\u0020a\u0020temporary\u0020file\u0020of\u0020type\u0020\u0024type\u0020for\u0020process\u0020\u0024pid.", + "url": "classes/Psy-Configuration.html#method_getTempFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetPipe\u0028\u0029", + "name": "getPipe", + "summary": "Get\u0020a\u0020filename\u0020suitable\u0020for\u0020a\u0020FIFO\u0020pipe\u0020of\u0020\u0024type\u0020for\u0020process\u0020\u0024pid.", + "url": "classes/Psy-Configuration.html#method_getPipe" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024hasReadline", + "name": "hasReadline", + "summary": "", + "url": "classes/Psy-Configuration.html#property_hasReadline" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetUseReadline\u0028\u0029", + "name": "setUseReadline", + "summary": "Enable\u0020or\u0020disable\u0020Readline\u0020usage.", + "url": "classes/Psy-Configuration.html#method_setUseReadline" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024useReadline", + "name": "useReadline", + "summary": "", + "url": "classes/Psy-Configuration.html#property_useReadline" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetReadline\u0028\u0029", + "name": "setReadline", + "summary": "Set\u0020the\u0020Psy\u0020Shell\u0020readline\u0020service.", + "url": "classes/Psy-Configuration.html#method_setReadline" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetReadline\u0028\u0029", + "name": "getReadline", + "summary": "Get\u0020the\u0020Psy\u0020Shell\u0020readline\u0020service.", + "url": "classes/Psy-Configuration.html#method_getReadline" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetReadlineClass\u0028\u0029", + "name": "getReadlineClass", + "summary": "Get\u0020the\u0020appropriate\u0020Readline\u0020implementation\u0020class\u0020name.", + "url": "classes/Psy-Configuration.html#method_getReadlineClass" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetUseBracketedPaste\u0028\u0029", + "name": "setUseBracketedPaste", + "summary": "Enable\u0020or\u0020disable\u0020bracketed\u0020paste.", + "url": "classes/Psy-Configuration.html#method_setUseBracketedPaste" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024useBracketedPaste", + "name": "useBracketedPaste", + "summary": "", + "url": "classes/Psy-Configuration.html#property_useBracketedPaste" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024hasPcntl", + "name": "hasPcntl", + "summary": "", + "url": "classes/Psy-Configuration.html#property_hasPcntl" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetUsePcntl\u0028\u0029", + "name": "setUsePcntl", + "summary": "Enable\u0020or\u0020disable\u0020Pcntl\u0020usage.", + "url": "classes/Psy-Configuration.html#method_setUsePcntl" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024usePcntl", + "name": "usePcntl", + "summary": "", + "url": "classes/Psy-Configuration.html#property_usePcntl" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024rawOutput", + "name": "rawOutput", + "summary": "", + "url": "classes/Psy-Configuration.html#property_rawOutput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetRawOutput\u0028\u0029", + "name": "setRawOutput", + "summary": "Enable\u0020or\u0020disable\u0020raw\u0020output.", + "url": "classes/Psy-Configuration.html#method_setRawOutput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetRequireSemicolons\u0028\u0029", + "name": "setRequireSemicolons", + "summary": "Enable\u0020or\u0020disable\u0020strict\u0020requirement\u0020of\u0020semicolons.", + "url": "classes/Psy-Configuration.html#method_setRequireSemicolons" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024requireSemicolons", + "name": "requireSemicolons", + "summary": "", + "url": "classes/Psy-Configuration.html#property_requireSemicolons" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetStrictTypes\u0028\u0029", + "name": "setStrictTypes", + "summary": "Enable\u0020or\u0020disable\u0020strict\u0020types\u0020enforcement.", + "url": "classes/Psy-Configuration.html#method_setStrictTypes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024strictTypes", + "name": "strictTypes", + "summary": "", + "url": "classes/Psy-Configuration.html#property_strictTypes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetUseUnicode\u0028\u0029", + "name": "setUseUnicode", + "summary": "Enable\u0020or\u0020disable\u0020Unicode\u0020in\u0020PsySH\u0020specific\u0020output.", + "url": "classes/Psy-Configuration.html#method_setUseUnicode" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024useUnicode", + "name": "useUnicode", + "summary": "", + "url": "classes/Psy-Configuration.html#property_useUnicode" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetErrorLoggingLevel\u0028\u0029", + "name": "setErrorLoggingLevel", + "summary": "Set\u0020the\u0020error\u0020logging\u0020level.", + "url": "classes/Psy-Configuration.html#method_setErrorLoggingLevel" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024errorLoggingLevel", + "name": "errorLoggingLevel", + "summary": "", + "url": "classes/Psy-Configuration.html#property_errorLoggingLevel" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetCodeCleaner\u0028\u0029", + "name": "setCodeCleaner", + "summary": "Set\u0020a\u0020CodeCleaner\u0020service\u0020instance.", + "url": "classes/Psy-Configuration.html#method_setCodeCleaner" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetCodeCleaner\u0028\u0029", + "name": "getCodeCleaner", + "summary": "Get\u0020a\u0020CodeCleaner\u0020service\u0020instance.", + "url": "classes/Psy-Configuration.html#method_getCodeCleaner" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetYolo\u0028\u0029", + "name": "setYolo", + "summary": "Enable\u0020or\u0020disable\u0020running\u0020PsySH\u0020without\u0020input\u0020validation.", + "url": "classes/Psy-Configuration.html#method_setYolo" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024yolo", + "name": "yolo", + "summary": "", + "url": "classes/Psy-Configuration.html#property_yolo" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetUseTabCompletion\u0028\u0029", + "name": "setUseTabCompletion", + "summary": "Enable\u0020or\u0020disable\u0020tab\u0020completion.", + "url": "classes/Psy-Configuration.html#method_setUseTabCompletion" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetTabCompletion\u0028\u0029", + "name": "setTabCompletion", + "summary": "", + "url": "classes/Psy-Configuration.html#method_setTabCompletion" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024useTabCompletion", + "name": "useTabCompletion", + "summary": "", + "url": "classes/Psy-Configuration.html#property_useTabCompletion" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetTabCompletion\u0028\u0029", + "name": "getTabCompletion", + "summary": "", + "url": "classes/Psy-Configuration.html#method_getTabCompletion" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetOutput\u0028\u0029", + "name": "setOutput", + "summary": "Set\u0020the\u0020Shell\u0020Output\u0020service.", + "url": "classes/Psy-Configuration.html#method_setOutput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "Get\u0020a\u0020Shell\u0020Output\u0020service\u0020instance.", + "url": "classes/Psy-Configuration.html#method_getOutput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetOutputDecorated\u0028\u0029", + "name": "getOutputDecorated", + "summary": "Get\u0020the\u0020decoration\u0020\u0028i.e.\u0020color\u0029\u0020setting\u0020for\u0020the\u0020Shell\u0020Output\u0020service.", + "url": "classes/Psy-Configuration.html#method_getOutputDecorated" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetInputInteractive\u0028\u0029", + "name": "getInputInteractive", + "summary": "Get\u0020the\u0020interactive\u0020setting\u0020for\u0020shell\u0020input.", + "url": "classes/Psy-Configuration.html#method_getInputInteractive" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetPager\u0028\u0029", + "name": "setPager", + "summary": "Set\u0020the\u0020OutputPager\u0020service.", + "url": "classes/Psy-Configuration.html#method_setPager" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetPager\u0028\u0029", + "name": "getPager", + "summary": "Get\u0020an\u0020OutputPager\u0020instance\u0020or\u0020a\u0020command\u0020for\u0020an\u0020external\u0020Proc\u0020pager.", + "url": "classes/Psy-Configuration.html#method_getPager" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetAutoCompleter\u0028\u0029", + "name": "setAutoCompleter", + "summary": "Set\u0020the\u0020Shell\u0020AutoCompleter\u0020service.", + "url": "classes/Psy-Configuration.html#method_setAutoCompleter" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetAutoCompleter\u0028\u0029", + "name": "getAutoCompleter", + "summary": "Get\u0020an\u0020AutoCompleter\u0020service\u0020instance.", + "url": "classes/Psy-Configuration.html#method_getAutoCompleter" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetTabCompletionMatchers\u0028\u0029", + "name": "getTabCompletionMatchers", + "summary": "", + "url": "classes/Psy-Configuration.html#method_getTabCompletionMatchers" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AaddMatchers\u0028\u0029", + "name": "addMatchers", + "summary": "Add\u0020tab\u0020completion\u0020matchers\u0020to\u0020the\u0020AutoCompleter.", + "url": "classes/Psy-Configuration.html#method_addMatchers" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AdoAddMatchers\u0028\u0029", + "name": "doAddMatchers", + "summary": "Internal\u0020method\u0020for\u0020adding\u0020tab\u0020completion\u0020matchers.\u0020This\u0020will\u0020set\u0020any\u0020new\nmatchers\u0020once\u0020a\u0020Shell\u0020is\u0020available.", + "url": "classes/Psy-Configuration.html#method_doAddMatchers" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AaddTabCompletionMatchers\u0028\u0029", + "name": "addTabCompletionMatchers", + "summary": "", + "url": "classes/Psy-Configuration.html#method_addTabCompletionMatchers" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AaddCommands\u0028\u0029", + "name": "addCommands", + "summary": "Add\u0020commands\u0020to\u0020the\u0020Shell.", + "url": "classes/Psy-Configuration.html#method_addCommands" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AdoAddCommands\u0028\u0029", + "name": "doAddCommands", + "summary": "Internal\u0020method\u0020for\u0020adding\u0020commands.\u0020This\u0020will\u0020set\u0020any\u0020new\u0020commands\u0020once\na\u0020Shell\u0020is\u0020available.", + "url": "classes/Psy-Configuration.html#method_doAddCommands" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetShell\u0028\u0029", + "name": "setShell", + "summary": "Set\u0020the\u0020Shell\u0020backreference\u0020and\u0020add\u0020any\u0020new\u0020commands\u0020to\u0020the\u0020Shell.", + "url": "classes/Psy-Configuration.html#method_setShell" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetManualDbFile\u0028\u0029", + "name": "setManualDbFile", + "summary": "Set\u0020the\u0020PHP\u0020manual\u0020database\u0020file.", + "url": "classes/Psy-Configuration.html#method_setManualDbFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetManualDbFile\u0028\u0029", + "name": "getManualDbFile", + "summary": "Get\u0020the\u0020current\u0020PHP\u0020manual\u0020database\u0020file.", + "url": "classes/Psy-Configuration.html#method_getManualDbFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetManualDb\u0028\u0029", + "name": "getManualDb", + "summary": "Get\u0020a\u0020PHP\u0020manual\u0020database\u0020connection.", + "url": "classes/Psy-Configuration.html#method_getManualDb" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AaddCasters\u0028\u0029", + "name": "addCasters", + "summary": "Add\u0020an\u0020array\u0020of\u0020casters\u0020definitions.", + "url": "classes/Psy-Configuration.html#method_addCasters" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetPresenter\u0028\u0029", + "name": "getPresenter", + "summary": "Get\u0020the\u0020Presenter\u0020service.", + "url": "classes/Psy-Configuration.html#method_getPresenter" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetWarnOnMultipleConfigs\u0028\u0029", + "name": "setWarnOnMultipleConfigs", + "summary": "Enable\u0020or\u0020disable\u0020warnings\u0020on\u0020multiple\u0020configuration\u0020or\u0020data\u0020files.", + "url": "classes/Psy-Configuration.html#method_setWarnOnMultipleConfigs" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024warnOnMultipleConfigs", + "name": "warnOnMultipleConfigs", + "summary": "", + "url": "classes/Psy-Configuration.html#property_warnOnMultipleConfigs" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetColorMode\u0028\u0029", + "name": "setColorMode", + "summary": "Set\u0020the\u0020current\u0020color\u0020mode.", + "url": "classes/Psy-Configuration.html#method_setColorMode" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024colorMode", + "name": "colorMode", + "summary": "", + "url": "classes/Psy-Configuration.html#property_colorMode" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetInteractiveMode\u0028\u0029", + "name": "setInteractiveMode", + "summary": "Set\u0020the\u0020shell\u0027s\u0020interactive\u0020mode.", + "url": "classes/Psy-Configuration.html#method_setInteractiveMode" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024interactiveMode", + "name": "interactiveMode", + "summary": "", + "url": "classes/Psy-Configuration.html#property_interactiveMode" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetChecker\u0028\u0029", + "name": "setChecker", + "summary": "Set\u0020an\u0020update\u0020checker\u0020service\u0020instance.", + "url": "classes/Psy-Configuration.html#method_setChecker" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetChecker\u0028\u0029", + "name": "getChecker", + "summary": "Get\u0020an\u0020update\u0020checker\u0020service\u0020instance.", + "url": "classes/Psy-Configuration.html#method_getChecker" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetUpdateCheck\u0028\u0029", + "name": "getUpdateCheck", + "summary": "Get\u0020the\u0020current\u0020update\u0020check\u0020interval.", + "url": "classes/Psy-Configuration.html#method_getUpdateCheck" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetUpdateCheck\u0028\u0029", + "name": "setUpdateCheck", + "summary": "Set\u0020the\u0020update\u0020check\u0020interval.", + "url": "classes/Psy-Configuration.html#method_setUpdateCheck" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetUpdateCheckCacheFile\u0028\u0029", + "name": "getUpdateCheckCacheFile", + "summary": "Get\u0020a\u0020cache\u0020file\u0020path\u0020for\u0020the\u0020update\u0020checker.", + "url": "classes/Psy-Configuration.html#method_getUpdateCheckCacheFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetStartupMessage\u0028\u0029", + "name": "setStartupMessage", + "summary": "Set\u0020the\u0020startup\u0020message.", + "url": "classes/Psy-Configuration.html#method_setStartupMessage" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetStartupMessage\u0028\u0029", + "name": "getStartupMessage", + "summary": "Get\u0020the\u0020startup\u0020message.", + "url": "classes/Psy-Configuration.html#method_getStartupMessage" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetPrompt\u0028\u0029", + "name": "setPrompt", + "summary": "Set\u0020the\u0020prompt.", + "url": "classes/Psy-Configuration.html#method_setPrompt" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetPrompt\u0028\u0029", + "name": "getPrompt", + "summary": "Get\u0020the\u0020prompt.", + "url": "classes/Psy-Configuration.html#method_getPrompt" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024forceArrayIndexes", + "name": "forceArrayIndexes", + "summary": "", + "url": "classes/Psy-Configuration.html#property_forceArrayIndexes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetForceArrayIndexes\u0028\u0029", + "name": "setForceArrayIndexes", + "summary": "Set\u0020the\u0020force\u0020array\u0020indexes.", + "url": "classes/Psy-Configuration.html#method_setForceArrayIndexes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetTheme\u0028\u0029", + "name": "setTheme", + "summary": "Set\u0020the\u0020current\u0020output\u0020Theme.", + "url": "classes/Psy-Configuration.html#method_setTheme" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024theme", + "name": "theme", + "summary": "", + "url": "classes/Psy-Configuration.html#property_theme" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetFormatterStyles\u0028\u0029", + "name": "setFormatterStyles", + "summary": "Set\u0020the\u0020shell\u0020output\u0020formatter\u0020styles.", + "url": "classes/Psy-Configuration.html#method_setFormatterStyles" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AapplyFormatterStyles\u0028\u0029", + "name": "applyFormatterStyles", + "summary": "Internal\u0020method\u0020for\u0020applying\u0020output\u0020formatter\u0020style\u0020customization.", + "url": "classes/Psy-Configuration.html#method_applyFormatterStyles" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024verbosity", + "name": "verbosity", + "summary": "", + "url": "classes/Psy-Configuration.html#property_verbosity" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AsetVerbosity\u0028\u0029", + "name": "setVerbosity", + "summary": "Set\u0020the\u0020shell\u0020output\u0020verbosity.", + "url": "classes/Psy-Configuration.html#method_setVerbosity" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AgetOutputVerbosity\u0028\u0029", + "name": "getOutputVerbosity", + "summary": "Map\u0020the\u0020verbosity\u0020configuration\u0020to\u0020OutputInterface\u0020verbosity\u0020constants.", + "url": "classes/Psy-Configuration.html#method_getOutputVerbosity" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AinputIsPiped\u0028\u0029", + "name": "inputIsPiped", + "summary": "Guess\u0020whether\u0020stdin\u0020is\u0020piped.", + "url": "classes/Psy-Configuration.html#method_inputIsPiped" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AoutputIsPiped\u0028\u0029", + "name": "outputIsPiped", + "summary": "Guess\u0020whether\u0020shell\u0020output\u0020is\u0020piped.", + "url": "classes/Psy-Configuration.html#method_outputIsPiped" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AlooksLikeAPipe\u0028\u0029", + "name": "looksLikeAPipe", + "summary": "Guess\u0020whether\u0020an\u0020input\u0020or\u0020output\u0020stream\u0020is\u0020piped.", + "url": "classes/Psy-Configuration.html#method_looksLikeAPipe" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003ACOLOR_MODE_AUTO", + "name": "COLOR_MODE_AUTO", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_COLOR_MODE_AUTO" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003ACOLOR_MODE_FORCED", + "name": "COLOR_MODE_FORCED", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_COLOR_MODE_FORCED" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003ACOLOR_MODE_DISABLED", + "name": "COLOR_MODE_DISABLED", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_COLOR_MODE_DISABLED" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AINTERACTIVE_MODE_AUTO", + "name": "INTERACTIVE_MODE_AUTO", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_INTERACTIVE_MODE_AUTO" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AINTERACTIVE_MODE_FORCED", + "name": "INTERACTIVE_MODE_FORCED", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_INTERACTIVE_MODE_FORCED" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AINTERACTIVE_MODE_DISABLED", + "name": "INTERACTIVE_MODE_DISABLED", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_INTERACTIVE_MODE_DISABLED" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AVERBOSITY_QUIET", + "name": "VERBOSITY_QUIET", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_VERBOSITY_QUIET" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AVERBOSITY_NORMAL", + "name": "VERBOSITY_NORMAL", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_VERBOSITY_NORMAL" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AVERBOSITY_VERBOSE", + "name": "VERBOSITY_VERBOSE", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_VERBOSITY_VERBOSE" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AVERBOSITY_VERY_VERBOSE", + "name": "VERBOSITY_VERY_VERBOSE", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_VERBOSITY_VERY_VERBOSE" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003AVERBOSITY_DEBUG", + "name": "VERBOSITY_DEBUG", + "summary": "", + "url": "classes/Psy-Configuration.html#constant_VERBOSITY_DEBUG" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024AVAILABLE_OPTIONS", + "name": "AVAILABLE_OPTIONS", + "summary": "", + "url": "classes/Psy-Configuration.html#property_AVAILABLE_OPTIONS" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024defaultIncludes", + "name": "defaultIncludes", + "summary": "", + "url": "classes/Psy-Configuration.html#property_defaultIncludes" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024configDir", + "name": "configDir", + "summary": "", + "url": "classes/Psy-Configuration.html#property_configDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024dataDir", + "name": "dataDir", + "summary": "", + "url": "classes/Psy-Configuration.html#property_dataDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024runtimeDir", + "name": "runtimeDir", + "summary": "", + "url": "classes/Psy-Configuration.html#property_runtimeDir" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024configFile", + "name": "configFile", + "summary": "", + "url": "classes/Psy-Configuration.html#property_configFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024historyFile", + "name": "historyFile", + "summary": "", + "url": "classes/Psy-Configuration.html#property_historyFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024historySize", + "name": "historySize", + "summary": "", + "url": "classes/Psy-Configuration.html#property_historySize" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024eraseDuplicates", + "name": "eraseDuplicates", + "summary": "", + "url": "classes/Psy-Configuration.html#property_eraseDuplicates" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024manualDbFile", + "name": "manualDbFile", + "summary": "", + "url": "classes/Psy-Configuration.html#property_manualDbFile" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024newCommands", + "name": "newCommands", + "summary": "", + "url": "classes/Psy-Configuration.html#property_newCommands" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024pipedInput", + "name": "pipedInput", + "summary": "", + "url": "classes/Psy-Configuration.html#property_pipedInput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024pipedOutput", + "name": "pipedOutput", + "summary": "", + "url": "classes/Psy-Configuration.html#property_pipedOutput" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024newMatchers", + "name": "newMatchers", + "summary": "", + "url": "classes/Psy-Configuration.html#property_newMatchers" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024updateCheck", + "name": "updateCheck", + "summary": "", + "url": "classes/Psy-Configuration.html#property_updateCheck" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024startupMessage", + "name": "startupMessage", + "summary": "", + "url": "classes/Psy-Configuration.html#property_startupMessage" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024formatterStyles", + "name": "formatterStyles", + "summary": "", + "url": "classes/Psy-Configuration.html#property_formatterStyles" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024readline", + "name": "readline", + "summary": "", + "url": "classes/Psy-Configuration.html#property_readline" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Psy-Configuration.html#property_output" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024shell", + "name": "shell", + "summary": "", + "url": "classes/Psy-Configuration.html#property_shell" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024cleaner", + "name": "cleaner", + "summary": "", + "url": "classes/Psy-Configuration.html#property_cleaner" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024pager", + "name": "pager", + "summary": "", + "url": "classes/Psy-Configuration.html#property_pager" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024manualDb", + "name": "manualDb", + "summary": "", + "url": "classes/Psy-Configuration.html#property_manualDb" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024presenter", + "name": "presenter", + "summary": "", + "url": "classes/Psy-Configuration.html#property_presenter" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024autoCompleter", + "name": "autoCompleter", + "summary": "", + "url": "classes/Psy-Configuration.html#property_autoCompleter" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024checker", + "name": "checker", + "summary": "", + "url": "classes/Psy-Configuration.html#property_checker" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024prompt", + "name": "prompt", + "summary": "", + "url": "classes/Psy-Configuration.html#property_prompt" + }, { + "fqsen": "\\Psy\\Configuration\u003A\u003A\u0024configPaths", + "name": "configPaths", + "summary": "", + "url": "classes/Psy-Configuration.html#property_configPaths" + }, { + "fqsen": "\\Psy\\Context", + "name": "Context", + "summary": "The\u0020Shell\u0020execution\u0020context.", + "url": "classes/Psy-Context.html" + }, { + "fqsen": "\\Psy\\Context\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020context\u0020variable.", + "url": "classes/Psy-Context.html#method_get" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetAll\u0028\u0029", + "name": "getAll", + "summary": "Get\u0020all\u0020defined\u0020variables.", + "url": "classes/Psy-Context.html#method_getAll" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetSpecialVariables\u0028\u0029", + "name": "getSpecialVariables", + "summary": "Get\u0020all\u0020defined\u0020magic\u0020variables\u003A\u0020\u0024_,\u0020\u0024_e,\u0020\u0024__out,\u0020\u0024__class,\u0020\u0024__file,\u0020etc.", + "url": "classes/Psy-Context.html#method_getSpecialVariables" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetAll\u0028\u0029", + "name": "setAll", + "summary": "Set\u0020all\u0020scope\u0020variables.", + "url": "classes/Psy-Context.html#method_setAll" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetReturnValue\u0028\u0029", + "name": "setReturnValue", + "summary": "Set\u0020the\u0020most\u0020recent\u0020return\u0020value.", + "url": "classes/Psy-Context.html#method_setReturnValue" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetReturnValue\u0028\u0029", + "name": "getReturnValue", + "summary": "Get\u0020the\u0020most\u0020recent\u0020return\u0020value.", + "url": "classes/Psy-Context.html#method_getReturnValue" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetLastException\u0028\u0029", + "name": "setLastException", + "summary": "Set\u0020the\u0020most\u0020recent\u0020Exception\u0020or\u0020Error.", + "url": "classes/Psy-Context.html#method_setLastException" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetLastException\u0028\u0029", + "name": "getLastException", + "summary": "Get\u0020the\u0020most\u0020recent\u0020Exception\u0020or\u0020Error.", + "url": "classes/Psy-Context.html#method_getLastException" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetLastStdout\u0028\u0029", + "name": "setLastStdout", + "summary": "Set\u0020the\u0020most\u0020recent\u0020output\u0020from\u0020evaluated\u0020code.", + "url": "classes/Psy-Context.html#method_setLastStdout" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetLastStdout\u0028\u0029", + "name": "getLastStdout", + "summary": "Get\u0020the\u0020most\u0020recent\u0020output\u0020from\u0020evaluated\u0020code.", + "url": "classes/Psy-Context.html#method_getLastStdout" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetBoundObject\u0028\u0029", + "name": "setBoundObject", + "summary": "Set\u0020the\u0020bound\u0020object\u0020\u0028\u0024this\u0020variable\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Context.html#method_setBoundObject" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetBoundObject\u0028\u0029", + "name": "getBoundObject", + "summary": "Get\u0020the\u0020bound\u0020object\u0020\u0028\u0024this\u0020variable\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Context.html#method_getBoundObject" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetBoundClass\u0028\u0029", + "name": "setBoundClass", + "summary": "Set\u0020the\u0020bound\u0020class\u0020\u0028self\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Context.html#method_setBoundClass" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetBoundClass\u0028\u0029", + "name": "getBoundClass", + "summary": "Get\u0020the\u0020bound\u0020class\u0020\u0028self\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Context.html#method_getBoundClass" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AsetCommandScopeVariables\u0028\u0029", + "name": "setCommandScopeVariables", + "summary": "Set\u0020command\u002Dscope\u0020magic\u0020variables\u003A\u0020\u0024__class,\u0020\u0024__file,\u0020etc.", + "url": "classes/Psy-Context.html#method_setCommandScopeVariables" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetCommandScopeVariables\u0028\u0029", + "name": "getCommandScopeVariables", + "summary": "Get\u0020command\u002Dscope\u0020magic\u0020variables\u003A\u0020\u0024__class,\u0020\u0024__file,\u0020etc.", + "url": "classes/Psy-Context.html#method_getCommandScopeVariables" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AgetUnusedCommandScopeVariableNames\u0028\u0029", + "name": "getUnusedCommandScopeVariableNames", + "summary": "Get\u0020unused\u0020command\u002Dscope\u0020magic\u0020variables\u0020names\u003A\u0020__class,\u0020__file,\u0020etc.", + "url": "classes/Psy-Context.html#method_getUnusedCommandScopeVariableNames" + }, { + "fqsen": "\\Psy\\Context\u003A\u003AisSpecialVariableName\u0028\u0029", + "name": "isSpecialVariableName", + "summary": "Check\u0020whether\u0020a\u0020variable\u0020name\u0020is\u0020a\u0020magic\u0020variable.", + "url": "classes/Psy-Context.html#method_isSpecialVariableName" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024specialNames", + "name": "specialNames", + "summary": "", + "url": "classes/Psy-Context.html#property_specialNames" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024commandScopeNames", + "name": "commandScopeNames", + "summary": "", + "url": "classes/Psy-Context.html#property_commandScopeNames" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024scopeVariables", + "name": "scopeVariables", + "summary": "", + "url": "classes/Psy-Context.html#property_scopeVariables" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024commandScopeVariables", + "name": "commandScopeVariables", + "summary": "", + "url": "classes/Psy-Context.html#property_commandScopeVariables" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024returnValue", + "name": "returnValue", + "summary": "", + "url": "classes/Psy-Context.html#property_returnValue" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024lastException", + "name": "lastException", + "summary": "", + "url": "classes/Psy-Context.html#property_lastException" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024lastStdout", + "name": "lastStdout", + "summary": "", + "url": "classes/Psy-Context.html#property_lastStdout" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024boundObject", + "name": "boundObject", + "summary": "", + "url": "classes/Psy-Context.html#property_boundObject" + }, { + "fqsen": "\\Psy\\Context\u003A\u003A\u0024boundClass", + "name": "boundClass", + "summary": "", + "url": "classes/Psy-Context.html#property_boundClass" + }, { + "fqsen": "\\Psy\\ContextAware", + "name": "ContextAware", + "summary": "ContextAware\u0020interface.", + "url": "classes/Psy-ContextAware.html" + }, { + "fqsen": "\\Psy\\ContextAware\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "Set\u0020the\u0020Context\u0020reference.", + "url": "classes/Psy-ContextAware.html#method_setContext" + }, { + "fqsen": "\\Psy\\EnvInterface", + "name": "EnvInterface", + "summary": "Abstraction\u0020around\u0020environment\u0020variables.", + "url": "classes/Psy-EnvInterface.html" + }, { + "fqsen": "\\Psy\\EnvInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020environment\u0020variable\u0020by\u0020name.", + "url": "classes/Psy-EnvInterface.html#method_get" + }, { + "fqsen": "\\Psy\\Exception\\BreakException", + "name": "BreakException", + "summary": "A\u0020break\u0020exception,\u0020used\u0020for\u0020halting\u0020the\u0020Psy\u0020Shell.", + "url": "classes/Psy-Exception-BreakException.html" + }, { + "fqsen": "\\Psy\\Exception\\BreakException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Psy-Exception-BreakException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\BreakException\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Return\u0020a\u0020raw\u0020\u0028unformatted\u0029\u0020version\u0020of\u0020the\u0020error\u0020message.", + "url": "classes/Psy-Exception-BreakException.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\BreakException\u003A\u003AexitShell\u0028\u0029", + "name": "exitShell", + "summary": "Throws\u0020BreakException.", + "url": "classes/Psy-Exception-BreakException.html#method_exitShell" + }, { + "fqsen": "\\Psy\\Exception\\BreakException\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/Psy-Exception-BreakException.html#property_rawMessage" + }, { + "fqsen": "\\Psy\\Exception\\DeprecatedException", + "name": "DeprecatedException", + "summary": "A\u0020DeprecatedException\u0020for\u0020Psy.", + "url": "classes/Psy-Exception-DeprecatedException.html" + }, { + "fqsen": "\\Psy\\Exception\\ErrorException", + "name": "ErrorException", + "summary": "A\u0020custom\u0020error\u0020Exception\u0020for\u0020Psy\u0020with\u0020a\u0020formatted\u0020\u0024message.", + "url": "classes/Psy-Exception-ErrorException.html" + }, { + "fqsen": "\\Psy\\Exception\\ErrorException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020Psy\u0020ErrorException.", + "url": "classes/Psy-Exception-ErrorException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\ErrorException\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Get\u0020the\u0020raw\u0020\u0028unformatted\u0029\u0020message\u0020for\u0020this\u0020error.", + "url": "classes/Psy-Exception-ErrorException.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\ErrorException\u003A\u003AthrowException\u0028\u0029", + "name": "throwException", + "summary": "Helper\u0020for\u0020throwing\u0020an\u0020ErrorException.", + "url": "classes/Psy-Exception-ErrorException.html#method_throwException" + }, { + "fqsen": "\\Psy\\Exception\\ErrorException\u003A\u003AfromError\u0028\u0029", + "name": "fromError", + "summary": "Create\u0020an\u0020ErrorException\u0020from\u0020an\u0020Error.", + "url": "classes/Psy-Exception-ErrorException.html#method_fromError" + }, { + "fqsen": "\\Psy\\Exception\\ErrorException\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/Psy-Exception-ErrorException.html#property_rawMessage" + }, { + "fqsen": "\\Psy\\Exception\\Exception", + "name": "Exception", + "summary": "An\u0020interface\u0020for\u0020Psy\u0020Exceptions.", + "url": "classes/Psy-Exception-Exception.html" + }, { + "fqsen": "\\Psy\\Exception\\Exception\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "This\u0020is\u0020the\u0020only\u0020thing,\u0020really...\n\nReturn\u0020a\u0020raw\u0020\u0028unformatted\u0029\u0020version\u0020of\u0020the\u0020message.", + "url": "classes/Psy-Exception-Exception.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\FatalErrorException", + "name": "FatalErrorException", + "summary": "A\u0020\u0022fatal\u0020error\u0022\u0020Exception\u0020for\u0020Psy.", + "url": "classes/Psy-Exception-FatalErrorException.html" + }, { + "fqsen": "\\Psy\\Exception\\FatalErrorException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020fatal\u0020error.", + "url": "classes/Psy-Exception-FatalErrorException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\FatalErrorException\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Return\u0020a\u0020raw\u0020\u0028unformatted\u0029\u0020version\u0020of\u0020the\u0020error\u0020message.", + "url": "classes/Psy-Exception-FatalErrorException.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\FatalErrorException\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/Psy-Exception-FatalErrorException.html#property_rawMessage" + }, { + "fqsen": "\\Psy\\Exception\\ParseErrorException", + "name": "ParseErrorException", + "summary": "A\u0020\u0022parse\u0020error\u0022\u0020Exception\u0020for\u0020Psy.", + "url": "classes/Psy-Exception-ParseErrorException.html" + }, { + "fqsen": "\\Psy\\Exception\\ParseErrorException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor\u0021", + "url": "classes/Psy-Exception-ParseErrorException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\ParseErrorException\u003A\u003AfromParseError\u0028\u0029", + "name": "fromParseError", + "summary": "Create\u0020a\u0020ParseErrorException\u0020from\u0020a\u0020PhpParser\u0020Error.", + "url": "classes/Psy-Exception-ParseErrorException.html#method_fromParseError" + }, { + "fqsen": "\\Psy\\Exception\\RuntimeException", + "name": "RuntimeException", + "summary": "A\u0020RuntimeException\u0020for\u0020Psy.", + "url": "classes/Psy-Exception-RuntimeException.html" + }, { + "fqsen": "\\Psy\\Exception\\RuntimeException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Make\u0020this\u0020bad\u0020boy.", + "url": "classes/Psy-Exception-RuntimeException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\RuntimeException\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Return\u0020a\u0020raw\u0020\u0028unformatted\u0029\u0020version\u0020of\u0020the\u0020error\u0020message.", + "url": "classes/Psy-Exception-RuntimeException.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\RuntimeException\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/Psy-Exception-RuntimeException.html#property_rawMessage" + }, { + "fqsen": "\\Psy\\Exception\\ThrowUpException", + "name": "ThrowUpException", + "summary": "A\u0020throw\u002Dup\u0020exception,\u0020used\u0020for\u0020throwing\u0020an\u0020exception\u0020out\u0020of\u0020the\u0020Psy\u0020Shell.", + "url": "classes/Psy-Exception-ThrowUpException.html" + }, { + "fqsen": "\\Psy\\Exception\\ThrowUpException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Psy-Exception-ThrowUpException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\ThrowUpException\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Return\u0020a\u0020raw\u0020\u0028unformatted\u0029\u0020version\u0020of\u0020the\u0020error\u0020message.", + "url": "classes/Psy-Exception-ThrowUpException.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\ThrowUpException\u003A\u003AfromThrowable\u0028\u0029", + "name": "fromThrowable", + "summary": "Create\u0020a\u0020ThrowUpException\u0020from\u0020a\u0020Throwable.", + "url": "classes/Psy-Exception-ThrowUpException.html#method_fromThrowable" + }, { + "fqsen": "\\Psy\\Exception\\TypeErrorException", + "name": "TypeErrorException", + "summary": "A\u0020\u0022type\u0020error\u0022\u0020Exception\u0020for\u0020Psy.", + "url": "classes/Psy-Exception-TypeErrorException.html" + }, { + "fqsen": "\\Psy\\Exception\\TypeErrorException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor\u0021", + "url": "classes/Psy-Exception-TypeErrorException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\TypeErrorException\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Get\u0020the\u0020raw\u0020\u0028unformatted\u0029\u0020message\u0020for\u0020this\u0020error.", + "url": "classes/Psy-Exception-TypeErrorException.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Exception\\TypeErrorException\u003A\u003AfromTypeError\u0028\u0029", + "name": "fromTypeError", + "summary": "Create\u0020a\u0020TypeErrorException\u0020from\u0020a\u0020TypeError.", + "url": "classes/Psy-Exception-TypeErrorException.html#method_fromTypeError" + }, { + "fqsen": "\\Psy\\Exception\\TypeErrorException\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/Psy-Exception-TypeErrorException.html#property_rawMessage" + }, { + "fqsen": "\\Psy\\Exception\\UnexpectedTargetException", + "name": "UnexpectedTargetException", + "summary": "A\u0020RuntimeException\u0020for\u0020Psy.", + "url": "classes/Psy-Exception-UnexpectedTargetException.html" + }, { + "fqsen": "\\Psy\\Exception\\UnexpectedTargetException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Make\u0020this\u0020bad\u0020boy.", + "url": "classes/Psy-Exception-UnexpectedTargetException.html#method___construct" + }, { + "fqsen": "\\Psy\\Exception\\UnexpectedTargetException\u003A\u003AgetTarget\u0028\u0029", + "name": "getTarget", + "summary": "", + "url": "classes/Psy-Exception-UnexpectedTargetException.html#method_getTarget" + }, { + "fqsen": "\\Psy\\Exception\\UnexpectedTargetException\u003A\u003A\u0024target", + "name": "target", + "summary": "", + "url": "classes/Psy-Exception-UnexpectedTargetException.html#property_target" + }, { + "fqsen": "\\Psy\\ExecutionClosure", + "name": "ExecutionClosure", + "summary": "The\u0020Psy\u0020Shell\u0027s\u0020execution\u0020scope.", + "url": "classes/Psy-ExecutionClosure.html" + }, { + "fqsen": "\\Psy\\ExecutionClosure\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-ExecutionClosure.html#method___construct" + }, { + "fqsen": "\\Psy\\ExecutionClosure\u003A\u003AsetClosure\u0028\u0029", + "name": "setClosure", + "summary": "Set\u0020the\u0020closure\u0020instance.", + "url": "classes/Psy-ExecutionClosure.html#method_setClosure" + }, { + "fqsen": "\\Psy\\ExecutionClosure\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Go\u0020go\u0020gadget\u0020closure.", + "url": "classes/Psy-ExecutionClosure.html#method_execute" + }, { + "fqsen": "\\Psy\\ExecutionClosure\u003A\u003ANOOP_INPUT", + "name": "NOOP_INPUT", + "summary": "", + "url": "classes/Psy-ExecutionClosure.html#constant_NOOP_INPUT" + }, { + "fqsen": "\\Psy\\ExecutionClosure\u003A\u003A\u0024closure", + "name": "closure", + "summary": "", + "url": "classes/Psy-ExecutionClosure.html#property_closure" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener", + "name": "AbstractListener", + "summary": "Abstract\u0020Execution\u0020Loop\u0020Listener\u0020class.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener\u003A\u003AbeforeRun\u0028\u0029", + "name": "beforeRun", + "summary": "Called\u0020once\u0020before\u0020the\u0020REPL\u0020session\u0020starts.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html#method_beforeRun" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener\u003A\u003AbeforeLoop\u0028\u0029", + "name": "beforeLoop", + "summary": "Called\u0020at\u0020the\u0020start\u0020of\u0020each\u0020loop.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html#method_beforeLoop" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener\u003A\u003AonInput\u0028\u0029", + "name": "onInput", + "summary": "Called\u0020on\u0020user\u0020input.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html#method_onInput" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener\u003A\u003AonExecute\u0028\u0029", + "name": "onExecute", + "summary": "Called\u0020before\u0020executing\u0020user\u0020code.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html#method_onExecute" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener\u003A\u003AafterLoop\u0028\u0029", + "name": "afterLoop", + "summary": "Called\u0020at\u0020the\u0020end\u0020of\u0020each\u0020loop.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html#method_afterLoop" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\AbstractListener\u003A\u003AafterRun\u0028\u0029", + "name": "afterRun", + "summary": "Called\u0020once\u0020after\u0020the\u0020REPL\u0020session\u0020ends.", + "url": "classes/Psy-ExecutionLoop-AbstractListener.html#method_afterRun" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener", + "name": "Listener", + "summary": "Execution\u0020Loop\u0020Listener\u0020interface.", + "url": "classes/Psy-ExecutionLoop-Listener.html" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Determines\u0020whether\u0020this\u0020listener\u0020should\u0020be\u0020active.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_isSupported" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AbeforeRun\u0028\u0029", + "name": "beforeRun", + "summary": "Called\u0020once\u0020before\u0020the\u0020REPL\u0020session\u0020starts.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_beforeRun" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AbeforeLoop\u0028\u0029", + "name": "beforeLoop", + "summary": "Called\u0020at\u0020the\u0020start\u0020of\u0020each\u0020loop.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_beforeLoop" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AonInput\u0028\u0029", + "name": "onInput", + "summary": "Called\u0020on\u0020user\u0020input.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_onInput" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AonExecute\u0028\u0029", + "name": "onExecute", + "summary": "Called\u0020before\u0020executing\u0020user\u0020code.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_onExecute" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AafterLoop\u0028\u0029", + "name": "afterLoop", + "summary": "Called\u0020at\u0020the\u0020end\u0020of\u0020each\u0020loop.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_afterLoop" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\Listener\u003A\u003AafterRun\u0028\u0029", + "name": "afterRun", + "summary": "Called\u0020once\u0020after\u0020the\u0020REPL\u0020session\u0020ends.", + "url": "classes/Psy-ExecutionLoop-Listener.html#method_afterRun" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker", + "name": "ProcessForker", + "summary": "An\u0020execution\u0020loop\u0020listener\u0020that\u0020forks\u0020the\u0020process\u0020before\u0020executing\u0020code.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Process\u0020forker\u0020is\u0020supported\u0020if\u0020pcntl\u0020and\u0020posix\u0020extensions\u0020are\u0020available.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_isSupported" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AisPcntlSupported\u0028\u0029", + "name": "isPcntlSupported", + "summary": "Verify\u0020that\u0020all\u0020required\u0020pcntl\u0020functions\u0020are,\u0020in\u0020fact,\u0020available.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_isPcntlSupported" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AdisabledPcntlFunctions\u0028\u0029", + "name": "disabledPcntlFunctions", + "summary": "Check\u0020whether\u0020required\u0020pcntl\u0020functions\u0020are\u0020disabled.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_disabledPcntlFunctions" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AisPosixSupported\u0028\u0029", + "name": "isPosixSupported", + "summary": "Verify\u0020that\u0020all\u0020required\u0020posix\u0020functions\u0020are,\u0020in\u0020fact,\u0020available.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_isPosixSupported" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AdisabledPosixFunctions\u0028\u0029", + "name": "disabledPosixFunctions", + "summary": "Check\u0020whether\u0020required\u0020posix\u0020functions\u0020are\u0020disabled.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_disabledPosixFunctions" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AcheckDisabledFunctions\u0028\u0029", + "name": "checkDisabledFunctions", + "summary": "", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_checkDisabledFunctions" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AbeforeRun\u0028\u0029", + "name": "beforeRun", + "summary": "Forks\u0020into\u0020a\u0020main\u0020and\u0020a\u0020loop\u0020process.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_beforeRun" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AbeforeLoop\u0028\u0029", + "name": "beforeLoop", + "summary": "Create\u0020a\u0020savegame\u0020at\u0020the\u0020start\u0020of\u0020each\u0020loop\u0020iteration.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_beforeLoop" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AafterLoop\u0028\u0029", + "name": "afterLoop", + "summary": "Clean\u0020up\u0020old\u0020savegames\u0020at\u0020the\u0020end\u0020of\u0020each\u0020loop\u0020iteration.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_afterLoop" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AafterRun\u0028\u0029", + "name": "afterRun", + "summary": "After\u0020the\u0020REPL\u0020session\u0020ends,\u0020send\u0020the\u0020scope\u0020variables\u0020back\u0020up\u0020to\u0020the\u0020main\nthread\u0020\u0028if\u0020this\u0020is\u0020a\u0020child\u0020thread\u0029.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_afterRun" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AcreateSavegame\u0028\u0029", + "name": "createSavegame", + "summary": "Create\u0020a\u0020savegame\u0020fork.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_createSavegame" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003AserializeReturn\u0028\u0029", + "name": "serializeReturn", + "summary": "Serialize\u0020all\u0020serializable\u0020return\u0020values.", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#method_serializeReturn" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003A\u0024savegame", + "name": "savegame", + "summary": "", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#property_savegame" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003A\u0024up", + "name": "up", + "summary": "", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#property_up" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003A\u0024pcntlFunctions", + "name": "pcntlFunctions", + "summary": "", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#property_pcntlFunctions" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\ProcessForker\u003A\u003A\u0024posixFunctions", + "name": "posixFunctions", + "summary": "", + "url": "classes/Psy-ExecutionLoop-ProcessForker.html#property_posixFunctions" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader", + "name": "RunkitReloader", + "summary": "A\u0020runkit\u002Dbased\u0020code\u0020reloader,\u0020which\u0020is\u0020pretty\u0020much\u0020magic.", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Only\u0020enabled\u0020if\u0020Runkit\u0020is\u0020installed.", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#method_isSupported" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020Runkit\u0020Reloader.", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#method___construct" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003AonInput\u0028\u0029", + "name": "onInput", + "summary": "Reload\u0020code\u0020on\u0020input.", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#method_onInput" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003Areload\u0028\u0029", + "name": "reload", + "summary": "Look\u0020through\u0020included\u0020files\u0020and\u0020update\u0020anything\u0020with\u0020a\u0020new\u0020timestamp.", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#method_reload" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003AlintFile\u0028\u0029", + "name": "lintFile", + "summary": "Should\u0020this\u0020file\u0020be\u0020re\u002Dimported\u003F", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#method_lintFile" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#property_parser" + }, { + "fqsen": "\\Psy\\ExecutionLoop\\RunkitReloader\u003A\u003A\u0024timestamps", + "name": "timestamps", + "summary": "", + "url": "classes/Psy-ExecutionLoop-RunkitReloader.html#property_timestamps" + }, { + "fqsen": "\\Psy\\ExecutionLoopClosure", + "name": "ExecutionLoopClosure", + "summary": "The\u0020Psy\u0020Shell\u0027s\u0020execution\u0020loop\u0020scope.", + "url": "classes/Psy-ExecutionLoopClosure.html" + }, { + "fqsen": "\\Psy\\ExecutionLoopClosure\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-ExecutionLoopClosure.html#method___construct" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter", + "name": "CodeFormatter", + "summary": "A\u0020pretty\u002Dprinter\u0020for\u0020code.", + "url": "classes/Psy-Formatter-CodeFormatter.html" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Format\u0020the\u0020code\u0020represented\u0020by\u0020\u0024reflector\u0020for\u0020shell\u0020output.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_format" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AformatCode\u0028\u0029", + "name": "formatCode", + "summary": "Format\u0020code\u0020for\u0020shell\u0020output.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_formatCode" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Get\u0020the\u0020start\u0020line\u0020for\u0020a\u0020given\u0020Reflector.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_getStartLine" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AtokenizeSpans\u0028\u0029", + "name": "tokenizeSpans", + "summary": "Split\u0020code\u0020into\u0020highlight\u0020spans.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_tokenizeSpans" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AnextHighlightType\u0028\u0029", + "name": "nextHighlightType", + "summary": "Given\u0020a\u0020token\u0020and\u0020the\u0020current\u0020highlight\u0020span\u0020type,\u0020compute\u0020the\u0020next\u0020type.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_nextHighlightType" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AsplitLines\u0028\u0029", + "name": "splitLines", + "summary": "Group\u0020highlight\u0020spans\u0020into\u0020an\u0020array\u0020of\u0020lines.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_splitLines" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AformatLines\u0028\u0029", + "name": "formatLines", + "summary": "Format\u0020lines\u0020of\u0020highlight\u0020spans\u0020for\u0020shell\u0020output.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_formatLines" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AnumberLines\u0028\u0029", + "name": "numberLines", + "summary": "Prepend\u0020line\u0020numbers\u0020to\u0020formatted\u0020lines.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_numberLines" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AisReflectable\u0028\u0029", + "name": "isReflectable", + "summary": "Check\u0020whether\u0020a\u0020Reflector\u0020instance\u0020is\u0020reflectable\u0020by\u0020this\u0020formatter.", + "url": "classes/Psy-Formatter-CodeFormatter.html#method_isReflectable" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003ALINE_MARKER", + "name": "LINE_MARKER", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_LINE_MARKER" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003ANO_LINE_MARKER", + "name": "NO_LINE_MARKER", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_NO_LINE_MARKER" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_DEFAULT", + "name": "HIGHLIGHT_DEFAULT", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_DEFAULT" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_KEYWORD", + "name": "HIGHLIGHT_KEYWORD", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_KEYWORD" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_PUBLIC", + "name": "HIGHLIGHT_PUBLIC", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_PUBLIC" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_PROTECTED", + "name": "HIGHLIGHT_PROTECTED", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_PROTECTED" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_PRIVATE", + "name": "HIGHLIGHT_PRIVATE", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_PRIVATE" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_CONST", + "name": "HIGHLIGHT_CONST", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_CONST" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_NUMBER", + "name": "HIGHLIGHT_NUMBER", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_NUMBER" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_STRING", + "name": "HIGHLIGHT_STRING", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_STRING" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_COMMENT", + "name": "HIGHLIGHT_COMMENT", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_COMMENT" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003AHIGHLIGHT_INLINE_HTML", + "name": "HIGHLIGHT_INLINE_HTML", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#constant_HIGHLIGHT_INLINE_HTML" + }, { + "fqsen": "\\Psy\\Formatter\\CodeFormatter\u003A\u003A\u0024tokenMap", + "name": "tokenMap", + "summary": "", + "url": "classes/Psy-Formatter-CodeFormatter.html#property_tokenMap" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter", + "name": "DocblockFormatter", + "summary": "A\u0020pretty\u002Dprinter\u0020for\u0020docblocks.", + "url": "classes/Psy-Formatter-DocblockFormatter.html" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Format\u0020a\u0020docblock.", + "url": "classes/Psy-Formatter-DocblockFormatter.html#method_format" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003AformatVector\u0028\u0029", + "name": "formatVector", + "summary": "Format\u0020a\u0020docblock\u0020vector,\u0020for\u0020example,\u0020\u0060\u0040throws\u0060,\u0020\u0060\u0040param\u0060,\u0020or\u0020\u0060\u0040return\u0060.", + "url": "classes/Psy-Formatter-DocblockFormatter.html#method_formatVector" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003AformatTags\u0028\u0029", + "name": "formatTags", + "summary": "Format\u0020docblock\u0020tags.", + "url": "classes/Psy-Formatter-DocblockFormatter.html#method_formatTags" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003AgetVectorParamTemplate\u0028\u0029", + "name": "getVectorParamTemplate", + "summary": "Get\u0020a\u0020docblock\u0020vector\u0020template.", + "url": "classes/Psy-Formatter-DocblockFormatter.html#method_getVectorParamTemplate" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003Aindent\u0028\u0029", + "name": "indent", + "summary": "Indent\u0020a\u0020string.", + "url": "classes/Psy-Formatter-DocblockFormatter.html#method_indent" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003Ainflect\u0028\u0029", + "name": "inflect", + "summary": "Convert\u0020underscored\u0020or\u0020whitespace\u0020separated\u0020words\u0020into\u0020sentence\u0020case.", + "url": "classes/Psy-Formatter-DocblockFormatter.html#method_inflect" + }, { + "fqsen": "\\Psy\\Formatter\\DocblockFormatter\u003A\u003A\u0024vectorParamTemplates", + "name": "vectorParamTemplates", + "summary": "", + "url": "classes/Psy-Formatter-DocblockFormatter.html#property_vectorParamTemplates" + }, { + "fqsen": "\\Psy\\Formatter\\Formatter", + "name": "Formatter", + "summary": "Formatter\u0020interface.", + "url": "classes/Psy-Formatter-Formatter.html" + }, { + "fqsen": "\\Psy\\Formatter\\ReflectorFormatter", + "name": "ReflectorFormatter", + "summary": "Reflector\u0020formatter\u0020interface.", + "url": "classes/Psy-Formatter-ReflectorFormatter.html" + }, { + "fqsen": "\\Psy\\Formatter\\ReflectorFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "", + "url": "classes/Psy-Formatter-ReflectorFormatter.html#method_format" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter", + "name": "SignatureFormatter", + "summary": "An\u0020abstract\u0020representation\u0020of\u0020a\u0020function,\u0020class\u0020or\u0020property\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Format\u0020a\u0020signature\u0020for\u0020the\u0020given\u0020reflector.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_format" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatName\u0028\u0029", + "name": "formatName", + "summary": "Print\u0020the\u0020signature\u0020name.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatName" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatModifiers\u0028\u0029", + "name": "formatModifiers", + "summary": "Print\u0020the\u0020method,\u0020property\u0020or\u0020class\u0020modifiers.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatModifiers" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatClass\u0028\u0029", + "name": "formatClass", + "summary": "Format\u0020a\u0020class\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatClass" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatClassConstant\u0028\u0029", + "name": "formatClassConstant", + "summary": "Format\u0020a\u0020constant\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatClassConstant" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatConstant\u0028\u0029", + "name": "formatConstant", + "summary": "Format\u0020a\u0020constant\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatConstant" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AgetTypeStyle\u0028\u0029", + "name": "getTypeStyle", + "summary": "Helper\u0020for\u0020getting\u0020output\u0020style\u0020for\u0020a\u0020given\u0020value\u0027s\u0020type.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_getTypeStyle" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatProperty\u0028\u0029", + "name": "formatProperty", + "summary": "Format\u0020a\u0020property\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatProperty" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatFunction\u0028\u0029", + "name": "formatFunction", + "summary": "Format\u0020a\u0020function\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatFunction" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatFunctionReturnType\u0028\u0029", + "name": "formatFunctionReturnType", + "summary": "Format\u0020a\u0020function\u0020signature\u0027s\u0020return\u0020type\u0020\u0028if\u0020available\u0029.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatFunctionReturnType" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatMethod\u0028\u0029", + "name": "formatMethod", + "summary": "Format\u0020a\u0020method\u0020signature.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatMethod" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatFunctionParams\u0028\u0029", + "name": "formatFunctionParams", + "summary": "Print\u0020the\u0020function\u0020params.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatFunctionParams" + }, { + "fqsen": "\\Psy\\Formatter\\SignatureFormatter\u003A\u003AformatReflectionType\u0028\u0029", + "name": "formatReflectionType", + "summary": "Print\u0020function\u0020param\u0020or\u0020return\u0020type\u0028s\u0029.", + "url": "classes/Psy-Formatter-SignatureFormatter.html#method_formatReflectionType" + }, { + "fqsen": "\\Psy\\Formatter\\TraceFormatter", + "name": "TraceFormatter", + "summary": "Output\u0020formatter\u0020for\u0020exception\u0020traces.", + "url": "classes/Psy-Formatter-TraceFormatter.html" + }, { + "fqsen": "\\Psy\\Formatter\\TraceFormatter\u003A\u003AformatTrace\u0028\u0029", + "name": "formatTrace", + "summary": "Format\u0020the\u0020trace\u0020of\u0020the\u0020given\u0020exception.", + "url": "classes/Psy-Formatter-TraceFormatter.html#method_formatTrace" + }, { + "fqsen": "\\Psy\\sh\u0028\u0029", + "name": "sh", + "summary": "Command\u0020to\u0020return\u0020the\u0020eval\u002Dable\u0020code\u0020to\u0020startup\u0020PsySH.", + "url": "namespaces/psy.html#function_sh" + }, { + "fqsen": "\\Psy\\debug\u0028\u0029", + "name": "debug", + "summary": "Invoke\u0020a\u0020Psy\u0020Shell\u0020from\u0020the\u0020current\u0020context.", + "url": "namespaces/psy.html#function_debug" + }, { + "fqsen": "\\Psy\\info\u0028\u0029", + "name": "info", + "summary": "Get\u0020a\u0020bunch\u0020of\u0020debugging\u0020info\u0020about\u0020the\u0020current\u0020PsySH\u0020environment\u0020and\nconfiguration.", + "url": "namespaces/psy.html#function_info" + }, { + "fqsen": "\\Psy\\bin\u0028\u0029", + "name": "bin", + "summary": "\u0060psysh\u0060\u0020command\u0020line\u0020executable.", + "url": "namespaces/psy.html#function_bin" + }, { + "fqsen": "\\Psy\\Input\\CodeArgument", + "name": "CodeArgument", + "summary": "An\u0020input\u0020argument\u0020for\u0020code.", + "url": "classes/Psy-Input-CodeArgument.html" + }, { + "fqsen": "\\Psy\\Input\\CodeArgument\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Input-CodeArgument.html#method___construct" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions", + "name": "FilterOptions", + "summary": "Parse,\u0020validate\u0020and\u0020match\u0020\u002D\u002Dgrep,\u0020\u002D\u002Dinsensitive\u0020and\u0020\u002D\u002Dinvert\u0020command\u0020options.", + "url": "classes/Psy-Input-FilterOptions.html" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020input\u0020option\u0020definitions\u0020for\u0020filtering.", + "url": "classes/Psy-Input-FilterOptions.html#method_getOptions" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Bind\u0020input\u0020and\u0020prepare\u0020filter.", + "url": "classes/Psy-Input-FilterOptions.html#method_bind" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003AhasFilter\u0028\u0029", + "name": "hasFilter", + "summary": "Check\u0020whether\u0020the\u0020bound\u0020input\u0020has\u0020filter\u0020options.", + "url": "classes/Psy-Input-FilterOptions.html#method_hasFilter" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Check\u0020whether\u0020a\u0020string\u0020matches\u0020the\u0020current\u0020filter\u0020options.", + "url": "classes/Psy-Input-FilterOptions.html#method_match" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003AvalidateInput\u0028\u0029", + "name": "validateInput", + "summary": "Validate\u0020that\u0020grep,\u0020invert\u0020and\u0020insensitive\u0020input\u0020options\u0020are\u0020consistent.", + "url": "classes/Psy-Input-FilterOptions.html#method_validateInput" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003AstringIsRegex\u0028\u0029", + "name": "stringIsRegex", + "summary": "Check\u0020whether\u0020a\u0020string\u0020appears\u0020to\u0020be\u0020a\u0020regular\u0020expression.", + "url": "classes/Psy-Input-FilterOptions.html#method_stringIsRegex" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003AvalidateRegex\u0028\u0029", + "name": "validateRegex", + "summary": "Validate\u0020that\u0020\u0024pattern\u0020is\u0020a\u0020valid\u0020regular\u0020expression.", + "url": "classes/Psy-Input-FilterOptions.html#method_validateRegex" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/Psy-Input-FilterOptions.html#property_filter" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003A\u0024pattern", + "name": "pattern", + "summary": "", + "url": "classes/Psy-Input-FilterOptions.html#property_pattern" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003A\u0024insensitive", + "name": "insensitive", + "summary": "", + "url": "classes/Psy-Input-FilterOptions.html#property_insensitive" + }, { + "fqsen": "\\Psy\\Input\\FilterOptions\u003A\u003A\u0024invert", + "name": "invert", + "summary": "", + "url": "classes/Psy-Input-FilterOptions.html#property_invert" + }, { + "fqsen": "\\Psy\\Input\\ShellInput", + "name": "ShellInput", + "summary": "A\u0020StringInput\u0020subclass\u0020specialized\u0020for\u0020code\u0020arguments.", + "url": "classes/Psy-Input-ShellInput.html" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Input-ShellInput.html#method___construct" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Binds\u0020the\u0020current\u0020Input\u0020instance\u0020with\u0020the\u0020given\u0020arguments\u0020and\u0020options.", + "url": "classes/Psy-Input-ShellInput.html#method_bind" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003Atokenize\u0028\u0029", + "name": "tokenize", + "summary": "Tokenizes\u0020a\u0020string.", + "url": "classes/Psy-Input-ShellInput.html#method_tokenize" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Same\u0020as\u0020parent,\u0020but\u0020with\u0020some\u0020bonus\u0020handling\u0020for\u0020code\u0020arguments.", + "url": "classes/Psy-Input-ShellInput.html#method_parse" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003AparseShellArgument\u0028\u0029", + "name": "parseShellArgument", + "summary": "Parses\u0020an\u0020argument,\u0020with\u0020bonus\u0020handling\u0020for\u0020code\u0020arguments.", + "url": "classes/Psy-Input-ShellInput.html#method_parseShellArgument" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003AparseShortOption\u0028\u0029", + "name": "parseShortOption", + "summary": "Parses\u0020a\u0020short\u0020option.", + "url": "classes/Psy-Input-ShellInput.html#method_parseShortOption" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003AparseShortOptionSet\u0028\u0029", + "name": "parseShortOptionSet", + "summary": "Parses\u0020a\u0020short\u0020option\u0020set.", + "url": "classes/Psy-Input-ShellInput.html#method_parseShortOptionSet" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003AparseLongOption\u0028\u0029", + "name": "parseLongOption", + "summary": "Parses\u0020a\u0020long\u0020option.", + "url": "classes/Psy-Input-ShellInput.html#method_parseLongOption" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003AaddShortOption\u0028\u0029", + "name": "addShortOption", + "summary": "Adds\u0020a\u0020short\u0020option\u0020value.", + "url": "classes/Psy-Input-ShellInput.html#method_addShortOption" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003AaddLongOption\u0028\u0029", + "name": "addLongOption", + "summary": "Adds\u0020a\u0020long\u0020option\u0020value.", + "url": "classes/Psy-Input-ShellInput.html#method_addLongOption" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003A\u0024hasCodeArgument", + "name": "hasCodeArgument", + "summary": "", + "url": "classes/Psy-Input-ShellInput.html#property_hasCodeArgument" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003A\u0024tokenPairs", + "name": "tokenPairs", + "summary": "Unlike\u0020the\u0020parent\u0020implementation\u0027s\u0020tokens,\u0020this\u0020contains\u0020an\u0020array\u0020of\ntoken\/rest\u0020pairs,\u0020so\u0020that\u0020code\u0020arguments\u0020can\u0020be\u0020handled\u0020while\u0020parsing.", + "url": "classes/Psy-Input-ShellInput.html#property_tokenPairs" + }, { + "fqsen": "\\Psy\\Input\\ShellInput\u003A\u003A\u0024parsed", + "name": "parsed", + "summary": "", + "url": "classes/Psy-Input-ShellInput.html#property_parsed" + }, { + "fqsen": "\\Psy\\Input\\SilentInput", + "name": "SilentInput", + "summary": "A\u0020simple\u0020class\u0020used\u0020internally\u0020by\u0020PsySH\u0020to\u0020represent\u0020silent\u0020input.", + "url": "classes/Psy-Input-SilentInput.html" + }, { + "fqsen": "\\Psy\\Input\\SilentInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Input-SilentInput.html#method___construct" + }, { + "fqsen": "\\Psy\\Input\\SilentInput\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "To.\u0020String.", + "url": "classes/Psy-Input-SilentInput.html#method___toString" + }, { + "fqsen": "\\Psy\\Input\\SilentInput\u003A\u003A\u0024inputString", + "name": "inputString", + "summary": "", + "url": "classes/Psy-Input-SilentInput.html#property_inputString" + }, { + "fqsen": "\\Psy\\Output\\OutputPager", + "name": "OutputPager", + "summary": "An\u0020output\u0020pager\u0020is\u0020much\u0020the\u0020same\u0020as\u0020a\u0020regular\u0020OutputInterface,\u0020but\u0020allows\nthe\u0020stream\u0020to\u0020be\u0020flushed\u0020to\u0020a\u0020pager\u0020periodically.", + "url": "classes/Psy-Output-OutputPager.html" + }, { + "fqsen": "\\Psy\\Output\\OutputPager\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020current\u0020pager\u0020process.", + "url": "classes/Psy-Output-OutputPager.html#method_close" + }, { + "fqsen": "\\Psy\\Output\\PassthruPager", + "name": "PassthruPager", + "summary": "A\u0020passthrough\u0020pager\u0020is\u0020a\u0020no\u002Dop.\u0020It\u0020simply\u0020wraps\u0020a\u0020StreamOutput\u0027s\u0020stream\u0020and\ndoes\u0020nothing\u0020when\u0020the\u0020pager\u0020is\u0020closed.", + "url": "classes/Psy-Output-PassthruPager.html" + }, { + "fqsen": "\\Psy\\Output\\PassthruPager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Output-PassthruPager.html#method___construct" + }, { + "fqsen": "\\Psy\\Output\\PassthruPager\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020current\u0020pager\u0020process.", + "url": "classes/Psy-Output-PassthruPager.html#method_close" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager", + "name": "ProcOutputPager", + "summary": "ProcOutputPager\u0020class.", + "url": "classes/Psy-Output-ProcOutputPager.html" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Output-ProcOutputPager.html#method___construct" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Psy-Output-ProcOutputPager.html#method_doWrite" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020current\u0020pager\u0020process.", + "url": "classes/Psy-Output-ProcOutputPager.html#method_close" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003AgetPipe\u0028\u0029", + "name": "getPipe", + "summary": "Get\u0020a\u0020pipe\u0020for\u0020paging\u0020output.", + "url": "classes/Psy-Output-ProcOutputPager.html#method_getPipe" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003A\u0024proc", + "name": "proc", + "summary": "", + "url": "classes/Psy-Output-ProcOutputPager.html#property_proc" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003A\u0024pipe", + "name": "pipe", + "summary": "", + "url": "classes/Psy-Output-ProcOutputPager.html#property_pipe" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003A\u0024stream", + "name": "stream", + "summary": "", + "url": "classes/Psy-Output-ProcOutputPager.html#property_stream" + }, { + "fqsen": "\\Psy\\Output\\ProcOutputPager\u003A\u003A\u0024cmd", + "name": "cmd", + "summary": "", + "url": "classes/Psy-Output-ProcOutputPager.html#property_cmd" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput", + "name": "ShellOutput", + "summary": "A\u0020ConsoleOutput\u0020subclass\u0020specifically\u0020for\u0020Psy\u0020Shell\u0020output.", + "url": "classes/Psy-Output-ShellOutput.html" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020ShellOutput\u0020instance.", + "url": "classes/Psy-Output-ShellOutput.html#method___construct" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003Apage\u0028\u0029", + "name": "page", + "summary": "Page\u0020multiple\u0020lines\u0020of\u0020output.", + "url": "classes/Psy-Output-ShellOutput.html#method_page" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AstartPaging\u0028\u0029", + "name": "startPaging", + "summary": "Start\u0020sending\u0020output\u0020to\u0020the\u0020output\u0020pager.", + "url": "classes/Psy-Output-ShellOutput.html#method_startPaging" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AstopPaging\u0028\u0029", + "name": "stopPaging", + "summary": "Stop\u0020paging\u0020output\u0020and\u0020flush\u0020the\u0020output\u0020pager.", + "url": "classes/Psy-Output-ShellOutput.html#method_stopPaging" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Psy-Output-ShellOutput.html#method_write" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Psy-Output-ShellOutput.html#method_doWrite" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AsetTheme\u0028\u0029", + "name": "setTheme", + "summary": "Set\u0020the\u0020output\u0020Theme.", + "url": "classes/Psy-Output-ShellOutput.html#method_setTheme" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AclosePager\u0028\u0029", + "name": "closePager", + "summary": "Flush\u0020and\u0020close\u0020the\u0020output\u0020pager.", + "url": "classes/Psy-Output-ShellOutput.html#method_closePager" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AinitFormatters\u0028\u0029", + "name": "initFormatters", + "summary": "Initialize\u0020output\u0020formatter\u0020styles.", + "url": "classes/Psy-Output-ShellOutput.html#method_initFormatters" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003AgrayExists\u0028\u0029", + "name": "grayExists", + "summary": "Checks\u0020if\u0020the\u0020\u0022gray\u0022\u0020color\u0020exists\u0020on\u0020the\u0020output.", + "url": "classes/Psy-Output-ShellOutput.html#method_grayExists" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003ANUMBER_LINES", + "name": "NUMBER_LINES", + "summary": "", + "url": "classes/Psy-Output-ShellOutput.html#constant_NUMBER_LINES" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003A\u0024paging", + "name": "paging", + "summary": "", + "url": "classes/Psy-Output-ShellOutput.html#property_paging" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003A\u0024pager", + "name": "pager", + "summary": "", + "url": "classes/Psy-Output-ShellOutput.html#property_pager" + }, { + "fqsen": "\\Psy\\Output\\ShellOutput\u003A\u003A\u0024theme", + "name": "theme", + "summary": "", + "url": "classes/Psy-Output-ShellOutput.html#property_theme" + }, { + "fqsen": "\\Psy\\Output\\Theme", + "name": "Theme", + "summary": "An\u0020output\u0020Theme,\u0020which\u0020controls\u0020prompt\u0020strings,\u0020formatter\u0020styles,\u0020and\u0020compact\u0020output.", + "url": "classes/Psy-Output-Theme.html" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Output-Theme.html#method___construct" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetCompact\u0028\u0029", + "name": "setCompact", + "summary": "Enable\u0020or\u0020disable\u0020compact\u0020output.", + "url": "classes/Psy-Output-Theme.html#method_setCompact" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024compact", + "name": "compact", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_compact" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetPrompt\u0028\u0029", + "name": "setPrompt", + "summary": "Set\u0020the\u0020prompt\u0020string.", + "url": "classes/Psy-Output-Theme.html#method_setPrompt" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024prompt", + "name": "prompt", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_prompt" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetBufferPrompt\u0028\u0029", + "name": "setBufferPrompt", + "summary": "Set\u0020the\u0020buffer\u0020prompt\u0020string\u0020\u0028used\u0020for\u0020multi\u002Dline\u0020input\u0020continuation\u0029.", + "url": "classes/Psy-Output-Theme.html#method_setBufferPrompt" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024bufferPrompt", + "name": "bufferPrompt", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_bufferPrompt" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetReplayPrompt\u0028\u0029", + "name": "setReplayPrompt", + "summary": "Set\u0020the\u0020prompt\u0020string\u0020used\u0020when\u0020replaying\u0020history.", + "url": "classes/Psy-Output-Theme.html#method_setReplayPrompt" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024replayPrompt", + "name": "replayPrompt", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_replayPrompt" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetReturnValue\u0028\u0029", + "name": "setReturnValue", + "summary": "Set\u0020the\u0020return\u0020value\u0020marker.", + "url": "classes/Psy-Output-Theme.html#method_setReturnValue" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024returnValue", + "name": "returnValue", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_returnValue" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetGrayFallback\u0028\u0029", + "name": "setGrayFallback", + "summary": "Set\u0020the\u0020fallback\u0020color\u0020when\u0020\u0022gray\u0022\u0020is\u0020unavailable.", + "url": "classes/Psy-Output-Theme.html#method_setGrayFallback" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AsetStyles\u0028\u0029", + "name": "setStyles", + "summary": "Set\u0020the\u0020shell\u0020output\u0020formatter\u0020styles.", + "url": "classes/Psy-Output-Theme.html#method_setStyles" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AapplyStyles\u0028\u0029", + "name": "applyStyles", + "summary": "Apply\u0020the\u0020current\u0020output\u0020formatter\u0020styles.", + "url": "classes/Psy-Output-Theme.html#method_applyStyles" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AapplyErrorStyles\u0028\u0029", + "name": "applyErrorStyles", + "summary": "Apply\u0020the\u0020current\u0020output\u0020formatter\u0020error\u0020styles.", + "url": "classes/Psy-Output-Theme.html#method_applyErrorStyles" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AgetStyle\u0028\u0029", + "name": "getStyle", + "summary": "", + "url": "classes/Psy-Output-Theme.html#method_getStyle" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AMODERN_THEME", + "name": "MODERN_THEME", + "summary": "", + "url": "classes/Psy-Output-Theme.html#constant_MODERN_THEME" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003ACOMPACT_THEME", + "name": "COMPACT_THEME", + "summary": "", + "url": "classes/Psy-Output-Theme.html#constant_COMPACT_THEME" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003ACLASSIC_THEME", + "name": "CLASSIC_THEME", + "summary": "", + "url": "classes/Psy-Output-Theme.html#constant_CLASSIC_THEME" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003ADEFAULT_STYLES", + "name": "DEFAULT_STYLES", + "summary": "", + "url": "classes/Psy-Output-Theme.html#constant_DEFAULT_STYLES" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003AERROR_STYLES", + "name": "ERROR_STYLES", + "summary": "", + "url": "classes/Psy-Output-Theme.html#constant_ERROR_STYLES" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024grayFallback", + "name": "grayFallback", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_grayFallback" + }, { + "fqsen": "\\Psy\\Output\\Theme\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Psy-Output-Theme.html#property_styles" + }, { + "fqsen": "\\Psy\\ParserFactory", + "name": "ParserFactory", + "summary": "Parser\u0020factory\u0020to\u0020abstract\u0020over\u0020PHP\u0020parser\u0020library\u0020versions.", + "url": "classes/Psy-ParserFactory.html" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003AgetPossibleKinds\u0028\u0029", + "name": "getPossibleKinds", + "summary": "Possible\u0020kinds\u0020of\u0020parsers\u0020for\u0020the\u0020factory,\u0020from\u0020PHP\u0020parser\u0020library.", + "url": "classes/Psy-ParserFactory.html#method_getPossibleKinds" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003AgetDefaultKind\u0028\u0029", + "name": "getDefaultKind", + "summary": "Default\u0020kind\u0020\u0028if\u0020supported,\u0020based\u0020on\u0020current\u0020interpreter\u0027s\u0020version\u0029.", + "url": "classes/Psy-ParserFactory.html#method_getDefaultKind" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003AcreateParser\u0028\u0029", + "name": "createParser", + "summary": "New\u0020parser\u0020instance\u0020with\u0020given\u0020kind.", + "url": "classes/Psy-ParserFactory.html#method_createParser" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003AONLY_PHP5", + "name": "ONLY_PHP5", + "summary": "", + "url": "classes/Psy-ParserFactory.html#constant_ONLY_PHP5" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003AONLY_PHP7", + "name": "ONLY_PHP7", + "summary": "", + "url": "classes/Psy-ParserFactory.html#constant_ONLY_PHP7" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003APREFER_PHP5", + "name": "PREFER_PHP5", + "summary": "", + "url": "classes/Psy-ParserFactory.html#constant_PREFER_PHP5" + }, { + "fqsen": "\\Psy\\ParserFactory\u003A\u003APREFER_PHP7", + "name": "PREFER_PHP7", + "summary": "", + "url": "classes/Psy-ParserFactory.html#constant_PREFER_PHP7" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline", + "name": "GNUReadline", + "summary": "A\u0020Readline\u0020interface\u0020implementation\u0020for\u0020GNU\u0020Readline.", + "url": "classes/Psy-Readline-GNUReadline.html" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "GNU\u0020Readline\u0020is\u0020supported\u0020iff\u0020\u0060readline_list_history\u0060\u0020is\u0020defined.\u0020PHP\ndecided\u0020it\u0020would\u0020be\u0020awesome\u0020to\u0020swap\u0020out\u0020GNU\u0020Readline\u0020for\u0020Libedit,\u0020but\nthey\u0020ended\u0020up\u0020shipping\u0020an\u0020incomplete\u0020implementation.\u0020So\u0020we\u0027ve\u0020got\u0020this.", + "url": "classes/Psy-Readline-GNUReadline.html#method_isSupported" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AsupportsBracketedPaste\u0028\u0029", + "name": "supportsBracketedPaste", + "summary": "Check\u0020whether\u0020this\u0020readline\u0020implementation\u0020supports\u0020bracketed\u0020paste.", + "url": "classes/Psy-Readline-GNUReadline.html#method_supportsBracketedPaste" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Readline-GNUReadline.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AaddHistory\u0028\u0029", + "name": "addHistory", + "summary": "Add\u0020a\u0020line\u0020to\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-GNUReadline.html#method_addHistory" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AclearHistory\u0028\u0029", + "name": "clearHistory", + "summary": "Clear\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-GNUReadline.html#method_clearHistory" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AlistHistory\u0028\u0029", + "name": "listHistory", + "summary": "List\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-GNUReadline.html#method_listHistory" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AreadHistory\u0028\u0029", + "name": "readHistory", + "summary": "Read\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-GNUReadline.html#method_readHistory" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003Areadline\u0028\u0029", + "name": "readline", + "summary": "Read\u0020a\u0020single\u0020line\u0020of\u0020input\u0020from\u0020the\u0020user.", + "url": "classes/Psy-Readline-GNUReadline.html#method_readline" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003Aredisplay\u0028\u0029", + "name": "redisplay", + "summary": "Redraw\u0020readline\u0020to\u0020redraw\u0020the\u0020display.", + "url": "classes/Psy-Readline-GNUReadline.html#method_redisplay" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003AwriteHistory\u0028\u0029", + "name": "writeHistory", + "summary": "Write\u0020the\u0020command\u0020history\u0020to\u0020a\u0020file.", + "url": "classes/Psy-Readline-GNUReadline.html#method_writeHistory" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003A\u0024historyFile", + "name": "historyFile", + "summary": "", + "url": "classes/Psy-Readline-GNUReadline.html#property_historyFile" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003A\u0024historySize", + "name": "historySize", + "summary": "", + "url": "classes/Psy-Readline-GNUReadline.html#property_historySize" + }, { + "fqsen": "\\Psy\\Readline\\GNUReadline\u003A\u003A\u0024eraseDups", + "name": "eraseDups", + "summary": "", + "url": "classes/Psy-Readline-GNUReadline.html#property_eraseDups" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Autocompleter", + "name": "Autocompleter", + "summary": "Interface\u0020\\Hoa\\Console\\Readline\\Autocompleter.", + "url": "classes/Psy-Readline-Hoa-Autocompleter.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Autocompleter\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Complete\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-Autocompleter.html#method_complete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Autocompleter\u003A\u003AgetWordDefinition\u0028\u0029", + "name": "getWordDefinition", + "summary": "Get\u0020definition\u0020of\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-Autocompleter.html#method_getWordDefinition" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate", + "name": "AutocompleterAggregate", + "summary": "Class\u0020\\Hoa\\Console\\Readline\\Autocompleter\\Aggregate.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Complete\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html#method_complete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate\u003A\u003AsetAutocompleters\u0028\u0029", + "name": "setAutocompleters", + "summary": "Set\/initialize\u0020list\u0020of\u0020autocompleters.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html#method_setAutocompleters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate\u003A\u003AgetAutocompleters\u0028\u0029", + "name": "getAutocompleters", + "summary": "Get\u0020list\u0020of\u0020autocompleters.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html#method_getAutocompleters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate\u003A\u003AgetWordDefinition\u0028\u0029", + "name": "getWordDefinition", + "summary": "Get\u0020definition\u0020of\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html#method_getWordDefinition" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterAggregate\u003A\u003A\u0024_autocompleters", + "name": "_autocompleters", + "summary": "List\u0020of\u0020autocompleters.", + "url": "classes/Psy-Readline-Hoa-AutocompleterAggregate.html#property__autocompleters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath", + "name": "AutocompleterPath", + "summary": "Class\u0020\\Hoa\\Console\\Readline\\Autocompleter\\Path.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Complete\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_complete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003AgetWordDefinition\u0028\u0029", + "name": "getWordDefinition", + "summary": "Get\u0020definition\u0020of\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_getWordDefinition" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003AsetRoot\u0028\u0029", + "name": "setRoot", + "summary": "Set\u0020root.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_setRoot" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003AgetRoot\u0028\u0029", + "name": "getRoot", + "summary": "Get\u0020root.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_getRoot" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003AsetIteratorFactory\u0028\u0029", + "name": "setIteratorFactory", + "summary": "Set\u0020iterator\u0020factory\u0020\u0028a\u0020finder\u0029.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_setIteratorFactory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003AgetIteratorFactory\u0028\u0029", + "name": "getIteratorFactory", + "summary": "Get\u0020iterator\u0020factory.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_getIteratorFactory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003AgetDefaultIteratorFactory\u0028\u0029", + "name": "getDefaultIteratorFactory", + "summary": "Get\u0020default\u0020iterator\u0020factory\u0020\u0028based\u0020on\u0020\\DirectoryIterator\u0029.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#method_getDefaultIteratorFactory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003APWD", + "name": "PWD", + "summary": "Root\u0020is\u0020the\u0020current\u0020working\u0020directory.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#constant_PWD" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003A\u0024_root", + "name": "_root", + "summary": "Root.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#property__root" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterPath\u003A\u003A\u0024_iteratorFactory", + "name": "_iteratorFactory", + "summary": "Iterator\u0020factory.\u0020Please,\u0020see\u0020the\u0020self\u003A\u003AsetIteratorFactory\u0020method.", + "url": "classes/Psy-Readline-Hoa-AutocompleterPath.html#property__iteratorFactory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord", + "name": "AutocompleterWord", + "summary": "Class\u0020\\Hoa\\Console\\Readline\\Autocompleter\\Word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Complete\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html#method_complete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord\u003A\u003AgetWordDefinition\u0028\u0029", + "name": "getWordDefinition", + "summary": "Get\u0020definition\u0020of\u0020a\u0020word.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html#method_getWordDefinition" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord\u003A\u003AsetWords\u0028\u0029", + "name": "setWords", + "summary": "Set\u0020list\u0020of\u0020words.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html#method_setWords" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord\u003A\u003AgetWords\u0028\u0029", + "name": "getWords", + "summary": "Get\u0020list\u0020of\u0020words.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html#method_getWords" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\AutocompleterWord\u003A\u003A\u0024_words", + "name": "_words", + "summary": "List\u0020of\u0020words.", + "url": "classes/Psy-Readline-Hoa-AutocompleterWord.html#property__words" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console", + "name": "Console", + "summary": "Class\u0020\\Hoa\\Console.", + "url": "classes/Psy-Readline-Hoa-Console.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AadvancedInteraction\u0028\u0029", + "name": "advancedInteraction", + "summary": "Prepare\u0020the\u0020environment\u0020for\u0020advanced\u0020interactions.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_advancedInteraction" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003ArestoreInteraction\u0028\u0029", + "name": "restoreInteraction", + "summary": "Restore\u0020previous\u0020interaction\u0020options.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_restoreInteraction" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AgetMode\u0028\u0029", + "name": "getMode", + "summary": "Get\u0020mode\u0020of\u0020a\u0020certain\u0020pipe.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_getMode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AisDirect\u0028\u0029", + "name": "isDirect", + "summary": "Check\u0020whether\u0020a\u0020certain\u0020pipe\u0020is\u0020a\u0020character\u0020device\u0020\u0028keyboard,\u0020screen\netc.\u0029.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_isDirect" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AisPipe\u0028\u0029", + "name": "isPipe", + "summary": "Check\u0020whether\u0020a\u0020certain\u0020pipe\u0020is\u0020a\u0020pipe.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_isPipe" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AisRedirection\u0028\u0029", + "name": "isRedirection", + "summary": "Check\u0020whether\u0020a\u0020certain\u0020pipe\u0020is\u0020a\u0020redirection.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_isRedirection" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AsetInput\u0028\u0029", + "name": "setInput", + "summary": "Set\u0020input\u0020layer.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_setInput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AgetInput\u0028\u0029", + "name": "getInput", + "summary": "Get\u0020input\u0020layer.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_getInput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AsetOutput\u0028\u0029", + "name": "setOutput", + "summary": "Set\u0020output\u0020layer.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_setOutput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "Get\u0020output\u0020layer.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_getOutput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AsetTput\u0028\u0029", + "name": "setTput", + "summary": "Set\u0020tput.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_setTput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AgetTput\u0028\u0029", + "name": "getTput", + "summary": "Get\u0020the\u0020current\u0020tput\u0020instance\u0020of\u0020the\u0020current\u0020process.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_getTput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AisTmuxRunning\u0028\u0029", + "name": "isTmuxRunning", + "summary": "Check\u0020whether\u0020we\u0020are\u0020running\u0020behind\u0020TMUX\u00281\u0029.", + "url": "classes/Psy-Readline-Hoa-Console.html#method_isTmuxRunning" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_FIFO", + "name": "IS_FIFO", + "summary": "Pipe\u0020mode\u003A\u0020FIFO.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_FIFO" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_CHARACTER", + "name": "IS_CHARACTER", + "summary": "Pipe\u0020mode\u003A\u0020character.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_CHARACTER" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_DIRECTORY", + "name": "IS_DIRECTORY", + "summary": "Pipe\u0020mode\u003A\u0020directory.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_DIRECTORY" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_BLOCK", + "name": "IS_BLOCK", + "summary": "Pipe\u0020mode\u003A\u0020block.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_BLOCK" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_REGULAR", + "name": "IS_REGULAR", + "summary": "Pipe\u0020mode\u003A\u0020regular.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_REGULAR" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_LINK", + "name": "IS_LINK", + "summary": "Pipe\u0020mode\u003A\u0020link.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_LINK" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_SOCKET", + "name": "IS_SOCKET", + "summary": "Pipe\u0020mode\u003A\u0020socket.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_SOCKET" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003AIS_WHITEOUT", + "name": "IS_WHITEOUT", + "summary": "Pipe\u0020mode\u003A\u0020whiteout.", + "url": "classes/Psy-Readline-Hoa-Console.html#constant_IS_WHITEOUT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003A\u0024_advanced", + "name": "_advanced", + "summary": "Advanced\u0020interaction\u0020is\u0020on.", + "url": "classes/Psy-Readline-Hoa-Console.html#property__advanced" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003A\u0024_old", + "name": "_old", + "summary": "Previous\u0020STTY\u0020configuration.", + "url": "classes/Psy-Readline-Hoa-Console.html#property__old" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003A\u0024_mode", + "name": "_mode", + "summary": "Mode.", + "url": "classes/Psy-Readline-Hoa-Console.html#property__mode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003A\u0024_input", + "name": "_input", + "summary": "Input.", + "url": "classes/Psy-Readline-Hoa-Console.html#property__input" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003A\u0024_output", + "name": "_output", + "summary": "Output.", + "url": "classes/Psy-Readline-Hoa-Console.html#property__output" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Console\u003A\u003A\u0024_tput", + "name": "_tput", + "summary": "Tput.", + "url": "classes/Psy-Readline-Hoa-Console.html#property__tput" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor", + "name": "ConsoleCursor", + "summary": "Class\u0020\\Hoa\\Console\\Cursor.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020the\u0020cursor.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_move" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003AmoveTo\u0028\u0029", + "name": "moveTo", + "summary": "Move\u0020to\u0020the\u0020line\u0020X\u0020and\u0020the\u0020column\u0020Y.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_moveTo" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003AgetPosition\u0028\u0029", + "name": "getPosition", + "summary": "Get\u0020current\u0020position\u0020\u0028x\u0020and\u0020y\u0029\u0020of\u0020the\u0020cursor.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_getPosition" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Asave\u0028\u0029", + "name": "save", + "summary": "Save\u0020current\u0020position.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_save" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Arestore\u0028\u0029", + "name": "restore", + "summary": "Restore\u0020cursor\u0020to\u0020the\u0020last\u0020saved\u0020position.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_restore" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Clear\u0020the\u0020screen.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_clear" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Ahide\u0028\u0029", + "name": "hide", + "summary": "Hide\u0020the\u0020cursor.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_hide" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Ashow\u0028\u0029", + "name": "show", + "summary": "Show\u0020the\u0020cursor.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_show" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Acolorize\u0028\u0029", + "name": "colorize", + "summary": "Colorize\u0020cursor.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_colorize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003AchangeColor\u0028\u0029", + "name": "changeColor", + "summary": "Change\u0020color\u0020number\u0020to\u0020a\u0020specific\u0020RGB\u0020color.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_changeColor" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003AsetStyle\u0028\u0029", + "name": "setStyle", + "summary": "Set\u0020cursor\u0020style.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_setStyle" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleCursor\u003A\u003Abip\u0028\u0029", + "name": "bip", + "summary": "Make\u0020a\u0020stupid\u0020\u201Cbip\u201D.", + "url": "classes/Psy-Readline-Hoa-ConsoleCursor.html#method_bip" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleException", + "name": "ConsoleException", + "summary": "Class\u0020\\Hoa\\Console\\Exception.", + "url": "classes/Psy-Readline-Hoa-ConsoleException.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput", + "name": "ConsoleInput", + "summary": "Interface\u0020\\Hoa\\Console\\Input.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Wraps\u0020an\u0020\u0060Hoa\\Stream\\IStream\\In\u0060\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Get\u0020underlying\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_getStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dfile.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleInput\u003A\u003A\u0024_input", + "name": "_input", + "summary": "Real\u0020input\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleInput.html#property__input" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput", + "name": "ConsoleOutput", + "summary": "Class\u0020\\Hoa\\Console\\Output.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Wraps\u0020an\u0020\u0060Hoa\\Stream\\IStream\\Out\u0060\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Get\u0020the\u0020real\u0020output\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_getStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_write" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteString\u0028\u0029", + "name": "writeString", + "summary": "Write\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteCharacter\u0028\u0029", + "name": "writeCharacter", + "summary": "Write\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteBoolean\u0028\u0029", + "name": "writeBoolean", + "summary": "Write\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteInteger\u0028\u0029", + "name": "writeInteger", + "summary": "Write\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteFloat\u0028\u0029", + "name": "writeFloat", + "summary": "Write\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteArray\u0028\u0029", + "name": "writeArray", + "summary": "Write\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteLine\u0028\u0029", + "name": "writeLine", + "summary": "Write\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AwriteAll\u0028\u0029", + "name": "writeAll", + "summary": "Write\u0020all,\u0020i.e.\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_writeAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncate\u0020a\u0020stream\u0020to\u0020a\u0020given\u0020length.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_truncate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AconsiderMultiplexer\u0028\u0029", + "name": "considerMultiplexer", + "summary": "Consider\u0020the\u0020multiplexer\u0020\u0028if\u0020running\u0029\u0020while\u0020writing\u0020on\u0020the\u0020output.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_considerMultiplexer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003AisMultiplexerConsidered\u0028\u0029", + "name": "isMultiplexerConsidered", + "summary": "Check\u0020whether\u0020the\u0020multiplexer\u0020must\u0020be\u0020considered\u0020or\u0020not.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#method_isMultiplexerConsidered" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003A\u0024_considerMultiplexer", + "name": "_considerMultiplexer", + "summary": "Whether\u0020the\u0020multiplexer\u0020must\u0020be\u0020considered\u0020while\u0020writing\u0020on\u0020the\u0020output.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#property__considerMultiplexer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleOutput\u003A\u003A\u0024_output", + "name": "_output", + "summary": "Real\u0020output\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleOutput.html#property__output" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus", + "name": "ConsoleProcessus", + "summary": "Manipulate\u0020a\u0020processus\u0020as\u0020a\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Start\u0020a\u0020processus.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A_close\u0028\u0029", + "name": "_close", + "summary": "Close\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method__close" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Run\u0020the\u0020process\u0020and\u0020fire\u0020events\u0020\u0028amongst\u0020start,\u0020stop,\u0020input,\u0020output\u0020and\ntimeout\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_run" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetPipe\u0028\u0029", + "name": "getPipe", + "summary": "Get\u0020pipe\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getPipe" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AisPipeSeekable\u0028\u0029", + "name": "isPipeSeekable", + "summary": "Check\u0020if\u0020a\u0020pipe\u0020is\u0020seekable\u0020or\u0020not.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_isPipeSeekable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dfile.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_write" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteString\u0028\u0029", + "name": "writeString", + "summary": "Write\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteCharacter\u0028\u0029", + "name": "writeCharacter", + "summary": "Write\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteBoolean\u0028\u0029", + "name": "writeBoolean", + "summary": "Write\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteInteger\u0028\u0029", + "name": "writeInteger", + "summary": "Write\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteFloat\u0028\u0029", + "name": "writeFloat", + "summary": "Write\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteArray\u0028\u0029", + "name": "writeArray", + "summary": "Write\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteLine\u0028\u0029", + "name": "writeLine", + "summary": "Write\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AwriteAll\u0028\u0029", + "name": "writeAll", + "summary": "Write\u0020all,\u0020i.e.\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_writeAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncate\u0020a\u0020file\u0020to\u0020a\u0020given\u0020length.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_truncate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetBasename\u0028\u0029", + "name": "getBasename", + "summary": "Get\u0020filename\u0020component\u0020of\u0020path.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getBasename" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetDirname\u0028\u0029", + "name": "getDirname", + "summary": "Get\u0020directory\u0020name\u0020component\u0020of\u0020path.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getDirname" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetStatus\u0028\u0029", + "name": "getStatus", + "summary": "Get\u0020status.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getStatus" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetExitCode\u0028\u0029", + "name": "getExitCode", + "summary": "Get\u0020exit\u0020code\u0020\u0028alias\u0020of\u0020\u0024this\u002D\u003EgetStatus\u0028\u0029\u005B\u0027exitcode\u0027\u005D\u0029\u003B.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getExitCode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AisSuccessful\u0028\u0029", + "name": "isSuccessful", + "summary": "Whether\u0020the\u0020processus\u0020have\u0020ended\u0020successfully.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_isSuccessful" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Aterminate\u0028\u0029", + "name": "terminate", + "summary": "Terminate\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_terminate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AsetCommand\u0028\u0029", + "name": "setCommand", + "summary": "Set\u0020command\u0020name.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_setCommand" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "Get\u0020command\u0020name.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getCommand" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Set\u0020command\u0020options.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_setOptions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020options.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getOptions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetCommandLine\u0028\u0029", + "name": "getCommandLine", + "summary": "Get\u0020command\u002Dline.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getCommandLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AsetCwd\u0028\u0029", + "name": "setCwd", + "summary": "Set\u0020current\u0020working\u0020directory\u0020of\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_setCwd" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetCwd\u0028\u0029", + "name": "getCwd", + "summary": "Get\u0020current\u0020working\u0020directory\u0020of\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getCwd" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AsetEnvironment\u0028\u0029", + "name": "setEnvironment", + "summary": "Set\u0020environment\u0020of\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_setEnvironment" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetEnvironment\u0028\u0029", + "name": "getEnvironment", + "summary": "Get\u0020environment\u0020of\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getEnvironment" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AsetTimeout\u0028\u0029", + "name": "setTimeout", + "summary": "Set\u0020timeout\u0020of\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_setTimeout" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetTimeout\u0028\u0029", + "name": "getTimeout", + "summary": "Get\u0020timeout\u0020of\u0020the\u0020process.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getTimeout" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AsetTitle\u0028\u0029", + "name": "setTitle", + "summary": "Set\u0020process\u0020title.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_setTitle" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003AgetTitle\u0028\u0029", + "name": "getTitle", + "summary": "Get\u0020process\u0020title.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_getTitle" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Alocate\u0028\u0029", + "name": "locate", + "summary": "Found\u0020the\u0020place\u0020of\u0020a\u0020binary.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_locate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Quick\u0020process\u0020execution.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#method_execute" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGHUP", + "name": "SIGHUP", + "summary": "Signal\u003A\u0020terminal\u0020line\u0020hangup\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGHUP" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGINT", + "name": "SIGINT", + "summary": "Signal\u003A\u0020interrupt\u0020program\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGINT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGQUIT", + "name": "SIGQUIT", + "summary": "Signal\u003A\u0020quit\u0020program\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGQUIT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGILL", + "name": "SIGILL", + "summary": "Signal\u003A\u0020illegal\u0020instruction\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGILL" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGTRAP", + "name": "SIGTRAP", + "summary": "Signal\u003A\u0020trace\u0020trap\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGTRAP" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGABRT", + "name": "SIGABRT", + "summary": "Signal\u003A\u0020abort\u0020program,\u0020formerly\u0020SIGIOT\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGABRT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGEMT", + "name": "SIGEMT", + "summary": "Signal\u003A\u0020emulate\u0020instruction\u0020executed\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGEMT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGFPE", + "name": "SIGFPE", + "summary": "Signal\u003A\u0020floating\u002Dpoint\u0020exception\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGFPE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGKILL", + "name": "SIGKILL", + "summary": "Signal\u003A\u0020kill\u0020program\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGKILL" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGBUS", + "name": "SIGBUS", + "summary": "Signal\u003A\u0020bus\u0020error.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGBUS" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGSEGV", + "name": "SIGSEGV", + "summary": "Signal\u003A\u0020segmentation\u0020violation\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGSEGV" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGSYS", + "name": "SIGSYS", + "summary": "Signal\u003A\u0020non\u002Dexistent\u0020system\u0020call\u0020invoked\u0020\u0028create\u0020core\u0020image\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGSYS" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGPIPE", + "name": "SIGPIPE", + "summary": "Signal\u003A\u0020write\u0020on\u0020a\u0020pipe\u0020with\u0020no\u0020reader\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGPIPE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGALRM", + "name": "SIGALRM", + "summary": "Signal\u003A\u0020real\u002Dtime\u0020timer\u0020expired\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGALRM" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGTERM", + "name": "SIGTERM", + "summary": "Signal\u003A\u0020software\u0020termination\u0020signal\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGTERM" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGURG", + "name": "SIGURG", + "summary": "Signal\u003A\u0020urgent\u0020condition\u0020present\u0020on\u0020socket\u0020\u0028discard\u0020signal\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGURG" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGSTOP", + "name": "SIGSTOP", + "summary": "Signal\u003A\u0020stop,\u0020cannot\u0020be\u0020caught\u0020or\u0020ignored\u0020\u0020\u0028stop\u0020proces\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGSTOP" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGTSTP", + "name": "SIGTSTP", + "summary": "Signal\u003A\u0020stop\u0020signal\u0020generated\u0020from\u0020keyboard\u0020\u0028stop\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGTSTP" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGCONT", + "name": "SIGCONT", + "summary": "Signal\u003A\u0020continue\u0020after\u0020stop\u0020\u0028discard\u0020signal\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGCONT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGCHLD", + "name": "SIGCHLD", + "summary": "Signal\u003A\u0020child\u0020status\u0020has\u0020changed\u0020\u0028discard\u0020signal\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGCHLD" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGTTIN", + "name": "SIGTTIN", + "summary": "Signal\u003A\u0020background\u0020read\u0020attempted\u0020from\u0020control\u0020terminal\u0020\u0028stop\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGTTIN" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGTTOU", + "name": "SIGTTOU", + "summary": "Signal\u003A\u0020background\u0020write\u0020attempted\u0020to\u0020control\u0020terminal\u0020\u0028stop\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGTTOU" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGIO", + "name": "SIGIO", + "summary": "Signal\u003A\u0020I\/O\u0020is\u0020possible\u0020on\u0020a\u0020descriptor,\u0020see\u0020fcntl\u00282\u0029\u0020\u0028discard\u0020signal\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGIO" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGXCPU", + "name": "SIGXCPU", + "summary": "Signal\u003A\u0020cpu\u0020time\u0020limit\u0020exceeded,\u0020see\u0020setrlimit\u00282\u0029\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGXCPU" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGXFSZ", + "name": "SIGXFSZ", + "summary": "Signal\u003A\u0020file\u0020size\u0020limit\u0020exceeded,\u0020see\u0020setrlimit\u00282\u0029\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGXFSZ" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGVTALRM", + "name": "SIGVTALRM", + "summary": "Signal\u003A\u0020virtual\u0020time\u0020alarm,\u0020see\u0020setitimer\u00282\u0029\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGVTALRM" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGPROF", + "name": "SIGPROF", + "summary": "Signal\u003A\u0020profiling\u0020timer\u0020alarm,\u0020see\u0020setitimer\u00282\u0029\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGPROF" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGWINCH", + "name": "SIGWINCH", + "summary": "Signal\u003A\u0020Window\u0020size\u0020change\u0020\u0028discard\u0020signal\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGWINCH" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGINFO", + "name": "SIGINFO", + "summary": "Signal\u003A\u0020status\u0020request\u0020from\u0020keyboard\u0020\u0028discard\u0020signal\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGINFO" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGUSR1", + "name": "SIGUSR1", + "summary": "Signal\u003A\u0020User\u0020defined\u0020signal\u00201\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGUSR1" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003ASIGUSR2", + "name": "SIGUSR2", + "summary": "Signal\u003A\u0020User\u0020defined\u0020signal\u00202\u0020\u0028terminate\u0020process\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#constant_SIGUSR2" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_command", + "name": "_command", + "summary": "Command\u0020name.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__command" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_options", + "name": "_options", + "summary": "Command\u0020options\u0020\u0028options\u0020\u003D\u003E\u0020value,\u0020or\u0020input\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__options" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_cwd", + "name": "_cwd", + "summary": "Current\u0020working\u0020directory.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__cwd" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_environment", + "name": "_environment", + "summary": "Environment.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__environment" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_timeout", + "name": "_timeout", + "summary": "Timeout.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__timeout" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_descriptors", + "name": "_descriptors", + "summary": "Descriptor.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__descriptors" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_pipes", + "name": "_pipes", + "summary": "Pipe\u0020descriptors\u0020of\u0020the\u0020processus.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__pipes" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleProcessus\u003A\u003A\u0024_seekable", + "name": "_seekable", + "summary": "Seekability\u0020of\u0020pipes.", + "url": "classes/Psy-Readline-Hoa-ConsoleProcessus.html#property__seekable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput", + "name": "ConsoleTput", + "summary": "Class\u0020\\Hoa\\Console\\Tput.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Set\u0020stream\u0020and\u0020parse.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parse.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_parse" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003AgetInformations\u0028\u0029", + "name": "getInformations", + "summary": "Get\u0020all\u0020informations.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_getInformations" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Get\u0020a\u0020boolean\u0020value.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_has" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Get\u0020a\u0020number\u0020value.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_count" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020string\u0020value.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_get" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003AgetTerm\u0028\u0029", + "name": "getTerm", + "summary": "Get\u0020current\u0020term\u0020profile.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_getTerm" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003AgetTerminfo\u0028\u0029", + "name": "getTerminfo", + "summary": "Get\u0020pathname\u0020to\u0020the\u0020current\u0020terminfo.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_getTerminfo" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Check\u0020whether\u0020all\u0020required\u0020terminfo\u0020capabilities\u0020are\u0020defined.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#method_isSupported" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003A\u0024_booleans", + "name": "_booleans", + "summary": "Booleans.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#property__booleans" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003A\u0024_numbers", + "name": "_numbers", + "summary": "Numbers.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#property__numbers" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003A\u0024_strings", + "name": "_strings", + "summary": "Strings.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#property__strings" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleTput\u003A\u003A\u0024_informations", + "name": "_informations", + "summary": "Computed\u0020informations.", + "url": "classes/Psy-Readline-Hoa-ConsoleTput.html#property__informations" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow", + "name": "ConsoleWindow", + "summary": "Allow\u0020to\u0020manipulate\u0020the\u0020window.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Set\u0020the\u0020event\u0020channel.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AgetInstance\u0028\u0029", + "name": "getInstance", + "summary": "Singleton.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_getInstance" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AsetSize\u0028\u0029", + "name": "setSize", + "summary": "Set\u0020size\u0020to\u0020X\u0020lines\u0020and\u0020Y\u0020columns.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_setSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AgetSize\u0028\u0029", + "name": "getSize", + "summary": "Get\u0020current\u0020size\u0020\u0028x\u0020and\u0020y\u0029\u0020of\u0020the\u0020window.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_getSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AmoveTo\u0028\u0029", + "name": "moveTo", + "summary": "Move\u0020to\u0020X\u0020and\u0020Y\u0020\u0028in\u0020pixels\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_moveTo" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AgetPosition\u0028\u0029", + "name": "getPosition", + "summary": "Get\u0020current\u0020position\u0020\u0028x\u0020and\u0020y\u0029\u0020of\u0020the\u0020window\u0020\u0028in\u0020pixels\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_getPosition" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Ascroll\u0028\u0029", + "name": "scroll", + "summary": "Scroll\u0020whole\u0020page.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_scroll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Aminimize\u0028\u0029", + "name": "minimize", + "summary": "Minimize\u0020the\u0020window.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_minimize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Arestore\u0028\u0029", + "name": "restore", + "summary": "Restore\u0020the\u0020window\u0020\u0028de\u002Dminimize\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_restore" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Araise\u0028\u0029", + "name": "raise", + "summary": "Raise\u0020the\u0020window\u0020to\u0020the\u0020front\u0020of\u0020the\u0020stacking\u0020order.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_raise" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Alower\u0028\u0029", + "name": "lower", + "summary": "Lower\u0020the\u0020window\u0020to\u0020the\u0020bottom\u0020of\u0020the\u0020stacking\u0020order.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_lower" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AsetTitle\u0028\u0029", + "name": "setTitle", + "summary": "Set\u0020title.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_setTitle" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AgetTitle\u0028\u0029", + "name": "getTitle", + "summary": "Get\u0020title.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_getTitle" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003AgetLabel\u0028\u0029", + "name": "getLabel", + "summary": "Get\u0020label.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_getLabel" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Arefresh\u0028\u0029", + "name": "refresh", + "summary": "Refresh\u0020the\u0020window.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_refresh" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Set\u0020clipboard\u0020value.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#method_copy" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ConsoleWindow\u003A\u003A\u0024_instance", + "name": "_instance", + "summary": "Singleton\u0020\u0028only\u0020for\u0020events\u0029.", + "url": "classes/Psy-Readline-Hoa-ConsoleWindow.html#property__instance" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event", + "name": "Event", + "summary": "Events\u0020are\u0020asynchronous\u0020at\u0020registration,\u0020anonymous\u0020at\u0020use\u0020\u0028until\u0020we\nreceive\u0020a\u0020bucket\u0029\u0020and\u0020useful\u0020to\u0020largely\u0020spread\u0020data\u0020through\u0020components\nwithout\u0020any\u0020known\u0020connection\u0020between\u0020them.", + "url": "classes/Psy-Readline-Hoa-Event.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Privatize\u0020the\u0020constructor.", + "url": "classes/Psy-Readline-Hoa-Event.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003AgetEvent\u0028\u0029", + "name": "getEvent", + "summary": "Manage\u0020multiton\u0020of\u0020events,\u0020with\u0020the\u0020principle\u0020of\u0020asynchronous\nattachments.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_getEvent" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Declares\u0020a\u0020new\u0020object\u0020in\u0020the\u0020observable\u0020collection.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_register" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003Aunregister\u0028\u0029", + "name": "unregister", + "summary": "Undeclares\u0020an\u0020object\u0020in\u0020the\u0020observable\u0020collection.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_unregister" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003Aattach\u0028\u0029", + "name": "attach", + "summary": "Attach\u0020an\u0020object\u0020to\u0020an\u0020event.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_attach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003Adetach\u0028\u0029", + "name": "detach", + "summary": "Detaches\u0020an\u0020object\u0020to\u0020an\u0020event.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_detach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003AisListened\u0028\u0029", + "name": "isListened", + "summary": "Checks\u0020if\u0020at\u0020least\u0020one\u0020callable\u0020is\u0020attached\u0020to\u0020an\u0020event.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_isListened" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003Anotify\u0028\u0029", + "name": "notify", + "summary": "Notifies,\u0020i.e.\u0020send\u0020data\u0020to\u0020observers.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_notify" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003AeventExists\u0028\u0029", + "name": "eventExists", + "summary": "Checks\u0020whether\u0020an\u0020event\u0020exists.", + "url": "classes/Psy-Readline-Hoa-Event.html#method_eventExists" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003AKEY_EVENT", + "name": "KEY_EVENT", + "summary": "Event\u0020ID\u0020key.", + "url": "classes/Psy-Readline-Hoa-Event.html#constant_KEY_EVENT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003AKEY_SOURCE", + "name": "KEY_SOURCE", + "summary": "Source\u0020object\u0020key.", + "url": "classes/Psy-Readline-Hoa-Event.html#constant_KEY_SOURCE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003A\u0024_register", + "name": "_register", + "summary": "Static\u0020register\u0020of\u0020all\u0020observable\u0020objects,\u0020i.e.\u0020\u0060Hoa\\Event\\Source\u0060\nobject,\u0020i.e.\u0020object\u0020that\u0020can\u0020send\u0020event.", + "url": "classes/Psy-Readline-Hoa-Event.html#property__register" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Event\u003A\u003A\u0024_callable", + "name": "_callable", + "summary": "Collection\u0020of\u0020callables,\u0020i.e.\u0020observer\u0020objects.", + "url": "classes/Psy-Readline-Hoa-Event.html#property__callable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket", + "name": "EventBucket", + "summary": "This\u0020class\u0020is\u0020the\u0020object\u0020which\u0020is\u0020transmit\u0020through\u0020event\u0020channels.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Allocates\u0020a\u0020new\u0020bucket\u0020with\u0020various\u0020data\u0020attached\u0020to\u0020it.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Sends\u0020this\u0020object\u0020on\u0020the\u0020event\u0020channel.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#method_send" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003AsetSource\u0028\u0029", + "name": "setSource", + "summary": "Sets\u0020a\u0020new\u0020source.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#method_setSource" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003AgetSource\u0028\u0029", + "name": "getSource", + "summary": "Returns\u0020the\u0020source.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#method_getSource" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003AsetData\u0028\u0029", + "name": "setData", + "summary": "Sets\u0020new\u0020data.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#method_setData" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003AgetData\u0028\u0029", + "name": "getData", + "summary": "Returns\u0020the\u0020data.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#method_getData" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003A\u0024_source", + "name": "_source", + "summary": "The\u0020source\u0020object\u0020\u0028must\u0020be\u0020of\u0020kind\u0020\u0060Hoa\\Event\\Source\u0060\u0029.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#property__source" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventBucket\u003A\u003A\u0024_data", + "name": "_data", + "summary": "Data\u0020attached\u0020to\u0020the\u0020bucket.", + "url": "classes/Psy-Readline-Hoa-EventBucket.html#property__data" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventException", + "name": "EventException", + "summary": "Extending\u0020the\u0020\u0060Hoa\\Exception\\Exception\u0060\u0020class.", + "url": "classes/Psy-Readline-Hoa-EventException.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListenable", + "name": "EventListenable", + "summary": "Each\u0020object\u0020which\u0020is\u0020listenable\u0020must\u0020implement\u0020this\u0020interface.", + "url": "classes/Psy-Readline-Hoa-EventListenable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListenable\u003A\u003Aon\u0028\u0029", + "name": "on", + "summary": "Attaches\u0020a\u0020callable\u0020to\u0020a\u0020listenable\u0020component.", + "url": "classes/Psy-Readline-Hoa-EventListenable.html#method_on" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener", + "name": "EventListener", + "summary": "A\u0020contrario\u0020of\u0020events,\u0020listeners\u0020are\u0020synchronous,\u0020identified\u0020at\u0020use\u0020and\nuseful\u0020for\u0020close\u0020interactions\u0020between\u0020one\u0020or\u0020some\u0020components.", + "url": "classes/Psy-Readline-Hoa-EventListener.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Build\u0020a\u0020listener.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003AaddIds\u0028\u0029", + "name": "addIds", + "summary": "Adds\u0020acceptable\u0020ID\u0020\u0028or\u0020reset\u0029.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method_addIds" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003Aattach\u0028\u0029", + "name": "attach", + "summary": "Attaches\u0020a\u0020callable\u0020to\u0020a\u0020listenable\u0020component.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method_attach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003Adetach\u0028\u0029", + "name": "detach", + "summary": "Detaches\u0020a\u0020callable\u0020from\u0020a\u0020listenable\u0020component.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method_detach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003AdetachAll\u0028\u0029", + "name": "detachAll", + "summary": "Detaches\u0020all\u0020callables\u0020from\u0020a\u0020listenable\u0020component.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method_detachAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003AlistenerExists\u0028\u0029", + "name": "listenerExists", + "summary": "Checks\u0020if\u0020a\u0020listener\u0020exists.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method_listenerExists" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003Afire\u0028\u0029", + "name": "fire", + "summary": "Sends\/fires\u0020a\u0020bucket\u0020to\u0020a\u0020listener.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#method_fire" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003A\u0024_source", + "name": "_source", + "summary": "Source\u0020of\u0020listener\u0020\u0028for\u0020\u0060Hoa\\Event\\Bucket\u0060\u0029.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#property__source" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListener\u003A\u003A\u0024_callables", + "name": "_callables", + "summary": "All\u0020listener\u0020IDs\u0020and\u0020associated\u0020listeners.", + "url": "classes/Psy-Readline-Hoa-EventListener.html#property__callables" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListens", + "name": "EventListens", + "summary": "Implementation\u0020of\u0020a\u0020listener.", + "url": "classes/Psy-Readline-Hoa-EventListens.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListens\u003A\u003Aon\u0028\u0029", + "name": "on", + "summary": "Attaches\u0020a\u0020callable\u0020to\u0020a\u0020listenable\u0020component.", + "url": "classes/Psy-Readline-Hoa-EventListens.html#method_on" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListens\u003A\u003AsetListener\u0028\u0029", + "name": "setListener", + "summary": "Sets\u0020a\u0020new\u0020listener.", + "url": "classes/Psy-Readline-Hoa-EventListens.html#method_setListener" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListens\u003A\u003AgetListener\u0028\u0029", + "name": "getListener", + "summary": "Returns\u0020the\u0020listener.", + "url": "classes/Psy-Readline-Hoa-EventListens.html#method_getListener" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventListens\u003A\u003A\u0024_listener", + "name": "_listener", + "summary": "Listener\u0020instance\u0020of\u0020type\u0020\u0060Hoa\\Event\\Listener\u0060.", + "url": "classes/Psy-Readline-Hoa-EventListens.html#property__listener" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\EventSource", + "name": "EventSource", + "summary": "Each\u0020object\u0020which\u0020is\u0020listenable\u0020must\u0020implement\u0020this\u0020interface.", + "url": "classes/Psy-Readline-Hoa-EventSource.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Exception", + "name": "Exception", + "summary": "Each\u0020exception\u0020must\u0020extend\u0020\u0060Hoa\\Exception\\Exception\u0060.", + "url": "classes/Psy-Readline-Hoa-Exception.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Exception\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Allocates\u0020a\u0020new\u0020exception.", + "url": "classes/Psy-Readline-Hoa-Exception.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Exception\u003A\u003Asend\u0028\u0029", + "name": "send", + "summary": "Sends\u0020the\u0020exception\u0020on\u0020\u0060hoa\u003A\/\/Event\/Exception\u0060.", + "url": "classes/Psy-Readline-Hoa-Exception.html#method_send" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle", + "name": "ExceptionIdle", + "summary": "\u0060Hoa\\Exception\\Idle\u0060\u0020is\u0020the\u0020mother\u0020exception\u0020class\u0020of\u0020libraries.\u0020The\u0020only\ndifference\u0020between\u0020\u0060Hoa\\Exception\\Idle\u0060\u0020and\u0020its\u0020direct\u0020children\n\u0060Hoa\\Exception\u0060\u0020is\u0020that\u0020the\u0020latter\u0020fires\u0020events\u0020after\u0020beeing\u0020constructed.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Allocates\u0020a\u0020new\u0020exception.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AgetBacktrace\u0028\u0029", + "name": "getBacktrace", + "summary": "Returns\u0020the\u0020backtrace.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_getBacktrace" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AgetPreviousThrow\u0028\u0029", + "name": "getPreviousThrow", + "summary": "Returns\u0020the\u0020previous\u0020exception\u0020if\u0020any.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_getPreviousThrow" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AgetArguments\u0028\u0029", + "name": "getArguments", + "summary": "Returns\u0020the\u0020arguments\u0020of\u0020the\u0020message.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_getArguments" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AgetRawMessage\u0028\u0029", + "name": "getRawMessage", + "summary": "Returns\u0020the\u0020raw\u0020message.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_getRawMessage" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AgetFormattedMessage\u0028\u0029", + "name": "getFormattedMessage", + "summary": "Returns\u0020the\u0020message\u0020already\u0020formatted.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_getFormattedMessage" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AgetFrom\u0028\u0029", + "name": "getFrom", + "summary": "Returns\u0020the\u0020source\u0020of\u0020the\u0020exception\u0020\u0028class,\u0020method,\u0020function,\u0020main\u0020etc.\u0029.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_getFrom" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003Araise\u0028\u0029", + "name": "raise", + "summary": "Raises\u0020an\u0020exception\u0020as\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_raise" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003Auncaught\u0028\u0029", + "name": "uncaught", + "summary": "Catches\u0020uncaught\u0020exception\u0020\u0028only\u0020\u0060Hoa\\Exception\\Idle\u0060\u0020and\u0020children\u0029.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_uncaught" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "String\u0020representation\u0020of\u0020object.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method___toString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003AenableUncaughtHandler\u0028\u0029", + "name": "enableUncaughtHandler", + "summary": "Enables\u0020uncaught\u0020exception\u0020handler.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#method_enableUncaughtHandler" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A\u0024_tmpArguments", + "name": "_tmpArguments", + "summary": "Delay\u0020processing\u0020on\u0020arguments.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#property__tmpArguments" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A\u0024_arguments", + "name": "_arguments", + "summary": "List\u0020of\u0020arguments\u0020to\u0020format\u0020message.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#property__arguments" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A\u0024_trace", + "name": "_trace", + "summary": "Backtrace.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#property__trace" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A\u0024_previous", + "name": "_previous", + "summary": "Previous\u0020exception\u0020if\u0020any.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#property__previous" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ExceptionIdle\u003A\u003A\u0024_rawMessage", + "name": "_rawMessage", + "summary": "Original\u0020exception\u0020message.", + "url": "classes/Psy-Readline-Hoa-ExceptionIdle.html#property__rawMessage" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File", + "name": "File", + "summary": "Class\u0020\\Hoa\\File.", + "url": "classes/Psy-Readline-Hoa-File.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-File.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-File.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003A_close\u0028\u0029", + "name": "_close", + "summary": "Close\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-File.html#method__close" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AnewBuffer\u0028\u0029", + "name": "newBuffer", + "summary": "Start\u0020a\u0020new\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-File.html#method_newBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020the\u0020output\u0020to\u0020a\u0020stream.", + "url": "classes/Psy-Readline-Hoa-File.html#method_flush" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AdeleteBuffer\u0028\u0029", + "name": "deleteBuffer", + "summary": "Delete\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-File.html#method_deleteBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AgetBufferLevel\u0028\u0029", + "name": "getBufferLevel", + "summary": "Get\u0020bufffer\u0020level.", + "url": "classes/Psy-Readline-Hoa-File.html#method_getBufferLevel" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AgetBufferSize\u0028\u0029", + "name": "getBufferSize", + "summary": "Get\u0020buffer\u0020size.", + "url": "classes/Psy-Readline-Hoa-File.html#method_getBufferSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003Alock\u0028\u0029", + "name": "lock", + "summary": "Portable\u0020advisory\u0020locking.", + "url": "classes/Psy-Readline-Hoa-File.html#method_lock" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003Arewind\u0028\u0029", + "name": "rewind", + "summary": "Rewind\u0020the\u0020position\u0020of\u0020a\u0020stream\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-File.html#method_rewind" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003Aseek\u0028\u0029", + "name": "seek", + "summary": "Seek\u0020on\u0020a\u0020stream\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-File.html#method_seek" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003Atell\u0028\u0029", + "name": "tell", + "summary": "Get\u0020the\u0020current\u0020position\u0020of\u0020the\u0020stream\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-File.html#method_tell" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-File.html#method_create" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_READ", + "name": "MODE_READ", + "summary": "Open\u0020for\u0020reading\u0020only\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020beginning\u0020of\u0020the\nfile.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_READ" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_READ_WRITE", + "name": "MODE_READ_WRITE", + "summary": "Open\u0020for\u0020reading\u0020and\u0020writing\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020beginning\u0020of\nthe\u0020file.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_READ_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_TRUNCATE_WRITE", + "name": "MODE_TRUNCATE_WRITE", + "summary": "Open\u0020for\u0020writing\u0020only\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020beginning\u0020of\u0020the\nfile\u0020and\u0020truncate\u0020the\u0020file\u0020to\u0020zero\u0020length.\u0020If\u0020the\u0020file\u0020does\u0020not\u0020exist,\nattempt\u0020to\u0020create\u0020it.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_TRUNCATE_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_TRUNCATE_READ_WRITE", + "name": "MODE_TRUNCATE_READ_WRITE", + "summary": "Open\u0020for\u0020reading\u0020and\u0020writing\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020beginning\u0020of\nthe\u0020file\u0020and\u0020truncate\u0020the\u0020file\u0020to\u0020zero\u0020length.\u0020If\u0020the\u0020file\u0020does\u0020not\nexist,\u0020attempt\u0020to\u0020create\u0020it.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_TRUNCATE_READ_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_APPEND_WRITE", + "name": "MODE_APPEND_WRITE", + "summary": "Open\u0020for\u0020writing\u0020only\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020end\u0020of\u0020the\u0020file.\u0020If\nthe\u0020file\u0020does\u0020not\u0020exist,\u0020attempt\u0020to\u0020create\u0020it.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_APPEND_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_APPEND_READ_WRITE", + "name": "MODE_APPEND_READ_WRITE", + "summary": "Open\u0020for\u0020reading\u0020and\u0020writing\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020end\u0020of\u0020the\nfile.\u0020If\u0020the\u0020file\u0020does\u0020not\u0020exist,\u0020attempt\u0020to\u0020create\u0020it.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_APPEND_READ_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_CREATE_WRITE", + "name": "MODE_CREATE_WRITE", + "summary": "Create\u0020and\u0020open\u0020for\u0020writing\u0020only\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\u0020beginning\nof\u0020the\u0020file.\u0020If\u0020the\u0020file\u0020already\u0020exits,\u0020the\u0020fopen\u0028\u0029\u0020call\u0020with\u0020fail\u0020by\nreturning\u0020false\u0020and\u0020generating\u0020an\u0020error\u0020of\u0020level\u0020E_WARNING.\u0020If\u0020the\u0020file\ndoes\u0020not\u0020exist,\u0020attempt\u0020to\u0020create\u0020it.\u0020This\u0020is\u0020equivalent\u0020to\u0020specifying\nO_EXCL\u0020\u007C\u0020O_CREAT\u0020flags\u0020for\u0020the\u0020underlying\u0020open\u00282\u0029\u0020system\u0020call.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_CREATE_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\File\u003A\u003AMODE_CREATE_READ_WRITE", + "name": "MODE_CREATE_READ_WRITE", + "summary": "Create\u0020and\u0020open\u0020for\u0020reading\u0020and\u0020writing\u003B\u0020place\u0020the\u0020file\u0020pointer\u0020at\u0020the\nbeginning\u0020of\u0020the\u0020file.\u0020If\u0020the\u0020file\u0020already\u0020exists,\u0020the\u0020fopen\u0028\u0029\u0020call\u0020with\nfail\u0020by\u0020returning\u0020false\u0020and\u0020generating\u0020an\u0020error\u0020of\u0020level\u0020E_WARNING.\u0020If\nthe\u0020file\u0020does\u0020not\u0020exist,\u0020attempt\u0020to\u0020create\u0020it.\u0020This\u0020is\u0020equivalent\u0020to\nspecifying\u0020O_EXCL\u0020\u007C\u0020O_CREAT\u0020flags\u0020for\u0020the\u0020underlying\u0020open\u00282\u0029\u0020system\u0020call.", + "url": "classes/Psy-Readline-Hoa-File.html#constant_MODE_CREATE_READ_WRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory", + "name": "FileDirectory", + "summary": "Class\u0020\\Hoa\\File\\Directory.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003A_close\u0028\u0029", + "name": "_close", + "summary": "Close\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#method__close" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Recursive\u0020copy\u0020of\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#method_copy" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#method_delete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#method_create" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003AMODE_READ", + "name": "MODE_READ", + "summary": "Open\u0020for\u0020reading.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#constant_MODE_READ" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003AMODE_CREATE", + "name": "MODE_CREATE", + "summary": "Open\u0020for\u0020reading\u0020and\u0020writing.\u0020If\u0020the\u0020directory\u0020does\u0020not\u0020exist,\u0020attempt\u0020to\ncreate\u0020it.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#constant_MODE_CREATE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDirectory\u003A\u003AMODE_CREATE_RECURSIVE", + "name": "MODE_CREATE_RECURSIVE", + "summary": "Open\u0020for\u0020reading\u0020and\u0020writing.\u0020If\u0020the\u0020directory\u0020does\u0020not\u0020exist,\u0020attempt\u0020to\ncreate\u0020it\u0020recursively.", + "url": "classes/Psy-Readline-Hoa-FileDirectory.html#constant_MODE_CREATE_RECURSIVE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileDoesNotExistException", + "name": "FileDoesNotExistException", + "summary": "Class\u0020\\Hoa\\File\\Exception\\FileDoesNotExist.", + "url": "classes/Psy-Readline-Hoa-FileDoesNotExistException.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileException", + "name": "FileException", + "summary": "Class\u0020\\Hoa\\File\\Exception.", + "url": "classes/Psy-Readline-Hoa-FileException.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder", + "name": "FileFinder", + "summary": "Class\u0020\\Hoa\\File\\Finder.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initialize.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Ain\u0028\u0029", + "name": "in", + "summary": "Select\u0020a\u0020directory\u0020to\u0020scan.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_in" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AmaxDepth\u0028\u0029", + "name": "maxDepth", + "summary": "Set\u0020max\u0020depth\u0020for\u0020recursion.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_maxDepth" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Include\u0020files\u0020in\u0020the\u0020result.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_files" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Adirectories\u0028\u0029", + "name": "directories", + "summary": "Include\u0020directories\u0020in\u0020the\u0020result.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_directories" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Alinks\u0028\u0029", + "name": "links", + "summary": "Include\u0020links\u0020in\u0020the\u0020result.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_links" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AfollowSymlinks\u0028\u0029", + "name": "followSymlinks", + "summary": "Follow\u0020symbolink\u0020links.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_followSymlinks" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "Include\u0020files\u0020that\u0020match\u0020a\u0020regex.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_name" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AnotIn\u0028\u0029", + "name": "notIn", + "summary": "Exclude\u0020directories\u0020that\u0020match\u0020a\u0020regex.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_notIn" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Include\u0020files\u0020that\u0020respect\u0020a\u0020certain\u0020size.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_size" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Adots\u0028\u0029", + "name": "dots", + "summary": "Whether\u0020we\u0020should\u0020include\u0020dots\u0020or\u0020not\u0020\u0028respectively\u0020.\u0020and\u0020..\u0029.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_dots" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Aowner\u0028\u0029", + "name": "owner", + "summary": "Include\u0020files\u0020that\u0020are\u0020owned\u0020by\u0020a\u0020certain\u0020owner.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_owner" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AformatDate\u0028\u0029", + "name": "formatDate", + "summary": "Format\u0020date.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_formatDate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Achanged\u0028\u0029", + "name": "changed", + "summary": "Include\u0020files\u0020that\u0020have\u0020been\u0020changed\u0020from\u0020a\u0020certain\u0020date.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_changed" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Amodified\u0028\u0029", + "name": "modified", + "summary": "Include\u0020files\u0020that\u0020have\u0020been\u0020modified\u0020from\u0020a\u0020certain\u0020date.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_modified" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Add\u0020your\u0020own\u0020filter.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_filter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AsortByName\u0028\u0029", + "name": "sortByName", + "summary": "Sort\u0020result\u0020by\u0020name.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_sortByName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AsortBySize\u0028\u0029", + "name": "sortBySize", + "summary": "Sort\u0020result\u0020by\u0020size.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_sortBySize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003Asort\u0028\u0029", + "name": "sort", + "summary": "Add\u0020your\u0020own\u0020sort.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_sort" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AchildFirst\u0028\u0029", + "name": "childFirst", + "summary": "Child\u0020comes\u0020first\u0020when\u0020iterating.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_childFirst" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020the\u0020iterator.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getIterator" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AsetSplFileInfo\u0028\u0029", + "name": "setSplFileInfo", + "summary": "Set\u0020SplFileInfo\u0020classname.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_setSplFileInfo" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetSplFileInfo\u0028\u0029", + "name": "getSplFileInfo", + "summary": "Get\u0020SplFileInfo\u0020classname.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getSplFileInfo" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetPaths\u0028\u0029", + "name": "getPaths", + "summary": "Get\u0020all\u0020paths.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getPaths" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetMaxDepth\u0028\u0029", + "name": "getMaxDepth", + "summary": "Get\u0020max\u0020depth.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getMaxDepth" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetTypes\u0028\u0029", + "name": "getTypes", + "summary": "Get\u0020types.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getTypes" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetFilters\u0028\u0029", + "name": "getFilters", + "summary": "Get\u0020filters.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getFilters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetSorts\u0028\u0029", + "name": "getSorts", + "summary": "Get\u0020sorts.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getSorts" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetFlags\u0028\u0029", + "name": "getFlags", + "summary": "Get\u0020flags.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getFlags" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003AgetFirst\u0028\u0029", + "name": "getFirst", + "summary": "Get\u0020first.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#method_getFirst" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_splFileInfo", + "name": "_splFileInfo", + "summary": "SplFileInfo\u0020classname.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__splFileInfo" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_paths", + "name": "_paths", + "summary": "Paths\u0020where\u0020to\u0020look\u0020for.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__paths" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_maxDepth", + "name": "_maxDepth", + "summary": "Max\u0020depth\u0020in\u0020recursion.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__maxDepth" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_filters", + "name": "_filters", + "summary": "Filters.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__filters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_flags", + "name": "_flags", + "summary": "Flags.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__flags" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_types", + "name": "_types", + "summary": "Types\u0020of\u0020files\u0020to\u0020handle.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__types" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_first", + "name": "_first", + "summary": "What\u0020comes\u0020first\u003A\u0020parent\u0020or\u0020child\u003F", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__first" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileFinder\u003A\u003A\u0024_sorts", + "name": "_sorts", + "summary": "Sorts.", + "url": "classes/Psy-Readline-Hoa-FileFinder.html#property__sorts" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric", + "name": "FileGeneric", + "summary": "Class\u0020\\Hoa\\File\\Generic.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetBasename\u0028\u0029", + "name": "getBasename", + "summary": "Get\u0020filename\u0020component\u0020of\u0020path.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getBasename" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetDirname\u0028\u0029", + "name": "getDirname", + "summary": "Get\u0020directory\u0020name\u0020component\u0020of\u0020path.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getDirname" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetSize\u0028\u0029", + "name": "getSize", + "summary": "Get\u0020size.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetStatistic\u0028\u0029", + "name": "getStatistic", + "summary": "Get\u0020informations\u0020about\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getStatistic" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetATime\u0028\u0029", + "name": "getATime", + "summary": "Get\u0020last\u0020access\u0020time\u0020of\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getATime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetCTime\u0028\u0029", + "name": "getCTime", + "summary": "Get\u0020inode\u0020change\u0020time\u0020of\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getCTime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetMTime\u0028\u0029", + "name": "getMTime", + "summary": "Get\u0020file\u0020modification\u0020time.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getMTime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetGroup\u0028\u0029", + "name": "getGroup", + "summary": "Get\u0020file\u0020group.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getGroup" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetOwner\u0028\u0029", + "name": "getOwner", + "summary": "Get\u0020file\u0020owner.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getOwner" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetPermissions\u0028\u0029", + "name": "getPermissions", + "summary": "Get\u0020file\u0020permissions.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getPermissions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetReadablePermissions\u0028\u0029", + "name": "getReadablePermissions", + "summary": "Get\u0020file\u0020permissions\u0020as\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getReadablePermissions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisReadable\u0028\u0029", + "name": "isReadable", + "summary": "Check\u0020if\u0020the\u0020file\u0020is\u0020readable.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isReadable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisWritable\u0028\u0029", + "name": "isWritable", + "summary": "Check\u0020if\u0020the\u0020file\u0020is\u0020writable.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isWritable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisExecutable\u0028\u0029", + "name": "isExecutable", + "summary": "Check\u0020if\u0020the\u0020file\u0020is\u0020executable.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isExecutable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AclearStatisticCache\u0028\u0029", + "name": "clearStatisticCache", + "summary": "Clear\u0020file\u0020status\u0020cache.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_clearStatisticCache" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AclearAllStatisticCaches\u0028\u0029", + "name": "clearAllStatisticCaches", + "summary": "Clear\u0020all\u0020files\u0020status\u0020cache.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_clearAllStatisticCaches" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003Atouch\u0028\u0029", + "name": "touch", + "summary": "Set\u0020access\u0020and\u0020modification\u0020time\u0020of\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_touch" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_copy" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_move" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_delete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AchangeGroup\u0028\u0029", + "name": "changeGroup", + "summary": "Change\u0020file\u0020group.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_changeGroup" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AchangeMode\u0028\u0029", + "name": "changeMode", + "summary": "Change\u0020file\u0020mode.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_changeMode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AchangeOwner\u0028\u0029", + "name": "changeOwner", + "summary": "Change\u0020file\u0020owner.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_changeOwner" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003Aumask\u0028\u0029", + "name": "umask", + "summary": "Change\u0020the\u0020current\u0020umask.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_umask" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisFile\u0028\u0029", + "name": "isFile", + "summary": "Check\u0020if\u0020it\u0020is\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isFile" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisLink\u0028\u0029", + "name": "isLink", + "summary": "Check\u0020if\u0020it\u0020is\u0020a\u0020link.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isLink" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisDirectory\u0028\u0029", + "name": "isDirectory", + "summary": "Check\u0020if\u0020it\u0020is\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isDirectory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisSocket\u0028\u0029", + "name": "isSocket", + "summary": "Check\u0020if\u0020it\u0020is\u0020a\u0020socket.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isSocket" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisFIFOPipe\u0028\u0029", + "name": "isFIFOPipe", + "summary": "Check\u0020if\u0020it\u0020is\u0020a\u0020FIFO\u0020pipe.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isFIFOPipe" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisCharacterSpecial\u0028\u0029", + "name": "isCharacterSpecial", + "summary": "Check\u0020if\u0020it\u0020is\u0020character\u0020special\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isCharacterSpecial" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisBlockSpecial\u0028\u0029", + "name": "isBlockSpecial", + "summary": "Check\u0020if\u0020it\u0020is\u0020block\u0020special.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isBlockSpecial" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisUnknown\u0028\u0029", + "name": "isUnknown", + "summary": "Check\u0020if\u0020it\u0020is\u0020an\u0020unknown\u0020type.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isUnknown" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AsetMode\u0028\u0029", + "name": "setMode", + "summary": "Set\u0020the\u0020open\u0020mode.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_setMode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetMode\u0028\u0029", + "name": "getMode", + "summary": "Get\u0020the\u0020open\u0020mode.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getMode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetINode\u0028\u0029", + "name": "getINode", + "summary": "Get\u0020inode.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getINode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AisCaseSensitive\u0028\u0029", + "name": "isCaseSensitive", + "summary": "Check\u0020if\u0020the\u0020system\u0020is\u0020case\u0020sensitive\u0020or\u0020not.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_isCaseSensitive" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetRealPath\u0028\u0029", + "name": "getRealPath", + "summary": "Get\u0020a\u0020canonicalized\u0020absolute\u0020pathname.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getRealPath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Get\u0020file\u0020extension\u0020\u0028if\u0020exists\u0029.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getExtension" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "Get\u0020filename\u0020without\u0020extension.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#method_getFilename" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileGeneric\u003A\u003A\u0024_mode", + "name": "_mode", + "summary": "Mode.", + "url": "classes/Psy-Readline-Hoa-FileGeneric.html#property__mode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink", + "name": "FileLink", + "summary": "Class\u0020\\Hoa\\File\\Link.", + "url": "classes/Psy-Readline-Hoa-FileLink.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020link.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003AgetStatistic\u0028\u0029", + "name": "getStatistic", + "summary": "Get\u0020informations\u0020about\u0020a\u0020link.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_getStatistic" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003AchangeGroup\u0028\u0029", + "name": "changeGroup", + "summary": "Change\u0020file\u0020group.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_changeGroup" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003AchangeOwner\u0028\u0029", + "name": "changeOwner", + "summary": "Change\u0020file\u0020owner.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_changeOwner" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003AgetPermissions\u0028\u0029", + "name": "getPermissions", + "summary": "Get\u0020file\u0020permissions.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_getPermissions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003AgetTarget\u0028\u0029", + "name": "getTarget", + "summary": "Get\u0020the\u0020target\u0020of\u0020a\u0020symbolic\u0020link.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_getTarget" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003AgetTargetName\u0028\u0029", + "name": "getTargetName", + "summary": "Get\u0020the\u0020target\u0020name\u0020of\u0020a\u0020symbolic\u0020link.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_getTargetName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLink\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020link.", + "url": "classes/Psy-Readline-Hoa-FileLink.html#method_create" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead", + "name": "FileLinkRead", + "summary": "Class\u0020\\Hoa\\File\\Link\\Read.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dfile.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkRead\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-FileLinkRead.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite", + "name": "FileLinkReadWrite", + "summary": "Class\u0020\\Hoa\\File\\Link\\ReadWrite.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dfile.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_write" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteString\u0028\u0029", + "name": "writeString", + "summary": "Write\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteCharacter\u0028\u0029", + "name": "writeCharacter", + "summary": "Write\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteBoolean\u0028\u0029", + "name": "writeBoolean", + "summary": "Write\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteInteger\u0028\u0029", + "name": "writeInteger", + "summary": "Write\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteFloat\u0028\u0029", + "name": "writeFloat", + "summary": "Write\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteArray\u0028\u0029", + "name": "writeArray", + "summary": "Write\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteLine\u0028\u0029", + "name": "writeLine", + "summary": "Write\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003AwriteAll\u0028\u0029", + "name": "writeAll", + "summary": "Write\u0020all,\u0020i.e.\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_writeAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileLinkReadWrite\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncate\u0020a\u0020file\u0020to\u0020a\u0020given\u0020length.", + "url": "classes/Psy-Readline-Hoa-FileLinkReadWrite.html#method_truncate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead", + "name": "FileRead", + "summary": "Class\u0020\\Hoa\\File\\Read.", + "url": "classes/Psy-Readline-Hoa-FileRead.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dfile.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileRead\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-FileRead.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite", + "name": "FileReadWrite", + "summary": "Class\u0020\\Hoa\\File\\ReadWrite.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Open\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dfile.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_write" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteString\u0028\u0029", + "name": "writeString", + "summary": "Write\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteCharacter\u0028\u0029", + "name": "writeCharacter", + "summary": "Write\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteBoolean\u0028\u0029", + "name": "writeBoolean", + "summary": "Write\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteInteger\u0028\u0029", + "name": "writeInteger", + "summary": "Write\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteFloat\u0028\u0029", + "name": "writeFloat", + "summary": "Write\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteArray\u0028\u0029", + "name": "writeArray", + "summary": "Write\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteLine\u0028\u0029", + "name": "writeLine", + "summary": "Write\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003AwriteAll\u0028\u0029", + "name": "writeAll", + "summary": "Write\u0020all,\u0020i.e.\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_writeAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\FileReadWrite\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncate\u0020a\u0020file\u0020to\u0020a\u0020given\u0020length.", + "url": "classes/Psy-Readline-Hoa-FileReadWrite.html#method_truncate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IStream", + "name": "IStream", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Stream.", + "url": "classes/Psy-Readline-Hoa-IStream.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IStream\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Get\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-IStream.html#method_getStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorFileSystem", + "name": "IteratorFileSystem", + "summary": "Class\u0020\\Hoa\\Iterator\\FileSystem.", + "url": "classes/Psy-Readline-Hoa-IteratorFileSystem.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorFileSystem\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Readline-Hoa-IteratorFileSystem.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorFileSystem\u003A\u003Acurrent\u0028\u0029", + "name": "current", + "summary": "Current.", + "url": "classes/Psy-Readline-Hoa-IteratorFileSystem.html#method_current" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorFileSystem\u003A\u003A\u0024_splFileInfoClass", + "name": "_splFileInfoClass", + "summary": "SplFileInfo\u0020classname.", + "url": "classes/Psy-Readline-Hoa-IteratorFileSystem.html#property__splFileInfoClass" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory", + "name": "IteratorRecursiveDirectory", + "summary": "Class\u0020\\Hoa\\Iterator\\Recursive\\Directory.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Constructor.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003Acurrent\u0028\u0029", + "name": "current", + "summary": "Current.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#method_current" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003AgetChildren\u0028\u0029", + "name": "getChildren", + "summary": "Get\u0020children.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#method_getChildren" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003AsetSplFileInfoClass\u0028\u0029", + "name": "setSplFileInfoClass", + "summary": "Set\u0020SplFileInfo\u0020classname.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#method_setSplFileInfoClass" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003AgetRelativePath\u0028\u0029", + "name": "getRelativePath", + "summary": "Get\u0020relative\u0020path\u0020\u0028if\u0020given\u0029.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#method_getRelativePath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003A\u0024_splFileInfoClass", + "name": "_splFileInfoClass", + "summary": "SplFileInfo\u0020classname.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#property__splFileInfoClass" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorRecursiveDirectory\u003A\u003A\u0024_relativePath", + "name": "_relativePath", + "summary": "Relative\u0020path.", + "url": "classes/Psy-Readline-Hoa-IteratorRecursiveDirectory.html#property__relativePath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo", + "name": "IteratorSplFileInfo", + "summary": "Class\u0020\\Hoa\\Iterator\\SplFileInfo.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003AgetHash\u0028\u0029", + "name": "getHash", + "summary": "Get\u0020the\u0020hash.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#method_getHash" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003AgetMTime\u0028\u0029", + "name": "getMTime", + "summary": "Get\u0020the\u0020MTime.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#method_getMTime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003AsetRelativePath\u0028\u0029", + "name": "setRelativePath", + "summary": "Set\u0020relative\u0020path.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#method_setRelativePath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003AgetRelativePath\u0028\u0029", + "name": "getRelativePath", + "summary": "Get\u0020relative\u0020path\u0020\u0028if\u0020given\u0029.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#method_getRelativePath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003AgetRelativePathname\u0028\u0029", + "name": "getRelativePathname", + "summary": "Get\u0020relative\u0020pathname\u0020\u0028if\u0020possible\u0029.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#method_getRelativePathname" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003A\u0024_hash", + "name": "_hash", + "summary": "Hash.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#property__hash" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\IteratorSplFileInfo\u003A\u003A\u0024_relativePath", + "name": "_relativePath", + "summary": "Relative\u0020path.", + "url": "classes/Psy-Readline-Hoa-IteratorSplFileInfo.html#property__relativePath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol", + "name": "Protocol", + "summary": "Root\u0020of\u0020the\u0020\u0060hoa\u003A\/\/\u0060\u0020protocol.", + "url": "classes/Psy-Readline-Hoa-Protocol.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initialize\u0020the\u0020protocol.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003AgetInstance\u0028\u0029", + "name": "getInstance", + "summary": "Singleton.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#method_getInstance" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "Initialize\u0020the\u0020protocol.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#method_initialize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020\u0028unfold\u0029\u0020an\u0020\u0060hoa\u003A\/\/\u0060\u0020path\u0020to\u0020its\u0020real\u0020resource.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#method_resolve" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003AclearCache\u0028\u0029", + "name": "clearCache", + "summary": "Clear\u0020the\u0020cache.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#method_clearCache" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003ANO_RESOLUTION", + "name": "NO_RESOLUTION", + "summary": "No\u0020resolution\u0020value.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#constant_NO_RESOLUTION" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003A\u0024_instance", + "name": "_instance", + "summary": "Singleton.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#property__instance" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Protocol\u003A\u003A\u0024_cache", + "name": "_cache", + "summary": "Cache\u0020of\u0020resolver.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#property__cache" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolException", + "name": "ProtocolException", + "summary": "Extends\u0020the\u0020\u0060Hoa\\Exception\\Exception\u0060\u0020class.", + "url": "classes/Psy-Readline-Hoa-ProtocolException.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode", + "name": "ProtocolNode", + "summary": "Abstract\u0020class\u0020for\u0020all\u0020\u0060hoa\u003A\/\/\u0060\u0027s\u0020nodes.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020protocol\u0027s\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "Add\u0020a\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_offsetSet" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "Get\u0020a\u0020specific\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_offsetGet" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "Check\u0020if\u0020a\u0020node\u0020exists.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_offsetExists" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "Remove\u0020a\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_offsetUnset" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A_resolve\u0028\u0029", + "name": "_resolve", + "summary": "Resolve\u0020a\u0020path,\u0020i.e.\u0020iterate\u0020the\u0020nodes\u0020tree\u0020and\u0020reach\u0020the\u0020queue\u0020of\nthe\u0020path.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method__resolve" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A_resolveChoice\u0028\u0029", + "name": "_resolveChoice", + "summary": "Resolve\u0020choices,\u0020i.e.\u0020a\u0020reach\u0020value\u0020has\u0020a\u0020\u201C\u003B\u201D.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method__resolveChoice" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003Areach\u0028\u0029", + "name": "reach", + "summary": "Queue\u0020of\u0020the\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_reach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AreachId\u0028\u0029", + "name": "reachId", + "summary": "ID\u0020of\u0020the\u0020component.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_reachId" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AsetReach\u0028\u0029", + "name": "setReach", + "summary": "Set\u0020a\u0020new\u0020reach\u0020value.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_setReach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020node\u0027s\u0020name.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_getName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AgetReach\u0028\u0029", + "name": "getReach", + "summary": "Get\u0020reach\u0027s\u0020root.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_getReach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Get\u0020an\u0020iterator.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_getIterator" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003AgetRoot\u0028\u0029", + "name": "getRoot", + "summary": "Get\u0020root\u0020the\u0020protocol.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method_getRoot" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Print\u0020a\u0020tree\u0020of\u0020component.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#method___toString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A\u0024_name", + "name": "_name", + "summary": "Node\u0027s\u0020name.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#property__name" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A\u0024_reach", + "name": "_reach", + "summary": "Path\u0020for\u0020the\u0020\u0060reach\u0060\u0020method.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#property__reach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNode\u003A\u003A\u0024_children", + "name": "_children", + "summary": "Children\u0020of\u0020the\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNode.html#property__children" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNodeLibrary", + "name": "ProtocolNodeLibrary", + "summary": "The\u0020\u0060hoa\u003A\/\/Library\/\u0060\u0020node.", + "url": "classes/Psy-Readline-Hoa-ProtocolNodeLibrary.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolNodeLibrary\u003A\u003Areach\u0028\u0029", + "name": "reach", + "summary": "Queue\u0020of\u0020the\u0020component.", + "url": "classes/Psy-Readline-Hoa-ProtocolNodeLibrary.html#method_reach" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper", + "name": "ProtocolWrapper", + "summary": "Stream\u0020wrapper\u0020for\u0020the\u0020\u0060hoa\u003A\/\/\u0060\u0020protocol.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003ArealPath\u0028\u0029", + "name": "realPath", + "summary": "Get\u0020the\u0020real\u0020path\u0020of\u0020the\u0020given\u0020URL.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_realPath" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_cast\u0028\u0029", + "name": "stream_cast", + "summary": "Retrieve\u0020the\u0020underlying\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_cast" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_close\u0028\u0029", + "name": "stream_close", + "summary": "Closes\u0020a\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_close" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_eof\u0028\u0029", + "name": "stream_eof", + "summary": "Tests\u0020for\u0020end\u002Dof\u002Dfile\u0020on\u0020a\u0020file\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_flush\u0028\u0029", + "name": "stream_flush", + "summary": "Flush\u0020the\u0020output.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_flush" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_lock\u0028\u0029", + "name": "stream_lock", + "summary": "Advisory\u0020file\u0020locking.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_lock" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_metadata\u0028\u0029", + "name": "stream_metadata", + "summary": "Change\u0020stream\u0020options.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_metadata" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_open\u0028\u0029", + "name": "stream_open", + "summary": "Open\u0020file\u0020or\u0020URL.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_read\u0028\u0029", + "name": "stream_read", + "summary": "Read\u0020from\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_seek\u0028\u0029", + "name": "stream_seek", + "summary": "Seek\u0020to\u0020specific\u0020location\u0020in\u0020a\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_seek" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_stat\u0028\u0029", + "name": "stream_stat", + "summary": "Retrieve\u0020information\u0020about\u0020a\u0020file\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_stat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_tell\u0028\u0029", + "name": "stream_tell", + "summary": "Retrieve\u0020the\u0020current\u0020position\u0020of\u0020a\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_tell" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_truncate\u0028\u0029", + "name": "stream_truncate", + "summary": "Truncate\u0020a\u0020stream\u0020to\u0020a\u0020given\u0020length.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_truncate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Astream_write\u0028\u0029", + "name": "stream_write", + "summary": "Write\u0020to\u0020stream.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_stream_write" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Adir_closedir\u0028\u0029", + "name": "dir_closedir", + "summary": "Close\u0020directory\u0020handle.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_dir_closedir" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Adir_opendir\u0028\u0029", + "name": "dir_opendir", + "summary": "Open\u0020directory\u0020handle.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_dir_opendir" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Adir_readdir\u0028\u0029", + "name": "dir_readdir", + "summary": "Read\u0020entry\u0020from\u0020directory\u0020handle.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_dir_readdir" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Adir_rewinddir\u0028\u0029", + "name": "dir_rewinddir", + "summary": "Rewind\u0020directory\u0020handle.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_dir_rewinddir" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Amkdir\u0028\u0029", + "name": "mkdir", + "summary": "Create\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_mkdir" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Arename\u0028\u0029", + "name": "rename", + "summary": "Rename\u0020a\u0020file\u0020or\u0020directory.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_rename" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Armdir\u0028\u0029", + "name": "rmdir", + "summary": "Remove\u0020a\u0020directory.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_rmdir" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Aunlink\u0028\u0029", + "name": "unlink", + "summary": "Delete\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_unlink" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003Aurl_stat\u0028\u0029", + "name": "url_stat", + "summary": "Retrieve\u0020information\u0020about\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_url_stat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Get\u0020stream\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_getStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003AgetStreamName\u0028\u0029", + "name": "getStreamName", + "summary": "Get\u0020stream\u0020name.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#method_getStreamName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003A\u0024_stream", + "name": "_stream", + "summary": "Opened\u0020stream\u0020as\u0020a\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#property__stream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003A\u0024_streamName", + "name": "_streamName", + "summary": "Stream\u0020name\u0020\u0028filename\u0029.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#property__streamName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\ProtocolWrapper\u003A\u003A\u0024context", + "name": "context", + "summary": "Stream\u0020context\u0020\u0028given\u0020by\u0020the\u0020streamWrapper\u0020class\u0029\u0020as\u0020a\u0020resource.", + "url": "classes/Psy-Readline-Hoa-ProtocolWrapper.html#property_context" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline", + "name": "Readline", + "summary": "Class\u0020\\Hoa\\Console\\Readline.", + "url": "classes/Psy-Readline-Hoa-Readline.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initialize\u0020the\u0020readline\u0020editor.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line\u0020from\u0020the\u0020input.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_readLine\u0028\u0029", + "name": "_readLine", + "summary": "Readline\u0020core.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AaddMappings\u0028\u0029", + "name": "addMappings", + "summary": "Add\u0020mappings.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_addMappings" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AaddMapping\u0028\u0029", + "name": "addMapping", + "summary": "Add\u0020a\u0020mapping.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_addMapping" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AaddHistory\u0028\u0029", + "name": "addHistory", + "summary": "Add\u0020an\u0020entry\u0020in\u0020the\u0020history.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_addHistory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AclearHistory\u0028\u0029", + "name": "clearHistory", + "summary": "Clear\u0020history.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_clearHistory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetHistory\u0028\u0029", + "name": "getHistory", + "summary": "Get\u0020an\u0020entry\u0020in\u0020the\u0020history.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getHistory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003ApreviousHistory\u0028\u0029", + "name": "previousHistory", + "summary": "Go\u0020backward\u0020in\u0020the\u0020history.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_previousHistory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AnextHistory\u0028\u0029", + "name": "nextHistory", + "summary": "Go\u0020forward\u0020in\u0020the\u0020history.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_nextHistory" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetLine\u0028\u0029", + "name": "getLine", + "summary": "Get\u0020current\u0020line.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AappendLine\u0028\u0029", + "name": "appendLine", + "summary": "Append\u0020to\u0020current\u0020line.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_appendLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AinsertLine\u0028\u0029", + "name": "insertLine", + "summary": "Insert\u0020into\u0020current\u0020line\u0020at\u0020the\u0020current\u0020seek.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_insertLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AresetLine\u0028\u0029", + "name": "resetLine", + "summary": "Reset\u0020current\u0020line.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_resetLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetLineCurrent\u0028\u0029", + "name": "getLineCurrent", + "summary": "Get\u0020current\u0020line\u0020seek.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getLineCurrent" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetLineLength\u0028\u0029", + "name": "getLineLength", + "summary": "Get\u0020current\u0020line\u0020length.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getLineLength" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AsetPrefix\u0028\u0029", + "name": "setPrefix", + "summary": "Set\u0020prefix.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_setPrefix" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetPrefix\u0028\u0029", + "name": "getPrefix", + "summary": "Get\u0020prefix.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getPrefix" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetBuffer\u0028\u0029", + "name": "getBuffer", + "summary": "Get\u0020buffer.\u0020Not\u0020for\u0020user.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AsetAutocompleter\u0028\u0029", + "name": "setAutocompleter", + "summary": "Set\u0020an\u0020autocompleter.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_setAutocompleter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AgetAutocompleter\u0028\u0029", + "name": "getAutocompleter", + "summary": "Get\u0020the\u0020autocompleter.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_getAutocompleter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_read\u0028\u0029", + "name": "_read", + "summary": "Read\u0020on\u0020input.\u0020Not\u0020for\u0020user.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AsetLine\u0028\u0029", + "name": "setLine", + "summary": "Set\u0020current\u0020line.\u0020Not\u0020for\u0020user.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_setLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AsetLineCurrent\u0028\u0029", + "name": "setLineCurrent", + "summary": "Set\u0020current\u0020line\u0020seek.\u0020Not\u0020for\u0020user.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_setLineCurrent" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AsetLineLength\u0028\u0029", + "name": "setLineLength", + "summary": "Set\u0020line\u0020length.\u0020Not\u0020for\u0020user.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_setLineLength" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003AsetBuffer\u0028\u0029", + "name": "setBuffer", + "summary": "Set\u0020buffer.\u0020Not\u0020for\u0020user.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method_setBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindArrowUp\u0028\u0029", + "name": "_bindArrowUp", + "summary": "Up\u0020arrow\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindArrowUp" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindArrowDown\u0028\u0029", + "name": "_bindArrowDown", + "summary": "Down\u0020arrow\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindArrowDown" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindArrowRight\u0028\u0029", + "name": "_bindArrowRight", + "summary": "Right\u0020arrow\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindArrowRight" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindArrowLeft\u0028\u0029", + "name": "_bindArrowLeft", + "summary": "Left\u0020arrow\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindArrowLeft" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindBackspace\u0028\u0029", + "name": "_bindBackspace", + "summary": "Backspace\u0020and\u0020Control\u002DH\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindBackspace" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindControlA\u0028\u0029", + "name": "_bindControlA", + "summary": "Control\u002DA\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindControlA" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindControlB\u0028\u0029", + "name": "_bindControlB", + "summary": "Control\u002DB\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindControlB" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindControlE\u0028\u0029", + "name": "_bindControlE", + "summary": "Control\u002DE\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindControlE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindControlF\u0028\u0029", + "name": "_bindControlF", + "summary": "Control\u002DF\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindControlF" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindControlW\u0028\u0029", + "name": "_bindControlW", + "summary": "Control\u002DW\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindControlW" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindNewline\u0028\u0029", + "name": "_bindNewline", + "summary": "Newline\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindNewline" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A_bindTab\u0028\u0029", + "name": "_bindTab", + "summary": "Tab\u0020binding.", + "url": "classes/Psy-Readline-Hoa-Readline.html#method__bindTab" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003ASTATE_CONTINUE", + "name": "STATE_CONTINUE", + "summary": "State\u003A\u0020continue\u0020to\u0020read.", + "url": "classes/Psy-Readline-Hoa-Readline.html#constant_STATE_CONTINUE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003ASTATE_BREAK", + "name": "STATE_BREAK", + "summary": "State\u003A\u0020stop\u0020to\u0020read.", + "url": "classes/Psy-Readline-Hoa-Readline.html#constant_STATE_BREAK" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003ASTATE_NO_ECHO", + "name": "STATE_NO_ECHO", + "summary": "State\u003A\u0020no\u0020output\u0020the\u0020current\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-Readline.html#constant_STATE_NO_ECHO" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_line", + "name": "_line", + "summary": "Current\u0020editing\u0020line.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__line" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_lineCurrent", + "name": "_lineCurrent", + "summary": "Current\u0020editing\u0020line\u0020seek.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__lineCurrent" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_lineLength", + "name": "_lineLength", + "summary": "Current\u0020editing\u0020line\u0020length.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__lineLength" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_buffer", + "name": "_buffer", + "summary": "Current\u0020buffer\u0020\u0028most\u0020of\u0020the\u0020time,\u0020a\u0020char\u0029.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__buffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_mapping", + "name": "_mapping", + "summary": "Mapping.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__mapping" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_history", + "name": "_history", + "summary": "History.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__history" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_historyCurrent", + "name": "_historyCurrent", + "summary": "History\u0020current\u0020position.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__historyCurrent" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_historySize", + "name": "_historySize", + "summary": "History\u0020size.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__historySize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_prefix", + "name": "_prefix", + "summary": "Prefix.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__prefix" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Readline\u003A\u003A\u0024_autocompleter", + "name": "_autocompleter", + "summary": "Autocompleter.", + "url": "classes/Psy-Readline-Hoa-Readline.html#property__autocompleter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream", + "name": "Stream", + "summary": "Class\u0020\\Hoa\\Stream.", + "url": "classes/Psy-Readline-Hoa-Stream.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Set\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A_getStream\u0028\u0029", + "name": "_getStream", + "summary": "Get\u0020a\u0020stream\u0020in\u0020the\u0020register.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method__getStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A_open\u0028\u0029", + "name": "_open", + "summary": "Open\u0020the\u0020stream\u0020and\u0020return\u0020the\u0020associated\u0020resource.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method__open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A_close\u0028\u0029", + "name": "_close", + "summary": "Close\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method__close" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003Aopen\u0028\u0029", + "name": "open", + "summary": "Open\u0020the\u0020stream.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_open" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Close\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_close" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStreamName\u0028\u0029", + "name": "getStreamName", + "summary": "Get\u0020the\u0020current\u0020stream\u0020name.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStreamName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Get\u0020the\u0020current\u0020stream.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStreamContext\u0028\u0029", + "name": "getStreamContext", + "summary": "Get\u0020the\u0020current\u0020stream\u0020context.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStreamContext" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStreamHandler\u0028\u0029", + "name": "getStreamHandler", + "summary": "Get\u0020stream\u0020handler\u0020according\u0020to\u0020its\u0020name.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStreamHandler" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A_setStream\u0028\u0029", + "name": "_setStream", + "summary": "Set\u0020the\u0020current\u0020stream.\u0020Useful\u0020to\u0020manage\u0020a\u0020stack\u0020of\u0020streams\u0020\u0028e.g.\u0020socket\nand\u0020select\u0029.\u0020Notice\u0020that\u0020it\u0020could\u0020be\u0020unsafe\u0020to\u0020use\u0020this\u0020method\u0020without\ntaking\u0020time\u0020to\u0020think\u0020about\u0020it\u0020two\u0020minutes.\u0020Resource\u0020of\u0020type\u0020\u201CUnknown\u201D\u0020is\nconsidered\u0020as\u0020valid.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method__setStream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AisOpened\u0028\u0029", + "name": "isOpened", + "summary": "Check\u0020if\u0020the\u0020stream\u0020is\u0020opened.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_isOpened" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AsetStreamTimeout\u0028\u0029", + "name": "setStreamTimeout", + "summary": "Set\u0020the\u0020timeout\u0020period.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_setStreamTimeout" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AhasBeenDeferred\u0028\u0029", + "name": "hasBeenDeferred", + "summary": "Whether\u0020the\u0020opening\u0020of\u0020the\u0020stream\u0020has\u0020been\u0020deferred.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_hasBeenDeferred" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AhasTimedOut\u0028\u0029", + "name": "hasTimedOut", + "summary": "Check\u0020whether\u0020the\u0020connection\u0020has\u0020timed\u0020out\u0020or\u0020not.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_hasTimedOut" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AsetStreamBlocking\u0028\u0029", + "name": "setStreamBlocking", + "summary": "Set\u0020blocking\/non\u002Dblocking\u0020mode.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_setStreamBlocking" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AsetStreamBuffer\u0028\u0029", + "name": "setStreamBuffer", + "summary": "Set\u0020stream\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_setStreamBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AdisableStreamBuffer\u0028\u0029", + "name": "disableStreamBuffer", + "summary": "Disable\u0020stream\u0020buffering.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_disableStreamBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStreamBufferSize\u0028\u0029", + "name": "getStreamBufferSize", + "summary": "Get\u0020stream\u0020buffer\u0020size.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStreamBufferSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStreamWrapperName\u0028\u0029", + "name": "getStreamWrapperName", + "summary": "Get\u0020stream\u0020wrapper\u0020name.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStreamWrapperName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AgetStreamMetaData\u0028\u0029", + "name": "getStreamMetaData", + "summary": "Get\u0020stream\u0020meta\u0020data.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_getStreamMetaData" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AisBorrowing\u0028\u0029", + "name": "isBorrowing", + "summary": "Whether\u0020this\u0020stream\u0020is\u0020already\u0020opened\u0020by\u0020another\u0020handler.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method_isBorrowing" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A_notify\u0028\u0029", + "name": "_notify", + "summary": "Notification\u0020callback.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method__notify" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A_Hoa_Stream\u0028\u0029", + "name": "_Hoa_Stream", + "summary": "Call\u0020the\u0020\u0024handler\u002D\u003Eclose\u0028\u0029\u0020method\u0020on\u0020each\u0020stream\u0020in\u0020the\u0020static\u0020stream\nregister.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method__Hoa_Stream" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Transform\u0020object\u0020to\u0020string.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method___toString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "Close\u0020the\u0020stream\u0020when\u0020destructing.", + "url": "classes/Psy-Readline-Hoa-Stream.html#method___destruct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003ANAME", + "name": "NAME", + "summary": "Name\u0020index\u0020in\u0020the\u0020stream\u0020bucket.", + "url": "classes/Psy-Readline-Hoa-Stream.html#constant_NAME" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003AHANDLER", + "name": "HANDLER", + "summary": "Handler\u0020index\u0020in\u0020the\u0020stream\u0020bucket.", + "url": "classes/Psy-Readline-Hoa-Stream.html#constant_HANDLER" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003ARESOURCE", + "name": "RESOURCE", + "summary": "Resource\u0020index\u0020in\u0020the\u0020stream\u0020bucket.", + "url": "classes/Psy-Readline-Hoa-Stream.html#constant_RESOURCE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003ACONTEXT", + "name": "CONTEXT", + "summary": "Context\u0020index\u0020in\u0020the\u0020stream\u0020bucket.", + "url": "classes/Psy-Readline-Hoa-Stream.html#constant_CONTEXT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003ADEFAULT_BUFFER_SIZE", + "name": "DEFAULT_BUFFER_SIZE", + "summary": "Default\u0020buffer\u0020size.", + "url": "classes/Psy-Readline-Hoa-Stream.html#constant_DEFAULT_BUFFER_SIZE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_bucket", + "name": "_bucket", + "summary": "Current\u0020stream\u0020bucket.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__bucket" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_register", + "name": "_register", + "summary": "Static\u0020stream\u0020register.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__register" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_bufferSize", + "name": "_bufferSize", + "summary": "Buffer\u0020size\u0020\u0028default\u0020is\u00208Ko\u0029.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__bufferSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_streamName", + "name": "_streamName", + "summary": "Original\u0020stream\u0020name,\u0020given\u0020to\u0020the\u0020stream\u0020constructor.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__streamName" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_context", + "name": "_context", + "summary": "Context\u0020name.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__context" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_hasBeenDeferred", + "name": "_hasBeenDeferred", + "summary": "Whether\u0020the\u0020opening\u0020has\u0020been\u0020deferred.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__hasBeenDeferred" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Stream\u003A\u003A\u0024_borrowing", + "name": "_borrowing", + "summary": "Whether\u0020this\u0020stream\u0020is\u0020already\u0020opened\u0020by\u0020another\u0020handler.", + "url": "classes/Psy-Readline-Hoa-Stream.html#property__borrowing" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\_Protocol", + "name": "_Protocol", + "summary": "Class\u0020\\Hoa\\Stream\\_Protocol.", + "url": "classes/Psy-Readline-Hoa-Protocol.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\_Protocol\u003A\u003AreachId\u0028\u0029", + "name": "reachId", + "summary": "ID\u0020of\u0020the\u0020component.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#method_reachId" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\_Protocol\u003A\u003A\u0024_name", + "name": "_name", + "summary": "Component\u0027s\u0020name.", + "url": "classes/Psy-Readline-Hoa-Protocol.html#property__name" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamBufferable", + "name": "StreamBufferable", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Bufferable.", + "url": "classes/Psy-Readline-Hoa-StreamBufferable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamBufferable\u003A\u003AnewBuffer\u0028\u0029", + "name": "newBuffer", + "summary": "Start\u0020a\u0020new\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-StreamBufferable.html#method_newBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamBufferable\u003A\u003Aflush\u0028\u0029", + "name": "flush", + "summary": "Flush\u0020the\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-StreamBufferable.html#method_flush" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamBufferable\u003A\u003AdeleteBuffer\u0028\u0029", + "name": "deleteBuffer", + "summary": "Delete\u0020buffer.", + "url": "classes/Psy-Readline-Hoa-StreamBufferable.html#method_deleteBuffer" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamBufferable\u003A\u003AgetBufferLevel\u0028\u0029", + "name": "getBufferLevel", + "summary": "Get\u0020bufffer\u0020level.", + "url": "classes/Psy-Readline-Hoa-StreamBufferable.html#method_getBufferLevel" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamBufferable\u003A\u003AgetBufferSize\u0028\u0029", + "name": "getBufferSize", + "summary": "Get\u0020buffer\u0020size.", + "url": "classes/Psy-Readline-Hoa-StreamBufferable.html#method_getBufferSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext", + "name": "StreamContext", + "summary": "Class\u0020\\Hoa\\Stream\\Context.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020context.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AgetInstance\u0028\u0029", + "name": "getInstance", + "summary": "Multiton.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_getInstance" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AgetId\u0028\u0029", + "name": "getId", + "summary": "Get\u0020context\u0020ID.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_getId" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AcontextExists\u0028\u0029", + "name": "contextExists", + "summary": "Check\u0020if\u0020a\u0020context\u0020exists.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_contextExists" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Set\u0020options.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_setOptions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AsetParameters\u0028\u0029", + "name": "setParameters", + "summary": "Set\u0020parameters.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_setParameters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Get\u0020options.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_getOptions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "Get\u0020parameters.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_getParameters" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "Get\u0020context\u0020as\u0020a\u0020resource.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#method_getContext" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003A\u0024_id", + "name": "_id", + "summary": "Context\u0020ID.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#property__id" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003A\u0024_context", + "name": "_context", + "summary": "", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#property__context" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamContext\u003A\u003A\u0024_instances", + "name": "_instances", + "summary": "Multiton.", + "url": "classes/Psy-Readline-Hoa-StreamContext.html#property__instances" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamException", + "name": "StreamException", + "summary": "Class\u0020\\Hoa\\Stream\\Exception.", + "url": "classes/Psy-Readline-Hoa-StreamException.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn", + "name": "StreamIn", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\In.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003Aeof\u0028\u0029", + "name": "eof", + "summary": "Test\u0020for\u0020end\u002Dof\u002Dstream.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_eof" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_read" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadString\u0028\u0029", + "name": "readString", + "summary": "Alias\u0020of\u0020\u0024this\u002D\u003Eread\u0028\u0029.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadCharacter\u0028\u0029", + "name": "readCharacter", + "summary": "Read\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadBoolean\u0028\u0029", + "name": "readBoolean", + "summary": "Read\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadInteger\u0028\u0029", + "name": "readInteger", + "summary": "Read\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadFloat\u0028\u0029", + "name": "readFloat", + "summary": "Read\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadArray\u0028\u0029", + "name": "readArray", + "summary": "Read\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadLine\u0028\u0029", + "name": "readLine", + "summary": "Read\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003AreadAll\u0028\u0029", + "name": "readAll", + "summary": "Read\u0020all,\u0020i.e.\u0020read\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_readAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamIn\u003A\u003Ascanf\u0028\u0029", + "name": "scanf", + "summary": "Parse\u0020input\u0020from\u0020a\u0020stream\u0020according\u0020to\u0020a\u0020format.", + "url": "classes/Psy-Readline-Hoa-StreamIn.html#method_scanf" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamLockable", + "name": "StreamLockable", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Lockable.", + "url": "classes/Psy-Readline-Hoa-StreamLockable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamLockable\u003A\u003Alock\u0028\u0029", + "name": "lock", + "summary": "Portable\u0020advisory\u0020locking.", + "url": "classes/Psy-Readline-Hoa-StreamLockable.html#method_lock" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamLockable\u003A\u003ALOCK_SHARED", + "name": "LOCK_SHARED", + "summary": "Acquire\u0020a\u0020shared\u0020lock\u0020\u0028reader\u0029.", + "url": "classes/Psy-Readline-Hoa-StreamLockable.html#constant_LOCK_SHARED" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamLockable\u003A\u003ALOCK_EXCLUSIVE", + "name": "LOCK_EXCLUSIVE", + "summary": "Acquire\u0020an\u0020exclusive\u0020lock\u0020\u0028writer\u0029.", + "url": "classes/Psy-Readline-Hoa-StreamLockable.html#constant_LOCK_EXCLUSIVE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamLockable\u003A\u003ALOCK_RELEASE", + "name": "LOCK_RELEASE", + "summary": "Release\u0020a\u0020lock\u0020\u0028shared\u0020or\u0020exclusive\u0029.", + "url": "classes/Psy-Readline-Hoa-StreamLockable.html#constant_LOCK_RELEASE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamLockable\u003A\u003ALOCK_NO_BLOCK", + "name": "LOCK_NO_BLOCK", + "summary": "If\u0020we\u0020do\u0020not\u0020want\u0020\u0024this\u002D\u003Elock\u0028\u0029\u0020to\u0020block\u0020while\u0020locking.", + "url": "classes/Psy-Readline-Hoa-StreamLockable.html#constant_LOCK_NO_BLOCK" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut", + "name": "StreamOut", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Out.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020n\u0020characters.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_write" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteString\u0028\u0029", + "name": "writeString", + "summary": "Write\u0020a\u0020string.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteCharacter\u0028\u0029", + "name": "writeCharacter", + "summary": "Write\u0020a\u0020character.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeCharacter" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteBoolean\u0028\u0029", + "name": "writeBoolean", + "summary": "Write\u0020a\u0020boolean.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeBoolean" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteInteger\u0028\u0029", + "name": "writeInteger", + "summary": "Write\u0020an\u0020integer.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeInteger" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteFloat\u0028\u0029", + "name": "writeFloat", + "summary": "Write\u0020a\u0020float.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeFloat" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteArray\u0028\u0029", + "name": "writeArray", + "summary": "Write\u0020an\u0020array.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeArray" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteLine\u0028\u0029", + "name": "writeLine", + "summary": "Write\u0020a\u0020line.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeLine" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003AwriteAll\u0028\u0029", + "name": "writeAll", + "summary": "Write\u0020all,\u0020i.e.\u0020as\u0020much\u0020as\u0020possible.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_writeAll" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamOut\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncate\u0020a\u0020stream\u0020to\u0020a\u0020given\u0020length.", + "url": "classes/Psy-Readline-Hoa-StreamOut.html#method_truncate" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPathable", + "name": "StreamPathable", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Pathable.", + "url": "classes/Psy-Readline-Hoa-StreamPathable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPathable\u003A\u003AgetBasename\u0028\u0029", + "name": "getBasename", + "summary": "Get\u0020filename\u0020component\u0020of\u0020path.", + "url": "classes/Psy-Readline-Hoa-StreamPathable.html#method_getBasename" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPathable\u003A\u003AgetDirname\u0028\u0029", + "name": "getDirname", + "summary": "Get\u0020directory\u0020name\u0020component\u0020of\u0020path.", + "url": "classes/Psy-Readline-Hoa-StreamPathable.html#method_getDirname" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable", + "name": "StreamPointable", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Pointable.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable\u003A\u003Arewind\u0028\u0029", + "name": "rewind", + "summary": "Rewind\u0020the\u0020position\u0020of\u0020a\u0020stream\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html#method_rewind" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable\u003A\u003Aseek\u0028\u0029", + "name": "seek", + "summary": "Seek\u0020on\u0020a\u0020stream\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html#method_seek" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable\u003A\u003Atell\u0028\u0029", + "name": "tell", + "summary": "Get\u0020the\u0020current\u0020position\u0020of\u0020the\u0020stream\u0020pointer.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html#method_tell" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable\u003A\u003ASEEK_SET", + "name": "SEEK_SET", + "summary": "Set\u0020position\u0020equal\u0020to\u0020\u0024offset\u0020bytes.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html#constant_SEEK_SET" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable\u003A\u003ASEEK_CURRENT", + "name": "SEEK_CURRENT", + "summary": "Set\u0020position\u0020to\u0020current\u0020location\u0020plus\u0020\u0024offset.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html#constant_SEEK_CURRENT" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamPointable\u003A\u003ASEEK_END", + "name": "SEEK_END", + "summary": "Set\u0020position\u0020to\u0020end\u002Dof\u002Dfile\u0020plus\u0020\u0024offset.", + "url": "classes/Psy-Readline-Hoa-StreamPointable.html#constant_SEEK_END" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable", + "name": "StreamStatable", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Statable.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetSize\u0028\u0029", + "name": "getSize", + "summary": "Get\u0020size.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getSize" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetStatistic\u0028\u0029", + "name": "getStatistic", + "summary": "Get\u0020informations\u0020about\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getStatistic" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetATime\u0028\u0029", + "name": "getATime", + "summary": "Get\u0020last\u0020access\u0020time\u0020of\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getATime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetCTime\u0028\u0029", + "name": "getCTime", + "summary": "Get\u0020inode\u0020change\u0020time\u0020of\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getCTime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetMTime\u0028\u0029", + "name": "getMTime", + "summary": "Get\u0020file\u0020modification\u0020time.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getMTime" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetGroup\u0028\u0029", + "name": "getGroup", + "summary": "Get\u0020file\u0020group.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getGroup" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetOwner\u0028\u0029", + "name": "getOwner", + "summary": "Get\u0020file\u0020owner.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getOwner" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AgetPermissions\u0028\u0029", + "name": "getPermissions", + "summary": "Get\u0020file\u0020permissions.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_getPermissions" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AisReadable\u0028\u0029", + "name": "isReadable", + "summary": "Check\u0020if\u0020the\u0020file\u0020is\u0020readable.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_isReadable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AisWritable\u0028\u0029", + "name": "isWritable", + "summary": "Check\u0020if\u0020the\u0020file\u0020is\u0020writable.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_isWritable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AisExecutable\u0028\u0029", + "name": "isExecutable", + "summary": "Check\u0020if\u0020the\u0020file\u0020is\u0020executable.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_isExecutable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AclearStatisticCache\u0028\u0029", + "name": "clearStatisticCache", + "summary": "Clear\u0020file\u0020status\u0020cache.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_clearStatisticCache" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003AclearAllStatisticCaches\u0028\u0029", + "name": "clearAllStatisticCaches", + "summary": "Clear\u0020all\u0020files\u0020status\u0020cache.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#method_clearAllStatisticCaches" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamStatable\u003A\u003ASIZE_UNDEFINED", + "name": "SIZE_UNDEFINED", + "summary": "Size\u0020is\u0020undefined.", + "url": "classes/Psy-Readline-Hoa-StreamStatable.html#constant_SIZE_UNDEFINED" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable", + "name": "StreamTouchable", + "summary": "Interface\u0020\\Hoa\\Stream\\IStream\\Touchable.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003Atouch\u0028\u0029", + "name": "touch", + "summary": "Set\u0020access\u0020and\u0020modification\u0020time\u0020of\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_touch" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003Acopy\u0028\u0029", + "name": "copy", + "summary": "Copy\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_copy" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003Amove\u0028\u0029", + "name": "move", + "summary": "Move\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_move" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020a\u0020file.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_delete" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003AchangeGroup\u0028\u0029", + "name": "changeGroup", + "summary": "Change\u0020file\u0020group.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_changeGroup" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003AchangeMode\u0028\u0029", + "name": "changeMode", + "summary": "Change\u0020file\u0020mode.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_changeMode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003AchangeOwner\u0028\u0029", + "name": "changeOwner", + "summary": "Change\u0020file\u0020owner.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_changeOwner" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003Aumask\u0028\u0029", + "name": "umask", + "summary": "Change\u0020the\u0020current\u0020umask.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#method_umask" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003AOVERWRITE", + "name": "OVERWRITE", + "summary": "Overwrite\u0020file\u0020if\u0020already\u0020exists.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#constant_OVERWRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003ADO_NOT_OVERWRITE", + "name": "DO_NOT_OVERWRITE", + "summary": "Do\u0020not\u0020overwrite\u0020file\u0020if\u0020already\u0020exists.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#constant_DO_NOT_OVERWRITE" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003AMAKE_DIRECTORY", + "name": "MAKE_DIRECTORY", + "summary": "Make\u0020directory\u0020if\u0020does\u0020not\u0020exist.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#constant_MAKE_DIRECTORY" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\StreamTouchable\u003A\u003ADO_NOT_MAKE_DIRECTORY", + "name": "DO_NOT_MAKE_DIRECTORY", + "summary": "Do\u0020not\u0020make\u0020directory\u0020if\u0020does\u0020not\u0020exist.", + "url": "classes/Psy-Readline-Hoa-StreamTouchable.html#constant_DO_NOT_MAKE_DIRECTORY" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Ustring", + "name": "Ustring", + "summary": "This\u0020class\u0020represents\u0020a\u0020UTF\u002D8\u0020string.", + "url": "classes/Psy-Readline-Hoa-Ustring.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Ustring\u003A\u003AcheckMbString\u0028\u0029", + "name": "checkMbString", + "summary": "Check\u0020if\u0020ext\/mbstring\u0020is\u0020available.", + "url": "classes/Psy-Readline-Hoa-Ustring.html#method_checkMbString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Ustring\u003A\u003AgetCharWidth\u0028\u0029", + "name": "getCharWidth", + "summary": "Get\u0020the\u0020number\u0020of\u0020column\u0020positions\u0020of\u0020a\u0020wide\u002Dcharacter.", + "url": "classes/Psy-Readline-Hoa-Ustring.html#method_getCharWidth" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Ustring\u003A\u003AisCharPrintable\u0028\u0029", + "name": "isCharPrintable", + "summary": "Check\u0020whether\u0020the\u0020character\u0020is\u0020printable\u0020or\u0020not.", + "url": "classes/Psy-Readline-Hoa-Ustring.html#method_isCharPrintable" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Ustring\u003A\u003AtoCode\u0028\u0029", + "name": "toCode", + "summary": "Get\u0020a\u0020decimal\u0020code\u0020representation\u0020of\u0020a\u0020specific\u0020character.", + "url": "classes/Psy-Readline-Hoa-Ustring.html#method_toCode" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable", + "name": "Xcallable", + "summary": "Build\u0020a\u0020callable\u0020object,\u0020i.e.\u0020\u0060function\u0060,\u0020\u0060class\u003A\u003Amethod\u0060,\u0020\u0060object\u002D\u003Emethod\u0060\u0020or\nclosure.\u0020They\u0020all\u0020have\u0020the\u0020same\u0020behaviour.\u0020This\u0020callable\u0020is\u0020an\u0020extension\u0020of\nnative\u0020PHP\u0020callable\u0020\u0028aka\u0020callback\u0029\u0020to\u0020integrate\u0020Hoa\u0027s\u0020structures.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Allocates\u0020a\u0020xcallable\u0020based\u0020on\u0020a\u0020callback.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "Calls\u0020the\u0020callable.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#method___invoke" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003AgetValidCallback\u0028\u0029", + "name": "getValidCallback", + "summary": "Returns\u0020a\u0020valid\u0020PHP\u0020callback.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#method_getValidCallback" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003AgetHash\u0028\u0029", + "name": "getHash", + "summary": "Computes\u0020the\u0020hash\u0020of\u0020this\u0020callable.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#method_getHash" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "The\u0020string\u0020representation\u0020of\u0020a\u0020callable\u0020is\u0020its\u0020hash.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#method___toString" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003Afrom\u0028\u0029", + "name": "from", + "summary": "Hoa\u0027s\u0020xcallable\u0028\u0029\u0020helper.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#method_from" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003A\u0024_callback", + "name": "_callback", + "summary": "Callback\u0020with\u0020the\u0020PHP\u0020format.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#property__callback" + }, { + "fqsen": "\\Psy\\Readline\\Hoa\\Xcallable\u003A\u003A\u0024_hash", + "name": "_hash", + "summary": "Callable\u0020hash.", + "url": "classes/Psy-Readline-Hoa-Xcallable.html#property__hash" + }, { + "fqsen": "\\Psy\\Readline\\Libedit", + "name": "Libedit", + "summary": "A\u0020Libedit\u002Dbased\u0020Readline\u0020implementation.", + "url": "classes/Psy-Readline-Libedit.html" + }, { + "fqsen": "\\Psy\\Readline\\Libedit\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Let\u0027s\u0020emulate\u0020GNU\u0020Readline\u0020by\u0020manually\u0020reading\u0020and\u0020parsing\u0020the\u0020history\u0020file\u0021", + "url": "classes/Psy-Readline-Libedit.html#method_isSupported" + }, { + "fqsen": "\\Psy\\Readline\\Libedit\u003A\u003AsupportsBracketedPaste\u0028\u0029", + "name": "supportsBracketedPaste", + "summary": "Check\u0020whether\u0020this\u0020readline\u0020implementation\u0020supports\u0020bracketed\u0020paste.", + "url": "classes/Psy-Readline-Libedit.html#method_supportsBracketedPaste" + }, { + "fqsen": "\\Psy\\Readline\\Libedit\u003A\u003AlistHistory\u0028\u0029", + "name": "listHistory", + "summary": "List\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Libedit.html#method_listHistory" + }, { + "fqsen": "\\Psy\\Readline\\Libedit\u003A\u003AwriteHistory\u0028\u0029", + "name": "writeHistory", + "summary": "Write\u0020the\u0020command\u0020history\u0020to\u0020a\u0020file.", + "url": "classes/Psy-Readline-Libedit.html#method_writeHistory" + }, { + "fqsen": "\\Psy\\Readline\\Libedit\u003A\u003AparseHistoryLine\u0028\u0029", + "name": "parseHistoryLine", + "summary": "From\u0020GNUReadline\u0020\u0028readline\/histfile.c\u0020\u0026\u0020readline\/histexpand.c\u0029\u003A\nlines\u0020starting\u0020with\u0020\u0022\\0\u0022\u0020are\u0020comments\u0020or\u0020timestamps\u003B\nif\u0020\u0022\\0\u0022\u0020is\u0020found\u0020in\u0020an\u0020entry,\neverything\u0020from\u0020it\u0020until\u0020the\u0020next\u0020line\u0020is\u0020a\u0020comment.", + "url": "classes/Psy-Readline-Libedit.html#method_parseHistoryLine" + }, { + "fqsen": "\\Psy\\Readline\\Libedit\u003A\u003A\u0024hasWarnedOwnership", + "name": "hasWarnedOwnership", + "summary": "", + "url": "classes/Psy-Readline-Libedit.html#property_hasWarnedOwnership" + }, { + "fqsen": "\\Psy\\Readline\\Readline", + "name": "Readline", + "summary": "An\u0020interface\u0020abstracting\u0020the\u0020various\u0020readline_\u002A\u0020functions.", + "url": "classes/Psy-Readline-Readline.html" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Readline-Readline.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Check\u0020whether\u0020this\u0020Readline\u0020class\u0020is\u0020supported\u0020by\u0020the\u0020current\u0020system.", + "url": "classes/Psy-Readline-Readline.html#method_isSupported" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AsupportsBracketedPaste\u0028\u0029", + "name": "supportsBracketedPaste", + "summary": "Check\u0020whether\u0020this\u0020Readline\u0020class\u0020supports\u0020bracketed\u0020paste.", + "url": "classes/Psy-Readline-Readline.html#method_supportsBracketedPaste" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AaddHistory\u0028\u0029", + "name": "addHistory", + "summary": "Add\u0020a\u0020line\u0020to\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Readline.html#method_addHistory" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AclearHistory\u0028\u0029", + "name": "clearHistory", + "summary": "Clear\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Readline.html#method_clearHistory" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AlistHistory\u0028\u0029", + "name": "listHistory", + "summary": "List\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Readline.html#method_listHistory" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AreadHistory\u0028\u0029", + "name": "readHistory", + "summary": "Read\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Readline.html#method_readHistory" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003Areadline\u0028\u0029", + "name": "readline", + "summary": "Read\u0020a\u0020single\u0020line\u0020of\u0020input\u0020from\u0020the\u0020user.", + "url": "classes/Psy-Readline-Readline.html#method_readline" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003Aredisplay\u0028\u0029", + "name": "redisplay", + "summary": "Redraw\u0020readline\u0020to\u0020redraw\u0020the\u0020display.", + "url": "classes/Psy-Readline-Readline.html#method_redisplay" + }, { + "fqsen": "\\Psy\\Readline\\Readline\u003A\u003AwriteHistory\u0028\u0029", + "name": "writeHistory", + "summary": "Write\u0020the\u0020command\u0020history\u0020to\u0020a\u0020file.", + "url": "classes/Psy-Readline-Readline.html#method_writeHistory" + }, { + "fqsen": "\\Psy\\Readline\\Transient", + "name": "Transient", + "summary": "An\u0020array\u002Dbased\u0020Readline\u0020emulation\u0020implementation.", + "url": "classes/Psy-Readline-Transient.html" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Transient\u0020Readline\u0020is\u0020always\u0020supported.", + "url": "classes/Psy-Readline-Transient.html#method_isSupported" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AsupportsBracketedPaste\u0028\u0029", + "name": "supportsBracketedPaste", + "summary": "Check\u0020whether\u0020this\u0020Readline\u0020class\u0020supports\u0020bracketed\u0020paste.", + "url": "classes/Psy-Readline-Transient.html#method_supportsBracketedPaste" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Transient\u0020Readline\u0020constructor.", + "url": "classes/Psy-Readline-Transient.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AaddHistory\u0028\u0029", + "name": "addHistory", + "summary": "Add\u0020a\u0020line\u0020to\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Transient.html#method_addHistory" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AclearHistory\u0028\u0029", + "name": "clearHistory", + "summary": "Clear\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Transient.html#method_clearHistory" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AlistHistory\u0028\u0029", + "name": "listHistory", + "summary": "List\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Transient.html#method_listHistory" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AreadHistory\u0028\u0029", + "name": "readHistory", + "summary": "Read\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Transient.html#method_readHistory" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003Areadline\u0028\u0029", + "name": "readline", + "summary": "Read\u0020a\u0020single\u0020line\u0020of\u0020input\u0020from\u0020the\u0020user.", + "url": "classes/Psy-Readline-Transient.html#method_readline" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003Aredisplay\u0028\u0029", + "name": "redisplay", + "summary": "Redraw\u0020readline\u0020to\u0020redraw\u0020the\u0020display.", + "url": "classes/Psy-Readline-Transient.html#method_redisplay" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AwriteHistory\u0028\u0029", + "name": "writeHistory", + "summary": "Write\u0020the\u0020command\u0020history\u0020to\u0020a\u0020file.", + "url": "classes/Psy-Readline-Transient.html#method_writeHistory" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003AgetStdin\u0028\u0029", + "name": "getStdin", + "summary": "Get\u0020a\u0020STDIN\u0020file\u0020handle.", + "url": "classes/Psy-Readline-Transient.html#method_getStdin" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003A\u0024history", + "name": "history", + "summary": "", + "url": "classes/Psy-Readline-Transient.html#property_history" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003A\u0024historySize", + "name": "historySize", + "summary": "", + "url": "classes/Psy-Readline-Transient.html#property_historySize" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003A\u0024eraseDups", + "name": "eraseDups", + "summary": "", + "url": "classes/Psy-Readline-Transient.html#property_eraseDups" + }, { + "fqsen": "\\Psy\\Readline\\Transient\u003A\u003A\u0024stdin", + "name": "stdin", + "summary": "", + "url": "classes/Psy-Readline-Transient.html#property_stdin" + }, { + "fqsen": "\\Psy\\Readline\\Userland", + "name": "Userland", + "summary": "Userland\u0020Readline\u0020implementation.", + "url": "classes/Psy-Readline-Userland.html" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Check\u0020whether\u0020this\u0020Readline\u0020class\u0020is\u0020supported\u0020by\u0020the\u0020current\u0020system.", + "url": "classes/Psy-Readline-Userland.html#method_isSupported" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AsupportsBracketedPaste\u0028\u0029", + "name": "supportsBracketedPaste", + "summary": "Check\u0020whether\u0020this\u0020Readline\u0020class\u0020supports\u0020bracketed\u0020paste.", + "url": "classes/Psy-Readline-Userland.html#method_supportsBracketedPaste" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Doesn\u0027t\u0020\u0028currently\u0029\u0020support\u0020history\u0020file,\u0020size\u0020or\u0020erase\u0020dupes\u0020configs.", + "url": "classes/Psy-Readline-Userland.html#method___construct" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AbootstrapHoa\u0028\u0029", + "name": "bootstrapHoa", + "summary": "Bootstrap\u0020some\u0020things\u0020that\u0020Hoa\u0020used\u0020to\u0020do\u0020itself.", + "url": "classes/Psy-Readline-Userland.html#method_bootstrapHoa" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AaddHistory\u0028\u0029", + "name": "addHistory", + "summary": "Add\u0020a\u0020line\u0020to\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Userland.html#method_addHistory" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AclearHistory\u0028\u0029", + "name": "clearHistory", + "summary": "Clear\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Userland.html#method_clearHistory" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AlistHistory\u0028\u0029", + "name": "listHistory", + "summary": "List\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Userland.html#method_listHistory" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AreadHistory\u0028\u0029", + "name": "readHistory", + "summary": "Read\u0020the\u0020command\u0020history.", + "url": "classes/Psy-Readline-Userland.html#method_readHistory" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003Areadline\u0028\u0029", + "name": "readline", + "summary": "Read\u0020a\u0020single\u0020line\u0020of\u0020input\u0020from\u0020the\u0020user.", + "url": "classes/Psy-Readline-Userland.html#method_readline" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003Aredisplay\u0028\u0029", + "name": "redisplay", + "summary": "Redraw\u0020readline\u0020to\u0020redraw\u0020the\u0020display.", + "url": "classes/Psy-Readline-Userland.html#method_redisplay" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003AwriteHistory\u0028\u0029", + "name": "writeHistory", + "summary": "Write\u0020the\u0020command\u0020history\u0020to\u0020a\u0020file.", + "url": "classes/Psy-Readline-Userland.html#method_writeHistory" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003A\u0024hoaReadline", + "name": "hoaReadline", + "summary": "", + "url": "classes/Psy-Readline-Userland.html#property_hoaReadline" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003A\u0024lastPrompt", + "name": "lastPrompt", + "summary": "", + "url": "classes/Psy-Readline-Userland.html#property_lastPrompt" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003A\u0024tput", + "name": "tput", + "summary": "", + "url": "classes/Psy-Readline-Userland.html#property_tput" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Psy-Readline-Userland.html#property_input" + }, { + "fqsen": "\\Psy\\Readline\\Userland\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Psy-Readline-Userland.html#property_output" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant", + "name": "ReflectionClassConstant", + "summary": "Somehow\u0020the\u0020standard\u0020reflection\u0020library\u0020didn\u0027t\u0020include\u0020class\u0020constants\u0020until\u00207.1.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020ReflectionClassConstant\u0020object.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method___construct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003Aexport\u0028\u0029", + "name": "export", + "summary": "Exports\u0020a\u0020reflection.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_export" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetDeclaringClass\u0028\u0029", + "name": "getDeclaringClass", + "summary": "Gets\u0020the\u0020declaring\u0020class.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getDeclaringClass" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetDocComment\u0028\u0029", + "name": "getDocComment", + "summary": "Get\u0020the\u0020constant\u0027s\u0020docblock.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getDocComment" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetModifiers\u0028\u0029", + "name": "getModifiers", + "summary": "Gets\u0020the\u0020class\u0020constant\u0020modifiers.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getModifiers" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020constant\u0020name.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Gets\u0020the\u0020value\u0020of\u0020the\u0020constant.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getValue" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AisPrivate\u0028\u0029", + "name": "isPrivate", + "summary": "Checks\u0020if\u0020class\u0020constant\u0020is\u0020private.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_isPrivate" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AisProtected\u0028\u0029", + "name": "isProtected", + "summary": "Checks\u0020if\u0020class\u0020constant\u0020is\u0020protected.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_isProtected" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AisPublic\u0028\u0029", + "name": "isPublic", + "summary": "Checks\u0020if\u0020class\u0020constant\u0020is\u0020public.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_isPublic" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "To\u0020string.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method___toString" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetFileName\u0028\u0029", + "name": "getFileName", + "summary": "Gets\u0020the\u0020constant\u0027s\u0020file\u0020name.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getFileName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Get\u0020the\u0020code\u0020start\u0020line.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getStartLine" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "Get\u0020the\u0020code\u0020end\u0020line.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_getEndLine" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Get\u0020a\u0020ReflectionClassConstant\u0020instance.", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#method_create" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#property_class" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#property_name" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionClassConstant\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionClassConstant.html#property_value" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant", + "name": "ReflectionConstant", + "summary": "Somehow\u0020the\u0020standard\u0020reflection\u0020library\u0020didn\u0027t\u0020include\u0020class\u0020constants\u0020until\u00207.1.", + "url": "classes/Psy-Reflection-ReflectionConstant.html" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "\u007BinheritDoc\u007D.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method___construct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_", + "name": "ReflectionConstant_", + "summary": "Somehow\u0020the\u0020standard\u0020reflection\u0020library\u0020doesn\u0027t\u0020include\u0020constants.", + "url": "classes/Psy-Reflection-ReflectionConstant.html" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020ReflectionConstant_\u0020object.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method___construct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003Aexport\u0028\u0029", + "name": "export", + "summary": "Exports\u0020a\u0020reflection.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_export" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AisMagicConstant\u0028\u0029", + "name": "isMagicConstant", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_isMagicConstant" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetDocComment\u0028\u0029", + "name": "getDocComment", + "summary": "Get\u0020the\u0020constant\u0027s\u0020docblock.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getDocComment" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020constant\u0020name.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetNamespaceName\u0028\u0029", + "name": "getNamespaceName", + "summary": "Gets\u0020the\u0020namespace\u0020name.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getNamespaceName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Gets\u0020the\u0020value\u0020of\u0020the\u0020constant.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getValue" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AinNamespace\u0028\u0029", + "name": "inNamespace", + "summary": "Checks\u0020if\u0020this\u0020constant\u0020is\u0020defined\u0020in\u0020a\u0020namespace.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_inNamespace" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "To\u0020string.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method___toString" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetFileName\u0028\u0029", + "name": "getFileName", + "summary": "Gets\u0020the\u0020constant\u0027s\u0020file\u0020name.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getFileName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetStartLine\u0028\u0029", + "name": "getStartLine", + "summary": "Get\u0020the\u0020code\u0020start\u0020line.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getStartLine" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003AgetEndLine\u0028\u0029", + "name": "getEndLine", + "summary": "Get\u0020the\u0020code\u0020end\u0020line.", + "url": "classes/Psy-Reflection-ReflectionConstant.html#method_getEndLine" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionConstant.html#property_name" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionConstant.html#property_value" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionConstant_\u003A\u003A\u0024magicConstants", + "name": "magicConstants", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionConstant.html#property_magicConstants" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct", + "name": "ReflectionLanguageConstruct", + "summary": "A\u0020fake\u0020ReflectionFunction\u0020but\u0020for\u0020language\u0020constructs.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020ReflectionLanguageConstruct\u0020object.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method___construct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003Aexport\u0028\u0029", + "name": "export", + "summary": "This\u0020can\u0027t\u0020\u0028and\u0020shouldn\u0027t\u0029\u0020do\u0020anything\u0020\u003A\u0029.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method_export" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020language\u0020construct\u0020name.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method_getName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003AreturnsReference\u0028\u0029", + "name": "returnsReference", + "summary": "None\u0020of\u0020these\u0020return\u0020references.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method_returnsReference" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "Get\u0020language\u0020construct\u0020params.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method_getParameters" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003AgetFileName\u0028\u0029", + "name": "getFileName", + "summary": "Gets\u0020the\u0020file\u0020name\u0020from\u0020a\u0020language\u0020construct.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method_getFileName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "To\u0020string.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method___toString" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003AisLanguageConstruct\u0028\u0029", + "name": "isLanguageConstruct", + "summary": "Check\u0020whether\u0020keyword\u0020is\u0020a\u0020\u0028known\u0029\u0020language\u0020construct.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#method_isLanguageConstruct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003A\u0024keyword", + "name": "keyword", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#property_keyword" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstruct\u003A\u003A\u0024languageConstructs", + "name": "languageConstructs", + "summary": "Language\u0020construct\u0020parameter\u0020definitions.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstruct.html#property_languageConstructs" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter", + "name": "ReflectionLanguageConstructParameter", + "summary": "A\u0020fake\u0020ReflectionParameter\u0020but\u0020for\u0020language\u0020construct\u0020parameters.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method___construct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "No\u0020class\u0020here.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_getClass" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AisArray\u0028\u0029", + "name": "isArray", + "summary": "Is\u0020the\u0020param\u0020an\u0020array\u003F", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_isArray" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AgetDefaultValue\u0028\u0029", + "name": "getDefaultValue", + "summary": "Get\u0020param\u0020default\u0020value.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_getDefaultValue" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020param\u0020name.", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_getName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AisOptional\u0028\u0029", + "name": "isOptional", + "summary": "Is\u0020the\u0020param\u0020optional\u003F", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_isOptional" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AisDefaultValueAvailable\u0028\u0029", + "name": "isDefaultValueAvailable", + "summary": "Does\u0020the\u0020param\u0020have\u0020a\u0020default\u0020value\u003F", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_isDefaultValueAvailable" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003AisPassedByReference\u0028\u0029", + "name": "isPassedByReference", + "summary": "Is\u0020the\u0020param\u0020passed\u0020by\u0020reference\u003F", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#method_isPassedByReference" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003A\u0024function", + "name": "function", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#property_function" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003A\u0024parameter", + "name": "parameter", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#property_parameter" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionLanguageConstructParameter\u003A\u003A\u0024opts", + "name": "opts", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionLanguageConstructParameter.html#property_opts" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionNamespace", + "name": "ReflectionNamespace", + "summary": "A\u0020fake\u0020Reflector\u0020for\u0020namespaces.", + "url": "classes/Psy-Reflection-ReflectionNamespace.html" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionNamespace\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Construct\u0020a\u0020ReflectionNamespace\u0020object.", + "url": "classes/Psy-Reflection-ReflectionNamespace.html#method___construct" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionNamespace\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020constant\u0020name.", + "url": "classes/Psy-Reflection-ReflectionNamespace.html#method_getName" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionNamespace\u003A\u003Aexport\u0028\u0029", + "name": "export", + "summary": "This\u0020can\u0027t\u0020\u0028and\u0020shouldn\u0027t\u0029\u0020do\u0020anything\u0020\u003A\u0029.", + "url": "classes/Psy-Reflection-ReflectionNamespace.html#method_export" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionNamespace\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "To\u0020string.", + "url": "classes/Psy-Reflection-ReflectionNamespace.html#method___toString" + }, { + "fqsen": "\\Psy\\Reflection\\ReflectionNamespace\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Psy-Reflection-ReflectionNamespace.html#property_name" + }, { + "fqsen": "\\Psy\\Shell", + "name": "Shell", + "summary": "The\u0020Psy\u0020Shell\u0020application.", + "url": "classes/Psy-Shell.html" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020Psy\u0020Shell.", + "url": "classes/Psy-Shell.html#method___construct" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AisIncluded\u0028\u0029", + "name": "isIncluded", + "summary": "Check\u0020whether\u0020the\u0020first\u0020thing\u0020in\u0020a\u0020backtrace\u0020is\u0020an\u0020include\u0020call.", + "url": "classes/Psy-Shell.html#method_isIncluded" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AisPhar\u0028\u0029", + "name": "isPhar", + "summary": "Check\u0020if\u0020the\u0020currently\u0020running\u0020PsySH\u0020bin\u0020is\u0020a\u0020phar\u0020archive.", + "url": "classes/Psy-Shell.html#method_isPhar" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003Adebug\u0028\u0029", + "name": "debug", + "summary": "Invoke\u0020a\u0020Psy\u0020Shell\u0020from\u0020the\u0020current\u0020context.", + "url": "classes/Psy-Shell.html#method_debug" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Adds\u0020a\u0020command\u0020object.", + "url": "classes/Psy-Shell.html#method_add" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetDefaultInputDefinition\u0028\u0029", + "name": "getDefaultInputDefinition", + "summary": "Gets\u0020the\u0020default\u0020input\u0020definition.", + "url": "classes/Psy-Shell.html#method_getDefaultInputDefinition" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetDefaultCommands\u0028\u0029", + "name": "getDefaultCommands", + "summary": "Gets\u0020the\u0020default\u0020commands\u0020that\u0020should\u0020always\u0020be\u0020available.", + "url": "classes/Psy-Shell.html#method_getDefaultCommands" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetDefaultMatchers\u0028\u0029", + "name": "getDefaultMatchers", + "summary": "", + "url": "classes/Psy-Shell.html#method_getDefaultMatchers" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetTabCompletionMatchers\u0028\u0029", + "name": "getTabCompletionMatchers", + "summary": "", + "url": "classes/Psy-Shell.html#method_getTabCompletionMatchers" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetDefaultLoopListeners\u0028\u0029", + "name": "getDefaultLoopListeners", + "summary": "Gets\u0020the\u0020default\u0020command\u0020loop\u0020listeners.", + "url": "classes/Psy-Shell.html#method_getDefaultLoopListeners" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddMatchers\u0028\u0029", + "name": "addMatchers", + "summary": "Add\u0020tab\u0020completion\u0020matchers.", + "url": "classes/Psy-Shell.html#method_addMatchers" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddTabCompletionMatchers\u0028\u0029", + "name": "addTabCompletionMatchers", + "summary": "", + "url": "classes/Psy-Shell.html#method_addTabCompletionMatchers" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AsetOutput\u0028\u0029", + "name": "setOutput", + "summary": "Set\u0020the\u0020Shell\u0020output.", + "url": "classes/Psy-Shell.html#method_setOutput" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020PsySH.", + "url": "classes/Psy-Shell.html#method_run" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AdoRun\u0028\u0029", + "name": "doRun", + "summary": "Runs\u0020PsySH.", + "url": "classes/Psy-Shell.html#method_doRun" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AdoInteractiveRun\u0028\u0029", + "name": "doInteractiveRun", + "summary": "Run\u0020PsySH\u0020in\u0020interactive\u0020mode.", + "url": "classes/Psy-Shell.html#method_doInteractiveRun" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AdoNonInteractiveRun\u0028\u0029", + "name": "doNonInteractiveRun", + "summary": "Run\u0020PsySH\u0020in\u0020non\u002Dinteractive\u0020mode.", + "url": "classes/Psy-Shell.html#method_doNonInteractiveRun" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AconfigureIO\u0028\u0029", + "name": "configureIO", + "summary": "Configures\u0020the\u0020input\u0020and\u0020output\u0020instances\u0020based\u0020on\u0020the\u0020user\u0020arguments\u0020and\u0020options.", + "url": "classes/Psy-Shell.html#method_configureIO" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AloadIncludes\u0028\u0029", + "name": "loadIncludes", + "summary": "Load\u0020user\u002Ddefined\u0020includes.", + "url": "classes/Psy-Shell.html#method_loadIncludes" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetInput\u0028\u0029", + "name": "getInput", + "summary": "Read\u0020user\u0020input.", + "url": "classes/Psy-Shell.html#method_getInput" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AinputInOpenStringOrComment\u0028\u0029", + "name": "inputInOpenStringOrComment", + "summary": "Check\u0020whether\u0020the\u0020code\u0020buffer\u0020\u0028plus\u0020current\u0020input\u0029\u0020is\u0020in\u0020an\u0020open\u0020string\u0020or\u0020comment.", + "url": "classes/Psy-Shell.html#method_inputInOpenStringOrComment" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AbeforeRun\u0028\u0029", + "name": "beforeRun", + "summary": "Run\u0020execution\u0020loop\u0020listeners\u0020before\u0020the\u0020shell\u0020session.", + "url": "classes/Psy-Shell.html#method_beforeRun" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AbeforeLoop\u0028\u0029", + "name": "beforeLoop", + "summary": "Run\u0020execution\u0020loop\u0020listeners\u0020at\u0020the\u0020start\u0020of\u0020each\u0020loop.", + "url": "classes/Psy-Shell.html#method_beforeLoop" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AonInput\u0028\u0029", + "name": "onInput", + "summary": "Run\u0020execution\u0020loop\u0020listeners\u0020on\u0020user\u0020input.", + "url": "classes/Psy-Shell.html#method_onInput" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AonExecute\u0028\u0029", + "name": "onExecute", + "summary": "Run\u0020execution\u0020loop\u0020listeners\u0020on\u0020code\u0020to\u0020be\u0020executed.", + "url": "classes/Psy-Shell.html#method_onExecute" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AafterLoop\u0028\u0029", + "name": "afterLoop", + "summary": "Run\u0020execution\u0020loop\u0020listeners\u0020after\u0020each\u0020loop.", + "url": "classes/Psy-Shell.html#method_afterLoop" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AafterRun\u0028\u0029", + "name": "afterRun", + "summary": "Run\u0020execution\u0020loop\u0020listers\u0020after\u0020the\u0020shell\u0020session.", + "url": "classes/Psy-Shell.html#method_afterRun" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AsetScopeVariables\u0028\u0029", + "name": "setScopeVariables", + "summary": "Set\u0020the\u0020variables\u0020currently\u0020in\u0020scope.", + "url": "classes/Psy-Shell.html#method_setScopeVariables" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetScopeVariables\u0028\u0029", + "name": "getScopeVariables", + "summary": "Return\u0020the\u0020set\u0020of\u0020variables\u0020currently\u0020in\u0020scope.", + "url": "classes/Psy-Shell.html#method_getScopeVariables" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetSpecialScopeVariables\u0028\u0029", + "name": "getSpecialScopeVariables", + "summary": "Return\u0020the\u0020set\u0020of\u0020magic\u0020variables\u0020currently\u0020in\u0020scope.", + "url": "classes/Psy-Shell.html#method_getSpecialScopeVariables" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetScopeVariablesDiff\u0028\u0029", + "name": "getScopeVariablesDiff", + "summary": "Return\u0020the\u0020set\u0020of\u0020variables\u0020currently\u0020in\u0020scope\u0020which\u0020differ\u0020from\u0020the\nvalues\u0020passed\u0020as\u0020\u0024currentVars.", + "url": "classes/Psy-Shell.html#method_getScopeVariablesDiff" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetUnusedCommandScopeVariableNames\u0028\u0029", + "name": "getUnusedCommandScopeVariableNames", + "summary": "Get\u0020the\u0020set\u0020of\u0020unused\u0020command\u002Dscope\u0020variable\u0020names.", + "url": "classes/Psy-Shell.html#method_getUnusedCommandScopeVariableNames" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetScopeVariableNames\u0028\u0029", + "name": "getScopeVariableNames", + "summary": "Get\u0020the\u0020set\u0020of\u0020variable\u0020names\u0020currently\u0020in\u0020scope.", + "url": "classes/Psy-Shell.html#method_getScopeVariableNames" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetScopeVariable\u0028\u0029", + "name": "getScopeVariable", + "summary": "Get\u0020a\u0020scope\u0020variable\u0020value\u0020by\u0020name.", + "url": "classes/Psy-Shell.html#method_getScopeVariable" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AsetBoundObject\u0028\u0029", + "name": "setBoundObject", + "summary": "Set\u0020the\u0020bound\u0020object\u0020\u0028\u0024this\u0020variable\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Shell.html#method_setBoundObject" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetBoundObject\u0028\u0029", + "name": "getBoundObject", + "summary": "Get\u0020the\u0020bound\u0020object\u0020\u0028\u0024this\u0020variable\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Shell.html#method_getBoundObject" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AsetBoundClass\u0028\u0029", + "name": "setBoundClass", + "summary": "Set\u0020the\u0020bound\u0020class\u0020\u0028self\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Shell.html#method_setBoundClass" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetBoundClass\u0028\u0029", + "name": "getBoundClass", + "summary": "Get\u0020the\u0020bound\u0020class\u0020\u0028self\u0029\u0020for\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Shell.html#method_getBoundClass" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AsetIncludes\u0028\u0029", + "name": "setIncludes", + "summary": "Add\u0020includes,\u0020to\u0020be\u0020parsed\u0020and\u0020executed\u0020before\u0020running\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Shell.html#method_setIncludes" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetIncludes\u0028\u0029", + "name": "getIncludes", + "summary": "Get\u0020PHP\u0020files\u0020to\u0020be\u0020parsed\u0020and\u0020executed\u0020before\u0020running\u0020the\u0020interactive\u0020shell.", + "url": "classes/Psy-Shell.html#method_getIncludes" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AhasCode\u0028\u0029", + "name": "hasCode", + "summary": "Check\u0020whether\u0020this\u0020shell\u0027s\u0020code\u0020buffer\u0020contains\u0020code.", + "url": "classes/Psy-Shell.html#method_hasCode" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AhasValidCode\u0028\u0029", + "name": "hasValidCode", + "summary": "Check\u0020whether\u0020the\u0020code\u0020in\u0020this\u0020shell\u0027s\u0020code\u0020buffer\u0020is\u0020valid.", + "url": "classes/Psy-Shell.html#method_hasValidCode" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddCode\u0028\u0029", + "name": "addCode", + "summary": "Add\u0020code\u0020to\u0020the\u0020code\u0020buffer.", + "url": "classes/Psy-Shell.html#method_addCode" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AsetCode\u0028\u0029", + "name": "setCode", + "summary": "Set\u0020the\u0020code\u0020buffer.", + "url": "classes/Psy-Shell.html#method_setCode" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetCodeBuffer\u0028\u0029", + "name": "getCodeBuffer", + "summary": "Get\u0020the\u0020current\u0020code\u0020buffer.", + "url": "classes/Psy-Shell.html#method_getCodeBuffer" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003ArunCommand\u0028\u0029", + "name": "runCommand", + "summary": "Run\u0020a\u0020Psy\u0020Shell\u0020command\u0020given\u0020the\u0020user\u0020input.", + "url": "classes/Psy-Shell.html#method_runCommand" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AresetCodeBuffer\u0028\u0029", + "name": "resetCodeBuffer", + "summary": "Reset\u0020the\u0020current\u0020code\u0020buffer.", + "url": "classes/Psy-Shell.html#method_resetCodeBuffer" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddInput\u0028\u0029", + "name": "addInput", + "summary": "Inject\u0020input\u0020into\u0020the\u0020input\u0020buffer.", + "url": "classes/Psy-Shell.html#method_addInput" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AflushCode\u0028\u0029", + "name": "flushCode", + "summary": "Flush\u0020the\u0020current\u0020\u0028valid\u0029\u0020code\u0020buffer.", + "url": "classes/Psy-Shell.html#method_flushCode" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003ApopCodeStack\u0028\u0029", + "name": "popCodeStack", + "summary": "Reset\u0020the\u0020code\u0020buffer\u0020and\u0020restore\u0020any\u0020code\u0020pushed\u0020during\u0020\u0060execute\u0060\u0020calls.", + "url": "classes/Psy-Shell.html#method_popCodeStack" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddHistory\u0028\u0029", + "name": "addHistory", + "summary": "\u0028Possibly\u0029\u0020add\u0020a\u0020line\u0020to\u0020the\u0020readline\u0020history.", + "url": "classes/Psy-Shell.html#method_addHistory" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddCodeBufferToHistory\u0028\u0029", + "name": "addCodeBufferToHistory", + "summary": "Filter\u0020silent\u0020input\u0020from\u0020code\u0020buffer,\u0020write\u0020the\u0020rest\u0020to\u0020readline\u0020history.", + "url": "classes/Psy-Shell.html#method_addCodeBufferToHistory" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetNamespace\u0028\u0029", + "name": "getNamespace", + "summary": "Get\u0020the\u0020current\u0020evaluation\u0020scope\u0020namespace.", + "url": "classes/Psy-Shell.html#method_getNamespace" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AwriteStdout\u0028\u0029", + "name": "writeStdout", + "summary": "Write\u0020a\u0020string\u0020to\u0020stdout.", + "url": "classes/Psy-Shell.html#method_writeStdout" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AwriteReturnValue\u0028\u0029", + "name": "writeReturnValue", + "summary": "Write\u0020a\u0020return\u0020value\u0020to\u0020stdout.", + "url": "classes/Psy-Shell.html#method_writeReturnValue" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AwriteException\u0028\u0029", + "name": "writeException", + "summary": "Renders\u0020a\u0020caught\u0020Exception\u0020or\u0020Error.", + "url": "classes/Psy-Shell.html#method_writeException" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetLastExecSuccess\u0028\u0029", + "name": "getLastExecSuccess", + "summary": "Check\u0020whether\u0020the\u0020last\u0020exec\u0020was\u0020successful.", + "url": "classes/Psy-Shell.html#method_getLastExecSuccess" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AformatException\u0028\u0029", + "name": "formatException", + "summary": "Helper\u0020for\u0020formatting\u0020an\u0020exception\u0020or\u0020error\u0020for\u0020writeException\u0028\u0029.", + "url": "classes/Psy-Shell.html#method_formatException" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetSeverity\u0028\u0029", + "name": "getSeverity", + "summary": "Helper\u0020for\u0020getting\u0020an\u0020output\u0020style\u0020for\u0020the\u0020given\u0020ErrorException\u0027s\u0020level.", + "url": "classes/Psy-Shell.html#method_getSeverity" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetMessageLabel\u0028\u0029", + "name": "getMessageLabel", + "summary": "Helper\u0020for\u0020getting\u0020an\u0020output\u0020style\u0020for\u0020the\u0020given\u0020ErrorException\u0027s\u0020level.", + "url": "classes/Psy-Shell.html#method_getMessageLabel" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Execute\u0020code\u0020in\u0020the\u0020shell\u0020execution\u0020context.", + "url": "classes/Psy-Shell.html#method_execute" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AhandleError\u0028\u0029", + "name": "handleError", + "summary": "Helper\u0020for\u0020throwing\u0020an\u0020ErrorException.", + "url": "classes/Psy-Shell.html#method_handleError" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003ApresentValue\u0028\u0029", + "name": "presentValue", + "summary": "Format\u0020a\u0020value\u0020for\u0020display.", + "url": "classes/Psy-Shell.html#method_presentValue" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "Get\u0020a\u0020command\u0020\u0028if\u0020one\u0020exists\u0029\u0020for\u0020the\u0020current\u0020input\u0020string.", + "url": "classes/Psy-Shell.html#method_getCommand" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AhasCommand\u0028\u0029", + "name": "hasCommand", + "summary": "Check\u0020whether\u0020a\u0020command\u0020is\u0020set\u0020for\u0020the\u0020current\u0020input\u0020string.", + "url": "classes/Psy-Shell.html#method_hasCommand" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetPrompt\u0028\u0029", + "name": "getPrompt", + "summary": "Get\u0020the\u0020current\u0020input\u0020prompt.", + "url": "classes/Psy-Shell.html#method_getPrompt" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024readline", + "name": "readline", + "summary": "", + "url": "classes/Psy-Shell.html#property_readline" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetHeader\u0028\u0029", + "name": "getHeader", + "summary": "Get\u0020the\u0020shell\u0020output\u0020header.", + "url": "classes/Psy-Shell.html#method_getHeader" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetVersion\u0028\u0029", + "name": "getVersion", + "summary": "Get\u0020the\u0020current\u0020version\u0020of\u0020Psy\u0020Shell.", + "url": "classes/Psy-Shell.html#method_getVersion" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetVersionHeader\u0028\u0029", + "name": "getVersionHeader", + "summary": "Get\u0020a\u0020pretty\u0020header\u0020including\u0020the\u0020current\u0020version\u0020of\u0020Psy\u0020Shell.", + "url": "classes/Psy-Shell.html#method_getVersionHeader" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AgetManualDb\u0028\u0029", + "name": "getManualDb", + "summary": "Get\u0020a\u0020PHP\u0020manual\u0020database\u0020instance.", + "url": "classes/Psy-Shell.html#method_getManualDb" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003Aautocomplete\u0028\u0029", + "name": "autocomplete", + "summary": "", + "url": "classes/Psy-Shell.html#method_autocomplete" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AinitializeTabCompletion\u0028\u0029", + "name": "initializeTabCompletion", + "summary": "Initialize\u0020tab\u0020completion\u0020matchers.", + "url": "classes/Psy-Shell.html#method_initializeTabCompletion" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AaddMatchersToAutoCompleter\u0028\u0029", + "name": "addMatchersToAutoCompleter", + "summary": "Add\u0020matchers\u0020to\u0020the\u0020auto\u0020completer,\u0020setting\u0020context\u0020if\u0020needed.", + "url": "classes/Psy-Shell.html#method_addMatchersToAutoCompleter" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AwriteVersionInfo\u0028\u0029", + "name": "writeVersionInfo", + "summary": "", + "url": "classes/Psy-Shell.html#method_writeVersionInfo" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AwriteStartupMessage\u0028\u0029", + "name": "writeStartupMessage", + "summary": "Write\u0020a\u0020startup\u0020message\u0020if\u0020set.", + "url": "classes/Psy-Shell.html#method_writeStartupMessage" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AVERSION", + "name": "VERSION", + "summary": "", + "url": "classes/Psy-Shell.html#constant_VERSION" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003APROMPT", + "name": "PROMPT", + "summary": "", + "url": "classes/Psy-Shell.html#constant_PROMPT" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003ABUFF_PROMPT", + "name": "BUFF_PROMPT", + "summary": "", + "url": "classes/Psy-Shell.html#constant_BUFF_PROMPT" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003AREPLAY", + "name": "REPLAY", + "summary": "", + "url": "classes/Psy-Shell.html#constant_REPLAY" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003ARETVAL", + "name": "RETVAL", + "summary": "", + "url": "classes/Psy-Shell.html#constant_RETVAL" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024config", + "name": "config", + "summary": "", + "url": "classes/Psy-Shell.html#property_config" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024cleaner", + "name": "cleaner", + "summary": "", + "url": "classes/Psy-Shell.html#property_cleaner" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Psy-Shell.html#property_output" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024originalVerbosity", + "name": "originalVerbosity", + "summary": "", + "url": "classes/Psy-Shell.html#property_originalVerbosity" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024inputBuffer", + "name": "inputBuffer", + "summary": "", + "url": "classes/Psy-Shell.html#property_inputBuffer" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024code", + "name": "code", + "summary": "", + "url": "classes/Psy-Shell.html#property_code" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024codeBuffer", + "name": "codeBuffer", + "summary": "", + "url": "classes/Psy-Shell.html#property_codeBuffer" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024codeBufferOpen", + "name": "codeBufferOpen", + "summary": "", + "url": "classes/Psy-Shell.html#property_codeBufferOpen" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024codeStack", + "name": "codeStack", + "summary": "", + "url": "classes/Psy-Shell.html#property_codeStack" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024stdoutBuffer", + "name": "stdoutBuffer", + "summary": "", + "url": "classes/Psy-Shell.html#property_stdoutBuffer" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024context", + "name": "context", + "summary": "", + "url": "classes/Psy-Shell.html#property_context" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024includes", + "name": "includes", + "summary": "", + "url": "classes/Psy-Shell.html#property_includes" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024outputWantsNewline", + "name": "outputWantsNewline", + "summary": "", + "url": "classes/Psy-Shell.html#property_outputWantsNewline" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024loopListeners", + "name": "loopListeners", + "summary": "", + "url": "classes/Psy-Shell.html#property_loopListeners" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024autoCompleter", + "name": "autoCompleter", + "summary": "", + "url": "classes/Psy-Shell.html#property_autoCompleter" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024matchers", + "name": "matchers", + "summary": "", + "url": "classes/Psy-Shell.html#property_matchers" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024commandsMatcher", + "name": "commandsMatcher", + "summary": "", + "url": "classes/Psy-Shell.html#property_commandsMatcher" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024lastExecSuccess", + "name": "lastExecSuccess", + "summary": "", + "url": "classes/Psy-Shell.html#property_lastExecSuccess" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024nonInteractive", + "name": "nonInteractive", + "summary": "", + "url": "classes/Psy-Shell.html#property_nonInteractive" + }, { + "fqsen": "\\Psy\\Shell\u003A\u003A\u0024errorReporting", + "name": "errorReporting", + "summary": "", + "url": "classes/Psy-Shell.html#property_errorReporting" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor", + "name": "SudoVisitor", + "summary": "A\u0020PHP\u0020Parser\u0020node\u0020visitor\u0020which\u0020rewrites\u0020property\u0020and\u0020method\u0020access\u0020to\u0020use\nthe\u0020Psy\\Sudo\u0020visibility\u0020bypass\u0020methods.", + "url": "classes/Psy-Sudo-SudoVisitor.html" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Psy-Sudo-SudoVisitor.html#method_enterNode" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003AprepareCall\u0028\u0029", + "name": "prepareCall", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#method_prepareCall" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003APROPERTY_FETCH", + "name": "PROPERTY_FETCH", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_PROPERTY_FETCH" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003APROPERTY_ASSIGN", + "name": "PROPERTY_ASSIGN", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_PROPERTY_ASSIGN" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003AMETHOD_CALL", + "name": "METHOD_CALL", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_METHOD_CALL" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003ASTATIC_PROPERTY_FETCH", + "name": "STATIC_PROPERTY_FETCH", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_STATIC_PROPERTY_FETCH" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003ASTATIC_PROPERTY_ASSIGN", + "name": "STATIC_PROPERTY_ASSIGN", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_STATIC_PROPERTY_ASSIGN" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003ASTATIC_CALL", + "name": "STATIC_CALL", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_STATIC_CALL" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003ACLASS_CONST_FETCH", + "name": "CLASS_CONST_FETCH", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_CLASS_CONST_FETCH" + }, { + "fqsen": "\\Psy\\Sudo\\SudoVisitor\u003A\u003ANEW_INSTANCE", + "name": "NEW_INSTANCE", + "summary": "", + "url": "classes/Psy-Sudo-SudoVisitor.html#constant_NEW_INSTANCE" + }, { + "fqsen": "\\Psy\\Sudo", + "name": "Sudo", + "summary": "Helpers\u0020for\u0020bypassing\u0020visibility\u0020restrictions,\u0020mostly\u0020used\u0020in\u0020code\u0020generated\nby\u0020the\u0020\u0060sudo\u0060\u0020command.", + "url": "classes/Psy-Sudo.html" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AfetchProperty\u0028\u0029", + "name": "fetchProperty", + "summary": "Fetch\u0020a\u0020property\u0020of\u0020an\u0020object,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_fetchProperty" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AassignProperty\u0028\u0029", + "name": "assignProperty", + "summary": "Assign\u0020the\u0020value\u0020of\u0020a\u0020property\u0020of\u0020an\u0020object,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_assignProperty" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AcallMethod\u0028\u0029", + "name": "callMethod", + "summary": "Call\u0020a\u0020method\u0020on\u0020an\u0020object,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_callMethod" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AfetchStaticProperty\u0028\u0029", + "name": "fetchStaticProperty", + "summary": "Fetch\u0020a\u0020property\u0020of\u0020a\u0020class,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_fetchStaticProperty" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AassignStaticProperty\u0028\u0029", + "name": "assignStaticProperty", + "summary": "Assign\u0020the\u0020value\u0020of\u0020a\u0020static\u0020property\u0020of\u0020a\u0020class,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_assignStaticProperty" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AcallStatic\u0028\u0029", + "name": "callStatic", + "summary": "Call\u0020a\u0020static\u0020method\u0020on\u0020a\u0020class,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_callStatic" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AfetchClassConst\u0028\u0029", + "name": "fetchClassConst", + "summary": "Fetch\u0020a\u0020class\u0020constant,\u0020bypassing\u0020visibility\u0020restrictions.", + "url": "classes/Psy-Sudo.html#method_fetchClassConst" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AnewInstance\u0028\u0029", + "name": "newInstance", + "summary": "Construct\u0020an\u0020instance\u0020of\u0020a\u0020class,\u0020bypassing\u0020private\u0020constructors.", + "url": "classes/Psy-Sudo.html#method_newInstance" + }, { + "fqsen": "\\Psy\\Sudo\u003A\u003AgetProperty\u0028\u0029", + "name": "getProperty", + "summary": "Get\u0020a\u0020ReflectionProperty\u0020from\u0020an\u0020object\u0020\u0028or\u0020its\u0020parent\u0020classes\u0029.", + "url": "classes/Psy-Sudo.html#method_getProperty" + }, { + "fqsen": "\\Psy\\SuperglobalsEnv", + "name": "SuperglobalsEnv", + "summary": "Environment\u0020variables\u0020implementation\u0020via\u0020\u0024_SERVER\u0020superglobal.", + "url": "classes/Psy-SuperglobalsEnv.html" + }, { + "fqsen": "\\Psy\\SuperglobalsEnv\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020environment\u0020variable\u0020by\u0020name.", + "url": "classes/Psy-SuperglobalsEnv.html#method_get" + }, { + "fqsen": "\\Psy\\SystemEnv", + "name": "SystemEnv", + "summary": "Environment\u0020variables\u0020implementation\u0020via\u0020getenv\u0028\u0029.", + "url": "classes/Psy-SystemEnv.html" + }, { + "fqsen": "\\Psy\\SystemEnv\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020environment\u0020variable\u0020by\u0020name.", + "url": "classes/Psy-SystemEnv.html#method_get" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter", + "name": "AutoCompleter", + "summary": "A\u0020readline\u0020tab\u0020completion\u0020service.", + "url": "classes/Psy-TabCompletion-AutoCompleter.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter\u003A\u003AaddMatcher\u0028\u0029", + "name": "addMatcher", + "summary": "Register\u0020a\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-AutoCompleter.html#method_addMatcher" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter\u003A\u003Aactivate\u0028\u0029", + "name": "activate", + "summary": "Activate\u0020readline\u0020tab\u0020completion.", + "url": "classes/Psy-TabCompletion-AutoCompleter.html#method_activate" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter\u003A\u003AprocessCallback\u0028\u0029", + "name": "processCallback", + "summary": "Handle\u0020readline\u0020completion.", + "url": "classes/Psy-TabCompletion-AutoCompleter.html#method_processCallback" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter\u003A\u003Acallback\u0028\u0029", + "name": "callback", + "summary": "The\u0020readline_completion_function\u0020callback\u0020handler.", + "url": "classes/Psy-TabCompletion-AutoCompleter.html#method_callback" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "Remove\u0020readline\u0020callback\u0020handler\u0020on\u0020destruct.", + "url": "classes/Psy-TabCompletion-AutoCompleter.html#method___destruct" + }, { + "fqsen": "\\Psy\\TabCompletion\\AutoCompleter\u003A\u003A\u0024matchers", + "name": "matchers", + "summary": "", + "url": "classes/Psy-TabCompletion-AutoCompleter.html#property_matchers" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher", + "name": "AbstractContextAwareMatcher", + "summary": "An\u0020abstract\u0020tab\u0020completion\u0020Matcher\u0020which\u0020implements\u0020ContextAware.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractContextAwareMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher\u003A\u003AsetContext\u0028\u0029", + "name": "setContext", + "summary": "ContextAware\u0020interface.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractContextAwareMatcher.html#method_setContext" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher\u003A\u003AgetVariable\u0028\u0029", + "name": "getVariable", + "summary": "Get\u0020a\u0020Context\u0020variable\u0020by\u0020name.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractContextAwareMatcher.html#method_getVariable" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher\u003A\u003AgetVariables\u0028\u0029", + "name": "getVariables", + "summary": "Get\u0020all\u0020variables\u0020in\u0020the\u0020current\u0020Context.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractContextAwareMatcher.html#method_getVariables" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractContextAwareMatcher\u003A\u003A\u0024context", + "name": "context", + "summary": "Context\u0020instance\u0020\u0028for\u0020ContextAware\u0020interface\u0029.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractContextAwareMatcher.html#property_context" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractDefaultParametersMatcher", + "name": "AbstractDefaultParametersMatcher", + "summary": "An\u0020abstract\u0020tab\u0020completion\u0020Matcher\u0020which\u0020implements\u0020ContextAware.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractDefaultParametersMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractDefaultParametersMatcher\u003A\u003AgetDefaultParameterCompletion\u0028\u0029", + "name": "getDefaultParameterCompletion", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractDefaultParametersMatcher.html#method_getDefaultParameterCompletion" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractDefaultParametersMatcher\u003A\u003AvalueToShortString\u0028\u0029", + "name": "valueToShortString", + "summary": "Takes\u0020in\u0020the\u0020default\u0020value\u0020of\u0020a\u0020parameter\u0020and\u0020turns\u0020it\u0020into\u0020a\n\u0020string\u0020representation\u0020that\u0020fits\u0020inline.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractDefaultParametersMatcher.html#method_valueToShortString" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher", + "name": "AbstractMatcher", + "summary": "Abstract\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AgetInput\u0028\u0029", + "name": "getInput", + "summary": "Get\u0020current\u0020readline\u0020input\u0020word.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_getInput" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AgetNamespaceAndClass\u0028\u0029", + "name": "getNamespaceAndClass", + "summary": "Get\u0020current\u0020namespace\u0020and\u0020class\u0020\u0028if\u0020any\u0029\u0020from\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_getNamespaceAndClass" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "Check\u0020whether\u0020\u0024word\u0020starts\u0020with\u0020\u0024prefix.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_startsWith" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AhasSyntax\u0028\u0029", + "name": "hasSyntax", + "summary": "Check\u0020whether\u0020\u0024token\u0020matches\u0020a\u0020given\u0020syntax\u0020pattern.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_hasSyntax" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AtokenIs\u0028\u0029", + "name": "tokenIs", + "summary": "Check\u0020whether\u0020\u0024token\u0020type\u0020is\u0020\u0024which.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_tokenIs" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AisOperator\u0028\u0029", + "name": "isOperator", + "summary": "Check\u0020whether\u0020\u0024token\u0020is\u0020an\u0020operator.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_isOperator" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AneedCompleteClass\u0028\u0029", + "name": "needCompleteClass", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_needCompleteClass" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AhasToken\u0028\u0029", + "name": "hasToken", + "summary": "Check\u0020whether\u0020\u0024token\u0020type\u0020is\u0020present\u0020in\u0020\u0024coll.", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#method_hasToken" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003ACONSTANT_SYNTAX", + "name": "CONSTANT_SYNTAX", + "summary": "Syntax\u0020types", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_CONSTANT_SYNTAX" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AVAR_SYNTAX", + "name": "VAR_SYNTAX", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_VAR_SYNTAX" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AMISC_OPERATORS", + "name": "MISC_OPERATORS", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_MISC_OPERATORS" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_OPEN_TAG", + "name": "T_OPEN_TAG", + "summary": "Token\u0020values", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_OPEN_TAG" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_VARIABLE", + "name": "T_VARIABLE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_VARIABLE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_OBJECT_OPERATOR", + "name": "T_OBJECT_OPERATOR", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_OBJECT_OPERATOR" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_DOUBLE_COLON", + "name": "T_DOUBLE_COLON", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_DOUBLE_COLON" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_NEW", + "name": "T_NEW", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_NEW" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_CLONE", + "name": "T_CLONE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_CLONE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_NS_SEPARATOR", + "name": "T_NS_SEPARATOR", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_NS_SEPARATOR" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_STRING", + "name": "T_STRING", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_STRING" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_NAME_QUALIFIED", + "name": "T_NAME_QUALIFIED", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_NAME_QUALIFIED" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_WHITESPACE", + "name": "T_WHITESPACE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_WHITESPACE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_AND_EQUAL", + "name": "T_AND_EQUAL", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_AND_EQUAL" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_BOOLEAN_AND", + "name": "T_BOOLEAN_AND", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_BOOLEAN_AND" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_BOOLEAN_OR", + "name": "T_BOOLEAN_OR", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_BOOLEAN_OR" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_ENCAPSED_AND_WHITESPACE", + "name": "T_ENCAPSED_AND_WHITESPACE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_ENCAPSED_AND_WHITESPACE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_REQUIRE", + "name": "T_REQUIRE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_REQUIRE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_REQUIRE_ONCE", + "name": "T_REQUIRE_ONCE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_REQUIRE_ONCE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_INCLUDE", + "name": "T_INCLUDE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_INCLUDE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\AbstractMatcher\u003A\u003AT_INCLUDE_ONCE", + "name": "T_INCLUDE_ONCE", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-AbstractMatcher.html#constant_T_INCLUDE_ONCE" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassAttributesMatcher", + "name": "ClassAttributesMatcher", + "summary": "A\u0020class\u0020attribute\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-ClassAttributesMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassAttributesMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ClassAttributesMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassAttributesMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ClassAttributesMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassMethodDefaultParametersMatcher", + "name": "ClassMethodDefaultParametersMatcher", + "summary": "An\u0020abstract\u0020tab\u0020completion\u0020Matcher\u0020which\u0020implements\u0020ContextAware.", + "url": "classes/Psy-TabCompletion-Matcher-ClassMethodDefaultParametersMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassMethodDefaultParametersMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ClassMethodDefaultParametersMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassMethodDefaultParametersMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ClassMethodDefaultParametersMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassMethodsMatcher", + "name": "ClassMethodsMatcher", + "summary": "A\u0020class\u0020method\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-ClassMethodsMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassMethodsMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ClassMethodsMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassMethodsMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ClassMethodsMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassNamesMatcher", + "name": "ClassNamesMatcher", + "summary": "A\u0020class\u0020name\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-ClassNamesMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassNamesMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ClassNamesMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ClassNamesMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ClassNamesMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher", + "name": "CommandsMatcher", + "summary": "A\u0020Psy\u0020Command\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "CommandsMatcher\u0020constructor.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#method___construct" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003AsetCommands\u0028\u0029", + "name": "setCommands", + "summary": "Set\u0020Commands\u0020for\u0020completion.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#method_setCommands" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003AisCommand\u0028\u0029", + "name": "isCommand", + "summary": "Check\u0020whether\u0020a\u0020command\u0020\u0024name\u0020is\u0020defined.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#method_isCommand" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003AmatchCommand\u0028\u0029", + "name": "matchCommand", + "summary": "Check\u0020whether\u0020input\u0020matches\u0020a\u0020defined\u0020command.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#method_matchCommand" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\CommandsMatcher\u003A\u003A\u0024commands", + "name": "commands", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-CommandsMatcher.html#property_commands" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ConstantsMatcher", + "name": "ConstantsMatcher", + "summary": "A\u0020constant\u0020name\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-ConstantsMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ConstantsMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ConstantsMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ConstantsMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ConstantsMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\FunctionDefaultParametersMatcher", + "name": "FunctionDefaultParametersMatcher", + "summary": "An\u0020abstract\u0020tab\u0020completion\u0020Matcher\u0020which\u0020implements\u0020ContextAware.", + "url": "classes/Psy-TabCompletion-Matcher-FunctionDefaultParametersMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\FunctionDefaultParametersMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-FunctionDefaultParametersMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\FunctionDefaultParametersMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-FunctionDefaultParametersMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\FunctionsMatcher", + "name": "FunctionsMatcher", + "summary": "A\u0020function\u0020name\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-FunctionsMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\FunctionsMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-FunctionsMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\FunctionsMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-FunctionsMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher", + "name": "KeywordsMatcher", + "summary": "A\u0020PHP\u0020keyword\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher\u003A\u003AgetKeywords\u0028\u0029", + "name": "getKeywords", + "summary": "Get\u0020all\u0020\u0028completable\u0029\u0020PHP\u0020keywords.", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html#method_getKeywords" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher\u003A\u003AisKeyword\u0028\u0029", + "name": "isKeyword", + "summary": "Check\u0020whether\u0020\u0024keyword\u0020is\u0020a\u0020\u0028completable\u0029\u0020PHP\u0020keyword.", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html#method_isKeyword" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher\u003A\u003A\u0024keywords", + "name": "keywords", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html#property_keywords" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\KeywordsMatcher\u003A\u003A\u0024mandatoryStartKeywords", + "name": "mandatoryStartKeywords", + "summary": "", + "url": "classes/Psy-TabCompletion-Matcher-KeywordsMatcher.html#property_mandatoryStartKeywords" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\MongoClientMatcher", + "name": "MongoClientMatcher", + "summary": "A\u0020MongoDB\u0020Client\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-MongoClientMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\MongoClientMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-MongoClientMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\MongoClientMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-MongoClientMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\MongoDatabaseMatcher", + "name": "MongoDatabaseMatcher", + "summary": "A\u0020MongoDB\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-MongoDatabaseMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\MongoDatabaseMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-MongoDatabaseMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\MongoDatabaseMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-MongoDatabaseMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectAttributesMatcher", + "name": "ObjectAttributesMatcher", + "summary": "An\u0020object\u0020attribute\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectAttributesMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectAttributesMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectAttributesMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectAttributesMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectAttributesMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectMethodDefaultParametersMatcher", + "name": "ObjectMethodDefaultParametersMatcher", + "summary": "An\u0020abstract\u0020tab\u0020completion\u0020Matcher\u0020which\u0020implements\u0020ContextAware.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectMethodDefaultParametersMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectMethodDefaultParametersMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectMethodDefaultParametersMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectMethodDefaultParametersMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectMethodDefaultParametersMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectMethodsMatcher", + "name": "ObjectMethodsMatcher", + "summary": "An\u0020object\u0020method\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectMethodsMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectMethodsMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectMethodsMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\ObjectMethodsMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-ObjectMethodsMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\VariablesMatcher", + "name": "VariablesMatcher", + "summary": "A\u0020variable\u0020name\u0020tab\u0020completion\u0020Matcher.", + "url": "classes/Psy-TabCompletion-Matcher-VariablesMatcher.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\VariablesMatcher\u003A\u003AgetMatches\u0028\u0029", + "name": "getMatches", + "summary": "Provide\u0020tab\u0020completion\u0020matches\u0020for\u0020readline\u0020input.", + "url": "classes/Psy-TabCompletion-Matcher-VariablesMatcher.html#method_getMatches" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher\\VariablesMatcher\u003A\u003AhasMatched\u0028\u0029", + "name": "hasMatched", + "summary": "Check\u0020whether\u0020this\u0020matcher\u0020can\u0020provide\u0020completions\u0020for\u0020\u0024tokens.", + "url": "classes/Psy-TabCompletion-Matcher-VariablesMatcher.html#method_hasMatched" + }, { + "fqsen": "\\Psy\\Util\\Docblock", + "name": "Docblock", + "summary": "A\u0020docblock\u0020representation.", + "url": "classes/Psy-Util-Docblock.html" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Docblock\u0020constructor.", + "url": "classes/Psy-Util-Docblock.html#method___construct" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003AsetComment\u0028\u0029", + "name": "setComment", + "summary": "Set\u0020and\u0020parse\u0020the\u0020docblock\u0020comment.", + "url": "classes/Psy-Util-Docblock.html#method_setComment" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003AprefixLength\u0028\u0029", + "name": "prefixLength", + "summary": "Find\u0020the\u0020length\u0020of\u0020the\u0020docblock\u0020prefix.", + "url": "classes/Psy-Util-Docblock.html#method_prefixLength" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003AparseComment\u0028\u0029", + "name": "parseComment", + "summary": "Parse\u0020the\u0020comment\u0020into\u0020the\u0020component\u0020parts\u0020and\u0020set\u0020the\u0020state\u0020of\u0020the\u0020object.", + "url": "classes/Psy-Util-Docblock.html#method_parseComment" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003AhasTag\u0028\u0029", + "name": "hasTag", + "summary": "Whether\u0020or\u0020not\u0020a\u0020docblock\u0020contains\u0020a\u0020given\u0020\u0040tag.", + "url": "classes/Psy-Util-Docblock.html#method_hasTag" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003Atag\u0028\u0029", + "name": "tag", + "summary": "The\u0020value\u0020of\u0020a\u0020tag.", + "url": "classes/Psy-Util-Docblock.html#method_tag" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003AisTagged\u0028\u0029", + "name": "isTagged", + "summary": "Whether\u0020or\u0020not\u0020a\u0020string\u0020begins\u0020with\u0020a\u0020\u0040tag.", + "url": "classes/Psy-Util-Docblock.html#method_isTagged" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003AstrTag\u0028\u0029", + "name": "strTag", + "summary": "The\u0020tag\u0020at\u0020the\u0020beginning\u0020of\u0020a\u0020string.", + "url": "classes/Psy-Util-Docblock.html#method_strTag" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003A\u0024vectors", + "name": "vectors", + "summary": "Tags\u0020in\u0020the\u0020docblock\u0020that\u0020have\u0020a\u0020whitespace\u002Ddelimited\u0020number\u0020of\u0020parameters\n\u0028such\u0020as\u0020\u0060\u0040param\u0020type\u0020var\u0020desc\u0060\u0020and\u0020\u0060\u0040return\u0020type\u0020desc\u0060\u0029\u0020and\u0020the\u0020names\u0020of\nthose\u0020parameters.", + "url": "classes/Psy-Util-Docblock.html#property_vectors" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003A\u0024reflector", + "name": "reflector", + "summary": "", + "url": "classes/Psy-Util-Docblock.html#property_reflector" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003A\u0024desc", + "name": "desc", + "summary": "The\u0020description\u0020of\u0020the\u0020symbol.", + "url": "classes/Psy-Util-Docblock.html#property_desc" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003A\u0024tags", + "name": "tags", + "summary": "The\u0020tags\u0020defined\u0020in\u0020the\u0020docblock.", + "url": "classes/Psy-Util-Docblock.html#property_tags" + }, { + "fqsen": "\\Psy\\Util\\Docblock\u003A\u003A\u0024comment", + "name": "comment", + "summary": "The\u0020entire\u0020DocBlock\u0020comment\u0020that\u0020was\u0020parsed.", + "url": "classes/Psy-Util-Docblock.html#property_comment" + }, { + "fqsen": "\\Psy\\Util\\Json", + "name": "Json", + "summary": "A\u0020static\u0020class\u0020to\u0020wrap\u0020JSON\u0020encoding\/decoding\u0020with\u0020PsySH\u0027s\u0020default\u0020options.", + "url": "classes/Psy-Util-Json.html" + }, { + "fqsen": "\\Psy\\Util\\Json\u003A\u003Aencode\u0028\u0029", + "name": "encode", + "summary": "Encode\u0020a\u0020value\u0020as\u0020JSON.", + "url": "classes/Psy-Util-Json.html#method_encode" + }, { + "fqsen": "\\Psy\\Util\\Mirror", + "name": "Mirror", + "summary": "A\u0020utility\u0020class\u0020for\u0020getting\u0020Reflectors.", + "url": "classes/Psy-Util-Mirror.html" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020a\u0020Reflector\u0020for\u0020a\u0020function,\u0020class\u0020or\u0020instance,\u0020constant,\u0020method\u0020or\u0020property.", + "url": "classes/Psy-Util-Mirror.html#method_get" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003AgetClass\u0028\u0029", + "name": "getClass", + "summary": "Get\u0020a\u0020ReflectionClass\u0020\u0028or\u0020ReflectionObject,\u0020or\u0020ReflectionNamespace\u0029\u0020if\u0020possible.", + "url": "classes/Psy-Util-Mirror.html#method_getClass" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003AnamespaceExists\u0028\u0029", + "name": "namespaceExists", + "summary": "Check\u0020declared\u0020namespaces\u0020for\u0020a\u0020given\u0020namespace.", + "url": "classes/Psy-Util-Mirror.html#method_namespaceExists" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003AgetDeclaredNamespaces\u0028\u0029", + "name": "getDeclaredNamespaces", + "summary": "Get\u0020an\u0020array\u0020of\u0020all\u0020currently\u0020declared\u0020namespaces.", + "url": "classes/Psy-Util-Mirror.html#method_getDeclaredNamespaces" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003ACONSTANT", + "name": "CONSTANT", + "summary": "", + "url": "classes/Psy-Util-Mirror.html#constant_CONSTANT" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003AMETHOD", + "name": "METHOD", + "summary": "", + "url": "classes/Psy-Util-Mirror.html#constant_METHOD" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003ASTATIC_PROPERTY", + "name": "STATIC_PROPERTY", + "summary": "", + "url": "classes/Psy-Util-Mirror.html#constant_STATIC_PROPERTY" + }, { + "fqsen": "\\Psy\\Util\\Mirror\u003A\u003APROPERTY", + "name": "PROPERTY", + "summary": "", + "url": "classes/Psy-Util-Mirror.html#constant_PROPERTY" + }, { + "fqsen": "\\Psy\\Util\\Str", + "name": "Str", + "summary": "String\u0020utility\u0020methods.", + "url": "classes/Psy-Util-Str.html" + }, { + "fqsen": "\\Psy\\Util\\Str\u003A\u003Aunvis\u0028\u0029", + "name": "unvis", + "summary": "Decodes\u0020a\u0020string\u0020encoded\u0020by\u0020libsd\u0027s\u0020strvis.", + "url": "classes/Psy-Util-Str.html#method_unvis" + }, { + "fqsen": "\\Psy\\Util\\Str\u003A\u003AunvisReplace\u0028\u0029", + "name": "unvisReplace", + "summary": "Callback\u0020for\u0020Str\u003A\u003Aunvis.", + "url": "classes/Psy-Util-Str.html#method_unvisReplace" + }, { + "fqsen": "\\Psy\\Util\\Str\u003A\u003AUNVIS_RX", + "name": "UNVIS_RX", + "summary": "", + "url": "classes/Psy-Util-Str.html#constant_UNVIS_RX" + }, { + "fqsen": "\\Psy\\VarDumper\\Cloner", + "name": "Cloner", + "summary": "A\u0020PsySH\u002Dspecialized\u0020VarCloner.", + "url": "classes/Psy-VarDumper-Cloner.html" + }, { + "fqsen": "\\Psy\\VarDumper\\Cloner\u003A\u003AcloneVar\u0028\u0029", + "name": "cloneVar", + "summary": "Clones\u0020a\u0020PHP\u0020variable.", + "url": "classes/Psy-VarDumper-Cloner.html#method_cloneVar" + }, { + "fqsen": "\\Psy\\VarDumper\\Cloner\u003A\u003AcastResource\u0028\u0029", + "name": "castResource", + "summary": "Casts\u0020a\u0020resource\u0020to\u0020an\u0020array\u0020representation.", + "url": "classes/Psy-VarDumper-Cloner.html#method_castResource" + }, { + "fqsen": "\\Psy\\VarDumper\\Cloner\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/Psy-VarDumper-Cloner.html#property_filter" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper", + "name": "Dumper", + "summary": "A\u0020PsySH\u002Dspecialized\u0020CliDumper.", + "url": "classes/Psy-VarDumper-Dumper.html" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-VarDumper-Dumper.html#method___construct" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003AenterHash\u0028\u0029", + "name": "enterHash", + "summary": "Dumps\u0020while\u0020entering\u0020an\u0020hash.", + "url": "classes/Psy-VarDumper-Dumper.html#method_enterHash" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003AdumpKey\u0028\u0029", + "name": "dumpKey", + "summary": "Dumps\u0020a\u0020key\u0020in\u0020a\u0020hash\u0020structure.", + "url": "classes/Psy-VarDumper-Dumper.html#method_dumpKey" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003Astyle\u0028\u0029", + "name": "style", + "summary": "Decorates\u0020a\u0020value\u0020with\u0020some\u0020style.", + "url": "classes/Psy-VarDumper-Dumper.html#method_style" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003AdumpLine\u0028\u0029", + "name": "dumpLine", + "summary": "Dumps\u0020the\u0020current\u0020line.", + "url": "classes/Psy-VarDumper-Dumper.html#method_dumpLine" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003A\u0024formatter", + "name": "formatter", + "summary": "", + "url": "classes/Psy-VarDumper-Dumper.html#property_formatter" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003A\u0024forceArrayIndexes", + "name": "forceArrayIndexes", + "summary": "", + "url": "classes/Psy-VarDumper-Dumper.html#property_forceArrayIndexes" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003A\u0024onlyControlCharsRx", + "name": "onlyControlCharsRx", + "summary": "", + "url": "classes/Psy-VarDumper-Dumper.html#property_onlyControlCharsRx" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003A\u0024controlCharsRx", + "name": "controlCharsRx", + "summary": "", + "url": "classes/Psy-VarDumper-Dumper.html#property_controlCharsRx" + }, { + "fqsen": "\\Psy\\VarDumper\\Dumper\u003A\u003A\u0024controlCharsMap", + "name": "controlCharsMap", + "summary": "", + "url": "classes/Psy-VarDumper-Dumper.html#property_controlCharsMap" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter", + "name": "Presenter", + "summary": "A\u0020Presenter\u0020service.", + "url": "classes/Psy-VarDumper-Presenter.html" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-VarDumper-Presenter.html#method___construct" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003AaddCasters\u0028\u0029", + "name": "addCasters", + "summary": "Register\u0020casters.", + "url": "classes/Psy-VarDumper-Presenter.html#method_addCasters" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003ApresentRef\u0028\u0029", + "name": "presentRef", + "summary": "Present\u0020a\u0020reference\u0020to\u0020the\u0020value.", + "url": "classes/Psy-VarDumper-Presenter.html#method_presentRef" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003Apresent\u0028\u0029", + "name": "present", + "summary": "Present\u0020a\u0020full\u0020representation\u0020of\u0020the\u0020value.", + "url": "classes/Psy-VarDumper-Presenter.html#method_present" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003AVERBOSE", + "name": "VERBOSE", + "summary": "", + "url": "classes/Psy-VarDumper-Presenter.html#constant_VERBOSE" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003A\u0024cloner", + "name": "cloner", + "summary": "", + "url": "classes/Psy-VarDumper-Presenter.html#property_cloner" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003A\u0024dumper", + "name": "dumper", + "summary": "", + "url": "classes/Psy-VarDumper-Presenter.html#property_dumper" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003A\u0024exceptionsImportants", + "name": "exceptionsImportants", + "summary": "", + "url": "classes/Psy-VarDumper-Presenter.html#property_exceptionsImportants" + }, { + "fqsen": "\\Psy\\VarDumper\\Presenter\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Psy-VarDumper-Presenter.html#property_styles" + }, { + "fqsen": "\\Psy\\VarDumper\\PresenterAware", + "name": "PresenterAware", + "summary": "Presenter\u0020injects\u0020itself\u0020as\u0020a\u0020dependency\u0020to\u0020all\u0020objects\u0020which\nimplement\u0020PresenterAware.", + "url": "classes/Psy-VarDumper-PresenterAware.html" + }, { + "fqsen": "\\Psy\\VarDumper\\PresenterAware\u003A\u003AsetPresenter\u0028\u0029", + "name": "setPresenter", + "summary": "Set\u0020a\u0020reference\u0020to\u0020the\u0020Presenter.", + "url": "classes/Psy-VarDumper-PresenterAware.html#method_setPresenter" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker", + "name": "Checker", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003AisLatest\u0028\u0029", + "name": "isLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#method_isLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003AgetLatest\u0028\u0029", + "name": "getLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#method_getLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003AALWAYS", + "name": "ALWAYS", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#constant_ALWAYS" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003ADAILY", + "name": "DAILY", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#constant_DAILY" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003AWEEKLY", + "name": "WEEKLY", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#constant_WEEKLY" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003AMONTHLY", + "name": "MONTHLY", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#constant_MONTHLY" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Checker\u003A\u003ANEVER", + "name": "NEVER", + "summary": "", + "url": "classes/Psy-VersionUpdater-Checker.html#constant_NEVER" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader", + "name": "CurlDownloader", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader\u003A\u003AsetTempDir\u0028\u0029", + "name": "setTempDir", + "summary": "Set\u0020the\u0020directory\u0020where\u0020the\u0020download\u0020will\u0020be\u0020written\u0020to.", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html#method_setTempDir" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader\u003A\u003Adownload\u0028\u0029", + "name": "download", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html#method_download" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "Get\u0020the\u0020temporary\u0020file\u0020name\u0020the\u0020download\u0020was\u0020written\u0020to.", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html#method_getFilename" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader\u003A\u003Acleanup\u0028\u0029", + "name": "cleanup", + "summary": "Delete\u0020the\u0020downloaded\u0020file\u0020if\u0020it\u0020exists.", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html#method_cleanup" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader\u003A\u003A\u0024tempDir", + "name": "tempDir", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html#property_tempDir" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\CurlDownloader\u003A\u003A\u0024outputFile", + "name": "outputFile", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-CurlDownloader.html#property_outputFile" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\Factory", + "name": "Factory", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-Factory.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\Factory\u003A\u003AgetDownloader\u0028\u0029", + "name": "getDownloader", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-Factory.html#method_getDownloader" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader", + "name": "FileDownloader", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader\u003A\u003AsetTempDir\u0028\u0029", + "name": "setTempDir", + "summary": "Set\u0020the\u0020directory\u0020where\u0020the\u0020download\u0020will\u0020be\u0020written\u0020to.", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html#method_setTempDir" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader\u003A\u003Adownload\u0028\u0029", + "name": "download", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html#method_download" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "Get\u0020the\u0020temporary\u0020file\u0020name\u0020the\u0020download\u0020was\u0020written\u0020to.", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html#method_getFilename" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader\u003A\u003Acleanup\u0028\u0029", + "name": "cleanup", + "summary": "Delete\u0020the\u0020downloaded\u0020file\u0020if\u0020it\u0020exists.", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html#method_cleanup" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader\u003A\u003A\u0024tempDir", + "name": "tempDir", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html#property_tempDir" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\\FileDownloader\u003A\u003A\u0024outputFile", + "name": "outputFile", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader-FileDownloader.html#property_outputFile" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader", + "name": "Downloader", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\u003A\u003AsetTempDir\u0028\u0029", + "name": "setTempDir", + "summary": "Set\u0020the\u0020directory\u0020where\u0020the\u0020download\u0020will\u0020be\u0020written\u0020to.", + "url": "classes/Psy-VersionUpdater-Downloader.html#method_setTempDir" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\u003A\u003Adownload\u0028\u0029", + "name": "download", + "summary": "", + "url": "classes/Psy-VersionUpdater-Downloader.html#method_download" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\u003A\u003AgetFilename\u0028\u0029", + "name": "getFilename", + "summary": "Get\u0020the\u0020temporary\u0020file\u0020name\u0020the\u0020download\u0020was\u0020written\u0020to.", + "url": "classes/Psy-VersionUpdater-Downloader.html#method_getFilename" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader\u003A\u003Acleanup\u0028\u0029", + "name": "cleanup", + "summary": "Delete\u0020the\u0020downloaded\u0020file\u0020if\u0020it\u0020exists.", + "url": "classes/Psy-VersionUpdater-Downloader.html#method_cleanup" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker", + "name": "GitHubChecker", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003AisLatest\u0028\u0029", + "name": "isLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#method_isLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003AgetLatest\u0028\u0029", + "name": "getLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#method_getLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003AsetLatest\u0028\u0029", + "name": "setLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#method_setLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003AgetVersionFromTag\u0028\u0029", + "name": "getVersionFromTag", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#method_getVersionFromTag" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003AfetchLatestRelease\u0028\u0029", + "name": "fetchLatestRelease", + "summary": "Set\u0020to\u0020public\u0020to\u0020make\u0020testing\u0020easier.", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#method_fetchLatestRelease" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003AURL", + "name": "URL", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#constant_URL" + }, { + "fqsen": "\\Psy\\VersionUpdater\\GitHubChecker\u003A\u003A\u0024latest", + "name": "latest", + "summary": "", + "url": "classes/Psy-VersionUpdater-GitHubChecker.html#property_latest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer", + "name": "Installer", + "summary": "", + "url": "classes/Psy-VersionUpdater-Installer.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-VersionUpdater-Installer.html#method___construct" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003AgetTempDirectory\u0028\u0029", + "name": "getTempDirectory", + "summary": "Public\u0020to\u0020allow\u0020the\u0020Downloader\u0020to\u0020use\u0020the\u0020temporary\u0020directory\u0020if\u0020it\u0027s\u0020been\u0020set.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_getTempDirectory" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003AisInstallLocationWritable\u0028\u0029", + "name": "isInstallLocationWritable", + "summary": "Verify\u0020the\u0020currently\u0020installed\u0020PsySH\u0020phar\u0020is\u0020writable\u0020so\u0020it\u0020can\u0020be\u0020replaced.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_isInstallLocationWritable" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003AisTempDirectoryWritable\u0028\u0029", + "name": "isTempDirectoryWritable", + "summary": "Verify\u0020the\u0020temporary\u0020directory\u0020is\u0020writable\u0020so\u0020downloads\u0020and\u0020backups\u0020can\u0020be\u0020saved\u0020there.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_isTempDirectoryWritable" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003AisValidSource\u0028\u0029", + "name": "isValidSource", + "summary": "Verifies\u0020the\u0020downloaded\u0020archive\u0020can\u0020be\u0020extracted\u0020with\u0020\\PharData.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_isValidSource" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003Ainstall\u0028\u0029", + "name": "install", + "summary": "Extract\u0020the\u0020\u0022psysh\u0022\u0020phar\u0020from\u0020the\u0020archive\u0020and\u0020move\u0020it,\u0020replacing\u0020the\u0020currently\u0020installed\u0020phar.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_install" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003AcreateBackup\u0028\u0029", + "name": "createBackup", + "summary": "Create\u0020a\u0020backup\u0020of\u0020the\u0020currently\u0020installed\u0020PsySH\u0020phar\u0020in\u0020the\u0020temporary\u0020directory\u0020with\u0020a\u0020version\u0020number\u0020postfix.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_createBackup" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003ArestoreFromBackup\u0028\u0029", + "name": "restoreFromBackup", + "summary": "Restore\u0020the\u0020backup\u0020file\u0020to\u0020the\u0020original\u0020PsySH\u0020install\u0020location.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_restoreFromBackup" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003AgetBackupFilename\u0028\u0029", + "name": "getBackupFilename", + "summary": "Get\u0020the\u0020full\u0020path\u0020for\u0020the\u0020backup\u0020target\u0020file\u0020location.", + "url": "classes/Psy-VersionUpdater-Installer.html#method_getBackupFilename" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003A\u0024installLocation", + "name": "installLocation", + "summary": "", + "url": "classes/Psy-VersionUpdater-Installer.html#property_installLocation" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Installer\u003A\u003A\u0024tempDirectory", + "name": "tempDirectory", + "summary": "", + "url": "classes/Psy-VersionUpdater-Installer.html#property_tempDirectory" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker", + "name": "IntervalChecker", + "summary": "", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html#method___construct" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker\u003A\u003AfetchLatestRelease\u0028\u0029", + "name": "fetchLatestRelease", + "summary": "Set\u0020to\u0020public\u0020to\u0020make\u0020testing\u0020easier.", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html#method_fetchLatestRelease" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker\u003A\u003AgetDateInterval\u0028\u0029", + "name": "getDateInterval", + "summary": "", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html#method_getDateInterval" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker\u003A\u003AupdateCache\u0028\u0029", + "name": "updateCache", + "summary": "", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html#method_updateCache" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker\u003A\u003A\u0024cacheFile", + "name": "cacheFile", + "summary": "", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html#property_cacheFile" + }, { + "fqsen": "\\Psy\\VersionUpdater\\IntervalChecker\u003A\u003A\u0024interval", + "name": "interval", + "summary": "", + "url": "classes/Psy-VersionUpdater-IntervalChecker.html#property_interval" + }, { + "fqsen": "\\Psy\\VersionUpdater\\NoopChecker", + "name": "NoopChecker", + "summary": "A\u0020version\u0020checker\u0020stub\u0020which\u0020always\u0020thinks\u0020the\u0020current\u0020version\u0020is\u0020up\u0020to\u0020date.", + "url": "classes/Psy-VersionUpdater-NoopChecker.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\NoopChecker\u003A\u003AisLatest\u0028\u0029", + "name": "isLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-NoopChecker.html#method_isLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\NoopChecker\u003A\u003AgetLatest\u0028\u0029", + "name": "getLatest", + "summary": "", + "url": "classes/Psy-VersionUpdater-NoopChecker.html#method_getLatest" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate", + "name": "SelfUpdate", + "summary": "Self\u0020update\u0020command.", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#method___construct" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003AsetDownloader\u0028\u0029", + "name": "setDownloader", + "summary": "Allow\u0020the\u0020downloader\u0020to\u0020be\u0020injected\u0020for\u0020testing.", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#method_setDownloader" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003AgetDownloader\u0028\u0029", + "name": "getDownloader", + "summary": "Get\u0020the\u0020currently\u0020set\u0020Downloader\u0020or\u0020create\u0020one\u0020based\u0020on\u0020the\u0020capabilities\u0020of\u0020the\u0020php\u0020environment.", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#method_getDownloader" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003AgetAssetUrl\u0028\u0029", + "name": "getAssetUrl", + "summary": "Build\u0020the\u0020download\u0020URL\u0020for\u0020the\u0020latest\u0020release.", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#method_getAssetUrl" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Execute\u0020the\u0020self\u002Dupdate\u0020process.", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#method_run" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003AURL_PREFIX", + "name": "URL_PREFIX", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#constant_URL_PREFIX" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003ASUCCESS", + "name": "SUCCESS", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#constant_SUCCESS" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003AFAILURE", + "name": "FAILURE", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#constant_FAILURE" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003A\u0024checker", + "name": "checker", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#property_checker" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003A\u0024installer", + "name": "installer", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#property_installer" + }, { + "fqsen": "\\Psy\\VersionUpdater\\SelfUpdate\u003A\u003A\u0024downloader", + "name": "downloader", + "summary": "", + "url": "classes/Psy-VersionUpdater-SelfUpdate.html#property_downloader" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application", + "name": "Application", + "summary": "An\u0020Application\u0020is\u0020the\u0020container\u0020for\u0020a\u0020collection\u0020of\u0020commands.", + "url": "classes/Symfony-Component-Console-Application.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetDispatcher\u0028\u0029", + "name": "setDispatcher", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_setDispatcher" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetCommandLoader\u0028\u0029", + "name": "setCommandLoader", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_setCommandLoader" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetSignalRegistry\u0028\u0029", + "name": "getSignalRegistry", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_getSignalRegistry" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetSignalsToDispatchEvent\u0028\u0029", + "name": "setSignalsToDispatchEvent", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_setSignalsToDispatchEvent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020the\u0020current\u0020application.", + "url": "classes/Symfony-Component-Console-Application.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AdoRun\u0028\u0029", + "name": "doRun", + "summary": "Runs\u0020the\u0020current\u0020application.", + "url": "classes/Symfony-Component-Console-Application.html#method_doRun" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_reset" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetHelperSet\u0028\u0029", + "name": "setHelperSet", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_setHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetHelperSet\u0028\u0029", + "name": "getHelperSet", + "summary": "Get\u0020the\u0020helper\u0020set\u0020associated\u0020with\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Application.html#method_getHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetDefinition\u0028\u0029", + "name": "setDefinition", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_setDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetDefinition\u0028\u0029", + "name": "getDefinition", + "summary": "Gets\u0020the\u0020InputDefinition\u0020related\u0020to\u0020this\u0020Application.", + "url": "classes/Symfony-Component-Console-Application.html#method_getDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Console-Application.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetHelp\u0028\u0029", + "name": "getHelp", + "summary": "Gets\u0020the\u0020help\u0020message.", + "url": "classes/Symfony-Component-Console-Application.html#method_getHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AareExceptionsCaught\u0028\u0029", + "name": "areExceptionsCaught", + "summary": "Gets\u0020whether\u0020to\u0020catch\u0020exceptions\u0020or\u0020not\u0020during\u0020commands\u0020execution.", + "url": "classes/Symfony-Component-Console-Application.html#method_areExceptionsCaught" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetCatchExceptions\u0028\u0029", + "name": "setCatchExceptions", + "summary": "Sets\u0020whether\u0020to\u0020catch\u0020exceptions\u0020or\u0020not\u0020during\u0020commands\u0020execution.", + "url": "classes/Symfony-Component-Console-Application.html#method_setCatchExceptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AisAutoExitEnabled\u0028\u0029", + "name": "isAutoExitEnabled", + "summary": "Gets\u0020whether\u0020to\u0020automatically\u0020exit\u0020after\u0020a\u0020command\u0020execution\u0020or\u0020not.", + "url": "classes/Symfony-Component-Console-Application.html#method_isAutoExitEnabled" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetAutoExit\u0028\u0029", + "name": "setAutoExit", + "summary": "Sets\u0020whether\u0020to\u0020automatically\u0020exit\u0020after\u0020a\u0020command\u0020execution\u0020or\u0020not.", + "url": "classes/Symfony-Component-Console-Application.html#method_setAutoExit" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020application.", + "url": "classes/Symfony-Component-Console-Application.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetName\u0028\u0029", + "name": "setName", + "summary": "Sets\u0020the\u0020application\u0020name.", + "url": "classes/Symfony-Component-Console-Application.html#method_setName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetVersion\u0028\u0029", + "name": "getVersion", + "summary": "Gets\u0020the\u0020application\u0020version.", + "url": "classes/Symfony-Component-Console-Application.html#method_getVersion" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetVersion\u0028\u0029", + "name": "setVersion", + "summary": "Sets\u0020the\u0020application\u0020version.", + "url": "classes/Symfony-Component-Console-Application.html#method_setVersion" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetLongVersion\u0028\u0029", + "name": "getLongVersion", + "summary": "Returns\u0020the\u0020long\u0020version\u0020of\u0020the\u0020application.", + "url": "classes/Symfony-Component-Console-Application.html#method_getLongVersion" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Registers\u0020a\u0020new\u0020command.", + "url": "classes/Symfony-Component-Console-Application.html#method_register" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AaddCommands\u0028\u0029", + "name": "addCommands", + "summary": "Adds\u0020an\u0020array\u0020of\u0020command\u0020objects.", + "url": "classes/Symfony-Component-Console-Application.html#method_addCommands" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Adds\u0020a\u0020command\u0020object.", + "url": "classes/Symfony-Component-Console-Application.html#method_add" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Returns\u0020a\u0020registered\u0020command\u0020by\u0020name\u0020or\u0020alias.", + "url": "classes/Symfony-Component-Console-Application.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Returns\u0020true\u0020if\u0020the\u0020command\u0020exists,\u0020false\u0020otherwise.", + "url": "classes/Symfony-Component-Console-Application.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetNamespaces\u0028\u0029", + "name": "getNamespaces", + "summary": "Returns\u0020an\u0020array\u0020of\u0020all\u0020unique\u0020namespaces\u0020used\u0020by\u0020currently\u0020registered\u0020commands.", + "url": "classes/Symfony-Component-Console-Application.html#method_getNamespaces" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AfindNamespace\u0028\u0029", + "name": "findNamespace", + "summary": "Finds\u0020a\u0020registered\u0020namespace\u0020by\u0020a\u0020name\u0020or\u0020an\u0020abbreviation.", + "url": "classes/Symfony-Component-Console-Application.html#method_findNamespace" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Finds\u0020a\u0020command\u0020by\u0020name\u0020or\u0020alias.", + "url": "classes/Symfony-Component-Console-Application.html#method_find" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Gets\u0020the\u0020commands\u0020\u0028registered\u0020in\u0020the\u0020given\u0020namespace\u0020if\u0020provided\u0029.", + "url": "classes/Symfony-Component-Console-Application.html#method_all" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetAbbreviations\u0028\u0029", + "name": "getAbbreviations", + "summary": "Returns\u0020an\u0020array\u0020of\u0020possible\u0020abbreviations\u0020given\u0020a\u0020set\u0020of\u0020names.", + "url": "classes/Symfony-Component-Console-Application.html#method_getAbbreviations" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003ArenderThrowable\u0028\u0029", + "name": "renderThrowable", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_renderThrowable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AdoRenderThrowable\u0028\u0029", + "name": "doRenderThrowable", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_doRenderThrowable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AconfigureIO\u0028\u0029", + "name": "configureIO", + "summary": "Configures\u0020the\u0020input\u0020and\u0020output\u0020instances\u0020based\u0020on\u0020the\u0020user\u0020arguments\u0020and\u0020options.", + "url": "classes/Symfony-Component-Console-Application.html#method_configureIO" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AdoRunCommand\u0028\u0029", + "name": "doRunCommand", + "summary": "Runs\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Application.html#method_doRunCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetCommandName\u0028\u0029", + "name": "getCommandName", + "summary": "Gets\u0020the\u0020name\u0020of\u0020the\u0020command\u0020based\u0020on\u0020input.", + "url": "classes/Symfony-Component-Console-Application.html#method_getCommandName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetDefaultInputDefinition\u0028\u0029", + "name": "getDefaultInputDefinition", + "summary": "Gets\u0020the\u0020default\u0020input\u0020definition.", + "url": "classes/Symfony-Component-Console-Application.html#method_getDefaultInputDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetDefaultCommands\u0028\u0029", + "name": "getDefaultCommands", + "summary": "Gets\u0020the\u0020default\u0020commands\u0020that\u0020should\u0020always\u0020be\u0020available.", + "url": "classes/Symfony-Component-Console-Application.html#method_getDefaultCommands" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetDefaultHelperSet\u0028\u0029", + "name": "getDefaultHelperSet", + "summary": "Gets\u0020the\u0020default\u0020helper\u0020set\u0020with\u0020the\u0020helpers\u0020that\u0020should\u0020always\u0020be\u0020available.", + "url": "classes/Symfony-Component-Console-Application.html#method_getDefaultHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AgetAbbreviationSuggestions\u0028\u0029", + "name": "getAbbreviationSuggestions", + "summary": "Returns\u0020abbreviated\u0020suggestions\u0020in\u0020string\u0020format.", + "url": "classes/Symfony-Component-Console-Application.html#method_getAbbreviationSuggestions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AextractNamespace\u0028\u0029", + "name": "extractNamespace", + "summary": "Returns\u0020the\u0020namespace\u0020part\u0020of\u0020the\u0020command\u0020name.", + "url": "classes/Symfony-Component-Console-Application.html#method_extractNamespace" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AfindAlternatives\u0028\u0029", + "name": "findAlternatives", + "summary": "Finds\u0020alternative\u0020of\u0020\u0024name\u0020among\u0020\u0024collection,\nif\u0020nothing\u0020is\u0020found\u0020in\u0020\u0024collection,\u0020try\u0020in\u0020\u0024abbrevs.", + "url": "classes/Symfony-Component-Console-Application.html#method_findAlternatives" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsetDefaultCommand\u0028\u0029", + "name": "setDefaultCommand", + "summary": "Sets\u0020the\u0020default\u0020Command\u0020name.", + "url": "classes/Symfony-Component-Console-Application.html#method_setDefaultCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AsplitStringByWidth\u0028\u0029", + "name": "splitStringByWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_splitStringByWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003AextractAllNamespaces\u0028\u0029", + "name": "extractAllNamespaces", + "summary": "Returns\u0020all\u0020namespaces\u0020of\u0020the\u0020command\u0020name.", + "url": "classes/Symfony-Component-Console-Application.html#method_extractAllNamespaces" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003Ainit\u0028\u0029", + "name": "init", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#method_init" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024commands", + "name": "commands", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_commands" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024wantHelps", + "name": "wantHelps", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_wantHelps" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024runningCommand", + "name": "runningCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_runningCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_name" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024version", + "name": "version", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_version" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024commandLoader", + "name": "commandLoader", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_commandLoader" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024catchExceptions", + "name": "catchExceptions", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_catchExceptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024autoExit", + "name": "autoExit", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_autoExit" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024definition", + "name": "definition", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_definition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024helperSet", + "name": "helperSet", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_helperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024dispatcher", + "name": "dispatcher", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_dispatcher" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024terminal", + "name": "terminal", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_terminal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024defaultCommand", + "name": "defaultCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_defaultCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024singleCommand", + "name": "singleCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_singleCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024initialized", + "name": "initialized", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_initialized" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024signalRegistry", + "name": "signalRegistry", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_signalRegistry" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Application\u003A\u003A\u0024signalsToDispatchEvent", + "name": "signalsToDispatchEvent", + "summary": "", + "url": "classes/Symfony-Component-Console-Application.html#property_signalsToDispatchEvent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Attribute\\AsCommand", + "name": "AsCommand", + "summary": "Service\u0020tag\u0020to\u0020autoconfigure\u0020commands.", + "url": "classes/Symfony-Component-Console-Attribute-AsCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Attribute\\AsCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Attribute-AsCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Attribute\\AsCommand\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Symfony-Component-Console-Attribute-AsCommand.html#property_name" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Attribute\\AsCommand\u003A\u003A\u0024description", + "name": "description", + "summary": "", + "url": "classes/Symfony-Component-Console-Attribute-AsCommand.html#property_description" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter", + "name": "GithubActionReporter", + "summary": "Utility\u0020class\u0020for\u0020Github\u0020actions.", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003AisGithubActionEnvironment\u0028\u0029", + "name": "isGithubActionEnvironment", + "summary": "", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#method_isGithubActionEnvironment" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Output\u0020an\u0020error\u0020using\u0020the\u0020Github\u0020annotations\u0020format.", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#method_error" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003Awarning\u0028\u0029", + "name": "warning", + "summary": "Output\u0020a\u0020warning\u0020using\u0020the\u0020Github\u0020annotations\u0020format.", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#method_warning" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003Adebug\u0028\u0029", + "name": "debug", + "summary": "Output\u0020a\u0020debug\u0020log\u0020using\u0020the\u0020Github\u0020annotations\u0020format.", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#method_debug" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#method_log" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003AESCAPED_DATA", + "name": "ESCAPED_DATA", + "summary": "", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#constant_ESCAPED_DATA" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003AESCAPED_PROPERTIES", + "name": "ESCAPED_PROPERTIES", + "summary": "", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#constant_ESCAPED_PROPERTIES" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI\\GithubActionReporter\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-CI-GithubActionReporter.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color", + "name": "Color", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003Aapply\u0028\u0029", + "name": "apply", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_apply" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_set" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003Aunset\u0028\u0029", + "name": "unset", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_unset" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003AparseColor\u0028\u0029", + "name": "parseColor", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_parseColor" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003AconvertHexColorToAnsi\u0028\u0029", + "name": "convertHexColorToAnsi", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_convertHexColorToAnsi" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003AdegradeHexColorToAnsi\u0028\u0029", + "name": "degradeHexColorToAnsi", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_degradeHexColorToAnsi" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003AgetSaturation\u0028\u0029", + "name": "getSaturation", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#method_getSaturation" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003ACOLORS", + "name": "COLORS", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#constant_COLORS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003ABRIGHT_COLORS", + "name": "BRIGHT_COLORS", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#constant_BRIGHT_COLORS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003AAVAILABLE_OPTIONS", + "name": "AVAILABLE_OPTIONS", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#constant_AVAILABLE_OPTIONS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003A\u0024foreground", + "name": "foreground", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#property_foreground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003A\u0024background", + "name": "background", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#property_background" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Color\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Console-Color.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command", + "name": "Command", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Symfony-Component-Console-Command-Command.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetDefaultName\u0028\u0029", + "name": "getDefaultName", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getDefaultName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetDefaultDescription\u0028\u0029", + "name": "getDefaultDescription", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getDefaultDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024ignoreValidationErrors", + "name": "ignoreValidationErrors", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_ignoreValidationErrors" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetApplication\u0028\u0029", + "name": "setApplication", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setApplication" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetHelperSet\u0028\u0029", + "name": "setHelperSet", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetHelperSet\u0028\u0029", + "name": "getHelperSet", + "summary": "Gets\u0020the\u0020helper\u0020set.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetApplication\u0028\u0029", + "name": "getApplication", + "summary": "Gets\u0020the\u0020application\u0020instance\u0020for\u0020this\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getApplication" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AisEnabled\u0028\u0029", + "name": "isEnabled", + "summary": "Checks\u0020whether\u0020the\u0020command\u0020is\u0020enabled\u0020or\u0020not\u0020in\u0020the\u0020current\u0020environment.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_isEnabled" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003Ainteract\u0028\u0029", + "name": "interact", + "summary": "Interacts\u0020with\u0020the\u0020user.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_interact" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "Initializes\u0020the\u0020command\u0020after\u0020the\u0020input\u0020has\u0020been\u0020bound\u0020and\u0020before\u0020the\u0020input\nis\u0020validated.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_initialize" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetCode\u0028\u0029", + "name": "setCode", + "summary": "Sets\u0020the\u0020code\u0020to\u0020execute\u0020when\u0020running\u0020this\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetDefinition\u0028\u0029", + "name": "setDefinition", + "summary": "Sets\u0020an\u0020array\u0020of\u0020argument\u0020and\u0020option\u0020instances.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetDefinition\u0028\u0029", + "name": "getDefinition", + "summary": "Gets\u0020the\u0020InputDefinition\u0020attached\u0020to\u0020this\u0020Command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetNativeDefinition\u0028\u0029", + "name": "getNativeDefinition", + "summary": "Gets\u0020the\u0020InputDefinition\u0020to\u0020be\u0020used\u0020to\u0020create\u0020representations\u0020of\u0020this\u0020Command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getNativeDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AaddArgument\u0028\u0029", + "name": "addArgument", + "summary": "Adds\u0020an\u0020argument.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_addArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AaddOption\u0028\u0029", + "name": "addOption", + "summary": "Adds\u0020an\u0020option.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_addOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetName\u0028\u0029", + "name": "setName", + "summary": "Sets\u0020the\u0020name\u0020of\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetProcessTitle\u0028\u0029", + "name": "setProcessTitle", + "summary": "Sets\u0020the\u0020process\u0020title\u0020of\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setProcessTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020command\u0020name.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetHidden\u0028\u0029", + "name": "setHidden", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setHidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AisHidden\u0028\u0029", + "name": "isHidden", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_isHidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetDescription\u0028\u0029", + "name": "setDescription", + "summary": "Sets\u0020the\u0020description\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetDescription\u0028\u0029", + "name": "getDescription", + "summary": "Returns\u0020the\u0020description\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetHelp\u0028\u0029", + "name": "setHelp", + "summary": "Sets\u0020the\u0020help\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetHelp\u0028\u0029", + "name": "getHelp", + "summary": "Returns\u0020the\u0020help\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetProcessedHelp\u0028\u0029", + "name": "getProcessedHelp", + "summary": "Returns\u0020the\u0020processed\u0020help\u0020for\u0020the\u0020command\u0020replacing\u0020the\u0020\u0025command.name\u0025\u0020and\n\u0025command.full_name\u0025\u0020patterns\u0020with\u0020the\u0020real\u0020values\u0020dynamically.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getProcessedHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AsetAliases\u0028\u0029", + "name": "setAliases", + "summary": "Sets\u0020the\u0020aliases\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_setAliases" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetAliases\u0028\u0029", + "name": "getAliases", + "summary": "Returns\u0020the\u0020aliases\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getAliases" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetSynopsis\u0028\u0029", + "name": "getSynopsis", + "summary": "Returns\u0020the\u0020synopsis\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getSynopsis" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AaddUsage\u0028\u0029", + "name": "addUsage", + "summary": "Add\u0020a\u0020command\u0020usage\u0020example,\u0020it\u0027ll\u0020be\u0020prefixed\u0020with\u0020the\u0020command\u0020name.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_addUsage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetUsages\u0028\u0029", + "name": "getUsages", + "summary": "Returns\u0020alternative\u0020usages\u0020of\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getUsages" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AgetHelper\u0028\u0029", + "name": "getHelper", + "summary": "Gets\u0020a\u0020helper\u0020instance\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_getHelper" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AvalidateName\u0028\u0029", + "name": "validateName", + "summary": "Validates\u0020a\u0020command\u0020name.", + "url": "classes/Symfony-Component-Console-Command-Command.html#method_validateName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003ASUCCESS", + "name": "SUCCESS", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#constant_SUCCESS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AFAILURE", + "name": "FAILURE", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#constant_FAILURE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003AINVALID", + "name": "INVALID", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#constant_INVALID" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_defaultName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024defaultDescription", + "name": "defaultDescription", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_defaultDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024application", + "name": "application", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_application" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_name" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024processTitle", + "name": "processTitle", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_processTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024aliases", + "name": "aliases", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_aliases" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024definition", + "name": "definition", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_definition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024hidden", + "name": "hidden", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_hidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024help", + "name": "help", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_help" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024description", + "name": "description", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_description" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024fullDefinition", + "name": "fullDefinition", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_fullDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024code", + "name": "code", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_code" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024synopsis", + "name": "synopsis", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_synopsis" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024usages", + "name": "usages", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_usages" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\Command\u003A\u003A\u0024helperSet", + "name": "helperSet", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-Command.html#property_helperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand", + "name": "CompleteCommand", + "summary": "Responsible\u0020for\u0020providing\u0020the\u0020values\u0020to\u0020the\u0020shell\u0020completion.", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "Initializes\u0020the\u0020command\u0020after\u0020the\u0020input\u0020has\u0020been\u0020bound\u0020and\u0020before\u0020the\u0020input\nis\u0020validated.", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method_initialize" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003AcreateCompletionInput\u0028\u0029", + "name": "createCompletionInput", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method_createCompletionInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003AfindCommand\u0028\u0029", + "name": "findCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method_findCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#method_log" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#property_defaultName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003A\u0024defaultDescription", + "name": "defaultDescription", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#property_defaultDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003A\u0024completionOutputs", + "name": "completionOutputs", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#property_completionOutputs" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\CompleteCommand\u003A\u003A\u0024isDebug", + "name": "isDebug", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-CompleteCommand.html#property_isDebug" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand", + "name": "DumpCompletionCommand", + "summary": "Dumps\u0020the\u0020completion\u0020script\u0020for\u0020the\u0020current\u0020shell.", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003AguessShell\u0028\u0029", + "name": "guessShell", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#method_guessShell" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003AtailDebugLog\u0028\u0029", + "name": "tailDebugLog", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#method_tailDebugLog" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003AgetSupportedShells\u0028\u0029", + "name": "getSupportedShells", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#method_getSupportedShells" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003A\u0024defaultName", + "name": "defaultName", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#property_defaultName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\DumpCompletionCommand\u003A\u003A\u0024defaultDescription", + "name": "defaultDescription", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-DumpCompletionCommand.html#property_defaultDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\HelpCommand", + "name": "HelpCommand", + "summary": "HelpCommand\u0020displays\u0020the\u0020help\u0020for\u0020a\u0020given\u0020command.", + "url": "classes/Symfony-Component-Console-Command-HelpCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\HelpCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-HelpCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\HelpCommand\u003A\u003AsetCommand\u0028\u0029", + "name": "setCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-HelpCommand.html#method_setCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\HelpCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-HelpCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\HelpCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Console-Command-HelpCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\HelpCommand\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-HelpCommand.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand", + "name": "LazyCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AignoreValidationErrors\u0028\u0029", + "name": "ignoreValidationErrors", + "summary": "Ignores\u0020validation\u0020errors.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_ignoreValidationErrors" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AsetApplication\u0028\u0029", + "name": "setApplication", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_setApplication" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AsetHelperSet\u0028\u0029", + "name": "setHelperSet", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_setHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003A\u0024isEnabled", + "name": "isEnabled", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#property_isEnabled" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AsetCode\u0028\u0029", + "name": "setCode", + "summary": "Sets\u0020the\u0020code\u0020to\u0020execute\u0020when\u0020running\u0020this\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_setCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AsetDefinition\u0028\u0029", + "name": "setDefinition", + "summary": "Sets\u0020an\u0020array\u0020of\u0020argument\u0020and\u0020option\u0020instances.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_setDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetDefinition\u0028\u0029", + "name": "getDefinition", + "summary": "Gets\u0020the\u0020InputDefinition\u0020attached\u0020to\u0020this\u0020Command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetNativeDefinition\u0028\u0029", + "name": "getNativeDefinition", + "summary": "Gets\u0020the\u0020InputDefinition\u0020to\u0020be\u0020used\u0020to\u0020create\u0020representations\u0020of\u0020this\u0020Command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getNativeDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AaddArgument\u0028\u0029", + "name": "addArgument", + "summary": "Adds\u0020an\u0020argument.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_addArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AaddOption\u0028\u0029", + "name": "addOption", + "summary": "Adds\u0020an\u0020option.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_addOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AsetProcessTitle\u0028\u0029", + "name": "setProcessTitle", + "summary": "Sets\u0020the\u0020process\u0020title\u0020of\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_setProcessTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AsetHelp\u0028\u0029", + "name": "setHelp", + "summary": "Sets\u0020the\u0020help\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_setHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetHelp\u0028\u0029", + "name": "getHelp", + "summary": "Returns\u0020the\u0020help\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetProcessedHelp\u0028\u0029", + "name": "getProcessedHelp", + "summary": "Returns\u0020the\u0020processed\u0020help\u0020for\u0020the\u0020command\u0020replacing\u0020the\u0020\u0025command.name\u0025\u0020and\n\u0025command.full_name\u0025\u0020patterns\u0020with\u0020the\u0020real\u0020values\u0020dynamically.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getProcessedHelp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetSynopsis\u0028\u0029", + "name": "getSynopsis", + "summary": "Returns\u0020the\u0020synopsis\u0020for\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getSynopsis" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AaddUsage\u0028\u0029", + "name": "addUsage", + "summary": "Add\u0020a\u0020command\u0020usage\u0020example,\u0020it\u0027ll\u0020be\u0020prefixed\u0020with\u0020the\u0020command\u0020name.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_addUsage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetUsages\u0028\u0029", + "name": "getUsages", + "summary": "Returns\u0020alternative\u0020usages\u0020of\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getUsages" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetHelper\u0028\u0029", + "name": "getHelper", + "summary": "Gets\u0020a\u0020helper\u0020instance\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getHelper" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#method_getCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LazyCommand\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LazyCommand.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\ListCommand", + "name": "ListCommand", + "summary": "ListCommand\u0020displays\u0020the\u0020list\u0020of\u0020all\u0020available\u0020commands\u0020for\u0020the\u0020application.", + "url": "classes/Symfony-Component-Console-Command-ListCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\ListCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-ListCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\ListCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Console-Command-ListCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\ListCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Console-Command-ListCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LockableTrait", + "name": "LockableTrait", + "summary": "Basic\u0020lock\u0020feature\u0020for\u0020commands.", + "url": "classes/Symfony-Component-Console-Command-LockableTrait.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LockableTrait\u003A\u003A\u0024lock", + "name": "lock", + "summary": "", + "url": "classes/Symfony-Component-Console-Command-LockableTrait.html#property_lock" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\LockableTrait\u003A\u003Arelease\u0028\u0029", + "name": "release", + "summary": "Releases\u0020the\u0020command\u0020lock\u0020if\u0020there\u0020is\u0020one.", + "url": "classes/Symfony-Component-Console-Command-LockableTrait.html#method_release" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\SignalableCommandInterface", + "name": "SignalableCommandInterface", + "summary": "Interface\u0020for\u0020command\u0020reacting\u0020to\u0020signal.", + "url": "classes/Symfony-Component-Console-Command-SignalableCommandInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\SignalableCommandInterface\u003A\u003AgetSubscribedSignals\u0028\u0029", + "name": "getSubscribedSignals", + "summary": "Returns\u0020the\u0020list\u0020of\u0020signals\u0020to\u0020subscribe.", + "url": "classes/Symfony-Component-Console-Command-SignalableCommandInterface.html#method_getSubscribedSignals" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command\\SignalableCommandInterface\u003A\u003AhandleSignal\u0028\u0029", + "name": "handleSignal", + "summary": "The\u0020method\u0020will\u0020be\u0020called\u0020when\u0020the\u0020application\u0020is\u0020signaled.", + "url": "classes/Symfony-Component-Console-Command-SignalableCommandInterface.html#method_handleSignal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface", + "name": "CommandLoaderInterface", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-CommandLoaderInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Loads\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-CommandLoader-CommandLoaderInterface.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020a\u0020command\u0020exists.", + "url": "classes/Symfony-Component-Console-CommandLoader-CommandLoaderInterface.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\CommandLoaderInterface\u003A\u003AgetNames\u0028\u0029", + "name": "getNames", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-CommandLoaderInterface.html#method_getNames" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader", + "name": "ContainerCommandLoader", + "summary": "Loads\u0020commands\u0020from\u0020a\u0020PSR\u002D11\u0020container.", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Loads\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020a\u0020command\u0020exists.", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader\u003A\u003AgetNames\u0028\u0029", + "name": "getNames", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html#method_getNames" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html#property_container" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\ContainerCommandLoader\u003A\u003A\u0024commandMap", + "name": "commandMap", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-ContainerCommandLoader.html#property_commandMap" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader", + "name": "FactoryCommandLoader", + "summary": "A\u0020simple\u0020command\u0020loader\u0020using\u0020factories\u0020to\u0020instantiate\u0020commands\u0020lazily.", + "url": "classes/Symfony-Component-Console-CommandLoader-FactoryCommandLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-FactoryCommandLoader.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020a\u0020command\u0020exists.", + "url": "classes/Symfony-Component-Console-CommandLoader-FactoryCommandLoader.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Loads\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-CommandLoader-FactoryCommandLoader.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader\u003A\u003AgetNames\u0028\u0029", + "name": "getNames", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-FactoryCommandLoader.html#method_getNames" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader\\FactoryCommandLoader\u003A\u003A\u0024factories", + "name": "factories", + "summary": "", + "url": "classes/Symfony-Component-Console-CommandLoader-FactoryCommandLoader.html#property_factories" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput", + "name": "CompletionInput", + "summary": "An\u0020input\u0020specialized\u0020for\u0020shell\u0020completion.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AfromString\u0028\u0029", + "name": "fromString", + "summary": "Converts\u0020a\u0020terminal\u0020string\u0020into\u0020tokens.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_fromString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AfromTokens\u0028\u0029", + "name": "fromTokens", + "summary": "Create\u0020an\u0020input\u0020based\u0020on\u0020an\u0020COMP_WORDS\u0020token\u0020list.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_fromTokens" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Binds\u0020the\u0020current\u0020Input\u0020instance\u0020with\u0020the\u0020given\u0020arguments\u0020and\u0020options.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_bind" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AgetCompletionType\u0028\u0029", + "name": "getCompletionType", + "summary": "Returns\u0020the\u0020type\u0020of\u0020completion\u0020required.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_getCompletionType" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AgetCompletionName\u0028\u0029", + "name": "getCompletionName", + "summary": "The\u0020name\u0020of\u0020the\u0020input\u0020option\u0020or\u0020argument\u0020when\u0020completing\u0020a\u0020value.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_getCompletionName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AgetCompletionValue\u0028\u0029", + "name": "getCompletionValue", + "summary": "The\u0020value\u0020already\u0020typed\u0020by\u0020the\u0020user\u0020\u0028or\u0020empty\u0020string\u0029.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_getCompletionValue" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AmustSuggestOptionValuesFor\u0028\u0029", + "name": "mustSuggestOptionValuesFor", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_mustSuggestOptionValuesFor" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AmustSuggestArgumentValuesFor\u0028\u0029", + "name": "mustSuggestArgumentValuesFor", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_mustSuggestArgumentValuesFor" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AparseToken\u0028\u0029", + "name": "parseToken", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_parseToken" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AgetOptionFromToken\u0028\u0029", + "name": "getOptionFromToken", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_getOptionFromToken" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AgetRelevantToken\u0028\u0029", + "name": "getRelevantToken", + "summary": "The\u0020token\u0020of\u0020the\u0020cursor,\u0020or\u0020the\u0020last\u0020token\u0020if\u0020the\u0020cursor\u0020is\u0020at\u0020the\u0020end\u0020of\u0020the\u0020input.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_getRelevantToken" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003AisCursorFree\u0028\u0029", + "name": "isCursorFree", + "summary": "Whether\u0020the\u0020cursor\u0020is\u0020\u0022free\u0022\u0020\u0028i.e.\u0020at\u0020the\u0020end\u0020of\u0020the\u0020input\u0020preceded\u0020by\u0020a\u0020space\u0029.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method_isCursorFree" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Returns\u0020a\u0020stringified\u0020representation\u0020of\u0020the\u0020args\u0020passed\u0020to\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003ATYPE_ARGUMENT_VALUE", + "name": "TYPE_ARGUMENT_VALUE", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#constant_TYPE_ARGUMENT_VALUE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003ATYPE_OPTION_VALUE", + "name": "TYPE_OPTION_VALUE", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#constant_TYPE_OPTION_VALUE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003ATYPE_OPTION_NAME", + "name": "TYPE_OPTION_NAME", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#constant_TYPE_OPTION_NAME" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003ATYPE_NONE", + "name": "TYPE_NONE", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#constant_TYPE_NONE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003A\u0024tokens", + "name": "tokens", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#property_tokens" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003A\u0024currentIndex", + "name": "currentIndex", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#property_currentIndex" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003A\u0024completionType", + "name": "completionType", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#property_completionType" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003A\u0024completionName", + "name": "completionName", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#property_completionName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionInput\u003A\u003A\u0024completionValue", + "name": "completionValue", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionInput.html#property_completionValue" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions", + "name": "CompletionSuggestions", + "summary": "Stores\u0020all\u0020completion\u0020suggestions\u0020for\u0020the\u0020current\u0020input.", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003AsuggestValue\u0028\u0029", + "name": "suggestValue", + "summary": "Add\u0020a\u0020suggested\u0020value\u0020for\u0020an\u0020input\u0020option\u0020or\u0020argument.", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#method_suggestValue" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003AsuggestValues\u0028\u0029", + "name": "suggestValues", + "summary": "Add\u0020multiple\u0020suggested\u0020values\u0020at\u0020once\u0020for\u0020an\u0020input\u0020option\u0020or\u0020argument.", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#method_suggestValues" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003AsuggestOption\u0028\u0029", + "name": "suggestOption", + "summary": "Add\u0020a\u0020suggestion\u0020for\u0020an\u0020input\u0020option\u0020name.", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#method_suggestOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003AsuggestOptions\u0028\u0029", + "name": "suggestOptions", + "summary": "Add\u0020multiple\u0020suggestions\u0020for\u0020input\u0020option\u0020names\u0020at\u0020once.", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#method_suggestOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003AgetOptionSuggestions\u0028\u0029", + "name": "getOptionSuggestions", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#method_getOptionSuggestions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003AgetValueSuggestions\u0028\u0029", + "name": "getValueSuggestions", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#method_getValueSuggestions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003A\u0024valueSuggestions", + "name": "valueSuggestions", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#property_valueSuggestions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\CompletionSuggestions\u003A\u003A\u0024optionSuggestions", + "name": "optionSuggestions", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-CompletionSuggestions.html#property_optionSuggestions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Output\\BashCompletionOutput", + "name": "BashCompletionOutput", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Output-BashCompletionOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Output\\BashCompletionOutput\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Output-BashCompletionOutput.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Output\\CompletionOutputInterface", + "name": "CompletionOutputInterface", + "summary": "Transforms\u0020the\u0020\u007B\u0040see\u0020CompletionSuggestions\u007D\u0020object\u0020into\u0020output\u0020readable\u0020by\u0020the\u0020shell\u0020completion.", + "url": "classes/Symfony-Component-Console-Completion-Output-CompletionOutputInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Output\\CompletionOutputInterface\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Output-CompletionOutputInterface.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Suggestion", + "name": "Suggestion", + "summary": "Represents\u0020a\u0020single\u0020suggested\u0020value.", + "url": "classes/Symfony-Component-Console-Completion-Suggestion.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Suggestion\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Suggestion.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Suggestion\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Suggestion.html#method_getValue" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Suggestion\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Suggestion.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Suggestion\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Symfony-Component-Console-Completion-Suggestion.html#property_value" + }, { + "fqsen": "\\Symfony\\Component\\Console\\ConsoleEvents", + "name": "ConsoleEvents", + "summary": "Contains\u0020all\u0020events\u0020dispatched\u0020by\u0020an\u0020Application.", + "url": "classes/Symfony-Component-Console-ConsoleEvents.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\ConsoleEvents\u003A\u003ACOMMAND", + "name": "COMMAND", + "summary": "The\u0020COMMAND\u0020event\u0020allows\u0020you\u0020to\u0020attach\u0020listeners\u0020before\u0020any\u0020command\u0020is\nexecuted\u0020by\u0020the\u0020console.\u0020It\u0020also\u0020allows\u0020you\u0020to\u0020modify\u0020the\u0020command,\u0020input\u0020and\u0020output\nbefore\u0020they\u0020are\u0020handed\u0020to\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-ConsoleEvents.html#constant_COMMAND" + }, { + "fqsen": "\\Symfony\\Component\\Console\\ConsoleEvents\u003A\u003ASIGNAL", + "name": "SIGNAL", + "summary": "The\u0020SIGNAL\u0020event\u0020allows\u0020you\u0020to\u0020perform\u0020some\u0020actions\nafter\u0020the\u0020command\u0020execution\u0020was\u0020interrupted.", + "url": "classes/Symfony-Component-Console-ConsoleEvents.html#constant_SIGNAL" + }, { + "fqsen": "\\Symfony\\Component\\Console\\ConsoleEvents\u003A\u003ATERMINATE", + "name": "TERMINATE", + "summary": "The\u0020TERMINATE\u0020event\u0020allows\u0020you\u0020to\u0020attach\u0020listeners\u0020after\u0020a\u0020command\u0020is\nexecuted\u0020by\u0020the\u0020console.", + "url": "classes/Symfony-Component-Console-ConsoleEvents.html#constant_TERMINATE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\ConsoleEvents\u003A\u003AERROR", + "name": "ERROR", + "summary": "The\u0020ERROR\u0020event\u0020occurs\u0020when\u0020an\u0020uncaught\u0020exception\u0020or\u0020error\u0020appears.", + "url": "classes/Symfony-Component-Console-ConsoleEvents.html#constant_ERROR" + }, { + "fqsen": "\\Symfony\\Component\\Console\\ConsoleEvents\u003A\u003AALIASES", + "name": "ALIASES", + "summary": "Event\u0020aliases.", + "url": "classes/Symfony-Component-Console-ConsoleEvents.html#constant_ALIASES" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor", + "name": "Cursor", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AmoveUp\u0028\u0029", + "name": "moveUp", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_moveUp" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AmoveDown\u0028\u0029", + "name": "moveDown", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_moveDown" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AmoveRight\u0028\u0029", + "name": "moveRight", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_moveRight" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AmoveLeft\u0028\u0029", + "name": "moveLeft", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_moveLeft" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AmoveToColumn\u0028\u0029", + "name": "moveToColumn", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_moveToColumn" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AmoveToPosition\u0028\u0029", + "name": "moveToPosition", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_moveToPosition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AsavePosition\u0028\u0029", + "name": "savePosition", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_savePosition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003ArestorePosition\u0028\u0029", + "name": "restorePosition", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_restorePosition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003Ahide\u0028\u0029", + "name": "hide", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_hide" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003Ashow\u0028\u0029", + "name": "show", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#method_show" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AclearLine\u0028\u0029", + "name": "clearLine", + "summary": "Clears\u0020all\u0020the\u0020output\u0020from\u0020the\u0020current\u0020line.", + "url": "classes/Symfony-Component-Console-Cursor.html#method_clearLine" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AclearLineAfter\u0028\u0029", + "name": "clearLineAfter", + "summary": "Clears\u0020all\u0020the\u0020output\u0020from\u0020the\u0020current\u0020line\u0020after\u0020the\u0020current\u0020position.", + "url": "classes/Symfony-Component-Console-Cursor.html#method_clearLineAfter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AclearOutput\u0028\u0029", + "name": "clearOutput", + "summary": "Clears\u0020all\u0020the\u0020output\u0020from\u0020the\u0020cursors\u0027\u0020current\u0020position\u0020to\u0020the\u0020end\u0020of\u0020the\u0020screen.", + "url": "classes/Symfony-Component-Console-Cursor.html#method_clearOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AclearScreen\u0028\u0029", + "name": "clearScreen", + "summary": "Clears\u0020the\u0020entire\u0020screen.", + "url": "classes/Symfony-Component-Console-Cursor.html#method_clearScreen" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003AgetCurrentPosition\u0028\u0029", + "name": "getCurrentPosition", + "summary": "Returns\u0020the\u0020current\u0020cursor\u0020position\u0020as\u0020x,y\u0020coordinates.", + "url": "classes/Symfony-Component-Console-Cursor.html#method_getCurrentPosition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Cursor\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Console-Cursor.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass", + "name": "AddConsoleCommandPass", + "summary": "Registers\u0020console\u0020commands.", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass\u003A\u003A\u0024commandLoaderServiceId", + "name": "commandLoaderServiceId", + "summary": "", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html#property_commandLoaderServiceId" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass\u003A\u003A\u0024commandTag", + "name": "commandTag", + "summary": "", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html#property_commandTag" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass\u003A\u003A\u0024noPreloadTag", + "name": "noPreloadTag", + "summary": "", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html#property_noPreloadTag" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass\u003A\u003A\u0024privateTagName", + "name": "privateTagName", + "summary": "", + "url": "classes/Symfony-Component-Console-DependencyInjection-AddConsoleCommandPass.html#property_privateTagName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Descriptor\\DescriptorInterface", + "name": "DescriptorInterface", + "summary": "Descriptor\u0020interface.", + "url": "classes/Symfony-Component-Console-Descriptor-DescriptorInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Descriptor\\DescriptorInterface\u003A\u003Adescribe\u0028\u0029", + "name": "describe", + "summary": "", + "url": "classes/Symfony-Component-Console-Descriptor-DescriptorInterface.html#method_describe" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleCommandEvent", + "name": "ConsoleCommandEvent", + "summary": "Allows\u0020to\u0020do\u0020things\u0020before\u0020the\u0020command\u0020is\u0020executed,\u0020like\u0020skipping\u0020the\u0020command\u0020or\u0020executing\u0020code\u0020before\u0020the\u0020command\u0020is\ngoing\u0020to\u0020be\u0020executed.", + "url": "classes/Symfony-Component-Console-Event-ConsoleCommandEvent.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleCommandEvent\u003A\u003AdisableCommand\u0028\u0029", + "name": "disableCommand", + "summary": "Disables\u0020the\u0020command,\u0020so\u0020it\u0020won\u0027t\u0020be\u0020run.", + "url": "classes/Symfony-Component-Console-Event-ConsoleCommandEvent.html#method_disableCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleCommandEvent\u003A\u003AenableCommand\u0028\u0029", + "name": "enableCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleCommandEvent.html#method_enableCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleCommandEvent\u003A\u003A\u0024commandShouldRun", + "name": "commandShouldRun", + "summary": "Indicates\u0020if\u0020the\u0020command\u0020should\u0020be\u0020run\u0020or\u0020skipped.", + "url": "classes/Symfony-Component-Console-Event-ConsoleCommandEvent.html#property_commandShouldRun" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleCommandEvent\u003A\u003ARETURN_CODE_DISABLED", + "name": "RETURN_CODE_DISABLED", + "summary": "The\u0020return\u0020code\u0020for\u0020skipped\u0020commands,\u0020this\u0020will\u0020also\u0020be\u0020passed\u0020into\u0020the\u0020terminate\u0020event.", + "url": "classes/Symfony-Component-Console-Event-ConsoleCommandEvent.html#constant_RETURN_CODE_DISABLED" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent", + "name": "ConsoleErrorEvent", + "summary": "Allows\u0020to\u0020handle\u0020throwables\u0020thrown\u0020while\u0020running\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003AgetError\u0028\u0029", + "name": "getError", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#method_getError" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003AsetError\u0028\u0029", + "name": "setError", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#method_setError" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003AsetExitCode\u0028\u0029", + "name": "setExitCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#method_setExitCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003AgetExitCode\u0028\u0029", + "name": "getExitCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#method_getExitCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003A\u0024error", + "name": "error", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#property_error" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleErrorEvent\u003A\u003A\u0024exitCode", + "name": "exitCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleErrorEvent.html#property_exitCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent", + "name": "ConsoleEvent", + "summary": "Allows\u0020to\u0020inspect\u0020input\u0020and\u0020output\u0020of\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "Gets\u0020the\u0020command\u0020that\u0020is\u0020executed.", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#method_getCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003AgetInput\u0028\u0029", + "name": "getInput", + "summary": "Gets\u0020the\u0020input\u0020instance.", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#method_getInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "Gets\u0020the\u0020output\u0020instance.", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#method_getOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleEvent\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleEvent.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleSignalEvent", + "name": "ConsoleSignalEvent", + "summary": "Allows\u0020to\u0020inspect\u0020input\u0020and\u0020output\u0020of\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-Event-ConsoleSignalEvent.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleSignalEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleSignalEvent.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleSignalEvent\u003A\u003AgetHandlingSignal\u0028\u0029", + "name": "getHandlingSignal", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleSignalEvent.html#method_getHandlingSignal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleSignalEvent\u003A\u003A\u0024handlingSignal", + "name": "handlingSignal", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleSignalEvent.html#property_handlingSignal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent", + "name": "ConsoleTerminateEvent", + "summary": "Allows\u0020to\u0020manipulate\u0020the\u0020exit\u0020code\u0020of\u0020a\u0020command\u0020after\u0020its\u0020execution.", + "url": "classes/Symfony-Component-Console-Event-ConsoleTerminateEvent.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleTerminateEvent.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent\u003A\u003AsetExitCode\u0028\u0029", + "name": "setExitCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleTerminateEvent.html#method_setExitCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent\u003A\u003AgetExitCode\u0028\u0029", + "name": "getExitCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleTerminateEvent.html#method_getExitCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent\u003A\u003A\u0024exitCode", + "name": "exitCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Event-ConsoleTerminateEvent.html#property_exitCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener", + "name": "ErrorListener", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener\u003A\u003AonConsoleError\u0028\u0029", + "name": "onConsoleError", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html#method_onConsoleError" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener\u003A\u003AonConsoleTerminate\u0028\u0029", + "name": "onConsoleTerminate", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html#method_onConsoleTerminate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener\u003A\u003AgetSubscribedEvents\u0028\u0029", + "name": "getSubscribedEvents", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html#method_getSubscribedEvents" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener\u003A\u003AgetInputString\u0028\u0029", + "name": "getInputString", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html#method_getInputString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener\\ErrorListener\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Symfony-Component-Console-EventListener-ErrorListener.html#property_logger" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\CommandNotFoundException", + "name": "CommandNotFoundException", + "summary": "Represents\u0020an\u0020incorrect\u0020command\u0020name\u0020typed\u0020in\u0020the\u0020console.", + "url": "classes/Symfony-Component-Console-Exception-CommandNotFoundException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\CommandNotFoundException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Exception-CommandNotFoundException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\CommandNotFoundException\u003A\u003AgetAlternatives\u0028\u0029", + "name": "getAlternatives", + "summary": "", + "url": "classes/Symfony-Component-Console-Exception-CommandNotFoundException.html#method_getAlternatives" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\CommandNotFoundException\u003A\u003A\u0024alternatives", + "name": "alternatives", + "summary": "", + "url": "classes/Symfony-Component-Console-Exception-CommandNotFoundException.html#property_alternatives" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\ExceptionInterface", + "name": "ExceptionInterface", + "summary": "ExceptionInterface.", + "url": "classes/Symfony-Component-Console-Exception-ExceptionInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "", + "url": "classes/Symfony-Component-Console-Exception-InvalidArgumentException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\InvalidOptionException", + "name": "InvalidOptionException", + "summary": "Represents\u0020an\u0020incorrect\u0020option\u0020name\u0020or\u0020value\u0020typed\u0020in\u0020the\u0020console.", + "url": "classes/Symfony-Component-Console-Exception-InvalidOptionException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\LogicException", + "name": "LogicException", + "summary": "", + "url": "classes/Symfony-Component-Console-Exception-LogicException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\MissingInputException", + "name": "MissingInputException", + "summary": "Represents\u0020failure\u0020to\u0020read\u0020input\u0020from\u0020stdin.", + "url": "classes/Symfony-Component-Console-Exception-MissingInputException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\NamespaceNotFoundException", + "name": "NamespaceNotFoundException", + "summary": "Represents\u0020an\u0020incorrect\u0020namespace\u0020typed\u0020in\u0020the\u0020console.", + "url": "classes/Symfony-Component-Console-Exception-NamespaceNotFoundException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception\\RuntimeException", + "name": "RuntimeException", + "summary": "", + "url": "classes/Symfony-Component-Console-Exception-RuntimeException.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter", + "name": "NullOutputFormatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Formats\u0020a\u0020message\u0020according\u0020to\u0020the\u0020given\u0020styles.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#method_format" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003AgetStyle\u0028\u0029", + "name": "getStyle", + "summary": "Gets\u0020style\u0020options\u0020from\u0020style\u0020with\u0020specified\u0020name.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#method_getStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003AhasStyle\u0028\u0029", + "name": "hasStyle", + "summary": "Checks\u0020if\u0020output\u0020formatter\u0020has\u0020style\u0020with\u0020specified\u0020name.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#method_hasStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Whether\u0020the\u0020output\u0020will\u0020decorate\u0020messages.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003AsetStyle\u0028\u0029", + "name": "setStyle", + "summary": "Sets\u0020a\u0020new\u0020style.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#method_setStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatter\u003A\u003A\u0024style", + "name": "style", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatter.html#property_style" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle", + "name": "NullOutputFormatterStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle\u003A\u003Aapply\u0028\u0029", + "name": "apply", + "summary": "Applies\u0020the\u0020style\u0020to\u0020a\u0020given\u0020text.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html#method_apply" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle\u003A\u003AsetBackground\u0028\u0029", + "name": "setBackground", + "summary": "Sets\u0020style\u0020background\u0020color.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html#method_setBackground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle\u003A\u003AsetForeground\u0028\u0029", + "name": "setForeground", + "summary": "Sets\u0020style\u0020foreground\u0020color.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html#method_setForeground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", + "summary": "Sets\u0020some\u0020specific\u0020style\u0020option.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html#method_setOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Sets\u0020multiple\u0020style\u0020options\u0020at\u0020once.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html#method_setOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\NullOutputFormatterStyle\u003A\u003AunsetOption\u0028\u0029", + "name": "unsetOption", + "summary": "Unsets\u0020some\u0020specific\u0020style\u0020option.", + "url": "classes/Symfony-Component-Console-Formatter-NullOutputFormatterStyle.html#method_unsetOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter", + "name": "OutputFormatter", + "summary": "Formatter\u0020class\u0020for\u0020console\u0020output.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method___clone" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003Aescape\u0028\u0029", + "name": "escape", + "summary": "Escapes\u0020\u0022\u003C\u0022\u0020and\u0020\u0022\u003E\u0022\u0020special\u0020chars\u0020in\u0020given\u0020text.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_escape" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initializes\u0020console\u0020output\u0020formatter.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Whether\u0020the\u0020output\u0020will\u0020decorate\u0020messages.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AsetStyle\u0028\u0029", + "name": "setStyle", + "summary": "Sets\u0020a\u0020new\u0020style.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_setStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AhasStyle\u0028\u0029", + "name": "hasStyle", + "summary": "Checks\u0020if\u0020output\u0020formatter\u0020has\u0020style\u0020with\u0020specified\u0020name.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_hasStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AgetStyle\u0028\u0029", + "name": "getStyle", + "summary": "Gets\u0020style\u0020options\u0020from\u0020style\u0020with\u0020specified\u0020name.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_getStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Formats\u0020a\u0020message\u0020according\u0020to\u0020the\u0020given\u0020styles.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_format" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AformatAndWrap\u0028\u0029", + "name": "formatAndWrap", + "summary": "Formats\u0020a\u0020message\u0020according\u0020to\u0020the\u0020given\u0020styles,\u0020wrapping\u0020at\u0020\u0060\u0024width\u0060\u0020\u00280\u0020means\u0020no\u0020wrapping\u0029.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_formatAndWrap" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AgetStyleStack\u0028\u0029", + "name": "getStyleStack", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_getStyleStack" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AcreateStyleFromString\u0028\u0029", + "name": "createStyleFromString", + "summary": "Tries\u0020to\u0020create\u0020new\u0020style\u0020instance\u0020from\u0020string.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_createStyleFromString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AapplyCurrentStyle\u0028\u0029", + "name": "applyCurrentStyle", + "summary": "Applies\u0020current\u0020style\u0020from\u0020stack\u0020to\u0020text,\u0020if\u0020must\u0020be\u0020applied.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_applyCurrentStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003AaddLineBreaks\u0028\u0029", + "name": "addLineBreaks", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#method_addLineBreaks" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003A\u0024decorated", + "name": "decorated", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#property_decorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#property_styles" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatter\u003A\u003A\u0024styleStack", + "name": "styleStack", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatter.html#property_styleStack" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface", + "name": "OutputFormatterInterface", + "summary": "Formatter\u0020interface\u0020for\u0020console\u0020output.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Whether\u0020the\u0020output\u0020will\u0020decorate\u0020messages.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface\u003A\u003AsetStyle\u0028\u0029", + "name": "setStyle", + "summary": "Sets\u0020a\u0020new\u0020style.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html#method_setStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface\u003A\u003AhasStyle\u0028\u0029", + "name": "hasStyle", + "summary": "Checks\u0020if\u0020output\u0020formatter\u0020has\u0020style\u0020with\u0020specified\u0020name.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html#method_hasStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface\u003A\u003AgetStyle\u0028\u0029", + "name": "getStyle", + "summary": "Gets\u0020style\u0020options\u0020from\u0020style\u0020with\u0020specified\u0020name.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html#method_getStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Formats\u0020a\u0020message\u0020according\u0020to\u0020the\u0020given\u0020styles.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterInterface.html#method_format" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle", + "name": "OutputFormatterStyle", + "summary": "Formatter\u0020style\u0020class\u0020for\u0020defining\u0020styles.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Initializes\u0020output\u0020formatter\u0020style.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003AsetForeground\u0028\u0029", + "name": "setForeground", + "summary": "Sets\u0020style\u0020foreground\u0020color.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_setForeground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003AsetBackground\u0028\u0029", + "name": "setBackground", + "summary": "Sets\u0020style\u0020background\u0020color.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_setBackground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003AsetHref\u0028\u0029", + "name": "setHref", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_setHref" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", + "summary": "Sets\u0020some\u0020specific\u0020style\u0020option.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_setOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003AunsetOption\u0028\u0029", + "name": "unsetOption", + "summary": "Unsets\u0020some\u0020specific\u0020style\u0020option.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_unsetOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Sets\u0020multiple\u0020style\u0020options\u0020at\u0020once.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_setOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003Aapply\u0028\u0029", + "name": "apply", + "summary": "Applies\u0020the\u0020style\u0020to\u0020a\u0020given\u0020text.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#method_apply" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A\u0024color", + "name": "color", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#property_color" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A\u0024foreground", + "name": "foreground", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#property_foreground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A\u0024background", + "name": "background", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#property_background" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A\u0024href", + "name": "href", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#property_href" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle\u003A\u003A\u0024handlesHrefGracefully", + "name": "handlesHrefGracefully", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyle.html#property_handlesHrefGracefully" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface", + "name": "OutputFormatterStyleInterface", + "summary": "Formatter\u0020style\u0020interface\u0020for\u0020defining\u0020styles.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface\u003A\u003AsetForeground\u0028\u0029", + "name": "setForeground", + "summary": "Sets\u0020style\u0020foreground\u0020color.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html#method_setForeground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface\u003A\u003AsetBackground\u0028\u0029", + "name": "setBackground", + "summary": "Sets\u0020style\u0020background\u0020color.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html#method_setBackground" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", + "summary": "Sets\u0020some\u0020specific\u0020style\u0020option.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html#method_setOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface\u003A\u003AunsetOption\u0028\u0029", + "name": "unsetOption", + "summary": "Unsets\u0020some\u0020specific\u0020style\u0020option.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html#method_unsetOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Sets\u0020multiple\u0020style\u0020options\u0020at\u0020once.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html#method_setOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface\u003A\u003Aapply\u0028\u0029", + "name": "apply", + "summary": "Applies\u0020the\u0020style\u0020to\u0020a\u0020given\u0020text.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleInterface.html#method_apply" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack", + "name": "OutputFormatterStyleStack", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "Resets\u0020stack\u0020\u0028ie.\u0020empty\u0020internal\u0020arrays\u0029.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method_reset" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003Apush\u0028\u0029", + "name": "push", + "summary": "Pushes\u0020a\u0020style\u0020in\u0020the\u0020stack.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method_push" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003Apop\u0028\u0029", + "name": "pop", + "summary": "Pops\u0020a\u0020style\u0020from\u0020the\u0020stack.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method_pop" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003AgetCurrent\u0028\u0029", + "name": "getCurrent", + "summary": "Computes\u0020current\u0020style\u0020with\u0020stacks\u0020top\u0020codes.", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method_getCurrent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003AsetEmptyStyle\u0028\u0029", + "name": "setEmptyStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method_setEmptyStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003AgetEmptyStyle\u0028\u0029", + "name": "getEmptyStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#method_getEmptyStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#property_styles" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack\u003A\u003A\u0024emptyStyle", + "name": "emptyStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Formatter-OutputFormatterStyleStack.html#property_emptyStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface", + "name": "WrappableOutputFormatterInterface", + "summary": "Formatter\u0020interface\u0020for\u0020console\u0020output\u0020that\u0020supports\u0020word\u0020wrapping.", + "url": "classes/Symfony-Component-Console-Formatter-WrappableOutputFormatterInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter\\WrappableOutputFormatterInterface\u003A\u003AformatAndWrap\u0028\u0029", + "name": "formatAndWrap", + "summary": "Formats\u0020a\u0020message\u0020according\u0020to\u0020the\u0020given\u0020styles,\u0020wrapping\u0020at\u0020\u0060\u0024width\u0060\u0020\u00280\u0020means\u0020no\u0020wrapping\u0029.", + "url": "classes/Symfony-Component-Console-Formatter-WrappableOutputFormatterInterface.html#method_formatAndWrap" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper", + "name": "DebugFormatterHelper", + "summary": "Helps\u0020outputting\u0020debug\u0020information\u0020when\u0020running\u0020an\u0020external\u0020program\u0020from\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Starts\u0020a\u0020debug\u0020formatting\u0020session.", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003Aprogress\u0028\u0029", + "name": "progress", + "summary": "Adds\u0020progress\u0020to\u0020a\u0020formatting\u0020session.", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#method_progress" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003Astop\u0028\u0029", + "name": "stop", + "summary": "Stops\u0020a\u0020formatting\u0020session.", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#method_stop" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003AgetBorder\u0028\u0029", + "name": "getBorder", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#method_getBorder" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020canonical\u0020name\u0020of\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003ACOLORS", + "name": "COLORS", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#constant_COLORS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003A\u0024started", + "name": "started", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#property_started" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DebugFormatterHelper\u003A\u003A\u0024count", + "name": "count", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DebugFormatterHelper.html#property_count" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper", + "name": "DescriptorHelper", + "summary": "This\u0020class\u0020adds\u0020helper\u0020method\u0020to\u0020describe\u0020objects\u0020in\u0020various\u0020formats.", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper\u003A\u003Adescribe\u0028\u0029", + "name": "describe", + "summary": "Describes\u0020an\u0020object\u0020if\u0020supported.", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html#method_describe" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "Registers\u0020a\u0020descriptor.", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html#method_register" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020canonical\u0020name\u0020of\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper\u003A\u003AgetFormats\u0028\u0029", + "name": "getFormats", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html#method_getFormats" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\DescriptorHelper\u003A\u003A\u0024descriptors", + "name": "descriptors", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-DescriptorHelper.html#property_descriptors" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper", + "name": "Dumper", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html#method___invoke" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper\u003A\u003A\u0024dumper", + "name": "dumper", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html#property_dumper" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper\u003A\u003A\u0024cloner", + "name": "cloner", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html#property_cloner" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Dumper\u003A\u003A\u0024handler", + "name": "handler", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Dumper.html#property_handler" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\FormatterHelper", + "name": "FormatterHelper", + "summary": "The\u0020Formatter\u0020class\u0020provides\u0020helpers\u0020to\u0020format\u0020messages.", + "url": "classes/Symfony-Component-Console-Helper-FormatterHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\FormatterHelper\u003A\u003AformatSection\u0028\u0029", + "name": "formatSection", + "summary": "Formats\u0020a\u0020message\u0020within\u0020a\u0020section.", + "url": "classes/Symfony-Component-Console-Helper-FormatterHelper.html#method_formatSection" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\FormatterHelper\u003A\u003AformatBlock\u0028\u0029", + "name": "formatBlock", + "summary": "Formats\u0020a\u0020message\u0020as\u0020a\u0020block\u0020of\u0020text.", + "url": "classes/Symfony-Component-Console-Helper-FormatterHelper.html#method_formatBlock" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\FormatterHelper\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "Truncates\u0020a\u0020message\u0020to\u0020the\u0020given\u0020length.", + "url": "classes/Symfony-Component-Console-Helper-FormatterHelper.html#method_truncate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\FormatterHelper\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020canonical\u0020name\u0020of\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-FormatterHelper.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper", + "name": "Helper", + "summary": "Helper\u0020is\u0020the\u0020base\u0020class\u0020for\u0020all\u0020helper\u0020classes.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003AsetHelperSet\u0028\u0029", + "name": "setHelperSet", + "summary": "Sets\u0020the\u0020helper\u0020set\u0020associated\u0020with\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_setHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003AgetHelperSet\u0028\u0029", + "name": "getHelperSet", + "summary": "Gets\u0020the\u0020helper\u0020set\u0020associated\u0020with\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_getHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003Astrlen\u0028\u0029", + "name": "strlen", + "summary": "Returns\u0020the\u0020length\u0020of\u0020a\u0020string,\u0020using\u0020mb_strwidth\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_strlen" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003Awidth\u0028\u0029", + "name": "width", + "summary": "Returns\u0020the\u0020width\u0020of\u0020a\u0020string,\u0020using\u0020mb_strwidth\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_width" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "Returns\u0020the\u0020length\u0020of\u0020a\u0020string,\u0020using\u0020mb_strlen\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_length" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003Asubstr\u0028\u0029", + "name": "substr", + "summary": "Returns\u0020the\u0020subset\u0020of\u0020a\u0020string,\u0020using\u0020mb_substr\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_substr" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003AformatTime\u0028\u0029", + "name": "formatTime", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_formatTime" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003AformatMemory\u0028\u0029", + "name": "formatMemory", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_formatMemory" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003AstrlenWithoutDecoration\u0028\u0029", + "name": "strlenWithoutDecoration", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_strlenWithoutDecoration" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003AremoveDecoration\u0028\u0029", + "name": "removeDecoration", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#method_removeDecoration" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Helper\u003A\u003A\u0024helperSet", + "name": "helperSet", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Helper.html#property_helperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperInterface", + "name": "HelperInterface", + "summary": "HelperInterface\u0020is\u0020the\u0020interface\u0020all\u0020helpers\u0020must\u0020implement.", + "url": "classes/Symfony-Component-Console-Helper-HelperInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperInterface\u003A\u003AsetHelperSet\u0028\u0029", + "name": "setHelperSet", + "summary": "Sets\u0020the\u0020helper\u0020set\u0020associated\u0020with\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-HelperInterface.html#method_setHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperInterface\u003A\u003AgetHelperSet\u0028\u0029", + "name": "getHelperSet", + "summary": "Gets\u0020the\u0020helper\u0020set\u0020associated\u0020with\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-HelperInterface.html#method_getHelperSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperInterface\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020canonical\u0020name\u0020of\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-HelperInterface.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet", + "name": "HelperSet", + "summary": "HelperSet\u0020represents\u0020a\u0020set\u0020of\u0020helpers\u0020to\u0020be\u0020used\u0020with\u0020a\u0020command.", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method_set" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Returns\u0020true\u0020if\u0020the\u0020helper\u0020if\u0020defined.", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Gets\u0020a\u0020helper\u0020value.", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003AsetCommand\u0028\u0029", + "name": "setCommand", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method_setCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003AgetCommand\u0028\u0029", + "name": "getCommand", + "summary": "Gets\u0020the\u0020command\u0020associated\u0020with\u0020this\u0020helper\u0020set.", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method_getCommand" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#method_getIterator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003A\u0024helpers", + "name": "helpers", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#property_helpers" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\HelperSet\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-HelperSet.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\InputAwareHelper", + "name": "InputAwareHelper", + "summary": "An\u0020implementation\u0020of\u0020InputAwareInterface\u0020for\u0020Helpers.", + "url": "classes/Symfony-Component-Console-Helper-InputAwareHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\InputAwareHelper\u003A\u003AsetInput\u0028\u0029", + "name": "setInput", + "summary": "Sets\u0020the\u0020Console\u0020Input.", + "url": "classes/Symfony-Component-Console-Helper-InputAwareHelper.html#method_setInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\InputAwareHelper\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-InputAwareHelper.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProcessHelper", + "name": "ProcessHelper", + "summary": "The\u0020ProcessHelper\u0020class\u0020provides\u0020helpers\u0020to\u0020run\u0020external\u0020processes.", + "url": "classes/Symfony-Component-Console-Helper-ProcessHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProcessHelper\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020an\u0020external\u0020process.", + "url": "classes/Symfony-Component-Console-Helper-ProcessHelper.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProcessHelper\u003A\u003AmustRun\u0028\u0029", + "name": "mustRun", + "summary": "Runs\u0020the\u0020process.", + "url": "classes/Symfony-Component-Console-Helper-ProcessHelper.html#method_mustRun" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProcessHelper\u003A\u003AwrapCallback\u0028\u0029", + "name": "wrapCallback", + "summary": "Wraps\u0020a\u0020Process\u0020callback\u0020to\u0020add\u0020debugging\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-ProcessHelper.html#method_wrapCallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProcessHelper\u003A\u003AescapeString\u0028\u0029", + "name": "escapeString", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProcessHelper.html#method_escapeString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProcessHelper\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020canonical\u0020name\u0020of\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-ProcessHelper.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar", + "name": "ProgressBar", + "summary": "The\u0020ProgressBar\u0020provides\u0020helpers\u0020to\u0020display\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetPlaceholderFormatterDefinition\u0028\u0029", + "name": "setPlaceholderFormatterDefinition", + "summary": "Sets\u0020a\u0020placeholder\u0020formatter\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setPlaceholderFormatterDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetPlaceholderFormatterDefinition\u0028\u0029", + "name": "getPlaceholderFormatterDefinition", + "summary": "Gets\u0020the\u0020placeholder\u0020formatter\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getPlaceholderFormatterDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetFormatDefinition\u0028\u0029", + "name": "setFormatDefinition", + "summary": "Sets\u0020a\u0020format\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setFormatDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetFormatDefinition\u0028\u0029", + "name": "getFormatDefinition", + "summary": "Gets\u0020the\u0020format\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getFormatDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetMessage\u0028\u0029", + "name": "setMessage", + "summary": "Associates\u0020a\u0020text\u0020with\u0020a\u0020named\u0020placeholder.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setMessage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetMessage\u0028\u0029", + "name": "getMessage", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getMessage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetStartTime\u0028\u0029", + "name": "getStartTime", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getStartTime" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetMaxSteps\u0028\u0029", + "name": "getMaxSteps", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getMaxSteps" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetProgress\u0028\u0029", + "name": "getProgress", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getProgress" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetStepWidth\u0028\u0029", + "name": "getStepWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getStepWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetProgressPercent\u0028\u0029", + "name": "getProgressPercent", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getProgressPercent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetBarOffset\u0028\u0029", + "name": "getBarOffset", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getBarOffset" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetEstimated\u0028\u0029", + "name": "getEstimated", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getEstimated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetRemaining\u0028\u0029", + "name": "getRemaining", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getRemaining" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetBarWidth\u0028\u0029", + "name": "setBarWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setBarWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetBarWidth\u0028\u0029", + "name": "getBarWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getBarWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetBarCharacter\u0028\u0029", + "name": "setBarCharacter", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setBarCharacter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetBarCharacter\u0028\u0029", + "name": "getBarCharacter", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getBarCharacter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetEmptyBarCharacter\u0028\u0029", + "name": "setEmptyBarCharacter", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setEmptyBarCharacter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetEmptyBarCharacter\u0028\u0029", + "name": "getEmptyBarCharacter", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getEmptyBarCharacter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetProgressCharacter\u0028\u0029", + "name": "setProgressCharacter", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setProgressCharacter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AgetProgressCharacter\u0028\u0029", + "name": "getProgressCharacter", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_getProgressCharacter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetFormat\u0028\u0029", + "name": "setFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetRedrawFrequency\u0028\u0029", + "name": "setRedrawFrequency", + "summary": "Sets\u0020the\u0020redraw\u0020frequency.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setRedrawFrequency" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024minSecondsBetweenRedraws", + "name": "minSecondsBetweenRedraws", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_minSecondsBetweenRedraws" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024maxSecondsBetweenRedraws", + "name": "maxSecondsBetweenRedraws", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_maxSecondsBetweenRedraws" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003Aiterate\u0028\u0029", + "name": "iterate", + "summary": "Returns\u0020an\u0020iterator\u0020that\u0020will\u0020automatically\u0020update\u0020the\u0020progress\u0020bar\u0020when\u0020iterated.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_iterate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Starts\u0020the\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003Aadvance\u0028\u0029", + "name": "advance", + "summary": "Advances\u0020the\u0020progress\u0020output\u0020X\u0020steps.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_advance" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetOverwrite\u0028\u0029", + "name": "setOverwrite", + "summary": "Sets\u0020whether\u0020to\u0020overwrite\u0020the\u0020progressbar,\u0020false\u0020for\u0020new\u0020line.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setOverwrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetProgress\u0028\u0029", + "name": "setProgress", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setProgress" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetMaxSteps\u0028\u0029", + "name": "setMaxSteps", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setMaxSteps" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003Afinish\u0028\u0029", + "name": "finish", + "summary": "Finishes\u0020the\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_finish" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003Adisplay\u0028\u0029", + "name": "display", + "summary": "Outputs\u0020the\u0020current\u0020progress\u0020string.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_display" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Removes\u0020the\u0020progress\u0020bar\u0020from\u0020the\u0020current\u0020line.", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_clear" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AsetRealFormat\u0028\u0029", + "name": "setRealFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_setRealFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024overwrite", + "name": "overwrite", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_overwrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AdetermineBestFormat\u0028\u0029", + "name": "determineBestFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_determineBestFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AinitPlaceholderFormatters\u0028\u0029", + "name": "initPlaceholderFormatters", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_initPlaceholderFormatters" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AinitFormats\u0028\u0029", + "name": "initFormats", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_initFormats" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AbuildLine\u0028\u0029", + "name": "buildLine", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#method_buildLine" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_VERBOSE", + "name": "FORMAT_VERBOSE", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_VERBOSE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_VERY_VERBOSE", + "name": "FORMAT_VERY_VERBOSE", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_VERY_VERBOSE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_DEBUG", + "name": "FORMAT_DEBUG", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_DEBUG" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_NORMAL", + "name": "FORMAT_NORMAL", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_NORMAL" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_VERBOSE_NOMAX", + "name": "FORMAT_VERBOSE_NOMAX", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_VERBOSE_NOMAX" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_VERY_VERBOSE_NOMAX", + "name": "FORMAT_VERY_VERBOSE_NOMAX", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_VERY_VERBOSE_NOMAX" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_DEBUG_NOMAX", + "name": "FORMAT_DEBUG_NOMAX", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_DEBUG_NOMAX" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003AFORMAT_NORMAL_NOMAX", + "name": "FORMAT_NORMAL_NOMAX", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#constant_FORMAT_NORMAL_NOMAX" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024barWidth", + "name": "barWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_barWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024barChar", + "name": "barChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_barChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024emptyBarChar", + "name": "emptyBarChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_emptyBarChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024progressChar", + "name": "progressChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_progressChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024format", + "name": "format", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_format" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024internalFormat", + "name": "internalFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_internalFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024redrawFreq", + "name": "redrawFreq", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_redrawFreq" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024writeCount", + "name": "writeCount", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_writeCount" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024lastWriteTime", + "name": "lastWriteTime", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_lastWriteTime" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024step", + "name": "step", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_step" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024max", + "name": "max", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_max" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024startTime", + "name": "startTime", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_startTime" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024stepWidth", + "name": "stepWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_stepWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024percent", + "name": "percent", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_percent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024messages", + "name": "messages", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_messages" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024terminal", + "name": "terminal", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_terminal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024previousMessage", + "name": "previousMessage", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_previousMessage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024cursor", + "name": "cursor", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_cursor" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024formatters", + "name": "formatters", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_formatters" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressBar\u003A\u003A\u0024formats", + "name": "formats", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressBar.html#property_formats" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator", + "name": "ProgressIndicator", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AsetMessage\u0028\u0029", + "name": "setMessage", + "summary": "Sets\u0020the\u0020current\u0020indicator\u0020message.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_setMessage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Starts\u0020the\u0020indicator\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003Aadvance\u0028\u0029", + "name": "advance", + "summary": "Advances\u0020the\u0020indicator.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_advance" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003Afinish\u0028\u0029", + "name": "finish", + "summary": "Finish\u0020the\u0020indicator\u0020with\u0020message.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_finish" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AgetFormatDefinition\u0028\u0029", + "name": "getFormatDefinition", + "summary": "Gets\u0020the\u0020format\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_getFormatDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AsetPlaceholderFormatterDefinition\u0028\u0029", + "name": "setPlaceholderFormatterDefinition", + "summary": "Sets\u0020a\u0020placeholder\u0020formatter\u0020for\u0020a\u0020given\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_setPlaceholderFormatterDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AgetPlaceholderFormatterDefinition\u0028\u0029", + "name": "getPlaceholderFormatterDefinition", + "summary": "Gets\u0020the\u0020placeholder\u0020formatter\u0020for\u0020a\u0020given\u0020name\u0020\u0028including\u0020the\u0020delimiter\u0020char\u0020like\u0020\u0025\u0029.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_getPlaceholderFormatterDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003Adisplay\u0028\u0029", + "name": "display", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_display" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AdetermineBestFormat\u0028\u0029", + "name": "determineBestFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_determineBestFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003Aoverwrite\u0028\u0029", + "name": "overwrite", + "summary": "Overwrites\u0020a\u0020previous\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_overwrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AgetCurrentTimeInMilliseconds\u0028\u0029", + "name": "getCurrentTimeInMilliseconds", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_getCurrentTimeInMilliseconds" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AinitPlaceholderFormatters\u0028\u0029", + "name": "initPlaceholderFormatters", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#method_initPlaceholderFormatters" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003AFORMATS", + "name": "FORMATS", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#constant_FORMATS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024startTime", + "name": "startTime", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_startTime" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024format", + "name": "format", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_format" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024message", + "name": "message", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_message" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024indicatorValues", + "name": "indicatorValues", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_indicatorValues" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024indicatorCurrent", + "name": "indicatorCurrent", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_indicatorCurrent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024indicatorChangeInterval", + "name": "indicatorChangeInterval", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_indicatorChangeInterval" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024indicatorUpdateTime", + "name": "indicatorUpdateTime", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_indicatorUpdateTime" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024started", + "name": "started", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_started" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\ProgressIndicator\u003A\u003A\u0024formatters", + "name": "formatters", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-ProgressIndicator.html#property_formatters" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper", + "name": "QuestionHelper", + "summary": "The\u0020QuestionHelper\u0020class\u0020provides\u0020helpers\u0020to\u0020interact\u0020with\u0020the\u0020user.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003Aask\u0028\u0029", + "name": "ask", + "summary": "Asks\u0020a\u0020question\u0020to\u0020the\u0020user.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_ask" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020canonical\u0020name\u0020of\u0020this\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AdisableStty\u0028\u0029", + "name": "disableStty", + "summary": "Prevents\u0020usage\u0020of\u0020stty.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_disableStty" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AdoAsk\u0028\u0029", + "name": "doAsk", + "summary": "Asks\u0020the\u0020question\u0020to\u0020the\u0020user.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_doAsk" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AgetDefaultAnswer\u0028\u0029", + "name": "getDefaultAnswer", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_getDefaultAnswer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AwritePrompt\u0028\u0029", + "name": "writePrompt", + "summary": "Outputs\u0020the\u0020question\u0020prompt.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_writePrompt" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AformatChoiceQuestionChoices\u0028\u0029", + "name": "formatChoiceQuestionChoices", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_formatChoiceQuestionChoices" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AwriteError\u0028\u0029", + "name": "writeError", + "summary": "Outputs\u0020an\u0020error\u0020message.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_writeError" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003Aautocomplete\u0028\u0029", + "name": "autocomplete", + "summary": "Autocompletes\u0020a\u0020question.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_autocomplete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AmostRecentlyEnteredValue\u0028\u0029", + "name": "mostRecentlyEnteredValue", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_mostRecentlyEnteredValue" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AgetHiddenResponse\u0028\u0029", + "name": "getHiddenResponse", + "summary": "Gets\u0020a\u0020hidden\u0020response\u0020from\u0020user.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_getHiddenResponse" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AvalidateAttempts\u0028\u0029", + "name": "validateAttempts", + "summary": "Validates\u0020an\u0020attempt.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_validateAttempts" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AisInteractiveInput\u0028\u0029", + "name": "isInteractiveInput", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_isInteractiveInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AreadInput\u0028\u0029", + "name": "readInput", + "summary": "Reads\u0020one\u0020or\u0020more\u0020lines\u0020of\u0020input\u0020and\u0020returns\u0020what\u0020is\u0020read.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_readInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AsetIOCodepage\u0028\u0029", + "name": "setIOCodepage", + "summary": "Sets\u0020console\u0020I\/O\u0020to\u0020the\u0020host\u0020code\u0020page.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_setIOCodepage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AresetIOCodepage\u0028\u0029", + "name": "resetIOCodepage", + "summary": "Sets\u0020console\u0020I\/O\u0020to\u0020the\u0020specified\u0020code\u0020page\u0020and\u0020converts\u0020the\u0020user\u0020input.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_resetIOCodepage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003AcloneInputStream\u0028\u0029", + "name": "cloneInputStream", + "summary": "Clones\u0020an\u0020input\u0020stream\u0020in\u0020order\u0020to\u0020act\u0020on\u0020one\u0020instance\u0020of\u0020the\u0020same\nstream\u0020without\u0020affecting\u0020the\u0020other\u0020instance.", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#method_cloneInputStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003A\u0024inputStream", + "name": "inputStream", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#property_inputStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003A\u0024stty", + "name": "stty", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#property_stty" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\QuestionHelper\u003A\u003A\u0024stdinIsInteractive", + "name": "stdinIsInteractive", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-QuestionHelper.html#property_stdinIsInteractive" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper", + "name": "SymfonyQuestionHelper", + "summary": "Symfony\u0020Style\u0020Guide\u0020compliant\u0020question\u0020helper.", + "url": "classes/Symfony-Component-Console-Helper-SymfonyQuestionHelper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper\u003A\u003AwritePrompt\u0028\u0029", + "name": "writePrompt", + "summary": "Outputs\u0020the\u0020question\u0020prompt.", + "url": "classes/Symfony-Component-Console-Helper-SymfonyQuestionHelper.html#method_writePrompt" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper\u003A\u003AwriteError\u0028\u0029", + "name": "writeError", + "summary": "Outputs\u0020an\u0020error\u0020message.", + "url": "classes/Symfony-Component-Console-Helper-SymfonyQuestionHelper.html#method_writeError" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper\u003A\u003AgetEofShortcut\u0028\u0029", + "name": "getEofShortcut", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-SymfonyQuestionHelper.html#method_getEofShortcut" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table", + "name": "Table", + "summary": "Provides\u0020helpers\u0020to\u0020display\u0020a\u0020table.", + "url": "classes/Symfony-Component-Console-Helper-Table.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetStyleDefinition\u0028\u0029", + "name": "setStyleDefinition", + "summary": "Sets\u0020a\u0020style\u0020definition.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setStyleDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetStyleDefinition\u0028\u0029", + "name": "getStyleDefinition", + "summary": "Gets\u0020a\u0020style\u0020definition\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getStyleDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetStyle\u0028\u0029", + "name": "setStyle", + "summary": "Sets\u0020table\u0020style.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetStyle\u0028\u0029", + "name": "getStyle", + "summary": "Gets\u0020the\u0020current\u0020table\u0020style.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetColumnStyle\u0028\u0029", + "name": "setColumnStyle", + "summary": "Sets\u0020table\u0020column\u0020style.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setColumnStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetColumnStyle\u0028\u0029", + "name": "getColumnStyle", + "summary": "Gets\u0020the\u0020current\u0020style\u0020for\u0020a\u0020column.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getColumnStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetColumnWidth\u0028\u0029", + "name": "setColumnWidth", + "summary": "Sets\u0020the\u0020minimum\u0020width\u0020of\u0020a\u0020column.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setColumnWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetColumnWidths\u0028\u0029", + "name": "setColumnWidths", + "summary": "Sets\u0020the\u0020minimum\u0020width\u0020of\u0020all\u0020columns.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setColumnWidths" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetColumnMaxWidth\u0028\u0029", + "name": "setColumnMaxWidth", + "summary": "Sets\u0020the\u0020maximum\u0020width\u0020of\u0020a\u0020column.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setColumnMaxWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetHeaders\u0028\u0029", + "name": "setHeaders", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setHeaders" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetRows\u0028\u0029", + "name": "setRows", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setRows" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AaddRows\u0028\u0029", + "name": "addRows", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_addRows" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AaddRow\u0028\u0029", + "name": "addRow", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_addRow" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AappendRow\u0028\u0029", + "name": "appendRow", + "summary": "Adds\u0020a\u0020row\u0020to\u0020the\u0020table,\u0020and\u0020re\u002Drenders\u0020the\u0020table.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_appendRow" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetRow\u0028\u0029", + "name": "setRow", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setRow" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetHeaderTitle\u0028\u0029", + "name": "setHeaderTitle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setHeaderTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetFooterTitle\u0028\u0029", + "name": "setFooterTitle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setFooterTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AsetHorizontal\u0028\u0029", + "name": "setHorizontal", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_setHorizontal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003Arender\u0028\u0029", + "name": "render", + "summary": "Renders\u0020table\u0020to\u0020output.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_render" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ArenderRowSeparator\u0028\u0029", + "name": "renderRowSeparator", + "summary": "Renders\u0020horizontal\u0020header\u0020separator.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_renderRowSeparator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ArenderColumnSeparator\u0028\u0029", + "name": "renderColumnSeparator", + "summary": "Renders\u0020vertical\u0020column\u0020separator.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_renderColumnSeparator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ArenderRow\u0028\u0029", + "name": "renderRow", + "summary": "Renders\u0020table\u0020row.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_renderRow" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ArenderCell\u0028\u0029", + "name": "renderCell", + "summary": "Renders\u0020table\u0020cell\u0020with\u0020padding.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_renderCell" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AcalculateNumberOfColumns\u0028\u0029", + "name": "calculateNumberOfColumns", + "summary": "Calculate\u0020number\u0020of\u0020columns\u0020for\u0020this\u0020table.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_calculateNumberOfColumns" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AbuildTableRows\u0028\u0029", + "name": "buildTableRows", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_buildTableRows" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AcalculateRowCount\u0028\u0029", + "name": "calculateRowCount", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_calculateRowCount" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AfillNextRows\u0028\u0029", + "name": "fillNextRows", + "summary": "fill\u0020rows\u0020that\u0020contains\u0020rowspan\u0020\u003E\u00201.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_fillNextRows" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AfillCells\u0028\u0029", + "name": "fillCells", + "summary": "fill\u0020cells\u0020for\u0020a\u0020row\u0020that\u0020contains\u0020colspan\u0020\u003E\u00201.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_fillCells" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AcopyRow\u0028\u0029", + "name": "copyRow", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_copyRow" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetNumberOfColumns\u0028\u0029", + "name": "getNumberOfColumns", + "summary": "Gets\u0020number\u0020of\u0020columns\u0020by\u0020row.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getNumberOfColumns" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetRowColumns\u0028\u0029", + "name": "getRowColumns", + "summary": "Gets\u0020list\u0020of\u0020columns\u0020for\u0020the\u0020given\u0020row.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getRowColumns" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AcalculateColumnsWidth\u0028\u0029", + "name": "calculateColumnsWidth", + "summary": "Calculates\u0020columns\u0020widths.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_calculateColumnsWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetColumnSeparatorWidth\u0028\u0029", + "name": "getColumnSeparatorWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getColumnSeparatorWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AgetCellWidth\u0028\u0029", + "name": "getCellWidth", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_getCellWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003Acleanup\u0028\u0029", + "name": "cleanup", + "summary": "Called\u0020after\u0020rendering\u0020to\u0020cleanup\u0020cache\u0020data.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_cleanup" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AinitStyles\u0028\u0029", + "name": "initStyles", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_initStyles" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003AresolveStyle\u0028\u0029", + "name": "resolveStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#method_resolveStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ASEPARATOR_TOP", + "name": "SEPARATOR_TOP", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#constant_SEPARATOR_TOP" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ASEPARATOR_TOP_BOTTOM", + "name": "SEPARATOR_TOP_BOTTOM", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#constant_SEPARATOR_TOP_BOTTOM" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ASEPARATOR_MID", + "name": "SEPARATOR_MID", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#constant_SEPARATOR_MID" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ASEPARATOR_BOTTOM", + "name": "SEPARATOR_BOTTOM", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#constant_SEPARATOR_BOTTOM" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ABORDER_OUTSIDE", + "name": "BORDER_OUTSIDE", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#constant_BORDER_OUTSIDE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003ABORDER_INSIDE", + "name": "BORDER_INSIDE", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#constant_BORDER_INSIDE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024headerTitle", + "name": "headerTitle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_headerTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024footerTitle", + "name": "footerTitle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_footerTitle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024headers", + "name": "headers", + "summary": "Table\u0020headers.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_headers" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024rows", + "name": "rows", + "summary": "Table\u0020rows.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_rows" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024horizontal", + "name": "horizontal", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_horizontal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024effectiveColumnWidths", + "name": "effectiveColumnWidths", + "summary": "Column\u0020widths\u0020cache.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_effectiveColumnWidths" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024numberOfColumns", + "name": "numberOfColumns", + "summary": "Number\u0020of\u0020columns\u0020cache.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_numberOfColumns" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024style", + "name": "style", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_style" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024columnStyles", + "name": "columnStyles", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_columnStyles" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024columnWidths", + "name": "columnWidths", + "summary": "User\u0020set\u0020column\u0020widths.", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_columnWidths" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024columnMaxWidths", + "name": "columnMaxWidths", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_columnMaxWidths" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_styles" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\Table\u003A\u003A\u0024rendered", + "name": "rendered", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-Table.html#property_rendered" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell", + "name": "TableCell", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Returns\u0020the\u0020cell\u0020value.", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003AgetColspan\u0028\u0029", + "name": "getColspan", + "summary": "Gets\u0020number\u0020of\u0020colspan.", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#method_getColspan" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003AgetRowspan\u0028\u0029", + "name": "getRowspan", + "summary": "Gets\u0020number\u0020of\u0020rowspan.", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#method_getRowspan" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003AgetStyle\u0028\u0029", + "name": "getStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#method_getStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#property_value" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCell\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCell.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle", + "name": "TableCellStyle", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#method_getOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003AgetTagOptions\u0028\u0029", + "name": "getTagOptions", + "summary": "Gets\u0020options\u0020we\u0020need\u0020for\u0020tag\u0020for\u0020example\u0020fg,\u0020bg.", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#method_getTagOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003AgetPadByAlign\u0028\u0029", + "name": "getPadByAlign", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#method_getPadByAlign" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003AgetCellFormat\u0028\u0029", + "name": "getCellFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#method_getCellFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003ADEFAULT_ALIGN", + "name": "DEFAULT_ALIGN", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#constant_DEFAULT_ALIGN" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003ATAG_OPTIONS", + "name": "TAG_OPTIONS", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#constant_TAG_OPTIONS" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003AALIGN_MAP", + "name": "ALIGN_MAP", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#constant_ALIGN_MAP" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableCellStyle\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableCellStyle.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableSeparator", + "name": "TableSeparator", + "summary": "Marks\u0020a\u0020row\u0020as\u0020being\u0020a\u0020separator.", + "url": "classes/Symfony-Component-Console-Helper-TableSeparator.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableSeparator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableSeparator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle", + "name": "TableStyle", + "summary": "Defines\u0020the\u0020styles\u0020for\u0020a\u0020Table.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetPaddingChar\u0028\u0029", + "name": "setPaddingChar", + "summary": "Sets\u0020padding\u0020character,\u0020used\u0020for\u0020cell\u0020padding.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setPaddingChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetPaddingChar\u0028\u0029", + "name": "getPaddingChar", + "summary": "Gets\u0020padding\u0020character,\u0020used\u0020for\u0020cell\u0020padding.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getPaddingChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetHorizontalBorderChars\u0028\u0029", + "name": "setHorizontalBorderChars", + "summary": "Sets\u0020horizontal\u0020border\u0020characters.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setHorizontalBorderChars" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetVerticalBorderChars\u0028\u0029", + "name": "setVerticalBorderChars", + "summary": "Sets\u0020vertical\u0020border\u0020characters.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setVerticalBorderChars" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetCrossingChars\u0028\u0029", + "name": "setCrossingChars", + "summary": "Sets\u0020crossing\u0020characters.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setCrossingChars" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetDefaultCrossingChar\u0028\u0029", + "name": "setDefaultCrossingChar", + "summary": "Sets\u0020default\u0020crossing\u0020character\u0020used\u0020for\u0020each\u0020cross.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setDefaultCrossingChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetCrossingChar\u0028\u0029", + "name": "getCrossingChar", + "summary": "Gets\u0020crossing\u0020character.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getCrossingChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetCellHeaderFormat\u0028\u0029", + "name": "setCellHeaderFormat", + "summary": "Sets\u0020header\u0020cell\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setCellHeaderFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetCellHeaderFormat\u0028\u0029", + "name": "getCellHeaderFormat", + "summary": "Gets\u0020header\u0020cell\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getCellHeaderFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetCellRowFormat\u0028\u0029", + "name": "setCellRowFormat", + "summary": "Sets\u0020row\u0020cell\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setCellRowFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetCellRowFormat\u0028\u0029", + "name": "getCellRowFormat", + "summary": "Gets\u0020row\u0020cell\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getCellRowFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetCellRowContentFormat\u0028\u0029", + "name": "setCellRowContentFormat", + "summary": "Sets\u0020row\u0020cell\u0020content\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setCellRowContentFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetCellRowContentFormat\u0028\u0029", + "name": "getCellRowContentFormat", + "summary": "Gets\u0020row\u0020cell\u0020content\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getCellRowContentFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetBorderFormat\u0028\u0029", + "name": "setBorderFormat", + "summary": "Sets\u0020table\u0020border\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setBorderFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetBorderFormat\u0028\u0029", + "name": "getBorderFormat", + "summary": "Gets\u0020table\u0020border\u0020format.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getBorderFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetPadType\u0028\u0029", + "name": "setPadType", + "summary": "Sets\u0020cell\u0020padding\u0020type.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setPadType" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetPadType\u0028\u0029", + "name": "getPadType", + "summary": "Gets\u0020cell\u0020padding\u0020type.", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getPadType" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetHeaderTitleFormat\u0028\u0029", + "name": "getHeaderTitleFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getHeaderTitleFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetHeaderTitleFormat\u0028\u0029", + "name": "setHeaderTitleFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setHeaderTitleFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AgetFooterTitleFormat\u0028\u0029", + "name": "getFooterTitleFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_getFooterTitleFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003AsetFooterTitleFormat\u0028\u0029", + "name": "setFooterTitleFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#method_setFooterTitleFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024paddingChar", + "name": "paddingChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_paddingChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024horizontalOutsideBorderChar", + "name": "horizontalOutsideBorderChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_horizontalOutsideBorderChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024horizontalInsideBorderChar", + "name": "horizontalInsideBorderChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_horizontalInsideBorderChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024verticalOutsideBorderChar", + "name": "verticalOutsideBorderChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_verticalOutsideBorderChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024verticalInsideBorderChar", + "name": "verticalInsideBorderChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_verticalInsideBorderChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingChar", + "name": "crossingChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingTopRightChar", + "name": "crossingTopRightChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingTopRightChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingTopMidChar", + "name": "crossingTopMidChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingTopMidChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingTopLeftChar", + "name": "crossingTopLeftChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingTopLeftChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingMidRightChar", + "name": "crossingMidRightChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingMidRightChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingBottomRightChar", + "name": "crossingBottomRightChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingBottomRightChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingBottomMidChar", + "name": "crossingBottomMidChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingBottomMidChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingBottomLeftChar", + "name": "crossingBottomLeftChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingBottomLeftChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingMidLeftChar", + "name": "crossingMidLeftChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingMidLeftChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingTopLeftBottomChar", + "name": "crossingTopLeftBottomChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingTopLeftBottomChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingTopMidBottomChar", + "name": "crossingTopMidBottomChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingTopMidBottomChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024crossingTopRightBottomChar", + "name": "crossingTopRightBottomChar", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_crossingTopRightBottomChar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024headerTitleFormat", + "name": "headerTitleFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_headerTitleFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024footerTitleFormat", + "name": "footerTitleFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_footerTitleFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024cellHeaderFormat", + "name": "cellHeaderFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_cellHeaderFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024cellRowFormat", + "name": "cellRowFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_cellRowFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024cellRowContentFormat", + "name": "cellRowContentFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_cellRowContentFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024borderFormat", + "name": "borderFormat", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_borderFormat" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper\\TableStyle\u003A\u003A\u0024padType", + "name": "padType", + "summary": "", + "url": "classes/Symfony-Component-Console-Helper-TableStyle.html#property_padType" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput", + "name": "ArgvInput", + "summary": "ArgvInput\u0020represents\u0020an\u0020input\u0020coming\u0020from\u0020the\u0020CLI\u0020arguments.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AsetTokens\u0028\u0029", + "name": "setTokens", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_setTokens" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Processes\u0020command\u0020line\u0020arguments.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_parse" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AparseToken\u0028\u0029", + "name": "parseToken", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_parseToken" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AparseShortOption\u0028\u0029", + "name": "parseShortOption", + "summary": "Parses\u0020a\u0020short\u0020option.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_parseShortOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AparseShortOptionSet\u0028\u0029", + "name": "parseShortOptionSet", + "summary": "Parses\u0020a\u0020short\u0020option\u0020set.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_parseShortOptionSet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AparseLongOption\u0028\u0029", + "name": "parseLongOption", + "summary": "Parses\u0020a\u0020long\u0020option.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_parseLongOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AparseArgument\u0028\u0029", + "name": "parseArgument", + "summary": "Parses\u0020an\u0020argument.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_parseArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AaddShortOption\u0028\u0029", + "name": "addShortOption", + "summary": "Adds\u0020a\u0020short\u0020option\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_addShortOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AaddLongOption\u0028\u0029", + "name": "addLongOption", + "summary": "Adds\u0020a\u0020long\u0020option\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_addLongOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AgetFirstArgument\u0028\u0029", + "name": "getFirstArgument", + "summary": "Returns\u0020the\u0020first\u0020argument\u0020from\u0020the\u0020raw\u0020parameters\u0020\u0028not\u0020parsed\u0029.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_getFirstArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AhasParameterOption\u0028\u0029", + "name": "hasParameterOption", + "summary": "Returns\u0020true\u0020if\u0020the\u0020raw\u0020parameters\u0020\u0028not\u0020parsed\u0029\u0020contain\u0020a\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_hasParameterOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003AgetParameterOption\u0028\u0029", + "name": "getParameterOption", + "summary": "Returns\u0020the\u0020value\u0020of\u0020a\u0020raw\u0020option\u0020\u0028not\u0020parsed\u0029.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method_getParameterOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Returns\u0020a\u0020stringified\u0020representation\u0020of\u0020the\u0020args\u0020passed\u0020to\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003A\u0024tokens", + "name": "tokens", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#property_tokens" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArgvInput\u003A\u003A\u0024parsed", + "name": "parsed", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArgvInput.html#property_parsed" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput", + "name": "ArrayInput", + "summary": "ArrayInput\u0020represents\u0020an\u0020input\u0020provided\u0020as\u0020an\u0020array.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003AgetFirstArgument\u0028\u0029", + "name": "getFirstArgument", + "summary": "Returns\u0020the\u0020first\u0020argument\u0020from\u0020the\u0020raw\u0020parameters\u0020\u0028not\u0020parsed\u0029.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_getFirstArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003AhasParameterOption\u0028\u0029", + "name": "hasParameterOption", + "summary": "Returns\u0020true\u0020if\u0020the\u0020raw\u0020parameters\u0020\u0028not\u0020parsed\u0029\u0020contain\u0020a\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_hasParameterOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003AgetParameterOption\u0028\u0029", + "name": "getParameterOption", + "summary": "Returns\u0020the\u0020value\u0020of\u0020a\u0020raw\u0020option\u0020\u0028not\u0020parsed\u0029.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_getParameterOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "Returns\u0020a\u0020stringified\u0020representation\u0020of\u0020the\u0020args\u0020passed\u0020to\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Processes\u0020command\u0020line\u0020arguments.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_parse" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003AaddShortOption\u0028\u0029", + "name": "addShortOption", + "summary": "Adds\u0020a\u0020short\u0020option\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_addShortOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003AaddLongOption\u0028\u0029", + "name": "addLongOption", + "summary": "Adds\u0020a\u0020long\u0020option\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_addLongOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003AaddArgument\u0028\u0029", + "name": "addArgument", + "summary": "Adds\u0020an\u0020argument\u0020value.", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#method_addArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\ArrayInput\u003A\u003A\u0024parameters", + "name": "parameters", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-ArrayInput.html#property_parameters" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input", + "name": "Input", + "summary": "Input\u0020is\u0020the\u0020base\u0020class\u0020for\u0020all\u0020concrete\u0020Input\u0020classes.", + "url": "classes/Symfony-Component-Console-Input-Input.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-Input.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Binds\u0020the\u0020current\u0020Input\u0020instance\u0020with\u0020the\u0020given\u0020arguments\u0020and\u0020options.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_bind" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Processes\u0020command\u0020line\u0020arguments.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_parse" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validates\u0020the\u0020input.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_validate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AisInteractive\u0028\u0029", + "name": "isInteractive", + "summary": "Is\u0020this\u0020input\u0020means\u0020interactive\u003F", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_isInteractive" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AsetInteractive\u0028\u0029", + "name": "setInteractive", + "summary": "Sets\u0020the\u0020input\u0020interactivity.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_setInteractive" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AgetArguments\u0028\u0029", + "name": "getArguments", + "summary": "Returns\u0020all\u0020the\u0020given\u0020arguments\u0020merged\u0020with\u0020the\u0020default\u0020values.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_getArguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AgetArgument\u0028\u0029", + "name": "getArgument", + "summary": "Returns\u0020the\u0020argument\u0020value\u0020for\u0020a\u0020given\u0020argument\u0020name.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_getArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AsetArgument\u0028\u0029", + "name": "setArgument", + "summary": "Sets\u0020an\u0020argument\u0020value\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_setArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AhasArgument\u0028\u0029", + "name": "hasArgument", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputArgument\u0020object\u0020exists\u0020by\u0020name\u0020or\u0020position.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_hasArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Returns\u0020all\u0020the\u0020given\u0020options\u0020merged\u0020with\u0020the\u0020default\u0020values.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_getOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "Returns\u0020the\u0020option\u0020value\u0020for\u0020a\u0020given\u0020option\u0020name.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_getOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", + "summary": "Sets\u0020an\u0020option\u0020value\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_setOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputOption\u0020object\u0020exists\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_hasOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AescapeToken\u0028\u0029", + "name": "escapeToken", + "summary": "Escapes\u0020a\u0020token\u0020through\u0020escapeshellarg\u0020if\u0020it\u0020contains\u0020unsafe\u0020chars.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_escapeToken" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AsetStream\u0028\u0029", + "name": "setStream", + "summary": "Sets\u0020the\u0020input\u0020stream\u0020to\u0020read\u0020from\u0020when\u0020interacting\u0020with\u0020the\u0020user.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_setStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Returns\u0020the\u0020input\u0020stream.", + "url": "classes/Symfony-Component-Console-Input-Input.html#method_getStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003A\u0024definition", + "name": "definition", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-Input.html#property_definition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003A\u0024stream", + "name": "stream", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-Input.html#property_stream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-Input.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003A\u0024arguments", + "name": "arguments", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-Input.html#property_arguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\Input\u003A\u003A\u0024interactive", + "name": "interactive", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-Input.html#property_interactive" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument", + "name": "InputArgument", + "summary": "Represents\u0020a\u0020command\u0020line\u0020argument.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020argument\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AisRequired\u0028\u0029", + "name": "isRequired", + "summary": "Returns\u0020true\u0020if\u0020the\u0020argument\u0020is\u0020required.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method_isRequired" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AisArray\u0028\u0029", + "name": "isArray", + "summary": "Returns\u0020true\u0020if\u0020the\u0020argument\u0020can\u0020take\u0020multiple\u0020values.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method_isArray" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AsetDefault\u0028\u0029", + "name": "setDefault", + "summary": "Sets\u0020the\u0020default\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method_setDefault" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "Returns\u0020the\u0020default\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method_getDefault" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AgetDescription\u0028\u0029", + "name": "getDescription", + "summary": "Returns\u0020the\u0020description\u0020text.", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#method_getDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AREQUIRED", + "name": "REQUIRED", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#constant_REQUIRED" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AOPTIONAL", + "name": "OPTIONAL", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#constant_OPTIONAL" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003AIS_ARRAY", + "name": "IS_ARRAY", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#constant_IS_ARRAY" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#property_name" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#property_mode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#property_default" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputArgument\u003A\u003A\u0024description", + "name": "description", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputArgument.html#property_description" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputAwareInterface", + "name": "InputAwareInterface", + "summary": "InputAwareInterface\u0020should\u0020be\u0020implemented\u0020by\u0020classes\u0020that\u0020depends\u0020on\u0020the\nConsole\u0020Input.", + "url": "classes/Symfony-Component-Console-Input-InputAwareInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputAwareInterface\u003A\u003AsetInput\u0028\u0029", + "name": "setInput", + "summary": "Sets\u0020the\u0020Console\u0020Input.", + "url": "classes/Symfony-Component-Console-Input-InputAwareInterface.html#method_setInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition", + "name": "InputDefinition", + "summary": "A\u0020InputDefinition\u0020represents\u0020a\u0020set\u0020of\u0020valid\u0020command\u0020line\u0020arguments\u0020and\u0020options.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AsetDefinition\u0028\u0029", + "name": "setDefinition", + "summary": "Sets\u0020the\u0020definition\u0020of\u0020the\u0020input.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_setDefinition" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AsetArguments\u0028\u0029", + "name": "setArguments", + "summary": "Sets\u0020the\u0020InputArgument\u0020objects.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_setArguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AaddArguments\u0028\u0029", + "name": "addArguments", + "summary": "Adds\u0020an\u0020array\u0020of\u0020InputArgument\u0020objects.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_addArguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AaddArgument\u0028\u0029", + "name": "addArgument", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_addArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetArgument\u0028\u0029", + "name": "getArgument", + "summary": "Returns\u0020an\u0020InputArgument\u0020by\u0020name\u0020or\u0020by\u0020position.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AhasArgument\u0028\u0029", + "name": "hasArgument", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputArgument\u0020object\u0020exists\u0020by\u0020name\u0020or\u0020position.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_hasArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetArguments\u0028\u0029", + "name": "getArguments", + "summary": "Gets\u0020the\u0020array\u0020of\u0020InputArgument\u0020objects.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getArguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetArgumentCount\u0028\u0029", + "name": "getArgumentCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020InputArguments.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getArgumentCount" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetArgumentRequiredCount\u0028\u0029", + "name": "getArgumentRequiredCount", + "summary": "Returns\u0020the\u0020number\u0020of\u0020required\u0020InputArguments.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getArgumentRequiredCount" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetArgumentDefaults\u0028\u0029", + "name": "getArgumentDefaults", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getArgumentDefaults" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Sets\u0020the\u0020InputOption\u0020objects.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_setOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AaddOptions\u0028\u0029", + "name": "addOptions", + "summary": "Adds\u0020an\u0020array\u0020of\u0020InputOption\u0020objects.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_addOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AaddOption\u0028\u0029", + "name": "addOption", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_addOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "Returns\u0020an\u0020InputOption\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputOption\u0020object\u0020exists\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_hasOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Gets\u0020the\u0020array\u0020of\u0020InputOption\u0020objects.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AhasShortcut\u0028\u0029", + "name": "hasShortcut", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputOption\u0020object\u0020exists\u0020by\u0020shortcut.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_hasShortcut" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AhasNegation\u0028\u0029", + "name": "hasNegation", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputOption\u0020object\u0020exists\u0020by\u0020negated\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_hasNegation" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetOptionForShortcut\u0028\u0029", + "name": "getOptionForShortcut", + "summary": "Gets\u0020an\u0020InputOption\u0020by\u0020shortcut.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getOptionForShortcut" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetOptionDefaults\u0028\u0029", + "name": "getOptionDefaults", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getOptionDefaults" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003AgetSynopsis\u0028\u0029", + "name": "getSynopsis", + "summary": "Gets\u0020the\u0020synopsis.", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#method_getSynopsis" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024arguments", + "name": "arguments", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_arguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024requiredCount", + "name": "requiredCount", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_requiredCount" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024lastArrayArgument", + "name": "lastArrayArgument", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_lastArrayArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024lastOptionalArgument", + "name": "lastOptionalArgument", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_lastOptionalArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024negations", + "name": "negations", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_negations" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputDefinition\u003A\u003A\u0024shortcuts", + "name": "shortcuts", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputDefinition.html#property_shortcuts" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface", + "name": "InputInterface", + "summary": "InputInterface\u0020is\u0020the\u0020interface\u0020implemented\u0020by\u0020all\u0020input\u0020classes.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AgetFirstArgument\u0028\u0029", + "name": "getFirstArgument", + "summary": "Returns\u0020the\u0020first\u0020argument\u0020from\u0020the\u0020raw\u0020parameters\u0020\u0028not\u0020parsed\u0029.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_getFirstArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AhasParameterOption\u0028\u0029", + "name": "hasParameterOption", + "summary": "Returns\u0020true\u0020if\u0020the\u0020raw\u0020parameters\u0020\u0028not\u0020parsed\u0029\u0020contain\u0020a\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_hasParameterOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AgetParameterOption\u0028\u0029", + "name": "getParameterOption", + "summary": "Returns\u0020the\u0020value\u0020of\u0020a\u0020raw\u0020option\u0020\u0028not\u0020parsed\u0029.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_getParameterOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003Abind\u0028\u0029", + "name": "bind", + "summary": "Binds\u0020the\u0020current\u0020Input\u0020instance\u0020with\u0020the\u0020given\u0020arguments\u0020and\u0020options.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_bind" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "Validates\u0020the\u0020input.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_validate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AgetArguments\u0028\u0029", + "name": "getArguments", + "summary": "Returns\u0020all\u0020the\u0020given\u0020arguments\u0020merged\u0020with\u0020the\u0020default\u0020values.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_getArguments" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AgetArgument\u0028\u0029", + "name": "getArgument", + "summary": "Returns\u0020the\u0020argument\u0020value\u0020for\u0020a\u0020given\u0020argument\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_getArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AsetArgument\u0028\u0029", + "name": "setArgument", + "summary": "Sets\u0020an\u0020argument\u0020value\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_setArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AhasArgument\u0028\u0029", + "name": "hasArgument", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputArgument\u0020object\u0020exists\u0020by\u0020name\u0020or\u0020position.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_hasArgument" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "Returns\u0020all\u0020the\u0020given\u0020options\u0020merged\u0020with\u0020the\u0020default\u0020values.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_getOptions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "Returns\u0020the\u0020option\u0020value\u0020for\u0020a\u0020given\u0020option\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_getOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AsetOption\u0028\u0029", + "name": "setOption", + "summary": "Sets\u0020an\u0020option\u0020value\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_setOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AhasOption\u0028\u0029", + "name": "hasOption", + "summary": "Returns\u0020true\u0020if\u0020an\u0020InputOption\u0020object\u0020exists\u0020by\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_hasOption" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AisInteractive\u0028\u0029", + "name": "isInteractive", + "summary": "Is\u0020this\u0020input\u0020means\u0020interactive\u003F", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_isInteractive" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputInterface\u003A\u003AsetInteractive\u0028\u0029", + "name": "setInteractive", + "summary": "Sets\u0020the\u0020input\u0020interactivity.", + "url": "classes/Symfony-Component-Console-Input-InputInterface.html#method_setInteractive" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption", + "name": "InputOption", + "summary": "Represents\u0020a\u0020command\u0020line\u0020option.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AgetShortcut\u0028\u0029", + "name": "getShortcut", + "summary": "Returns\u0020the\u0020option\u0020shortcut.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_getShortcut" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Returns\u0020the\u0020option\u0020name.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AacceptValue\u0028\u0029", + "name": "acceptValue", + "summary": "Returns\u0020true\u0020if\u0020the\u0020option\u0020accepts\u0020a\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_acceptValue" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AisValueRequired\u0028\u0029", + "name": "isValueRequired", + "summary": "Returns\u0020true\u0020if\u0020the\u0020option\u0020requires\u0020a\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_isValueRequired" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AisValueOptional\u0028\u0029", + "name": "isValueOptional", + "summary": "Returns\u0020true\u0020if\u0020the\u0020option\u0020takes\u0020an\u0020optional\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_isValueOptional" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AisArray\u0028\u0029", + "name": "isArray", + "summary": "Returns\u0020true\u0020if\u0020the\u0020option\u0020can\u0020take\u0020multiple\u0020values.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_isArray" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AisNegatable\u0028\u0029", + "name": "isNegatable", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_isNegatable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AsetDefault\u0028\u0029", + "name": "setDefault", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_setDefault" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "Returns\u0020the\u0020default\u0020value.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_getDefault" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AgetDescription\u0028\u0029", + "name": "getDescription", + "summary": "Returns\u0020the\u0020description\u0020text.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_getDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003Aequals\u0028\u0029", + "name": "equals", + "summary": "Checks\u0020whether\u0020the\u0020given\u0020option\u0020equals\u0020this\u0020one.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#method_equals" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AVALUE_NONE", + "name": "VALUE_NONE", + "summary": "Do\u0020not\u0020accept\u0020input\u0020for\u0020the\u0020option\u0020\u0028e.g.\u0020\u002D\u002Dyell\u0029.\u0020This\u0020is\u0020the\u0020default\u0020behavior\u0020of\u0020options.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#constant_VALUE_NONE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AVALUE_REQUIRED", + "name": "VALUE_REQUIRED", + "summary": "A\u0020value\u0020must\u0020be\u0020passed\u0020when\u0020the\u0020option\u0020is\u0020used\u0020\u0028e.g.\u0020\u002D\u002Diterations\u003D5\u0020or\u0020\u002Di5\u0029.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#constant_VALUE_REQUIRED" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AVALUE_OPTIONAL", + "name": "VALUE_OPTIONAL", + "summary": "The\u0020option\u0020may\u0020or\u0020may\u0020not\u0020have\u0020a\u0020value\u0020\u0028e.g.\u0020\u002D\u002Dyell\u0020or\u0020\u002D\u002Dyell\u003Dloud\u0029.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#constant_VALUE_OPTIONAL" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AVALUE_IS_ARRAY", + "name": "VALUE_IS_ARRAY", + "summary": "The\u0020option\u0020accepts\u0020multiple\u0020values\u0020\u0028e.g.\u0020\u002D\u002Ddir\u003D\/foo\u0020\u002D\u002Ddir\u003D\/bar\u0029.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#constant_VALUE_IS_ARRAY" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003AVALUE_NEGATABLE", + "name": "VALUE_NEGATABLE", + "summary": "The\u0020option\u0020may\u0020have\u0020either\u0020positive\u0020or\u0020negative\u0020value\u0020\u0028e.g.\u0020\u002D\u002Dansi\u0020or\u0020\u002D\u002Dno\u002Dansi\u0029.", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#constant_VALUE_NEGATABLE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003A\u0024name", + "name": "name", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#property_name" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003A\u0024shortcut", + "name": "shortcut", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#property_shortcut" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#property_mode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#property_default" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\InputOption\u003A\u003A\u0024description", + "name": "description", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-InputOption.html#property_description" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StreamableInputInterface", + "name": "StreamableInputInterface", + "summary": "StreamableInputInterface\u0020is\u0020the\u0020interface\u0020implemented\u0020by\u0020all\u0020input\u0020classes\nthat\u0020have\u0020an\u0020input\u0020stream.", + "url": "classes/Symfony-Component-Console-Input-StreamableInputInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StreamableInputInterface\u003A\u003AsetStream\u0028\u0029", + "name": "setStream", + "summary": "Sets\u0020the\u0020input\u0020stream\u0020to\u0020read\u0020from\u0020when\u0020interacting\u0020with\u0020the\u0020user.", + "url": "classes/Symfony-Component-Console-Input-StreamableInputInterface.html#method_setStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StreamableInputInterface\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Returns\u0020the\u0020input\u0020stream.", + "url": "classes/Symfony-Component-Console-Input-StreamableInputInterface.html#method_getStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StringInput", + "name": "StringInput", + "summary": "StringInput\u0020represents\u0020an\u0020input\u0020provided\u0020as\u0020a\u0020string.", + "url": "classes/Symfony-Component-Console-Input-StringInput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StringInput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-StringInput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StringInput\u003A\u003Atokenize\u0028\u0029", + "name": "tokenize", + "summary": "Tokenizes\u0020a\u0020string.", + "url": "classes/Symfony-Component-Console-Input-StringInput.html#method_tokenize" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StringInput\u003A\u003AREGEX_STRING", + "name": "REGEX_STRING", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-StringInput.html#constant_REGEX_STRING" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StringInput\u003A\u003AREGEX_UNQUOTED_STRING", + "name": "REGEX_UNQUOTED_STRING", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-StringInput.html#constant_REGEX_UNQUOTED_STRING" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input\\StringInput\u003A\u003AREGEX_QUOTED_STRING", + "name": "REGEX_QUOTED_STRING", + "summary": "", + "url": "classes/Symfony-Component-Console-Input-StringInput.html#constant_REGEX_QUOTED_STRING" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger", + "name": "ConsoleLogger", + "summary": "PSR\u002D3\u0020compliant\u0020console\u0020logger.", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Logs\u0020with\u0020an\u0020arbitrary\u0020level.", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#method_log" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003AhasErrored\u0028\u0029", + "name": "hasErrored", + "summary": "Returns\u0020true\u0020when\u0020any\u0020messages\u0020have\u0020been\u0020logged\u0020at\u0020error\u0020levels.", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#method_hasErrored" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003Ainterpolate\u0028\u0029", + "name": "interpolate", + "summary": "Interpolates\u0020context\u0020values\u0020into\u0020the\u0020message\u0020placeholders.", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#method_interpolate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003AINFO", + "name": "INFO", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#constant_INFO" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003AERROR", + "name": "ERROR", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#constant_ERROR" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003A\u0024verbosityLevelMap", + "name": "verbosityLevelMap", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#property_verbosityLevelMap" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003A\u0024formatLevelMap", + "name": "formatLevelMap", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#property_formatLevelMap" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger\\ConsoleLogger\u003A\u003A\u0024errored", + "name": "errored", + "summary": "", + "url": "classes/Symfony-Component-Console-Logger-ConsoleLogger.html#property_errored" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\BufferedOutput", + "name": "BufferedOutput", + "summary": "Base\u0020class\u0020for\u0020output\u0020classes.", + "url": "classes/Symfony-Component-Console-Output-BufferedOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\BufferedOutput\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "Empties\u0020buffer\u0020and\u0020returns\u0020its\u0020content.", + "url": "classes/Symfony-Component-Console-Output-BufferedOutput.html#method_fetch" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\BufferedOutput\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-BufferedOutput.html#method_doWrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\BufferedOutput\u003A\u003A\u0024buffer", + "name": "buffer", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-BufferedOutput.html#property_buffer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput", + "name": "ConsoleOutput", + "summary": "ConsoleOutput\u0020is\u0020the\u0020default\u0020class\u0020for\u0020all\u0020CLI\u0020output.\u0020It\u0020uses\u0020STDOUT\u0020and\u0020STDERR.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003Asection\u0028\u0029", + "name": "section", + "summary": "Creates\u0020a\u0020new\u0020output\u0020section.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_section" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AsetFormatter\u0028\u0029", + "name": "setFormatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_setFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AsetVerbosity\u0028\u0029", + "name": "setVerbosity", + "summary": "Sets\u0020the\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_setVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AgetErrorOutput\u0028\u0029", + "name": "getErrorOutput", + "summary": "Gets\u0020the\u0020OutputInterface\u0020for\u0020errors.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_getErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AsetErrorOutput\u0028\u0029", + "name": "setErrorOutput", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_setErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AhasStdoutSupport\u0028\u0029", + "name": "hasStdoutSupport", + "summary": "Returns\u0020true\u0020if\u0020current\u0020environment\u0020supports\u0020writing\u0020console\u0020output\u0020to\nSTDOUT.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_hasStdoutSupport" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AhasStderrSupport\u0028\u0029", + "name": "hasStderrSupport", + "summary": "Returns\u0020true\u0020if\u0020current\u0020environment\u0020supports\u0020writing\u0020console\u0020output\u0020to\nSTDERR.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_hasStderrSupport" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AisRunningOS400\u0028\u0029", + "name": "isRunningOS400", + "summary": "Checks\u0020if\u0020current\u0020executing\u0020environment\u0020is\u0020IBM\u0020iSeries\u0020\u0028OS400\u0029,\u0020which\ndoesn\u0027t\u0020properly\u0020convert\u0020character\u002Dencodings\u0020between\u0020ASCII\u0020to\u0020EBCDIC.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_isRunningOS400" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AopenOutputStream\u0028\u0029", + "name": "openOutputStream", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_openOutputStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003AopenErrorStream\u0028\u0029", + "name": "openErrorStream", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#method_openErrorStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003A\u0024stderr", + "name": "stderr", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#property_stderr" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutput\u003A\u003A\u0024consoleSectionOutputs", + "name": "consoleSectionOutputs", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutput.html#property_consoleSectionOutputs" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutputInterface", + "name": "ConsoleOutputInterface", + "summary": "ConsoleOutputInterface\u0020is\u0020the\u0020interface\u0020implemented\u0020by\u0020ConsoleOutput\u0020class.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutputInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutputInterface\u003A\u003AgetErrorOutput\u0028\u0029", + "name": "getErrorOutput", + "summary": "Gets\u0020the\u0020OutputInterface\u0020for\u0020errors.", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutputInterface.html#method_getErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutputInterface\u003A\u003AsetErrorOutput\u0028\u0029", + "name": "setErrorOutput", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutputInterface.html#method_setErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleOutputInterface\u003A\u003Asection\u0028\u0029", + "name": "section", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleOutputInterface.html#method_section" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput", + "name": "ConsoleSectionOutput", + "summary": "StreamOutput\u0020writes\u0020the\u0020output\u0020to\u0020a\u0020given\u0020stream.", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Clears\u0020previous\u0020output\u0020for\u0020this\u0020section.", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method_clear" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003Aoverwrite\u0028\u0029", + "name": "overwrite", + "summary": "Overwrites\u0020the\u0020previous\u0020output\u0020with\u0020a\u0020new\u0020message.", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method_overwrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003AgetContent\u0028\u0029", + "name": "getContent", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method_getContent" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method_doWrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003ApopStreamContentUntilCurrentSection\u0028\u0029", + "name": "popStreamContentUntilCurrentSection", + "summary": "At\u0020initial\u0020stage,\u0020cursor\u0020is\u0020at\u0020the\u0020end\u0020of\u0020stream\u0020output.\u0020This\u0020method\u0020makes\u0020cursor\u0020crawl\u0020upwards\u0020until\u0020it\u0020hits\ncurrent\u0020section.\u0020Then\u0020it\u0020erases\u0020content\u0020it\u0020crawled\u0020through.\u0020Optionally,\u0020it\u0020erases\u0020part\u0020of\u0020current\u0020section\u0020too.", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method_popStreamContentUntilCurrentSection" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003AgetDisplayLength\u0028\u0029", + "name": "getDisplayLength", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#method_getDisplayLength" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003A\u0024content", + "name": "content", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#property_content" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003A\u0024lines", + "name": "lines", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#property_lines" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003A\u0024sections", + "name": "sections", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#property_sections" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\ConsoleSectionOutput\u003A\u003A\u0024terminal", + "name": "terminal", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-ConsoleSectionOutput.html#property_terminal" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput", + "name": "NullOutput", + "summary": "NullOutput\u0020suppresses\u0020all\u0020output.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AsetFormatter\u0028\u0029", + "name": "setFormatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_setFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AgetFormatter\u0028\u0029", + "name": "getFormatter", + "summary": "Returns\u0020current\u0020output\u0020formatter\u0020instance.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_getFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Gets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AsetVerbosity\u0028\u0029", + "name": "setVerbosity", + "summary": "Sets\u0020the\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_setVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AgetVerbosity\u0028\u0029", + "name": "getVerbosity", + "summary": "Gets\u0020the\u0020current\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_getVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AisQuiet\u0028\u0029", + "name": "isQuiet", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020quiet\u0020\u0028\u002Dq\u0029.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_isQuiet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AisVerbose\u0028\u0029", + "name": "isVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020verbose\u0020\u0028\u002Dv\u0029.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_isVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AisVeryVerbose\u0028\u0029", + "name": "isVeryVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020very\u0020verbose\u0020\u0028\u002Dvv\u0029.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_isVeryVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003AisDebug\u0028\u0029", + "name": "isDebug", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020debug\u0020\u0028\u002Dvvv\u0029.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_isDebug" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003Awriteln\u0028\u0029", + "name": "writeln", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output\u0020and\u0020adds\u0020a\u0020newline\u0020at\u0020the\u0020end.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_writeln" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\NullOutput\u003A\u003A\u0024formatter", + "name": "formatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-NullOutput.html#property_formatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output", + "name": "Output", + "summary": "Base\u0020class\u0020for\u0020output\u0020classes.", + "url": "classes/Symfony-Component-Console-Output-Output.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-Output.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AsetFormatter\u0028\u0029", + "name": "setFormatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_setFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AgetFormatter\u0028\u0029", + "name": "getFormatter", + "summary": "Returns\u0020current\u0020output\u0020formatter\u0020instance.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_getFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Gets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AsetVerbosity\u0028\u0029", + "name": "setVerbosity", + "summary": "Sets\u0020the\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_setVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AgetVerbosity\u0028\u0029", + "name": "getVerbosity", + "summary": "Gets\u0020the\u0020current\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_getVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AisQuiet\u0028\u0029", + "name": "isQuiet", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020quiet\u0020\u0028\u002Dq\u0029.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_isQuiet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AisVerbose\u0028\u0029", + "name": "isVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020verbose\u0020\u0028\u002Dv\u0029.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_isVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AisVeryVerbose\u0028\u0029", + "name": "isVeryVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020very\u0020verbose\u0020\u0028\u002Dvv\u0029.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_isVeryVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AisDebug\u0028\u0029", + "name": "isDebug", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020debug\u0020\u0028\u002Dvvv\u0029.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_isDebug" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003Awriteln\u0028\u0029", + "name": "writeln", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output\u0020and\u0020adds\u0020a\u0020newline\u0020at\u0020the\u0020end.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_writeln" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-Output.html#method_doWrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003A\u0024verbosity", + "name": "verbosity", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-Output.html#property_verbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\Output\u003A\u003A\u0024formatter", + "name": "formatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-Output.html#property_formatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface", + "name": "OutputInterface", + "summary": "OutputInterface\u0020is\u0020the\u0020interface\u0020implemented\u0020by\u0020all\u0020Output\u0020classes.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003Awriteln\u0028\u0029", + "name": "writeln", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output\u0020and\u0020adds\u0020a\u0020newline\u0020at\u0020the\u0020end.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_writeln" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AsetVerbosity\u0028\u0029", + "name": "setVerbosity", + "summary": "Sets\u0020the\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_setVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AgetVerbosity\u0028\u0029", + "name": "getVerbosity", + "summary": "Gets\u0020the\u0020current\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_getVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AisQuiet\u0028\u0029", + "name": "isQuiet", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020quiet\u0020\u0028\u002Dq\u0029.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_isQuiet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AisVerbose\u0028\u0029", + "name": "isVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020verbose\u0020\u0028\u002Dv\u0029.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_isVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AisVeryVerbose\u0028\u0029", + "name": "isVeryVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020very\u0020verbose\u0020\u0028\u002Dvv\u0029.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_isVeryVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AisDebug\u0028\u0029", + "name": "isDebug", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020debug\u0020\u0028\u002Dvvv\u0029.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_isDebug" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Gets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AsetFormatter\u0028\u0029", + "name": "setFormatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_setFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AgetFormatter\u0028\u0029", + "name": "getFormatter", + "summary": "Returns\u0020current\u0020output\u0020formatter\u0020instance.", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#method_getFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AVERBOSITY_QUIET", + "name": "VERBOSITY_QUIET", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_VERBOSITY_QUIET" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AVERBOSITY_NORMAL", + "name": "VERBOSITY_NORMAL", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_VERBOSITY_NORMAL" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AVERBOSITY_VERBOSE", + "name": "VERBOSITY_VERBOSE", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_VERBOSITY_VERBOSE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AVERBOSITY_VERY_VERBOSE", + "name": "VERBOSITY_VERY_VERBOSE", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_VERBOSITY_VERY_VERBOSE" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AVERBOSITY_DEBUG", + "name": "VERBOSITY_DEBUG", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_VERBOSITY_DEBUG" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AOUTPUT_NORMAL", + "name": "OUTPUT_NORMAL", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_OUTPUT_NORMAL" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AOUTPUT_RAW", + "name": "OUTPUT_RAW", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_OUTPUT_RAW" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\OutputInterface\u003A\u003AOUTPUT_PLAIN", + "name": "OUTPUT_PLAIN", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-OutputInterface.html#constant_OUTPUT_PLAIN" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\StreamOutput", + "name": "StreamOutput", + "summary": "StreamOutput\u0020writes\u0020the\u0020output\u0020to\u0020a\u0020given\u0020stream.", + "url": "classes/Symfony-Component-Console-Output-StreamOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\StreamOutput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-StreamOutput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\StreamOutput\u003A\u003AgetStream\u0028\u0029", + "name": "getStream", + "summary": "Gets\u0020the\u0020stream\u0020attached\u0020to\u0020this\u0020StreamOutput\u0020instance.", + "url": "classes/Symfony-Component-Console-Output-StreamOutput.html#method_getStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\StreamOutput\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-StreamOutput.html#method_doWrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\StreamOutput\u003A\u003AhasColorSupport\u0028\u0029", + "name": "hasColorSupport", + "summary": "Returns\u0020true\u0020if\u0020the\u0020stream\u0020supports\u0020colorization.", + "url": "classes/Symfony-Component-Console-Output-StreamOutput.html#method_hasColorSupport" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\StreamOutput\u003A\u003A\u0024stream", + "name": "stream", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-StreamOutput.html#property_stream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\TrimmedBufferOutput", + "name": "TrimmedBufferOutput", + "summary": "A\u0020BufferedOutput\u0020that\u0020keeps\u0020only\u0020the\u0020last\u0020N\u0020chars.", + "url": "classes/Symfony-Component-Console-Output-TrimmedBufferOutput.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\TrimmedBufferOutput\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-TrimmedBufferOutput.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\TrimmedBufferOutput\u003A\u003Afetch\u0028\u0029", + "name": "fetch", + "summary": "Empties\u0020buffer\u0020and\u0020returns\u0020its\u0020content.", + "url": "classes/Symfony-Component-Console-Output-TrimmedBufferOutput.html#method_fetch" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\TrimmedBufferOutput\u003A\u003AdoWrite\u0028\u0029", + "name": "doWrite", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Output-TrimmedBufferOutput.html#method_doWrite" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\TrimmedBufferOutput\u003A\u003A\u0024maxLength", + "name": "maxLength", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-TrimmedBufferOutput.html#property_maxLength" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output\\TrimmedBufferOutput\u003A\u003A\u0024buffer", + "name": "buffer", + "summary": "", + "url": "classes/Symfony-Component-Console-Output-TrimmedBufferOutput.html#property_buffer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion", + "name": "ChoiceQuestion", + "summary": "Represents\u0020a\u0020choice\u0020question.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AgetChoices\u0028\u0029", + "name": "getChoices", + "summary": "Returns\u0020available\u0020choices.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_getChoices" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AsetMultiselect\u0028\u0029", + "name": "setMultiselect", + "summary": "Sets\u0020multiselect\u0020option.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_setMultiselect" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AisMultiselect\u0028\u0029", + "name": "isMultiselect", + "summary": "Returns\u0020whether\u0020the\u0020choices\u0020are\u0020multiselect.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_isMultiselect" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AgetPrompt\u0028\u0029", + "name": "getPrompt", + "summary": "Gets\u0020the\u0020prompt\u0020for\u0020choices.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_getPrompt" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AsetPrompt\u0028\u0029", + "name": "setPrompt", + "summary": "Sets\u0020the\u0020prompt\u0020for\u0020choices.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_setPrompt" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AsetErrorMessage\u0028\u0029", + "name": "setErrorMessage", + "summary": "Sets\u0020the\u0020error\u0020message\u0020for\u0020invalid\u0020values.", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_setErrorMessage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003AgetDefaultValidator\u0028\u0029", + "name": "getDefaultValidator", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#method_getDefaultValidator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003A\u0024choices", + "name": "choices", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#property_choices" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003A\u0024multiselect", + "name": "multiselect", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#property_multiselect" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003A\u0024prompt", + "name": "prompt", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#property_prompt" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ChoiceQuestion\u003A\u003A\u0024errorMessage", + "name": "errorMessage", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ChoiceQuestion.html#property_errorMessage" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ConfirmationQuestion", + "name": "ConfirmationQuestion", + "summary": "Represents\u0020a\u0020yes\/no\u0020question.", + "url": "classes/Symfony-Component-Console-Question-ConfirmationQuestion.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ConfirmationQuestion\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ConfirmationQuestion.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ConfirmationQuestion\u003A\u003AgetDefaultNormalizer\u0028\u0029", + "name": "getDefaultNormalizer", + "summary": "Returns\u0020the\u0020default\u0020answer\u0020normalizer.", + "url": "classes/Symfony-Component-Console-Question-ConfirmationQuestion.html#method_getDefaultNormalizer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\ConfirmationQuestion\u003A\u003A\u0024trueAnswerRegex", + "name": "trueAnswerRegex", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-ConfirmationQuestion.html#property_trueAnswerRegex" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question", + "name": "Question", + "summary": "Represents\u0020a\u0020Question.", + "url": "classes/Symfony-Component-Console-Question-Question.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetQuestion\u0028\u0029", + "name": "getQuestion", + "summary": "Returns\u0020the\u0020question.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getQuestion" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetDefault\u0028\u0029", + "name": "getDefault", + "summary": "Returns\u0020the\u0020default\u0020answer.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getDefault" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AisMultiline\u0028\u0029", + "name": "isMultiline", + "summary": "Returns\u0020whether\u0020the\u0020user\u0020response\u0020accepts\u0020newline\u0020characters.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_isMultiline" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetMultiline\u0028\u0029", + "name": "setMultiline", + "summary": "Sets\u0020whether\u0020the\u0020user\u0020response\u0020should\u0020accept\u0020newline\u0020characters.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setMultiline" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AisHidden\u0028\u0029", + "name": "isHidden", + "summary": "Returns\u0020whether\u0020the\u0020user\u0020response\u0020must\u0020be\u0020hidden.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_isHidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetHidden\u0028\u0029", + "name": "setHidden", + "summary": "Sets\u0020whether\u0020the\u0020user\u0020response\u0020must\u0020be\u0020hidden\u0020or\u0020not.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setHidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AisHiddenFallback\u0028\u0029", + "name": "isHiddenFallback", + "summary": "In\u0020case\u0020the\u0020response\u0020cannot\u0020be\u0020hidden,\u0020whether\u0020to\u0020fallback\u0020on\u0020non\u002Dhidden\u0020question\u0020or\u0020not.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_isHiddenFallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetHiddenFallback\u0028\u0029", + "name": "setHiddenFallback", + "summary": "Sets\u0020whether\u0020to\u0020fallback\u0020on\u0020non\u002Dhidden\u0020question\u0020if\u0020the\u0020response\u0020cannot\u0020be\u0020hidden.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setHiddenFallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetAutocompleterValues\u0028\u0029", + "name": "getAutocompleterValues", + "summary": "Gets\u0020values\u0020for\u0020the\u0020autocompleter.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getAutocompleterValues" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetAutocompleterValues\u0028\u0029", + "name": "setAutocompleterValues", + "summary": "Sets\u0020values\u0020for\u0020the\u0020autocompleter.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setAutocompleterValues" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetAutocompleterCallback\u0028\u0029", + "name": "getAutocompleterCallback", + "summary": "Gets\u0020the\u0020callback\u0020function\u0020used\u0020for\u0020the\u0020autocompleter.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getAutocompleterCallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetAutocompleterCallback\u0028\u0029", + "name": "setAutocompleterCallback", + "summary": "Sets\u0020the\u0020callback\u0020function\u0020used\u0020for\u0020the\u0020autocompleter.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setAutocompleterCallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetValidator\u0028\u0029", + "name": "setValidator", + "summary": "Sets\u0020a\u0020validator\u0020for\u0020the\u0020question.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setValidator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetValidator\u0028\u0029", + "name": "getValidator", + "summary": "Gets\u0020the\u0020validator\u0020for\u0020the\u0020question.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getValidator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetMaxAttempts\u0028\u0029", + "name": "setMaxAttempts", + "summary": "Sets\u0020the\u0020maximum\u0020number\u0020of\u0020attempts.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setMaxAttempts" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetMaxAttempts\u0028\u0029", + "name": "getMaxAttempts", + "summary": "Gets\u0020the\u0020maximum\u0020number\u0020of\u0020attempts.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getMaxAttempts" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetNormalizer\u0028\u0029", + "name": "setNormalizer", + "summary": "Sets\u0020a\u0020normalizer\u0020for\u0020the\u0020response.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setNormalizer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AgetNormalizer\u0028\u0029", + "name": "getNormalizer", + "summary": "Gets\u0020the\u0020normalizer\u0020for\u0020the\u0020response.", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_getNormalizer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AisAssoc\u0028\u0029", + "name": "isAssoc", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_isAssoc" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AisTrimmable\u0028\u0029", + "name": "isTrimmable", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_isTrimmable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003AsetTrimmable\u0028\u0029", + "name": "setTrimmable", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#method_setTrimmable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024question", + "name": "question", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_question" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024attempts", + "name": "attempts", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_attempts" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024hidden", + "name": "hidden", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_hidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024hiddenFallback", + "name": "hiddenFallback", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_hiddenFallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024autocompleterCallback", + "name": "autocompleterCallback", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_autocompleterCallback" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024validator", + "name": "validator", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_validator" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024default", + "name": "default", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_default" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024normalizer", + "name": "normalizer", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_normalizer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024trimmable", + "name": "trimmable", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_trimmable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question\\Question\u003A\u003A\u0024multiline", + "name": "multiline", + "summary": "", + "url": "classes/Symfony-Component-Console-Question-Question.html#property_multiline" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry", + "name": "SignalRegistry", + "summary": "", + "url": "classes/Symfony-Component-Console-SignalRegistry-SignalRegistry.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-SignalRegistry-SignalRegistry.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "", + "url": "classes/Symfony-Component-Console-SignalRegistry-SignalRegistry.html#method_register" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "", + "url": "classes/Symfony-Component-Console-SignalRegistry-SignalRegistry.html#method_isSupported" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SignalRegistry\\SignalRegistry\u003A\u003A\u0024signalHandlers", + "name": "signalHandlers", + "summary": "", + "url": "classes/Symfony-Component-Console-SignalRegistry-SignalRegistry.html#property_signalHandlers" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication", + "name": "SingleCommandApplication", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication\u003A\u003AsetVersion\u0028\u0029", + "name": "setVersion", + "summary": "", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html#method_setVersion" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication\u003A\u003AsetAutoExit\u0028\u0029", + "name": "setAutoExit", + "summary": "", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html#method_setAutoExit" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication\u003A\u003A\u0024version", + "name": "version", + "summary": "", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html#property_version" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication\u003A\u003A\u0024autoExit", + "name": "autoExit", + "summary": "", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html#property_autoExit" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SingleCommandApplication\u003A\u003A\u0024running", + "name": "running", + "summary": "", + "url": "classes/Symfony-Component-Console-SingleCommandApplication.html#property_running" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle", + "name": "OutputStyle", + "summary": "Decorates\u0020output\u0020to\u0020add\u0020console\u0020style\u0020guide\u0020helpers.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AnewLine\u0028\u0029", + "name": "newLine", + "summary": "Add\u0020newline\u0028s\u0029.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_newLine" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AcreateProgressBar\u0028\u0029", + "name": "createProgressBar", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_createProgressBar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003Awriteln\u0028\u0029", + "name": "writeln", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output\u0020and\u0020adds\u0020a\u0020newline\u0020at\u0020the\u0020end.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_writeln" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AsetVerbosity\u0028\u0029", + "name": "setVerbosity", + "summary": "Sets\u0020the\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_setVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AgetVerbosity\u0028\u0029", + "name": "getVerbosity", + "summary": "Gets\u0020the\u0020current\u0020verbosity\u0020of\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_getVerbosity" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AsetDecorated\u0028\u0029", + "name": "setDecorated", + "summary": "Sets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_setDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AisDecorated\u0028\u0029", + "name": "isDecorated", + "summary": "Gets\u0020the\u0020decorated\u0020flag.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_isDecorated" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AsetFormatter\u0028\u0029", + "name": "setFormatter", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_setFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AgetFormatter\u0028\u0029", + "name": "getFormatter", + "summary": "Returns\u0020current\u0020output\u0020formatter\u0020instance.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_getFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AisQuiet\u0028\u0029", + "name": "isQuiet", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020quiet\u0020\u0028\u002Dq\u0029.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_isQuiet" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AisVerbose\u0028\u0029", + "name": "isVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020verbose\u0020\u0028\u002Dv\u0029.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_isVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AisVeryVerbose\u0028\u0029", + "name": "isVeryVerbose", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020very\u0020verbose\u0020\u0028\u002Dvv\u0029.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_isVeryVerbose" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AisDebug\u0028\u0029", + "name": "isDebug", + "summary": "Returns\u0020whether\u0020verbosity\u0020is\u0020debug\u0020\u0028\u002Dvvv\u0029.", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_isDebug" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003AgetErrorOutput\u0028\u0029", + "name": "getErrorOutput", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#method_getErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\OutputStyle\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-OutputStyle.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface", + "name": "StyleInterface", + "summary": "Output\u0020style\u0020helpers.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "Formats\u0020a\u0020command\u0020title.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_title" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Asection\u0028\u0029", + "name": "section", + "summary": "Formats\u0020a\u0020section\u0020title.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_section" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Alisting\u0028\u0029", + "name": "listing", + "summary": "Formats\u0020a\u0020list.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_listing" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Atext\u0028\u0029", + "name": "text", + "summary": "Formats\u0020informational\u0020text.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_text" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Asuccess\u0028\u0029", + "name": "success", + "summary": "Formats\u0020a\u0020success\u0020result\u0020bar.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_success" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Formats\u0020an\u0020error\u0020result\u0020bar.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_error" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Awarning\u0028\u0029", + "name": "warning", + "summary": "Formats\u0020an\u0020warning\u0020result\u0020bar.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_warning" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Anote\u0028\u0029", + "name": "note", + "summary": "Formats\u0020a\u0020note\u0020admonition.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_note" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Acaution\u0028\u0029", + "name": "caution", + "summary": "Formats\u0020a\u0020caution\u0020admonition.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_caution" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Atable\u0028\u0029", + "name": "table", + "summary": "Formats\u0020a\u0020table.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_table" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Aask\u0028\u0029", + "name": "ask", + "summary": "Asks\u0020a\u0020question.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_ask" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003AaskHidden\u0028\u0029", + "name": "askHidden", + "summary": "Asks\u0020a\u0020question\u0020with\u0020the\u0020user\u0020input\u0020hidden.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_askHidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Aconfirm\u0028\u0029", + "name": "confirm", + "summary": "Asks\u0020for\u0020confirmation.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_confirm" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003Achoice\u0028\u0029", + "name": "choice", + "summary": "Asks\u0020a\u0020choice\u0020question.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_choice" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003AnewLine\u0028\u0029", + "name": "newLine", + "summary": "Add\u0020newline\u0028s\u0029.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_newLine" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003AprogressStart\u0028\u0029", + "name": "progressStart", + "summary": "Starts\u0020the\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_progressStart" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003AprogressAdvance\u0028\u0029", + "name": "progressAdvance", + "summary": "Advances\u0020the\u0020progress\u0020output\u0020X\u0020steps.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_progressAdvance" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\StyleInterface\u003A\u003AprogressFinish\u0028\u0029", + "name": "progressFinish", + "summary": "Finishes\u0020the\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Style-StyleInterface.html#method_progressFinish" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle", + "name": "SymfonyStyle", + "summary": "Output\u0020decorator\u0020helpers\u0020for\u0020the\u0020Symfony\u0020Style\u0020Guide.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Ablock\u0028\u0029", + "name": "block", + "summary": "Formats\u0020a\u0020message\u0020as\u0020a\u0020block\u0020of\u0020text.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_block" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "Formats\u0020a\u0020command\u0020title.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_title" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Asection\u0028\u0029", + "name": "section", + "summary": "Formats\u0020a\u0020section\u0020title.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_section" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Alisting\u0028\u0029", + "name": "listing", + "summary": "Formats\u0020a\u0020list.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_listing" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Atext\u0028\u0029", + "name": "text", + "summary": "Formats\u0020informational\u0020text.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_text" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Acomment\u0028\u0029", + "name": "comment", + "summary": "Formats\u0020a\u0020command\u0020comment.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_comment" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Asuccess\u0028\u0029", + "name": "success", + "summary": "Formats\u0020a\u0020success\u0020result\u0020bar.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_success" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Aerror\u0028\u0029", + "name": "error", + "summary": "Formats\u0020an\u0020error\u0020result\u0020bar.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_error" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Awarning\u0028\u0029", + "name": "warning", + "summary": "Formats\u0020an\u0020warning\u0020result\u0020bar.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_warning" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Anote\u0028\u0029", + "name": "note", + "summary": "Formats\u0020a\u0020note\u0020admonition.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_note" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Ainfo\u0028\u0029", + "name": "info", + "summary": "Formats\u0020an\u0020info\u0020message.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_info" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Acaution\u0028\u0029", + "name": "caution", + "summary": "Formats\u0020a\u0020caution\u0020admonition.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_caution" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Atable\u0028\u0029", + "name": "table", + "summary": "Formats\u0020a\u0020table.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_table" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AhorizontalTable\u0028\u0029", + "name": "horizontalTable", + "summary": "Formats\u0020a\u0020horizontal\u0020table.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_horizontalTable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AdefinitionList\u0028\u0029", + "name": "definitionList", + "summary": "Formats\u0020a\u0020list\u0020of\u0020key\/value\u0020horizontally.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_definitionList" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Aask\u0028\u0029", + "name": "ask", + "summary": "Asks\u0020a\u0020question.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_ask" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AaskHidden\u0028\u0029", + "name": "askHidden", + "summary": "Asks\u0020a\u0020question\u0020with\u0020the\u0020user\u0020input\u0020hidden.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_askHidden" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Aconfirm\u0028\u0029", + "name": "confirm", + "summary": "Asks\u0020for\u0020confirmation.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_confirm" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Achoice\u0028\u0029", + "name": "choice", + "summary": "Asks\u0020a\u0020choice\u0020question.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_choice" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AprogressStart\u0028\u0029", + "name": "progressStart", + "summary": "Starts\u0020the\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_progressStart" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AprogressAdvance\u0028\u0029", + "name": "progressAdvance", + "summary": "Advances\u0020the\u0020progress\u0020output\u0020X\u0020steps.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_progressAdvance" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AprogressFinish\u0028\u0029", + "name": "progressFinish", + "summary": "Finishes\u0020the\u0020progress\u0020output.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_progressFinish" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AcreateProgressBar\u0028\u0029", + "name": "createProgressBar", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_createProgressBar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AprogressIterate\u0028\u0029", + "name": "progressIterate", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_progressIterate" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AaskQuestion\u0028\u0029", + "name": "askQuestion", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_askQuestion" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Awriteln\u0028\u0029", + "name": "writeln", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output\u0020and\u0020adds\u0020a\u0020newline\u0020at\u0020the\u0020end.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_writeln" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020a\u0020message\u0020to\u0020the\u0020output.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AnewLine\u0028\u0029", + "name": "newLine", + "summary": "Add\u0020newline\u0028s\u0029.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_newLine" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AgetErrorStyle\u0028\u0029", + "name": "getErrorStyle", + "summary": "Returns\u0020a\u0020new\u0020instance\u0020which\u0020makes\u0020use\u0020of\u0020stderr\u0020if\u0020available.", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_getErrorStyle" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AcreateTable\u0028\u0029", + "name": "createTable", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_createTable" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AgetProgressBar\u0028\u0029", + "name": "getProgressBar", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_getProgressBar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AautoPrependBlock\u0028\u0029", + "name": "autoPrependBlock", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_autoPrependBlock" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AautoPrependText\u0028\u0029", + "name": "autoPrependText", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_autoPrependText" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AwriteBuffer\u0028\u0029", + "name": "writeBuffer", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_writeBuffer" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AcreateBlock\u0028\u0029", + "name": "createBlock", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#method_createBlock" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003AMAX_LINE_LENGTH", + "name": "MAX_LINE_LENGTH", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#constant_MAX_LINE_LENGTH" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A\u0024questionHelper", + "name": "questionHelper", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#property_questionHelper" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A\u0024progressBar", + "name": "progressBar", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#property_progressBar" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A\u0024lineLength", + "name": "lineLength", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#property_lineLength" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style\\SymfonyStyle\u003A\u003A\u0024bufferedOutput", + "name": "bufferedOutput", + "summary": "", + "url": "classes/Symfony-Component-Console-Style-SymfonyStyle.html#property_bufferedOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal", + "name": "Terminal", + "summary": "", + "url": "classes/Symfony-Component-Console-Terminal.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AgetWidth\u0028\u0029", + "name": "getWidth", + "summary": "Gets\u0020the\u0020terminal\u0020width.", + "url": "classes/Symfony-Component-Console-Terminal.html#method_getWidth" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AgetHeight\u0028\u0029", + "name": "getHeight", + "summary": "Gets\u0020the\u0020terminal\u0020height.", + "url": "classes/Symfony-Component-Console-Terminal.html#method_getHeight" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AinitDimensions\u0028\u0029", + "name": "initDimensions", + "summary": "", + "url": "classes/Symfony-Component-Console-Terminal.html#method_initDimensions" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AhasVt100Support\u0028\u0029", + "name": "hasVt100Support", + "summary": "Returns\u0020whether\u0020STDOUT\u0020has\u0020vt100\u0020support\u0020\u0028some\u0020Windows\u002010\u002B\u0020configurations\u0029.", + "url": "classes/Symfony-Component-Console-Terminal.html#method_hasVt100Support" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AinitDimensionsUsingStty\u0028\u0029", + "name": "initDimensionsUsingStty", + "summary": "Initializes\u0020dimensions\u0020using\u0020the\u0020output\u0020of\u0020an\u0020stty\u0020columns\u0020line.", + "url": "classes/Symfony-Component-Console-Terminal.html#method_initDimensionsUsingStty" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AgetConsoleMode\u0028\u0029", + "name": "getConsoleMode", + "summary": "Runs\u0020and\u0020parses\u0020mode\u0020CON\u0020if\u0020it\u0027s\u0020available,\u0020suppressing\u0020any\u0020error\u0020output.", + "url": "classes/Symfony-Component-Console-Terminal.html#method_getConsoleMode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AgetSttyColumns\u0028\u0029", + "name": "getSttyColumns", + "summary": "Runs\u0020and\u0020parses\u0020stty\u0020\u002Da\u0020if\u0020it\u0027s\u0020available,\u0020suppressing\u0020any\u0020error\u0020output.", + "url": "classes/Symfony-Component-Console-Terminal.html#method_getSttyColumns" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003AreadFromProcess\u0028\u0029", + "name": "readFromProcess", + "summary": "", + "url": "classes/Symfony-Component-Console-Terminal.html#method_readFromProcess" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003A\u0024width", + "name": "width", + "summary": "", + "url": "classes/Symfony-Component-Console-Terminal.html#property_width" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003A\u0024height", + "name": "height", + "summary": "", + "url": "classes/Symfony-Component-Console-Terminal.html#property_height" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Terminal\u003A\u003A\u0024stty", + "name": "stty", + "summary": "", + "url": "classes/Symfony-Component-Console-Terminal.html#property_stty" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\ApplicationTester", + "name": "ApplicationTester", + "summary": "Eases\u0020the\u0020testing\u0020of\u0020console\u0020applications.", + "url": "classes/Symfony-Component-Console-Tester-ApplicationTester.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\ApplicationTester\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-ApplicationTester.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\ApplicationTester\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Executes\u0020the\u0020application.", + "url": "classes/Symfony-Component-Console-Tester-ApplicationTester.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\ApplicationTester\u003A\u003A\u0024application", + "name": "application", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-ApplicationTester.html#property_application" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandCompletionTester", + "name": "CommandCompletionTester", + "summary": "Eases\u0020the\u0020testing\u0020of\u0020command\u0020completion.", + "url": "classes/Symfony-Component-Console-Tester-CommandCompletionTester.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandCompletionTester\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-CommandCompletionTester.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandCompletionTester\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Create\u0020completion\u0020suggestions\u0020from\u0020input\u0020tokens.", + "url": "classes/Symfony-Component-Console-Tester-CommandCompletionTester.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandCompletionTester\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-CommandCompletionTester.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandTester", + "name": "CommandTester", + "summary": "Eases\u0020the\u0020testing\u0020of\u0020console\u0020commands.", + "url": "classes/Symfony-Component-Console-Tester-CommandTester.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandTester\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-CommandTester.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandTester\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020command.", + "url": "classes/Symfony-Component-Console-Tester-CommandTester.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\CommandTester\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-CommandTester.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful", + "name": "CommandIsSuccessful", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-Constraint-CommandIsSuccessful.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Symfony-Component-Console-Tester-Constraint-CommandIsSuccessful.html#method_toString" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful\u003A\u003Amatches\u0028\u0029", + "name": "matches", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Symfony-Component-Console-Tester-Constraint-CommandIsSuccessful.html#method_matches" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful\u003A\u003AfailureDescription\u0028\u0029", + "name": "failureDescription", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Symfony-Component-Console-Tester-Constraint-CommandIsSuccessful.html#method_failureDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\Constraint\\CommandIsSuccessful\u003A\u003AadditionalFailureDescription\u0028\u0029", + "name": "additionalFailureDescription", + "summary": "\u007B\u0040inheritdoc\u007D", + "url": "classes/Symfony-Component-Console-Tester-Constraint-CommandIsSuccessful.html#method_additionalFailureDescription" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait", + "name": "TesterTrait", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AgetDisplay\u0028\u0029", + "name": "getDisplay", + "summary": "Gets\u0020the\u0020display\u0020returned\u0020by\u0020the\u0020last\u0020execution\u0020of\u0020the\u0020command\u0020or\u0020application.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_getDisplay" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AgetErrorOutput\u0028\u0029", + "name": "getErrorOutput", + "summary": "Gets\u0020the\u0020output\u0020written\u0020to\u0020STDERR\u0020by\u0020the\u0020application.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_getErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AgetInput\u0028\u0029", + "name": "getInput", + "summary": "Gets\u0020the\u0020input\u0020instance\u0020used\u0020by\u0020the\u0020last\u0020execution\u0020of\u0020the\u0020command\u0020or\u0020application.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_getInput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "Gets\u0020the\u0020output\u0020instance\u0020used\u0020by\u0020the\u0020last\u0020execution\u0020of\u0020the\u0020command\u0020or\u0020application.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_getOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AgetStatusCode\u0028\u0029", + "name": "getStatusCode", + "summary": "Gets\u0020the\u0020status\u0020code\u0020returned\u0020by\u0020the\u0020last\u0020execution\u0020of\u0020the\u0020command\u0020or\u0020application.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_getStatusCode" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AassertCommandIsSuccessful\u0028\u0029", + "name": "assertCommandIsSuccessful", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_assertCommandIsSuccessful" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AsetInputs\u0028\u0029", + "name": "setInputs", + "summary": "Sets\u0020the\u0020user\u0020inputs.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_setInputs" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AinitOutput\u0028\u0029", + "name": "initOutput", + "summary": "Initializes\u0020the\u0020output\u0020property.", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_initOutput" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003AcreateStream\u0028\u0029", + "name": "createStream", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#method_createStream" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003A\u0024inputs", + "name": "inputs", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#property_inputs" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003A\u0024captureStreamsIndependently", + "name": "captureStreamsIndependently", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#property_captureStreamsIndependently" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\TesterTrait\u003A\u003A\u0024statusCode", + "name": "statusCode", + "summary": "", + "url": "classes/Symfony-Component-Console-Tester-TesterTrait.html#property_statusCode" + }, { + "fqsen": "\\trigger_deprecation\u0028\u0029", + "name": "trigger_deprecation", + "summary": "Triggers\u0020a\u0020silenced\u0020deprecation\u0020notice.", + "url": "namespaces/default.html#function_trigger_deprecation" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator", + "name": "Comparator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003AgetTarget\u0028\u0029", + "name": "getTarget", + "summary": "Gets\u0020the\u0020target\u0020value.", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method_getTarget" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003AsetTarget\u0028\u0029", + "name": "setTarget", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method_setTarget" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003AgetOperator\u0028\u0029", + "name": "getOperator", + "summary": "Gets\u0020the\u0020comparison\u0020operator.", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method_getOperator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003AsetOperator\u0028\u0029", + "name": "setOperator", + "summary": "Sets\u0020the\u0020comparison\u0020operator.", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method_setOperator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003Atest\u0028\u0029", + "name": "test", + "summary": "Tests\u0020against\u0020the\u0020target.", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method_test" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003AdoSetOperator\u0028\u0029", + "name": "doSetOperator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#method_doSetOperator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003A\u0024target", + "name": "target", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#property_target" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\Comparator\u003A\u003A\u0024operator", + "name": "operator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-Comparator.html#property_operator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\DateComparator", + "name": "DateComparator", + "summary": "DateCompare\u0020compiles\u0020date\u0020comparisons.", + "url": "classes/Symfony-Component-Finder-Comparator-DateComparator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\DateComparator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-DateComparator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\NumberComparator", + "name": "NumberComparator", + "summary": "NumberComparator\u0020compiles\u0020a\u0020simple\u0020comparison\u0020to\u0020an\u0020anonymous\nsubroutine,\u0020which\u0020you\u0020can\u0020call\u0020with\u0020a\u0020value\u0020to\u0020be\u0020tested\u0020again.", + "url": "classes/Symfony-Component-Finder-Comparator-NumberComparator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator\\NumberComparator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Comparator-NumberComparator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Exception\\AccessDeniedException", + "name": "AccessDeniedException", + "summary": "", + "url": "classes/Symfony-Component-Finder-Exception-AccessDeniedException.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Exception\\DirectoryNotFoundException", + "name": "DirectoryNotFoundException", + "summary": "", + "url": "classes/Symfony-Component-Finder-Exception-DirectoryNotFoundException.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder", + "name": "Finder", + "summary": "Finder\u0020allows\u0020to\u0020build\u0020rules\u0020to\u0020find\u0020files\u0020and\u0020directories.", + "url": "classes/Symfony-Component-Finder-Finder.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Creates\u0020a\u0020new\u0020Finder.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_create" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Adirectories\u0028\u0029", + "name": "directories", + "summary": "Restricts\u0020the\u0020matching\u0020to\u0020directories\u0020only.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_directories" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Afiles\u0028\u0029", + "name": "files", + "summary": "Restricts\u0020the\u0020matching\u0020to\u0020files\u0020only.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_files" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Adepth\u0028\u0029", + "name": "depth", + "summary": "Adds\u0020tests\u0020for\u0020the\u0020directory\u0020depth.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_depth" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Adate\u0028\u0029", + "name": "date", + "summary": "Adds\u0020tests\u0020for\u0020file\u0020dates\u0020\u0028last\u0020modified\u0029.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_date" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Aname\u0028\u0029", + "name": "name", + "summary": "Adds\u0020rules\u0020that\u0020files\u0020must\u0020match.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_name" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AnotName\u0028\u0029", + "name": "notName", + "summary": "Adds\u0020rules\u0020that\u0020files\u0020must\u0020not\u0020match.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_notName" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024contains", + "name": "contains", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_contains" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024notContains", + "name": "notContains", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_notContains" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Apath\u0028\u0029", + "name": "path", + "summary": "Adds\u0020rules\u0020that\u0020filenames\u0020must\u0020match.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_path" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AnotPath\u0028\u0029", + "name": "notPath", + "summary": "Adds\u0020rules\u0020that\u0020filenames\u0020must\u0020not\u0020match.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_notPath" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Asize\u0028\u0029", + "name": "size", + "summary": "Adds\u0020tests\u0020for\u0020file\u0020sizes.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_size" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024exclude", + "name": "exclude", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_exclude" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AignoreDotFiles\u0028\u0029", + "name": "ignoreDotFiles", + "summary": "Excludes\u0020\u0022hidden\u0022\u0020directories\u0020and\u0020files\u0020\u0028starting\u0020with\u0020a\u0020dot\u0029.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_ignoreDotFiles" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AignoreVCS\u0028\u0029", + "name": "ignoreVCS", + "summary": "Forces\u0020the\u0020finder\u0020to\u0020ignore\u0020version\u0020control\u0020directories.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_ignoreVCS" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AignoreVCSIgnored\u0028\u0029", + "name": "ignoreVCSIgnored", + "summary": "Forces\u0020Finder\u0020to\u0020obey\u0020.gitignore\u0020and\u0020ignore\u0020files\u0020based\u0020on\u0020rules\u0020listed\u0020there.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_ignoreVCSIgnored" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AaddVCSPattern\u0028\u0029", + "name": "addVCSPattern", + "summary": "Adds\u0020VCS\u0020patterns.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_addVCSPattern" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024sort", + "name": "sort", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_sort" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AsortByName\u0028\u0029", + "name": "sortByName", + "summary": "Sorts\u0020files\u0020and\u0020directories\u0020by\u0020name.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_sortByName" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AsortByType\u0028\u0029", + "name": "sortByType", + "summary": "Sorts\u0020files\u0020and\u0020directories\u0020by\u0020type\u0020\u0028directories\u0020before\u0020files\u0029,\u0020then\u0020by\u0020name.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_sortByType" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AsortByAccessedTime\u0028\u0029", + "name": "sortByAccessedTime", + "summary": "Sorts\u0020files\u0020and\u0020directories\u0020by\u0020the\u0020last\u0020accessed\u0020time.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_sortByAccessedTime" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024reverseSorting", + "name": "reverseSorting", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_reverseSorting" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AsortByChangedTime\u0028\u0029", + "name": "sortByChangedTime", + "summary": "Sorts\u0020files\u0020and\u0020directories\u0020by\u0020the\u0020last\u0020inode\u0020changed\u0020time.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_sortByChangedTime" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AsortByModifiedTime\u0028\u0029", + "name": "sortByModifiedTime", + "summary": "Sorts\u0020files\u0020and\u0020directories\u0020by\u0020the\u0020last\u0020modified\u0020time.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_sortByModifiedTime" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Filters\u0020the\u0020iterator\u0020with\u0020an\u0020anonymous\u0020function.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_filter" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024followLinks", + "name": "followLinks", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_followLinks" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024ignoreUnreadableDirs", + "name": "ignoreUnreadableDirs", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_ignoreUnreadableDirs" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Ain\u0028\u0029", + "name": "in", + "summary": "Searches\u0020files\u0020and\u0020directories\u0020which\u0020match\u0020defined\u0020rules.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_in" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Returns\u0020an\u0020Iterator\u0020for\u0020the\u0020current\u0020Finder\u0020configuration.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_getIterator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Appends\u0020an\u0020existing\u0020set\u0020of\u0020files\/directories\u0020to\u0020the\u0020finder.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_append" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AhasResults\u0028\u0029", + "name": "hasResults", + "summary": "Check\u0020if\u0020any\u0020results\u0020were\u0020found.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_hasResults" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "Counts\u0020all\u0020the\u0020results\u0020collected\u0020by\u0020the\u0020iterators.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_count" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AsearchInDirectory\u0028\u0029", + "name": "searchInDirectory", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#method_searchInDirectory" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AnormalizeDir\u0028\u0029", + "name": "normalizeDir", + "summary": "Normalizes\u0020given\u0020directory\u0020names\u0020by\u0020removing\u0020trailing\u0020slashes.", + "url": "classes/Symfony-Component-Finder-Finder.html#method_normalizeDir" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AIGNORE_VCS_FILES", + "name": "IGNORE_VCS_FILES", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#constant_IGNORE_VCS_FILES" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AIGNORE_DOT_FILES", + "name": "IGNORE_DOT_FILES", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#constant_IGNORE_DOT_FILES" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003AIGNORE_VCS_IGNORED_FILES", + "name": "IGNORE_VCS_IGNORED_FILES", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#constant_IGNORE_VCS_IGNORED_FILES" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_mode" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024names", + "name": "names", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_names" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024notNames", + "name": "notNames", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_notNames" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024filters", + "name": "filters", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_filters" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024depths", + "name": "depths", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_depths" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024sizes", + "name": "sizes", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_sizes" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024ignore", + "name": "ignore", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_ignore" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024dirs", + "name": "dirs", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_dirs" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024dates", + "name": "dates", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_dates" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024iterators", + "name": "iterators", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_iterators" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024paths", + "name": "paths", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_paths" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024notPaths", + "name": "notPaths", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_notPaths" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Finder\u003A\u003A\u0024vcsPatterns", + "name": "vcsPatterns", + "summary": "", + "url": "classes/Symfony-Component-Finder-Finder.html#property_vcsPatterns" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Gitignore", + "name": "Gitignore", + "summary": "Gitignore\u0020matches\u0020against\u0020text.", + "url": "classes/Symfony-Component-Finder-Gitignore.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Gitignore\u003A\u003AtoRegex\u0028\u0029", + "name": "toRegex", + "summary": "Returns\u0020a\u0020regexp\u0020which\u0020is\u0020the\u0020equivalent\u0020of\u0020the\u0020gitignore\u0020pattern.", + "url": "classes/Symfony-Component-Finder-Gitignore.html#method_toRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Gitignore\u003A\u003AtoRegexMatchingNegatedPatterns\u0028\u0029", + "name": "toRegexMatchingNegatedPatterns", + "summary": "", + "url": "classes/Symfony-Component-Finder-Gitignore.html#method_toRegexMatchingNegatedPatterns" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Gitignore\u003A\u003AbuildRegex\u0028\u0029", + "name": "buildRegex", + "summary": "", + "url": "classes/Symfony-Component-Finder-Gitignore.html#method_buildRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Gitignore\u003A\u003AlineToRegex\u0028\u0029", + "name": "lineToRegex", + "summary": "", + "url": "classes/Symfony-Component-Finder-Gitignore.html#method_lineToRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Glob", + "name": "Glob", + "summary": "Glob\u0020matches\u0020globbing\u0020patterns\u0020against\u0020text.", + "url": "classes/Symfony-Component-Finder-Glob.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Glob\u003A\u003AtoRegex\u0028\u0029", + "name": "toRegex", + "summary": "Returns\u0020a\u0020regexp\u0020which\u0020is\u0020the\u0020equivalent\u0020of\u0020the\u0020glob\u0020pattern.", + "url": "classes/Symfony-Component-Finder-Glob.html#method_toRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator", + "name": "CustomFilterIterator", + "summary": "CustomFilterIterator\u0020filters\u0020files\u0020by\u0020applying\u0020anonymous\u0020functions.", + "url": "classes/Symfony-Component-Finder-Iterator-CustomFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-CustomFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-CustomFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator\u003A\u003A\u0024filters", + "name": "filters", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-CustomFilterIterator.html#property_filters" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator", + "name": "DateRangeFilterIterator", + "summary": "DateRangeFilterIterator\u0020filters\u0020out\u0020files\u0020that\u0020are\u0020not\u0020in\u0020the\u0020given\u0020date\u0020range\u0020\u0028last\u0020modified\u0020dates\u0029.", + "url": "classes/Symfony-Component-Finder-Iterator-DateRangeFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-DateRangeFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-DateRangeFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator\u003A\u003A\u0024comparators", + "name": "comparators", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-DateRangeFilterIterator.html#property_comparators" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator", + "name": "DepthRangeFilterIterator", + "summary": "DepthRangeFilterIterator\u0020limits\u0020the\u0020directory\u0020depth.", + "url": "classes/Symfony-Component-Finder-Iterator-DepthRangeFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-DepthRangeFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-DepthRangeFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator\u003A\u003A\u0024minDepth", + "name": "minDepth", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-DepthRangeFilterIterator.html#property_minDepth" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator", + "name": "ExcludeDirectoryFilterIterator", + "summary": "ExcludeDirectoryFilterIterator\u0020filters\u0020out\u0020directories.", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003AhasChildren\u0028\u0029", + "name": "hasChildren", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#method_hasChildren" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003AgetChildren\u0028\u0029", + "name": "getChildren", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#method_getChildren" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003A\u0024iterator", + "name": "iterator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#property_iterator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003A\u0024isRecursive", + "name": "isRecursive", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#property_isRecursive" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003A\u0024excludedDirs", + "name": "excludedDirs", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#property_excludedDirs" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator\u003A\u003A\u0024excludedPattern", + "name": "excludedPattern", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-ExcludeDirectoryFilterIterator.html#property_excludedPattern" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator", + "name": "FilecontentFilterIterator", + "summary": "FilecontentFilterIterator\u0020filters\u0020files\u0020by\u0020their\u0020contents\u0020using\u0020patterns\u0020\u0028regexps\u0020or\u0020strings\u0029.", + "url": "classes/Symfony-Component-Finder-Iterator-FilecontentFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-FilecontentFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator\u003A\u003AtoRegex\u0028\u0029", + "name": "toRegex", + "summary": "Converts\u0020string\u0020to\u0020regexp\u0020if\u0020necessary.", + "url": "classes/Symfony-Component-Finder-Iterator-FilecontentFilterIterator.html#method_toRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator", + "name": "FilenameFilterIterator", + "summary": "FilenameFilterIterator\u0020filters\u0020files\u0020by\u0020patterns\u0020\u0028a\u0020regexp,\u0020a\u0020glob,\u0020or\u0020a\u0020string\u0029.", + "url": "classes/Symfony-Component-Finder-Iterator-FilenameFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-FilenameFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator\u003A\u003AtoRegex\u0028\u0029", + "name": "toRegex", + "summary": "Converts\u0020glob\u0020to\u0020regexp.", + "url": "classes/Symfony-Component-Finder-Iterator-FilenameFilterIterator.html#method_toRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator", + "name": "FileTypeFilterIterator", + "summary": "FileTypeFilterIterator\u0020only\u0020keeps\u0020files,\u0020directories,\u0020or\u0020both.", + "url": "classes/Symfony-Component-Finder-Iterator-FileTypeFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-FileTypeFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-FileTypeFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator\u003A\u003AONLY_FILES", + "name": "ONLY_FILES", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-FileTypeFilterIterator.html#constant_ONLY_FILES" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator\u003A\u003AONLY_DIRECTORIES", + "name": "ONLY_DIRECTORIES", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-FileTypeFilterIterator.html#constant_ONLY_DIRECTORIES" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator\u003A\u003A\u0024mode", + "name": "mode", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-FileTypeFilterIterator.html#property_mode" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator", + "name": "MultiplePcreFilterIterator", + "summary": "MultiplePcreFilterIterator\u0020filters\u0020files\u0020using\u0020patterns\u0020\u0028regexps,\u0020globs\u0020or\u0020strings\u0029.", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator\u003A\u003AisAccepted\u0028\u0029", + "name": "isAccepted", + "summary": "Checks\u0020whether\u0020the\u0020string\u0020is\u0020accepted\u0020by\u0020the\u0020regex\u0020filters.", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html#method_isAccepted" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator\u003A\u003AisRegex\u0028\u0029", + "name": "isRegex", + "summary": "Checks\u0020whether\u0020the\u0020string\u0020is\u0020a\u0020regex.", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html#method_isRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator\u003A\u003AtoRegex\u0028\u0029", + "name": "toRegex", + "summary": "Converts\u0020string\u0020into\u0020regexp.", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html#method_toRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator\u003A\u003A\u0024matchRegexps", + "name": "matchRegexps", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html#property_matchRegexps" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator\u003A\u003A\u0024noMatchRegexps", + "name": "noMatchRegexps", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-MultiplePcreFilterIterator.html#property_noMatchRegexps" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\PathFilterIterator", + "name": "PathFilterIterator", + "summary": "PathFilterIterator\u0020filters\u0020files\u0020by\u0020path\u0020patterns\u0020\u0028e.g.\u0020some\/special\/dir\u0029.", + "url": "classes/Symfony-Component-Finder-Iterator-PathFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\PathFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-PathFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\PathFilterIterator\u003A\u003AtoRegex\u0028\u0029", + "name": "toRegex", + "summary": "Converts\u0020strings\u0020to\u0020regexp.", + "url": "classes/Symfony-Component-Finder-Iterator-PathFilterIterator.html#method_toRegex" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator", + "name": "RecursiveDirectoryIterator", + "summary": "Extends\u0020the\u0020\\RecursiveDirectoryIterator\u0020to\u0020support\u0020relative\u0020paths.", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003Acurrent\u0028\u0029", + "name": "current", + "summary": "Return\u0020an\u0020instance\u0020of\u0020SplFileInfo\u0020with\u0020support\u0020for\u0020relative\u0020paths.", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#method_current" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003AhasChildren\u0028\u0029", + "name": "hasChildren", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#method_hasChildren" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003AgetChildren\u0028\u0029", + "name": "getChildren", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#method_getChildren" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003Anext\u0028\u0029", + "name": "next", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#method_next" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003Arewind\u0028\u0029", + "name": "rewind", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#method_rewind" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003A\u0024ignoreUnreadableDirs", + "name": "ignoreUnreadableDirs", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#property_ignoreUnreadableDirs" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003A\u0024ignoreFirstRewind", + "name": "ignoreFirstRewind", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#property_ignoreFirstRewind" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003A\u0024rootPath", + "name": "rootPath", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#property_rootPath" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003A\u0024subPath", + "name": "subPath", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#property_subPath" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator\u003A\u003A\u0024directorySeparator", + "name": "directorySeparator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-RecursiveDirectoryIterator.html#property_directorySeparator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator", + "name": "SizeRangeFilterIterator", + "summary": "SizeRangeFilterIterator\u0020filters\u0020out\u0020files\u0020that\u0020are\u0020not\u0020in\u0020the\u0020given\u0020size\u0020range.", + "url": "classes/Symfony-Component-Finder-Iterator-SizeRangeFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SizeRangeFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "Filters\u0020the\u0020iterator\u0020values.", + "url": "classes/Symfony-Component-Finder-Iterator-SizeRangeFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator\u003A\u003A\u0024comparators", + "name": "comparators", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SizeRangeFilterIterator.html#property_comparators" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator", + "name": "SortableIterator", + "summary": "SortableIterator\u0020applies\u0020a\u0020sort\u0020on\u0020a\u0020given\u0020Iterator.", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#method_getIterator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_NONE", + "name": "SORT_BY_NONE", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_NONE" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_NAME", + "name": "SORT_BY_NAME", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_NAME" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_TYPE", + "name": "SORT_BY_TYPE", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_TYPE" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_ACCESSED_TIME", + "name": "SORT_BY_ACCESSED_TIME", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_ACCESSED_TIME" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_CHANGED_TIME", + "name": "SORT_BY_CHANGED_TIME", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_CHANGED_TIME" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_MODIFIED_TIME", + "name": "SORT_BY_MODIFIED_TIME", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_MODIFIED_TIME" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003ASORT_BY_NAME_NATURAL", + "name": "SORT_BY_NAME_NATURAL", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#constant_SORT_BY_NAME_NATURAL" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003A\u0024iterator", + "name": "iterator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#property_iterator" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\SortableIterator\u003A\u003A\u0024sort", + "name": "sort", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-SortableIterator.html#property_sort" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator", + "name": "VcsIgnoredFilterIterator", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003Aaccept\u0028\u0029", + "name": "accept", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#method_accept" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003AisIgnored\u0028\u0029", + "name": "isIgnored", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#method_isIgnored" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003AparentsDirectoryDownward\u0028\u0029", + "name": "parentsDirectoryDownward", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#method_parentsDirectoryDownward" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003AreadGitignoreFile\u0028\u0029", + "name": "readGitignoreFile", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#method_readGitignoreFile" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003AnormalizePath\u0028\u0029", + "name": "normalizePath", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#method_normalizePath" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003A\u0024baseDir", + "name": "baseDir", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#property_baseDir" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003A\u0024gitignoreFilesCache", + "name": "gitignoreFilesCache", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#property_gitignoreFilesCache" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator\\VcsIgnoredFilterIterator\u003A\u003A\u0024ignoredPathsCache", + "name": "ignoredPathsCache", + "summary": "", + "url": "classes/Symfony-Component-Finder-Iterator-VcsIgnoredFilterIterator.html#property_ignoredPathsCache" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo", + "name": "SplFileInfo", + "summary": "Extends\u0020\\SplFileInfo\u0020to\u0020support\u0020relative\u0020paths.", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003AgetRelativePath\u0028\u0029", + "name": "getRelativePath", + "summary": "Returns\u0020the\u0020relative\u0020path.", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#method_getRelativePath" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003AgetRelativePathname\u0028\u0029", + "name": "getRelativePathname", + "summary": "Returns\u0020the\u0020relative\u0020path\u0020name.", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#method_getRelativePathname" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003AgetFilenameWithoutExtension\u0028\u0029", + "name": "getFilenameWithoutExtension", + "summary": "", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#method_getFilenameWithoutExtension" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003AgetContents\u0028\u0029", + "name": "getContents", + "summary": "Returns\u0020the\u0020contents\u0020of\u0020the\u0020file.", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#method_getContents" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003A\u0024relativePath", + "name": "relativePath", + "summary": "", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#property_relativePath" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\SplFileInfo\u003A\u003A\u0024relativePathname", + "name": "relativePathname", + "summary": "", + "url": "classes/Symfony-Component-Finder-SplFileInfo.html#property_relativePathname" + }, { + "fqsen": "\\ctype_alnum\u0028\u0029", + "name": "ctype_alnum", + "summary": "", + "url": "namespaces/default.html#function_ctype_alnum" + }, { + "fqsen": "\\ctype_alpha\u0028\u0029", + "name": "ctype_alpha", + "summary": "", + "url": "namespaces/default.html#function_ctype_alpha" + }, { + "fqsen": "\\ctype_cntrl\u0028\u0029", + "name": "ctype_cntrl", + "summary": "", + "url": "namespaces/default.html#function_ctype_cntrl" + }, { + "fqsen": "\\ctype_digit\u0028\u0029", + "name": "ctype_digit", + "summary": "", + "url": "namespaces/default.html#function_ctype_digit" + }, { + "fqsen": "\\ctype_graph\u0028\u0029", + "name": "ctype_graph", + "summary": "", + "url": "namespaces/default.html#function_ctype_graph" + }, { + "fqsen": "\\ctype_lower\u0028\u0029", + "name": "ctype_lower", + "summary": "", + "url": "namespaces/default.html#function_ctype_lower" + }, { + "fqsen": "\\ctype_print\u0028\u0029", + "name": "ctype_print", + "summary": "", + "url": "namespaces/default.html#function_ctype_print" + }, { + "fqsen": "\\ctype_punct\u0028\u0029", + "name": "ctype_punct", + "summary": "", + "url": "namespaces/default.html#function_ctype_punct" + }, { + "fqsen": "\\ctype_space\u0028\u0029", + "name": "ctype_space", + "summary": "", + "url": "namespaces/default.html#function_ctype_space" + }, { + "fqsen": "\\ctype_upper\u0028\u0029", + "name": "ctype_upper", + "summary": "", + "url": "namespaces/default.html#function_ctype_upper" + }, { + "fqsen": "\\ctype_xdigit\u0028\u0029", + "name": "ctype_xdigit", + "summary": "", + "url": "namespaces/default.html#function_ctype_xdigit" + }, { + "fqsen": "\\GRAPHEME_EXTR_COUNT", + "name": "GRAPHEME_EXTR_COUNT", + "summary": "", + "url": "namespaces/default.html#constant_GRAPHEME_EXTR_COUNT" + }, { + "fqsen": "\\GRAPHEME_EXTR_MAXBYTES", + "name": "GRAPHEME_EXTR_MAXBYTES", + "summary": "", + "url": "namespaces/default.html#constant_GRAPHEME_EXTR_MAXBYTES" + }, { + "fqsen": "\\GRAPHEME_EXTR_MAXCHARS", + "name": "GRAPHEME_EXTR_MAXCHARS", + "summary": "", + "url": "namespaces/default.html#constant_GRAPHEME_EXTR_MAXCHARS" + }, { + "fqsen": "\\grapheme_extract\u0028\u0029", + "name": "grapheme_extract", + "summary": "", + "url": "namespaces/default.html#function_grapheme_extract" + }, { + "fqsen": "\\grapheme_stripos\u0028\u0029", + "name": "grapheme_stripos", + "summary": "", + "url": "namespaces/default.html#function_grapheme_stripos" + }, { + "fqsen": "\\grapheme_stristr\u0028\u0029", + "name": "grapheme_stristr", + "summary": "", + "url": "namespaces/default.html#function_grapheme_stristr" + }, { + "fqsen": "\\grapheme_strlen\u0028\u0029", + "name": "grapheme_strlen", + "summary": "", + "url": "namespaces/default.html#function_grapheme_strlen" + }, { + "fqsen": "\\grapheme_strpos\u0028\u0029", + "name": "grapheme_strpos", + "summary": "", + "url": "namespaces/default.html#function_grapheme_strpos" + }, { + "fqsen": "\\grapheme_strripos\u0028\u0029", + "name": "grapheme_strripos", + "summary": "", + "url": "namespaces/default.html#function_grapheme_strripos" + }, { + "fqsen": "\\grapheme_strrpos\u0028\u0029", + "name": "grapheme_strrpos", + "summary": "", + "url": "namespaces/default.html#function_grapheme_strrpos" + }, { + "fqsen": "\\grapheme_strstr\u0028\u0029", + "name": "grapheme_strstr", + "summary": "", + "url": "namespaces/default.html#function_grapheme_strstr" + }, { + "fqsen": "\\grapheme_substr\u0028\u0029", + "name": "grapheme_substr", + "summary": "", + "url": "namespaces/default.html#function_grapheme_substr" + }, { + "fqsen": "\\SYMFONY_GRAPHEME_CLUSTER_RX", + "name": "SYMFONY_GRAPHEME_CLUSTER_RX", + "summary": "", + "url": "namespaces/default.html#constant_SYMFONY_GRAPHEME_CLUSTER_RX" + }, { + "fqsen": "\\normalizer_is_normalized\u0028\u0029", + "name": "normalizer_is_normalized", + "summary": "", + "url": "namespaces/default.html#function_normalizer_is_normalized" + }, { + "fqsen": "\\normalizer_normalize\u0028\u0029", + "name": "normalizer_normalize", + "summary": "", + "url": "namespaces/default.html#function_normalizer_normalize" + }, { + "fqsen": "\\Normalizer", + "name": "Normalizer", + "summary": "", + "url": "classes/Normalizer.html" + }, { + "fqsen": "\\Normalizer\u003A\u003ANONE", + "name": "NONE", + "summary": "", + "url": "classes/Normalizer.html#constant_NONE" + }, { + "fqsen": "\\Normalizer\u003A\u003AFORM_D", + "name": "FORM_D", + "summary": "", + "url": "classes/Normalizer.html#constant_FORM_D" + }, { + "fqsen": "\\Normalizer\u003A\u003AFORM_KD", + "name": "FORM_KD", + "summary": "", + "url": "classes/Normalizer.html#constant_FORM_KD" + }, { + "fqsen": "\\Normalizer\u003A\u003AFORM_C", + "name": "FORM_C", + "summary": "", + "url": "classes/Normalizer.html#constant_FORM_C" + }, { + "fqsen": "\\Normalizer\u003A\u003AFORM_KC", + "name": "FORM_KC", + "summary": "", + "url": "classes/Normalizer.html#constant_FORM_KC" + }, { + "fqsen": "\\Normalizer\u003A\u003ANFD", + "name": "NFD", + "summary": "", + "url": "classes/Normalizer.html#constant_NFD" + }, { + "fqsen": "\\Normalizer\u003A\u003ANFKD", + "name": "NFKD", + "summary": "", + "url": "classes/Normalizer.html#constant_NFKD" + }, { + "fqsen": "\\Normalizer\u003A\u003ANFC", + "name": "NFC", + "summary": "", + "url": "classes/Normalizer.html#constant_NFC" + }, { + "fqsen": "\\Normalizer\u003A\u003ANFKC", + "name": "NFKC", + "summary": "", + "url": "classes/Normalizer.html#constant_NFKC" + }, { + "fqsen": "\\MB_CASE_UPPER", + "name": "MB_CASE_UPPER", + "summary": "", + "url": "namespaces/default.html#constant_MB_CASE_UPPER" + }, { + "fqsen": "\\MB_CASE_LOWER", + "name": "MB_CASE_LOWER", + "summary": "", + "url": "namespaces/default.html#constant_MB_CASE_LOWER" + }, { + "fqsen": "\\MB_CASE_TITLE", + "name": "MB_CASE_TITLE", + "summary": "", + "url": "namespaces/default.html#constant_MB_CASE_TITLE" + }, { + "fqsen": "\\mb_convert_encoding\u0028\u0029", + "name": "mb_convert_encoding", + "summary": "", + "url": "namespaces/default.html#function_mb_convert_encoding" + }, { + "fqsen": "\\mb_decode_mimeheader\u0028\u0029", + "name": "mb_decode_mimeheader", + "summary": "", + "url": "namespaces/default.html#function_mb_decode_mimeheader" + }, { + "fqsen": "\\mb_encode_mimeheader\u0028\u0029", + "name": "mb_encode_mimeheader", + "summary": "", + "url": "namespaces/default.html#function_mb_encode_mimeheader" + }, { + "fqsen": "\\mb_decode_numericentity\u0028\u0029", + "name": "mb_decode_numericentity", + "summary": "", + "url": "namespaces/default.html#function_mb_decode_numericentity" + }, { + "fqsen": "\\mb_encode_numericentity\u0028\u0029", + "name": "mb_encode_numericentity", + "summary": "", + "url": "namespaces/default.html#function_mb_encode_numericentity" + }, { + "fqsen": "\\mb_convert_case\u0028\u0029", + "name": "mb_convert_case", + "summary": "", + "url": "namespaces/default.html#function_mb_convert_case" + }, { + "fqsen": "\\mb_internal_encoding\u0028\u0029", + "name": "mb_internal_encoding", + "summary": "", + "url": "namespaces/default.html#function_mb_internal_encoding" + }, { + "fqsen": "\\mb_language\u0028\u0029", + "name": "mb_language", + "summary": "", + "url": "namespaces/default.html#function_mb_language" + }, { + "fqsen": "\\mb_list_encodings\u0028\u0029", + "name": "mb_list_encodings", + "summary": "", + "url": "namespaces/default.html#function_mb_list_encodings" + }, { + "fqsen": "\\mb_encoding_aliases\u0028\u0029", + "name": "mb_encoding_aliases", + "summary": "", + "url": "namespaces/default.html#function_mb_encoding_aliases" + }, { + "fqsen": "\\mb_check_encoding\u0028\u0029", + "name": "mb_check_encoding", + "summary": "", + "url": "namespaces/default.html#function_mb_check_encoding" + }, { + "fqsen": "\\mb_detect_encoding\u0028\u0029", + "name": "mb_detect_encoding", + "summary": "", + "url": "namespaces/default.html#function_mb_detect_encoding" + }, { + "fqsen": "\\mb_detect_order\u0028\u0029", + "name": "mb_detect_order", + "summary": "", + "url": "namespaces/default.html#function_mb_detect_order" + }, { + "fqsen": "\\mb_parse_str\u0028\u0029", + "name": "mb_parse_str", + "summary": "", + "url": "namespaces/default.html#function_mb_parse_str" + }, { + "fqsen": "\\mb_strlen\u0028\u0029", + "name": "mb_strlen", + "summary": "", + "url": "namespaces/default.html#function_mb_strlen" + }, { + "fqsen": "\\mb_strpos\u0028\u0029", + "name": "mb_strpos", + "summary": "", + "url": "namespaces/default.html#function_mb_strpos" + }, { + "fqsen": "\\mb_strtolower\u0028\u0029", + "name": "mb_strtolower", + "summary": "", + "url": "namespaces/default.html#function_mb_strtolower" + }, { + "fqsen": "\\mb_strtoupper\u0028\u0029", + "name": "mb_strtoupper", + "summary": "", + "url": "namespaces/default.html#function_mb_strtoupper" + }, { + "fqsen": "\\mb_substitute_character\u0028\u0029", + "name": "mb_substitute_character", + "summary": "", + "url": "namespaces/default.html#function_mb_substitute_character" + }, { + "fqsen": "\\mb_substr\u0028\u0029", + "name": "mb_substr", + "summary": "", + "url": "namespaces/default.html#function_mb_substr" + }, { + "fqsen": "\\mb_stripos\u0028\u0029", + "name": "mb_stripos", + "summary": "", + "url": "namespaces/default.html#function_mb_stripos" + }, { + "fqsen": "\\mb_stristr\u0028\u0029", + "name": "mb_stristr", + "summary": "", + "url": "namespaces/default.html#function_mb_stristr" + }, { + "fqsen": "\\mb_strrchr\u0028\u0029", + "name": "mb_strrchr", + "summary": "", + "url": "namespaces/default.html#function_mb_strrchr" + }, { + "fqsen": "\\mb_strrichr\u0028\u0029", + "name": "mb_strrichr", + "summary": "", + "url": "namespaces/default.html#function_mb_strrichr" + }, { + "fqsen": "\\mb_strripos\u0028\u0029", + "name": "mb_strripos", + "summary": "", + "url": "namespaces/default.html#function_mb_strripos" + }, { + "fqsen": "\\mb_strrpos\u0028\u0029", + "name": "mb_strrpos", + "summary": "", + "url": "namespaces/default.html#function_mb_strrpos" + }, { + "fqsen": "\\mb_strstr\u0028\u0029", + "name": "mb_strstr", + "summary": "", + "url": "namespaces/default.html#function_mb_strstr" + }, { + "fqsen": "\\mb_get_info\u0028\u0029", + "name": "mb_get_info", + "summary": "", + "url": "namespaces/default.html#function_mb_get_info" + }, { + "fqsen": "\\mb_http_output\u0028\u0029", + "name": "mb_http_output", + "summary": "", + "url": "namespaces/default.html#function_mb_http_output" + }, { + "fqsen": "\\mb_strwidth\u0028\u0029", + "name": "mb_strwidth", + "summary": "", + "url": "namespaces/default.html#function_mb_strwidth" + }, { + "fqsen": "\\mb_substr_count\u0028\u0029", + "name": "mb_substr_count", + "summary": "", + "url": "namespaces/default.html#function_mb_substr_count" + }, { + "fqsen": "\\mb_output_handler\u0028\u0029", + "name": "mb_output_handler", + "summary": "", + "url": "namespaces/default.html#function_mb_output_handler" + }, { + "fqsen": "\\mb_http_input\u0028\u0029", + "name": "mb_http_input", + "summary": "", + "url": "namespaces/default.html#function_mb_http_input" + }, { + "fqsen": "\\mb_convert_variables\u0028\u0029", + "name": "mb_convert_variables", + "summary": "", + "url": "namespaces/default.html#function_mb_convert_variables" + }, { + "fqsen": "\\mb_ord\u0028\u0029", + "name": "mb_ord", + "summary": "", + "url": "namespaces/default.html#function_mb_ord" + }, { + "fqsen": "\\mb_chr\u0028\u0029", + "name": "mb_chr", + "summary": "", + "url": "namespaces/default.html#function_mb_chr" + }, { + "fqsen": "\\mb_scrub\u0028\u0029", + "name": "mb_scrub", + "summary": "", + "url": "namespaces/default.html#function_mb_scrub" + }, { + "fqsen": "\\mb_str_split\u0028\u0029", + "name": "mb_str_split", + "summary": "", + "url": "namespaces/default.html#function_mb_str_split" + }, { + "fqsen": "\\mb_str_pad\u0028\u0029", + "name": "mb_str_pad", + "summary": "", + "url": "namespaces/default.html#function_mb_str_pad" + }, { + "fqsen": "\\mb_ucfirst\u0028\u0029", + "name": "mb_ucfirst", + "summary": "", + "url": "namespaces/default.html#function_mb_ucfirst" + }, { + "fqsen": "\\mb_lcfirst\u0028\u0029", + "name": "mb_lcfirst", + "summary": "", + "url": "namespaces/default.html#function_mb_lcfirst" + }, { + "fqsen": "\\mb_trim\u0028\u0029", + "name": "mb_trim", + "summary": "", + "url": "namespaces/default.html#function_mb_trim" + }, { + "fqsen": "\\mb_ltrim\u0028\u0029", + "name": "mb_ltrim", + "summary": "", + "url": "namespaces/default.html#function_mb_ltrim" + }, { + "fqsen": "\\mb_rtrim\u0028\u0029", + "name": "mb_rtrim", + "summary": "", + "url": "namespaces/default.html#function_mb_rtrim" + }, { + "fqsen": "\\is_countable\u0028\u0029", + "name": "is_countable", + "summary": "", + "url": "namespaces/default.html#function_is_countable" + }, { + "fqsen": "\\hrtime\u0028\u0029", + "name": "hrtime", + "summary": "", + "url": "namespaces/default.html#function_hrtime" + }, { + "fqsen": "\\array_key_first\u0028\u0029", + "name": "array_key_first", + "summary": "", + "url": "namespaces/default.html#function_array_key_first" + }, { + "fqsen": "\\array_key_last\u0028\u0029", + "name": "array_key_last", + "summary": "", + "url": "namespaces/default.html#function_array_key_last" + }, { + "fqsen": "\\JsonException", + "name": "JsonException", + "summary": "", + "url": "classes/JsonException.html" + }, { + "fqsen": "\\FILTER_VALIDATE_BOOL", + "name": "FILTER_VALIDATE_BOOL", + "summary": "", + "url": "namespaces/default.html#constant_FILTER_VALIDATE_BOOL" + }, { + "fqsen": "\\fdiv\u0028\u0029", + "name": "fdiv", + "summary": "", + "url": "namespaces/default.html#function_fdiv" + }, { + "fqsen": "\\preg_last_error_msg\u0028\u0029", + "name": "preg_last_error_msg", + "summary": "", + "url": "namespaces/default.html#function_preg_last_error_msg" + }, { + "fqsen": "\\str_contains\u0028\u0029", + "name": "str_contains", + "summary": "", + "url": "namespaces/default.html#function_str_contains" + }, { + "fqsen": "\\str_starts_with\u0028\u0029", + "name": "str_starts_with", + "summary": "", + "url": "namespaces/default.html#function_str_starts_with" + }, { + "fqsen": "\\str_ends_with\u0028\u0029", + "name": "str_ends_with", + "summary": "", + "url": "namespaces/default.html#function_str_ends_with" + }, { + "fqsen": "\\get_debug_type\u0028\u0029", + "name": "get_debug_type", + "summary": "", + "url": "namespaces/default.html#function_get_debug_type" + }, { + "fqsen": "\\get_resource_id\u0028\u0029", + "name": "get_resource_id", + "summary": "", + "url": "namespaces/default.html#function_get_resource_id" + }, { + "fqsen": "\\Attribute", + "name": "Attribute", + "summary": "", + "url": "classes/Attribute.html" + }, { + "fqsen": "\\Attribute\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Attribute.html#method___construct" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_CLASS", + "name": "TARGET_CLASS", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_CLASS" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_FUNCTION", + "name": "TARGET_FUNCTION", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_FUNCTION" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_METHOD", + "name": "TARGET_METHOD", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_METHOD" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_PROPERTY", + "name": "TARGET_PROPERTY", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_PROPERTY" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_CLASS_CONSTANT", + "name": "TARGET_CLASS_CONSTANT", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_CLASS_CONSTANT" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_PARAMETER", + "name": "TARGET_PARAMETER", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_PARAMETER" + }, { + "fqsen": "\\Attribute\u003A\u003ATARGET_ALL", + "name": "TARGET_ALL", + "summary": "", + "url": "classes/Attribute.html#constant_TARGET_ALL" + }, { + "fqsen": "\\Attribute\u003A\u003AIS_REPEATABLE", + "name": "IS_REPEATABLE", + "summary": "", + "url": "classes/Attribute.html#constant_IS_REPEATABLE" + }, { + "fqsen": "\\Attribute\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/Attribute.html#property_flags" + }, { + "fqsen": "\\PhpToken", + "name": "PhpToken", + "summary": "", + "url": "classes/PhpToken.html" + }, { + "fqsen": "\\Stringable", + "name": "Stringable", + "summary": "", + "url": "classes/Stringable.html" + }, { + "fqsen": "\\Stringable\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Stringable.html#method___toString" + }, { + "fqsen": "\\UnhandledMatchError", + "name": "UnhandledMatchError", + "summary": "", + "url": "classes/UnhandledMatchError.html" + }, { + "fqsen": "\\ValueError", + "name": "ValueError", + "summary": "", + "url": "classes/ValueError.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ExceptionInterface", + "name": "ExceptionInterface", + "summary": "Marker\u0020Interface\u0020for\u0020the\u0020Process\u0020Component.", + "url": "classes/Symfony-Component-Process-Exception-ExceptionInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "InvalidArgumentException\u0020for\u0020the\u0020Process\u0020Component.", + "url": "classes/Symfony-Component-Process-Exception-InvalidArgumentException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\LogicException", + "name": "LogicException", + "summary": "LogicException\u0020for\u0020the\u0020Process\u0020Component.", + "url": "classes/Symfony-Component-Process-Exception-LogicException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessFailedException", + "name": "ProcessFailedException", + "summary": "Exception\u0020for\u0020failed\u0020processes.", + "url": "classes/Symfony-Component-Process-Exception-ProcessFailedException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessFailedException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessFailedException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessFailedException\u003A\u003AgetProcess\u0028\u0029", + "name": "getProcess", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessFailedException.html#method_getProcess" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessFailedException\u003A\u003A\u0024process", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessFailedException.html#property_process" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessSignaledException", + "name": "ProcessSignaledException", + "summary": "Exception\u0020that\u0020is\u0020thrown\u0020when\u0020a\u0020process\u0020has\u0020been\u0020signaled.", + "url": "classes/Symfony-Component-Process-Exception-ProcessSignaledException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessSignaledException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessSignaledException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessSignaledException\u003A\u003AgetProcess\u0028\u0029", + "name": "getProcess", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessSignaledException.html#method_getProcess" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessSignaledException\u003A\u003AgetSignal\u0028\u0029", + "name": "getSignal", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessSignaledException.html#method_getSignal" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessSignaledException\u003A\u003A\u0024process", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessSignaledException.html#property_process" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException", + "name": "ProcessTimedOutException", + "summary": "Exception\u0020that\u0020is\u0020thrown\u0020when\u0020a\u0020process\u0020times\u0020out.", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003AgetProcess\u0028\u0029", + "name": "getProcess", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#method_getProcess" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003AisGeneralTimeout\u0028\u0029", + "name": "isGeneralTimeout", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#method_isGeneralTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003AisIdleTimeout\u0028\u0029", + "name": "isIdleTimeout", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#method_isIdleTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003AgetExceededTimeout\u0028\u0029", + "name": "getExceededTimeout", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#method_getExceededTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003ATYPE_GENERAL", + "name": "TYPE_GENERAL", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#constant_TYPE_GENERAL" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003ATYPE_IDLE", + "name": "TYPE_IDLE", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#constant_TYPE_IDLE" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003A\u0024process", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#property_process" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\ProcessTimedOutException\u003A\u003A\u0024timeoutType", + "name": "timeoutType", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-ProcessTimedOutException.html#property_timeoutType" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\RunProcessFailedException", + "name": "RunProcessFailedException", + "summary": "RuntimeException\u0020for\u0020the\u0020Process\u0020Component.", + "url": "classes/Symfony-Component-Process-Exception-RunProcessFailedException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\RunProcessFailedException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-RunProcessFailedException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\RunProcessFailedException\u003A\u003A\u0024context", + "name": "context", + "summary": "", + "url": "classes/Symfony-Component-Process-Exception-RunProcessFailedException.html#property_context" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception\\RuntimeException", + "name": "RuntimeException", + "summary": "RuntimeException\u0020for\u0020the\u0020Process\u0020Component.", + "url": "classes/Symfony-Component-Process-Exception-RuntimeException.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ExecutableFinder", + "name": "ExecutableFinder", + "summary": "Generic\u0020executable\u0020finder.", + "url": "classes/Symfony-Component-Process-ExecutableFinder.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ExecutableFinder\u003A\u003AsetSuffixes\u0028\u0029", + "name": "setSuffixes", + "summary": "Replaces\u0020default\u0020suffixes\u0020of\u0020executable.", + "url": "classes/Symfony-Component-Process-ExecutableFinder.html#method_setSuffixes" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ExecutableFinder\u003A\u003AaddSuffix\u0028\u0029", + "name": "addSuffix", + "summary": "Adds\u0020new\u0020possible\u0020suffix\u0020to\u0020check\u0020for\u0020executable.", + "url": "classes/Symfony-Component-Process-ExecutableFinder.html#method_addSuffix" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ExecutableFinder\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Finds\u0020an\u0020executable\u0020by\u0020name.", + "url": "classes/Symfony-Component-Process-ExecutableFinder.html#method_find" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ExecutableFinder\u003A\u003ACMD_BUILTINS", + "name": "CMD_BUILTINS", + "summary": "", + "url": "classes/Symfony-Component-Process-ExecutableFinder.html#constant_CMD_BUILTINS" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ExecutableFinder\u003A\u003A\u0024suffixes", + "name": "suffixes", + "summary": "", + "url": "classes/Symfony-Component-Process-ExecutableFinder.html#property_suffixes" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream", + "name": "InputStream", + "summary": "Provides\u0020a\u0020way\u0020to\u0020continuously\u0020write\u0020to\u0020the\u0020input\u0020of\u0020a\u0020Process\u0020until\u0020the\u0020InputStream\u0020is\u0020closed.", + "url": "classes/Symfony-Component-Process-InputStream.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003A\u0024onEmpty", + "name": "onEmpty", + "summary": "", + "url": "classes/Symfony-Component-Process-InputStream.html#property_onEmpty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Appends\u0020an\u0020input\u0020to\u0020the\u0020write\u0020buffer.", + "url": "classes/Symfony-Component-Process-InputStream.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Closes\u0020the\u0020write\u0020buffer.", + "url": "classes/Symfony-Component-Process-InputStream.html#method_close" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003AisClosed\u0028\u0029", + "name": "isClosed", + "summary": "Tells\u0020whether\u0020the\u0020write\u0020buffer\u0020is\u0020closed\u0020or\u0020not.", + "url": "classes/Symfony-Component-Process-InputStream.html#method_isClosed" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/Symfony-Component-Process-InputStream.html#method_getIterator" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Process-InputStream.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Process\\InputStream\u003A\u003A\u0024open", + "name": "open", + "summary": "", + "url": "classes/Symfony-Component-Process-InputStream.html#property_open" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessContext", + "name": "RunProcessContext", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessContext.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessContext\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessContext.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessContext\u003A\u003A\u0024exitCode", + "name": "exitCode", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessContext.html#property_exitCode" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessContext\u003A\u003A\u0024output", + "name": "output", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessContext.html#property_output" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessContext\u003A\u003A\u0024errorOutput", + "name": "errorOutput", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessContext.html#property_errorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessContext\u003A\u003A\u0024message", + "name": "message", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessContext.html#property_message" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage", + "name": "RunProcessMessage", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A\u0024command", + "name": "command", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#property_command" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A\u0024cwd", + "name": "cwd", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#property_cwd" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A\u0024env", + "name": "env", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#property_env" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessage\u003A\u003A\u0024timeout", + "name": "timeout", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessage.html#property_timeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessageHandler", + "name": "RunProcessMessageHandler", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessageHandler.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger\\RunProcessMessageHandler\u003A\u003A__invoke\u0028\u0029", + "name": "__invoke", + "summary": "", + "url": "classes/Symfony-Component-Process-Messenger-RunProcessMessageHandler.html#method___invoke" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpExecutableFinder", + "name": "PhpExecutableFinder", + "summary": "An\u0020executable\u0020finder\u0020specifically\u0020designed\u0020for\u0020the\u0020PHP\u0020executable.", + "url": "classes/Symfony-Component-Process-PhpExecutableFinder.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpExecutableFinder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpExecutableFinder.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpExecutableFinder\u003A\u003Afind\u0028\u0029", + "name": "find", + "summary": "Finds\u0020The\u0020PHP\u0020executable.", + "url": "classes/Symfony-Component-Process-PhpExecutableFinder.html#method_find" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpExecutableFinder\u003A\u003AfindArguments\u0028\u0029", + "name": "findArguments", + "summary": "Finds\u0020the\u0020PHP\u0020executable\u0020arguments.", + "url": "classes/Symfony-Component-Process-PhpExecutableFinder.html#method_findArguments" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpExecutableFinder\u003A\u003A\u0024executableFinder", + "name": "executableFinder", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpExecutableFinder.html#property_executableFinder" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpProcess", + "name": "PhpProcess", + "summary": "PhpProcess\u0020runs\u0020a\u0020PHP\u0020script\u0020in\u0020an\u0020independent\u0020process.", + "url": "classes/Symfony-Component-Process-PhpProcess.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpProcess\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpProcess.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpProcess\u003A\u003AfromShellCommandline\u0028\u0029", + "name": "fromShellCommandline", + "summary": "Creates\u0020a\u0020Process\u0020instance\u0020as\u0020a\u0020command\u002Dline\u0020to\u0020be\u0020run\u0020in\u0020a\u0020shell\u0020wrapper.", + "url": "classes/Symfony-Component-Process-PhpProcess.html#method_fromShellCommandline" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpProcess\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Starts\u0020the\u0020process\u0020and\u0020returns\u0020after\u0020writing\u0020the\u0020input\u0020to\u0020STDIN.", + "url": "classes/Symfony-Component-Process-PhpProcess.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess", + "name": "PhpSubprocess", + "summary": "PhpSubprocess\u0020runs\u0020a\u0020PHP\u0020command\u0020as\u0020a\u0020subprocess\u0020while\u0020keeping\u0020the\u0020original\u0020php.ini\u0020settings.", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess\u003A\u003AfromShellCommandline\u0028\u0029", + "name": "fromShellCommandline", + "summary": "Creates\u0020a\u0020Process\u0020instance\u0020as\u0020a\u0020command\u002Dline\u0020to\u0020be\u0020run\u0020in\u0020a\u0020shell\u0020wrapper.", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html#method_fromShellCommandline" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Starts\u0020the\u0020process\u0020and\u0020returns\u0020after\u0020writing\u0020the\u0020input\u0020to\u0020STDIN.", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess\u003A\u003AwriteTmpIni\u0028\u0029", + "name": "writeTmpIni", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html#method_writeTmpIni" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess\u003A\u003AmergeLoadedConfig\u0028\u0029", + "name": "mergeLoadedConfig", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html#method_mergeLoadedConfig" + }, { + "fqsen": "\\Symfony\\Component\\Process\\PhpSubprocess\u003A\u003AgetAllIniFiles\u0028\u0029", + "name": "getAllIniFiles", + "summary": "", + "url": "classes/Symfony-Component-Process-PhpSubprocess.html#method_getAllIniFiles" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process", + "name": "Process", + "summary": "Process\u0020is\u0020a\u0020thin\u0020wrapper\u0020around\u0020proc_\u002A\u0020functions\u0020to\u0020easily\nstart\u0020independent\u0020PHP\u0020processes.", + "url": "classes/Symfony-Component-Process-Process.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AfromShellCommandline\u0028\u0029", + "name": "fromShellCommandline", + "summary": "Creates\u0020a\u0020Process\u0020instance\u0020as\u0020a\u0020command\u002Dline\u0020to\u0020be\u0020run\u0020in\u0020a\u0020shell\u0020wrapper.", + "url": "classes/Symfony-Component-Process-Process.html#method_fromShellCommandline" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A__sleep\u0028\u0029", + "name": "__sleep", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method___sleep" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A__wakeup\u0028\u0029", + "name": "__wakeup", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method___wakeup" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A__destruct\u0028\u0029", + "name": "__destruct", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method___destruct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method___clone" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Arun\u0028\u0029", + "name": "run", + "summary": "Runs\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_run" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AmustRun\u0028\u0029", + "name": "mustRun", + "summary": "Runs\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_mustRun" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "Starts\u0020the\u0020process\u0020and\u0020returns\u0020after\u0020writing\u0020the\u0020input\u0020to\u0020STDIN.", + "url": "classes/Symfony-Component-Process-Process.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Arestart\u0028\u0029", + "name": "restart", + "summary": "Restarts\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_restart" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Await\u0028\u0029", + "name": "wait", + "summary": "Waits\u0020for\u0020the\u0020process\u0020to\u0020terminate.", + "url": "classes/Symfony-Component-Process-Process.html#method_wait" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AwaitUntil\u0028\u0029", + "name": "waitUntil", + "summary": "Waits\u0020until\u0020the\u0020callback\u0020returns\u0020true.", + "url": "classes/Symfony-Component-Process-Process.html#method_waitUntil" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetPid\u0028\u0029", + "name": "getPid", + "summary": "Returns\u0020the\u0020Pid\u0020\u0028process\u0020identifier\u0029,\u0020if\u0020applicable.", + "url": "classes/Symfony-Component-Process-Process.html#method_getPid" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Asignal\u0028\u0029", + "name": "signal", + "summary": "Sends\u0020a\u0020POSIX\u0020signal\u0020to\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_signal" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AdisableOutput\u0028\u0029", + "name": "disableOutput", + "summary": "Disables\u0020fetching\u0020output\u0020and\u0020error\u0020output\u0020from\u0020the\u0020underlying\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_disableOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AenableOutput\u0028\u0029", + "name": "enableOutput", + "summary": "Enables\u0020fetching\u0020output\u0020and\u0020error\u0020output\u0020from\u0020the\u0020underlying\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_enableOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisOutputDisabled\u0028\u0029", + "name": "isOutputDisabled", + "summary": "Returns\u0020true\u0020in\u0020case\u0020the\u0020output\u0020is\u0020disabled,\u0020false\u0020otherwise.", + "url": "classes/Symfony-Component-Process-Process.html#method_isOutputDisabled" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetOutput\u0028\u0029", + "name": "getOutput", + "summary": "Returns\u0020the\u0020current\u0020output\u0020of\u0020the\u0020process\u0020\u0028STDOUT\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_getOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetIncrementalOutput\u0028\u0029", + "name": "getIncrementalOutput", + "summary": "Returns\u0020the\u0020output\u0020incrementally.", + "url": "classes/Symfony-Component-Process-Process.html#method_getIncrementalOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "Returns\u0020an\u0020iterator\u0020to\u0020the\u0020output\u0020of\u0020the\u0020process,\u0020with\u0020the\u0020output\u0020type\u0020as\u0020keys\u0020\u0028Process\u003A\u003AOUT\/ERR\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_getIterator" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AclearOutput\u0028\u0029", + "name": "clearOutput", + "summary": "Clears\u0020the\u0020process\u0020output.", + "url": "classes/Symfony-Component-Process-Process.html#method_clearOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetErrorOutput\u0028\u0029", + "name": "getErrorOutput", + "summary": "Returns\u0020the\u0020current\u0020error\u0020output\u0020of\u0020the\u0020process\u0020\u0028STDERR\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_getErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetIncrementalErrorOutput\u0028\u0029", + "name": "getIncrementalErrorOutput", + "summary": "Returns\u0020the\u0020errorOutput\u0020incrementally.", + "url": "classes/Symfony-Component-Process-Process.html#method_getIncrementalErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AclearErrorOutput\u0028\u0029", + "name": "clearErrorOutput", + "summary": "Clears\u0020the\u0020process\u0020output.", + "url": "classes/Symfony-Component-Process-Process.html#method_clearErrorOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetExitCode\u0028\u0029", + "name": "getExitCode", + "summary": "Returns\u0020the\u0020exit\u0020code\u0020returned\u0020by\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_getExitCode" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetExitCodeText\u0028\u0029", + "name": "getExitCodeText", + "summary": "Returns\u0020a\u0020string\u0020representation\u0020for\u0020the\u0020exit\u0020code\u0020returned\u0020by\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_getExitCodeText" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisSuccessful\u0028\u0029", + "name": "isSuccessful", + "summary": "Checks\u0020if\u0020the\u0020process\u0020ended\u0020successfully.", + "url": "classes/Symfony-Component-Process-Process.html#method_isSuccessful" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AhasBeenSignaled\u0028\u0029", + "name": "hasBeenSignaled", + "summary": "Returns\u0020true\u0020if\u0020the\u0020child\u0020process\u0020has\u0020been\u0020terminated\u0020by\u0020an\u0020uncaught\u0020signal.", + "url": "classes/Symfony-Component-Process-Process.html#method_hasBeenSignaled" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetTermSignal\u0028\u0029", + "name": "getTermSignal", + "summary": "Returns\u0020the\u0020number\u0020of\u0020the\u0020signal\u0020that\u0020caused\u0020the\u0020child\u0020process\u0020to\u0020terminate\u0020its\u0020execution.", + "url": "classes/Symfony-Component-Process-Process.html#method_getTermSignal" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AhasBeenStopped\u0028\u0029", + "name": "hasBeenStopped", + "summary": "Returns\u0020true\u0020if\u0020the\u0020child\u0020process\u0020has\u0020been\u0020stopped\u0020by\u0020a\u0020signal.", + "url": "classes/Symfony-Component-Process-Process.html#method_hasBeenStopped" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetStopSignal\u0028\u0029", + "name": "getStopSignal", + "summary": "Returns\u0020the\u0020number\u0020of\u0020the\u0020signal\u0020that\u0020caused\u0020the\u0020child\u0020process\u0020to\u0020stop\u0020its\u0020execution.", + "url": "classes/Symfony-Component-Process-Process.html#method_getStopSignal" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisRunning\u0028\u0029", + "name": "isRunning", + "summary": "Checks\u0020if\u0020the\u0020process\u0020is\u0020currently\u0020running.", + "url": "classes/Symfony-Component-Process-Process.html#method_isRunning" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisStarted\u0028\u0029", + "name": "isStarted", + "summary": "Checks\u0020if\u0020the\u0020process\u0020has\u0020been\u0020started\u0020with\u0020no\u0020regard\u0020to\u0020the\u0020current\u0020state.", + "url": "classes/Symfony-Component-Process-Process.html#method_isStarted" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisTerminated\u0028\u0029", + "name": "isTerminated", + "summary": "Checks\u0020if\u0020the\u0020process\u0020is\u0020terminated.", + "url": "classes/Symfony-Component-Process-Process.html#method_isTerminated" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetStatus\u0028\u0029", + "name": "getStatus", + "summary": "Gets\u0020the\u0020process\u0020status.", + "url": "classes/Symfony-Component-Process-Process.html#method_getStatus" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Astop\u0028\u0029", + "name": "stop", + "summary": "Stops\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_stop" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetLastOutputTime\u0028\u0029", + "name": "getLastOutputTime", + "summary": "Gets\u0020the\u0020last\u0020output\u0020time\u0020in\u0020seconds.", + "url": "classes/Symfony-Component-Process-Process.html#method_getLastOutputTime" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetCommandLine\u0028\u0029", + "name": "getCommandLine", + "summary": "Gets\u0020the\u0020command\u0020line\u0020to\u0020be\u0020executed.", + "url": "classes/Symfony-Component-Process-Process.html#method_getCommandLine" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetTimeout\u0028\u0029", + "name": "getTimeout", + "summary": "Gets\u0020the\u0020process\u0020timeout\u0020in\u0020seconds\u0020\u0028max.\u0020runtime\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_getTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetIdleTimeout\u0028\u0029", + "name": "getIdleTimeout", + "summary": "Gets\u0020the\u0020process\u0020idle\u0020timeout\u0020in\u0020seconds\u0020\u0028max.\u0020time\u0020since\u0020last\u0020output\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_getIdleTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetTimeout\u0028\u0029", + "name": "setTimeout", + "summary": "Sets\u0020the\u0020process\u0020timeout\u0020\u0028max.\u0020runtime\u0029\u0020in\u0020seconds.", + "url": "classes/Symfony-Component-Process-Process.html#method_setTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetIdleTimeout\u0028\u0029", + "name": "setIdleTimeout", + "summary": "Sets\u0020the\u0020process\u0020idle\u0020timeout\u0020\u0028max.\u0020time\u0020since\u0020last\u0020output\u0029\u0020in\u0020seconds.", + "url": "classes/Symfony-Component-Process-Process.html#method_setIdleTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetTty\u0028\u0029", + "name": "setTty", + "summary": "Enables\u0020or\u0020disables\u0020the\u0020TTY\u0020mode.", + "url": "classes/Symfony-Component-Process-Process.html#method_setTty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisTty\u0028\u0029", + "name": "isTty", + "summary": "Checks\u0020if\u0020the\u0020TTY\u0020mode\u0020is\u0020enabled.", + "url": "classes/Symfony-Component-Process-Process.html#method_isTty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetPty\u0028\u0029", + "name": "setPty", + "summary": "Sets\u0020PTY\u0020mode.", + "url": "classes/Symfony-Component-Process-Process.html#method_setPty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisPty\u0028\u0029", + "name": "isPty", + "summary": "Returns\u0020PTY\u0020state.", + "url": "classes/Symfony-Component-Process-Process.html#method_isPty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetWorkingDirectory\u0028\u0029", + "name": "getWorkingDirectory", + "summary": "Gets\u0020the\u0020working\u0020directory.", + "url": "classes/Symfony-Component-Process-Process.html#method_getWorkingDirectory" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetWorkingDirectory\u0028\u0029", + "name": "setWorkingDirectory", + "summary": "Sets\u0020the\u0020current\u0020working\u0020directory.", + "url": "classes/Symfony-Component-Process-Process.html#method_setWorkingDirectory" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetEnv\u0028\u0029", + "name": "getEnv", + "summary": "Gets\u0020the\u0020environment\u0020variables.", + "url": "classes/Symfony-Component-Process-Process.html#method_getEnv" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetEnv\u0028\u0029", + "name": "setEnv", + "summary": "Sets\u0020the\u0020environment\u0020variables.", + "url": "classes/Symfony-Component-Process-Process.html#method_setEnv" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetInput\u0028\u0029", + "name": "getInput", + "summary": "Gets\u0020the\u0020Process\u0020input.", + "url": "classes/Symfony-Component-Process-Process.html#method_getInput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetInput\u0028\u0029", + "name": "setInput", + "summary": "Sets\u0020the\u0020input.", + "url": "classes/Symfony-Component-Process-Process.html#method_setInput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AcheckTimeout\u0028\u0029", + "name": "checkTimeout", + "summary": "Performs\u0020a\u0020check\u0020between\u0020the\u0020timeout\u0020definition\u0020and\u0020the\u0020time\u0020the\u0020process\u0020started.", + "url": "classes/Symfony-Component-Process-Process.html#method_checkTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetStartTime\u0028\u0029", + "name": "getStartTime", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method_getStartTime" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AsetOptions\u0028\u0029", + "name": "setOptions", + "summary": "Defines\u0020options\u0020to\u0020pass\u0020to\u0020the\u0020underlying\u0020proc_open\u0028\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_setOptions" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisTtySupported\u0028\u0029", + "name": "isTtySupported", + "summary": "Returns\u0020whether\u0020TTY\u0020is\u0020supported\u0020on\u0020the\u0020current\u0020operating\u0020system.", + "url": "classes/Symfony-Component-Process-Process.html#method_isTtySupported" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisPtySupported\u0028\u0029", + "name": "isPtySupported", + "summary": "Returns\u0020whether\u0020PTY\u0020is\u0020supported\u0020on\u0020the\u0020current\u0020operating\u0020system.", + "url": "classes/Symfony-Component-Process-Process.html#method_isPtySupported" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetDescriptors\u0028\u0029", + "name": "getDescriptors", + "summary": "Creates\u0020the\u0020descriptors\u0020needed\u0020by\u0020the\u0020proc_open.", + "url": "classes/Symfony-Component-Process-Process.html#method_getDescriptors" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AbuildCallback\u0028\u0029", + "name": "buildCallback", + "summary": "Builds\u0020up\u0020the\u0020callback\u0020used\u0020by\u0020wait\u0028\u0029.", + "url": "classes/Symfony-Component-Process-Process.html#method_buildCallback" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AupdateStatus\u0028\u0029", + "name": "updateStatus", + "summary": "Updates\u0020the\u0020status\u0020of\u0020the\u0020process,\u0020reads\u0020pipes.", + "url": "classes/Symfony-Component-Process-Process.html#method_updateStatus" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AisSigchildEnabled\u0028\u0029", + "name": "isSigchildEnabled", + "summary": "Returns\u0020whether\u0020PHP\u0020has\u0020been\u0020compiled\u0020with\u0020the\u0020\u0027\u002D\u002Denable\u002Dsigchild\u0027\u0020option\u0020or\u0020not.", + "url": "classes/Symfony-Component-Process-Process.html#method_isSigchildEnabled" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AreadPipesForOutput\u0028\u0029", + "name": "readPipesForOutput", + "summary": "Reads\u0020pipes\u0020for\u0020the\u0020freshest\u0020output.", + "url": "classes/Symfony-Component-Process-Process.html#method_readPipesForOutput" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AvalidateTimeout\u0028\u0029", + "name": "validateTimeout", + "summary": "Validates\u0020and\u0020returns\u0020the\u0020filtered\u0020timeout.", + "url": "classes/Symfony-Component-Process-Process.html#method_validateTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AreadPipes\u0028\u0029", + "name": "readPipes", + "summary": "Reads\u0020pipes,\u0020executes\u0020callback.", + "url": "classes/Symfony-Component-Process-Process.html#method_readPipes" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003Aclose\u0028\u0029", + "name": "close", + "summary": "Closes\u0020process\u0020resource,\u0020closes\u0020file\u0020handles,\u0020sets\u0020the\u0020exitcode.", + "url": "classes/Symfony-Component-Process-Process.html#method_close" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AresetProcessData\u0028\u0029", + "name": "resetProcessData", + "summary": "Resets\u0020data\u0020related\u0020to\u0020the\u0020latest\u0020run\u0020of\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_resetProcessData" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AdoSignal\u0028\u0029", + "name": "doSignal", + "summary": "Sends\u0020a\u0020POSIX\u0020signal\u0020to\u0020the\u0020process.", + "url": "classes/Symfony-Component-Process-Process.html#method_doSignal" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AprepareWindowsCommandLine\u0028\u0029", + "name": "prepareWindowsCommandLine", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method_prepareWindowsCommandLine" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ArequireProcessIsStarted\u0028\u0029", + "name": "requireProcessIsStarted", + "summary": "Ensures\u0020the\u0020process\u0020is\u0020running\u0020or\u0020terminated,\u0020throws\u0020a\u0020LogicException\u0020if\u0020the\u0020process\u0020has\u0020a\u0020not\u0020started.", + "url": "classes/Symfony-Component-Process-Process.html#method_requireProcessIsStarted" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ArequireProcessIsTerminated\u0028\u0029", + "name": "requireProcessIsTerminated", + "summary": "Ensures\u0020the\u0020process\u0020is\u0020terminated,\u0020throws\u0020a\u0020LogicException\u0020if\u0020the\u0020process\u0020has\u0020a\u0020status\u0020different\u0020than\u0020\u0022terminated\u0022.", + "url": "classes/Symfony-Component-Process-Process.html#method_requireProcessIsTerminated" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AescapeArgument\u0028\u0029", + "name": "escapeArgument", + "summary": "Escapes\u0020a\u0020string\u0020to\u0020be\u0020used\u0020as\u0020a\u0020shell\u0020argument.", + "url": "classes/Symfony-Component-Process-Process.html#method_escapeArgument" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AreplacePlaceholders\u0028\u0029", + "name": "replacePlaceholders", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method_replacePlaceholders" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AgetDefaultEnv\u0028\u0029", + "name": "getDefaultEnv", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#method_getDefaultEnv" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AERR", + "name": "ERR", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_ERR" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AOUT", + "name": "OUT", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_OUT" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ASTATUS_READY", + "name": "STATUS_READY", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_STATUS_READY" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ASTATUS_STARTED", + "name": "STATUS_STARTED", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_STATUS_STARTED" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ASTATUS_TERMINATED", + "name": "STATUS_TERMINATED", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_STATUS_TERMINATED" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ASTDIN", + "name": "STDIN", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_STDIN" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ASTDOUT", + "name": "STDOUT", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_STDOUT" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ASTDERR", + "name": "STDERR", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_STDERR" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003ATIMEOUT_PRECISION", + "name": "TIMEOUT_PRECISION", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_TIMEOUT_PRECISION" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AITER_NON_BLOCKING", + "name": "ITER_NON_BLOCKING", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_ITER_NON_BLOCKING" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AITER_KEEP_OUTPUT", + "name": "ITER_KEEP_OUTPUT", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_ITER_KEEP_OUTPUT" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AITER_SKIP_OUT", + "name": "ITER_SKIP_OUT", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_ITER_SKIP_OUT" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003AITER_SKIP_ERR", + "name": "ITER_SKIP_ERR", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#constant_ITER_SKIP_ERR" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024callback", + "name": "callback", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_callback" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024commandline", + "name": "commandline", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_commandline" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024cwd", + "name": "cwd", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_cwd" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024env", + "name": "env", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_env" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024input", + "name": "input", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_input" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024starttime", + "name": "starttime", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_starttime" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024lastOutputTime", + "name": "lastOutputTime", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_lastOutputTime" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024timeout", + "name": "timeout", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_timeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024idleTimeout", + "name": "idleTimeout", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_idleTimeout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024exitcode", + "name": "exitcode", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_exitcode" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024fallbackStatus", + "name": "fallbackStatus", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_fallbackStatus" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024processInformation", + "name": "processInformation", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_processInformation" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024outputDisabled", + "name": "outputDisabled", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_outputDisabled" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024stdout", + "name": "stdout", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_stdout" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024stderr", + "name": "stderr", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_stderr" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024process", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_process" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024status", + "name": "status", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_status" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024incrementalOutputOffset", + "name": "incrementalOutputOffset", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_incrementalOutputOffset" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024incrementalErrorOutputOffset", + "name": "incrementalErrorOutputOffset", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_incrementalErrorOutputOffset" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024tty", + "name": "tty", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_tty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024pty", + "name": "pty", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_pty" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024processPipes", + "name": "processPipes", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_processPipes" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024latestSignal", + "name": "latestSignal", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_latestSignal" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024sigchild", + "name": "sigchild", + "summary": "", + "url": "classes/Symfony-Component-Process-Process.html#property_sigchild" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Process\u003A\u003A\u0024exitCodes", + "name": "exitCodes", + "summary": "Exit\u0020codes\u0020translation\u0020table.", + "url": "classes/Symfony-Component-Process-Process.html#property_exitCodes" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ProcessUtils", + "name": "ProcessUtils", + "summary": "ProcessUtils\u0020is\u0020a\u0020bunch\u0020of\u0020utility\u0020methods.", + "url": "classes/Symfony-Component-Process-ProcessUtils.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ProcessUtils\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020should\u0020not\u0020be\u0020instantiated.", + "url": "classes/Symfony-Component-Process-ProcessUtils.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Process\\ProcessUtils\u003A\u003AvalidateInput\u0028\u0029", + "name": "validateInput", + "summary": "Validates\u0020and\u0020normalizes\u0020a\u0020Process\u0020input.", + "url": "classes/Symfony-Component-Process-ProcessUtils.html#method_validateInput" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\Required", + "name": "Required", + "summary": "A\u0020required\u0020dependency.", + "url": "classes/Symfony-Contracts-Service-Attribute-Required.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\SubscribedService", + "name": "SubscribedService", + "summary": "For\u0020use\u0020as\u0020the\u0020return\u0020value\u0020for\u0020\u007B\u0040see\u0020ServiceSubscriberInterface\u007D.", + "url": "classes/Symfony-Contracts-Service-Attribute-SubscribedService.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\SubscribedService\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Attribute-SubscribedService.html#method___construct" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\SubscribedService\u003A\u003A\u0024attributes", + "name": "attributes", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Attribute-SubscribedService.html#property_attributes" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\SubscribedService\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Attribute-SubscribedService.html#property_key" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\SubscribedService\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Attribute-SubscribedService.html#property_type" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute\\SubscribedService\u003A\u003A\u0024nullable", + "name": "nullable", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Attribute-SubscribedService.html#property_nullable" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ResetInterface", + "name": "ResetInterface", + "summary": "Provides\u0020a\u0020way\u0020to\u0020reset\u0020an\u0020object\u0020to\u0020its\u0020initial\u0020state.", + "url": "classes/Symfony-Contracts-Service-ResetInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ResetInterface\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ResetInterface.html#method_reset" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceCollectionInterface", + "name": "ServiceCollectionInterface", + "summary": "A\u0020ServiceProviderInterface\u0020that\u0020is\u0020also\u0020countable\u0020and\u0020iterable.", + "url": "classes/Symfony-Contracts-Service-ServiceCollectionInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait", + "name": "ServiceLocatorTrait", + "summary": "A\u0020trait\u0020to\u0020help\u0020implement\u0020ServiceProviderInterface.", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#method___construct" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#method_has" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#method_get" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003AgetProvidedServices\u0028\u0029", + "name": "getProvidedServices", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#method_getProvidedServices" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003AcreateNotFoundException\u0028\u0029", + "name": "createNotFoundException", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#method_createNotFoundException" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003AcreateCircularReferenceException\u0028\u0029", + "name": "createCircularReferenceException", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#method_createCircularReferenceException" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003A\u0024factories", + "name": "factories", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#property_factories" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003A\u0024loading", + "name": "loading", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#property_loading" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceLocatorTrait\u003A\u003A\u0024providedTypes", + "name": "providedTypes", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceLocatorTrait.html#property_providedTypes" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait", + "name": "ServiceMethodsSubscriberTrait", + "summary": "Implementation\u0020of\u0020ServiceSubscriberInterface\u0020that\u0020determines\u0020subscribed\u0020services\nfrom\u0020methods\u0020that\u0020have\u0020the\u0020\u0023\u005BSubscribedService\u005D\u0020attribute.", + "url": "classes/Symfony-Contracts-Service-ServiceMethodsSubscriberTrait.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceMethodsSubscriberTrait.html#method_getSubscribedServices" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceMethodsSubscriberTrait.html#method_setContainer" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceMethodsSubscriberTrait\u003A\u003A\u0024container", + "name": "container", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceMethodsSubscriberTrait.html#property_container" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceProviderInterface", + "name": "ServiceProviderInterface", + "summary": "A\u0020ServiceProviderInterface\u0020exposes\u0020the\u0020identifiers\u0020and\u0020the\u0020types\u0020of\u0020services\u0020provided\u0020by\u0020a\u0020container.", + "url": "classes/Symfony-Contracts-Service-ServiceProviderInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceProviderInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Finds\u0020an\u0020entry\u0020of\u0020the\u0020container\u0020by\u0020its\u0020identifier\u0020and\u0020returns\u0020it.", + "url": "classes/Symfony-Contracts-Service-ServiceProviderInterface.html#method_get" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceProviderInterface\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Returns\u0020true\u0020if\u0020the\u0020container\u0020can\u0020return\u0020an\u0020entry\u0020for\u0020the\u0020given\u0020identifier.", + "url": "classes/Symfony-Contracts-Service-ServiceProviderInterface.html#method_has" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceProviderInterface\u003A\u003AgetProvidedServices\u0028\u0029", + "name": "getProvidedServices", + "summary": "Returns\u0020an\u0020associative\u0020array\u0020of\u0020service\u0020types\u0020keyed\u0020by\u0020the\u0020identifiers\u0020provided\u0020by\u0020the\u0020current\u0020container.", + "url": "classes/Symfony-Contracts-Service-ServiceProviderInterface.html#method_getProvidedServices" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceSubscriberInterface", + "name": "ServiceSubscriberInterface", + "summary": "A\u0020ServiceSubscriber\u0020exposes\u0020its\u0020dependencies\u0020via\u0020the\u0020static\u0020\u007B\u0040link\u0020getSubscribedServices\u007D\u0020method.", + "url": "classes/Symfony-Contracts-Service-ServiceSubscriberInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceSubscriberInterface\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", + "summary": "Returns\u0020an\u0020array\u0020of\u0020service\u0020types\u0020\u0028or\u0020\u007B\u0040see\u0020SubscribedService\u007D\u0020objects\u0029\u0020required\nby\u0020such\u0020instances,\u0020optionally\u0020keyed\u0020by\u0020the\u0020service\u0020names\u0020used\u0020internally.", + "url": "classes/Symfony-Contracts-Service-ServiceSubscriberInterface.html#method_getSubscribedServices" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceSubscriberTrait", + "name": "ServiceSubscriberTrait", + "summary": "Implementation\u0020of\u0020ServiceSubscriberInterface\u0020that\u0020determines\u0020subscribed\u0020services\nfrom\u0020methods\u0020that\u0020have\u0020the\u0020\u0023\u005BSubscribedService\u005D\u0020attribute.", + "url": "classes/Symfony-Contracts-Service-ServiceSubscriberTrait.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceSubscriberTrait\u003A\u003AgetSubscribedServices\u0028\u0029", + "name": "getSubscribedServices", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceSubscriberTrait.html#method_getSubscribedServices" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\ServiceSubscriberTrait\u003A\u003AsetContainer\u0028\u0029", + "name": "setContainer", + "summary": "", + "url": "classes/Symfony-Contracts-Service-ServiceSubscriberTrait.html#method_setContainer" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTest", + "name": "ServiceLocatorTest", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTest.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase", + "name": "ServiceLocatorTestCase", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase\u003A\u003AgetServiceLocator\u0028\u0029", + "name": "getServiceLocator", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html#method_getServiceLocator" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase\u003A\u003AtestHas\u0028\u0029", + "name": "testHas", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html#method_testHas" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase\u003A\u003AtestGet\u0028\u0029", + "name": "testGet", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html#method_testGet" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase\u003A\u003AtestGetDoesNotMemoize\u0028\u0029", + "name": "testGetDoesNotMemoize", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html#method_testGetDoesNotMemoize" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase\u003A\u003AtestThrowsOnUndefinedInternalService\u0028\u0029", + "name": "testThrowsOnUndefinedInternalService", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html#method_testThrowsOnUndefinedInternalService" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test\\ServiceLocatorTestCase\u003A\u003AtestThrowsOnCircularReference\u0028\u0029", + "name": "testThrowsOnCircularReference", + "summary": "", + "url": "classes/Symfony-Contracts-Service-Test-ServiceLocatorTestCase.html#method_testThrowsOnCircularReference" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString", + "name": "AbstractString", + "summary": "Represents\u0020a\u0020string\u0020of\u0020abstract\u0020characters.", + "url": "classes/Symfony-Component-String-AbstractString.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Aunwrap\u0028\u0029", + "name": "unwrap", + "summary": "Unwraps\u0020instances\u0020of\u0020AbstractString\u0020back\u0020to\u0020strings.", + "url": "classes/Symfony-Component-String-AbstractString.html#method_unwrap" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Awrap\u0028\u0029", + "name": "wrap", + "summary": "Wraps\u0020\u0028and\u0020normalizes\u0029\u0020strings\u0020in\u0020instances\u0020of\u0020AbstractString.", + "url": "classes/Symfony-Component-String-AbstractString.html#method_wrap" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Aafter\u0028\u0029", + "name": "after", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_after" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AafterLast\u0028\u0029", + "name": "afterLast", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_afterLast" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_append" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Abefore\u0028\u0029", + "name": "before", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_before" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AbeforeLast\u0028\u0029", + "name": "beforeLast", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_beforeLast" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AbytesAt\u0028\u0029", + "name": "bytesAt", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_bytesAt" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Acamel\u0028\u0029", + "name": "camel", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_camel" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_chunk" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AcollapseWhitespace\u0028\u0029", + "name": "collapseWhitespace", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_collapseWhitespace" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AcontainsAny\u0028\u0029", + "name": "containsAny", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_containsAny" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_endsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AensureEnd\u0028\u0029", + "name": "ensureEnd", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_ensureEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AensureStart\u0028\u0029", + "name": "ensureStart", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_ensureStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AequalsTo\u0028\u0029", + "name": "equalsTo", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_equalsTo" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Afolded\u0028\u0029", + "name": "folded", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_folded" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003A\u0024ignoreCase", + "name": "ignoreCase", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#property_ignoreCase" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AindexOf\u0028\u0029", + "name": "indexOf", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_indexOf" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AindexOfLast\u0028\u0029", + "name": "indexOfLast", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_indexOfLast" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AisEmpty\u0028\u0029", + "name": "isEmpty", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_isEmpty" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_join" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_jsonSerialize" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_length" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Alower\u0028\u0029", + "name": "lower", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_lower" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Matches\u0020the\u0020string\u0020using\u0020a\u0020regular\u0020expression.", + "url": "classes/Symfony-Component-String-AbstractString.html#method_match" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003ApadBoth\u0028\u0029", + "name": "padBoth", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_padBoth" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003ApadEnd\u0028\u0029", + "name": "padEnd", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_padEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003ApadStart\u0028\u0029", + "name": "padStart", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_padStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_prepend" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Arepeat\u0028\u0029", + "name": "repeat", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_repeat" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_replace" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AreplaceMatches\u0028\u0029", + "name": "replaceMatches", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_replaceMatches" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_reverse" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_slice" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Asnake\u0028\u0029", + "name": "snake", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_snake" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Asplice\u0028\u0029", + "name": "splice", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_splice" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_split" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_startsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_title" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtoByteString\u0028\u0029", + "name": "toByteString", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_toByteString" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtoCodePointString\u0028\u0029", + "name": "toCodePointString", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_toCodePointString" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtoString\u0028\u0029", + "name": "toString", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_toString" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtoUnicodeString\u0028\u0029", + "name": "toUnicodeString", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_toUnicodeString" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Atrim\u0028\u0029", + "name": "trim", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_trim" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtrimEnd\u0028\u0029", + "name": "trimEnd", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_trimEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtrimPrefix\u0028\u0029", + "name": "trimPrefix", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_trimPrefix" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtrimStart\u0028\u0029", + "name": "trimStart", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_trimStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003AtrimSuffix\u0028\u0029", + "name": "trimSuffix", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_trimSuffix" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Atruncate\u0028\u0029", + "name": "truncate", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_truncate" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Aupper\u0028\u0029", + "name": "upper", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_upper" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Awidth\u0028\u0029", + "name": "width", + "summary": "Returns\u0020the\u0020printable\u0020length\u0020on\u0020a\u0020terminal.", + "url": "classes/Symfony-Component-String-AbstractString.html#method_width" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003Awordwrap\u0028\u0029", + "name": "wordwrap", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method_wordwrap" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003A__sleep\u0028\u0029", + "name": "__sleep", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method___sleep" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method___clone" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_PATTERN_ORDER", + "name": "PREG_PATTERN_ORDER", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_PATTERN_ORDER" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_SET_ORDER", + "name": "PREG_SET_ORDER", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_SET_ORDER" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_OFFSET_CAPTURE", + "name": "PREG_OFFSET_CAPTURE", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_OFFSET_CAPTURE" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_UNMATCHED_AS_NULL", + "name": "PREG_UNMATCHED_AS_NULL", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_UNMATCHED_AS_NULL" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_SPLIT", + "name": "PREG_SPLIT", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_SPLIT" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_SPLIT_NO_EMPTY", + "name": "PREG_SPLIT_NO_EMPTY", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_SPLIT_NO_EMPTY" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_SPLIT_DELIM_CAPTURE", + "name": "PREG_SPLIT_DELIM_CAPTURE", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_SPLIT_DELIM_CAPTURE" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003APREG_SPLIT_OFFSET_CAPTURE", + "name": "PREG_SPLIT_OFFSET_CAPTURE", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#constant_PREG_SPLIT_OFFSET_CAPTURE" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractString\u003A\u003A\u0024string", + "name": "string", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractString.html#property_string" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString", + "name": "AbstractUnicodeString", + "summary": "Represents\u0020a\u0020string\u0020of\u0020abstract\u0020Unicode\u0020characters.", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AfromCodePoints\u0028\u0029", + "name": "fromCodePoints", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_fromCodePoints" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Aascii\u0028\u0029", + "name": "ascii", + "summary": "Generic\u0020UTF\u002D8\u0020to\u0020ASCII\u0020transliteration.", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_ascii" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Acamel\u0028\u0029", + "name": "camel", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_camel" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AcodePointsAt\u0028\u0029", + "name": "codePointsAt", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_codePointsAt" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Afolded\u0028\u0029", + "name": "folded", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_folded" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_join" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Alower\u0028\u0029", + "name": "lower", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_lower" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Matches\u0020the\u0020string\u0020using\u0020a\u0020regular\u0020expression.", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_match" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Anormalize\u0028\u0029", + "name": "normalize", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_normalize" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ApadBoth\u0028\u0029", + "name": "padBoth", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_padBoth" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ApadEnd\u0028\u0029", + "name": "padEnd", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_padEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ApadStart\u0028\u0029", + "name": "padStart", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_padStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AreplaceMatches\u0028\u0029", + "name": "replaceMatches", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_replaceMatches" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_reverse" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Asnake\u0028\u0029", + "name": "snake", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_snake" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_title" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Atrim\u0028\u0029", + "name": "trim", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_trim" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AtrimEnd\u0028\u0029", + "name": "trimEnd", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_trimEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AtrimPrefix\u0028\u0029", + "name": "trimPrefix", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_trimPrefix" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AtrimStart\u0028\u0029", + "name": "trimStart", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_trimStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AtrimSuffix\u0028\u0029", + "name": "trimSuffix", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_trimSuffix" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Aupper\u0028\u0029", + "name": "upper", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_upper" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Awidth\u0028\u0029", + "name": "width", + "summary": "Returns\u0020the\u0020printable\u0020length\u0020on\u0020a\u0020terminal.", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_width" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Apad\u0028\u0029", + "name": "pad", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_pad" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003Awcswidth\u0028\u0029", + "name": "wcswidth", + "summary": "Based\u0020on\u0020https\u003A\/\/github.com\/jquast\/wcwidth,\u0020a\u0020Python\u0020implementation\u0020of\u0020https\u003A\/\/www.cl.cam.ac.uk\/\u007Emgk25\/ucs\/wcwidth.c.", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#method_wcswidth" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ANFC", + "name": "NFC", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_NFC" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ANFD", + "name": "NFD", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_NFD" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ANFKC", + "name": "NFKC", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_NFKC" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ANFKD", + "name": "NFKD", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_NFKD" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AASCII", + "name": "ASCII", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_ASCII" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AFOLD_FROM", + "name": "FOLD_FROM", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_FOLD_FROM" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003AFOLD_TO", + "name": "FOLD_TO", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_FOLD_TO" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ATRANSLIT_FROM", + "name": "TRANSLIT_FROM", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_TRANSLIT_FROM" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003ATRANSLIT_TO", + "name": "TRANSLIT_TO", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#constant_TRANSLIT_TO" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003A\u0024transliterators", + "name": "transliterators", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#property_transliterators" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003A\u0024tableZero", + "name": "tableZero", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#property_tableZero" + }, { + "fqsen": "\\Symfony\\Component\\String\\AbstractUnicodeString\u003A\u003A\u0024tableWide", + "name": "tableWide", + "summary": "", + "url": "classes/Symfony-Component-String-AbstractUnicodeString.html#property_tableWide" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString", + "name": "ByteString", + "summary": "Represents\u0020a\u0020binary\u002Dsafe\u0020string\u0020of\u0020bytes.", + "url": "classes/Symfony-Component-String-ByteString.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AfromRandom\u0028\u0029", + "name": "fromRandom", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_fromRandom" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AbytesAt\u0028\u0029", + "name": "bytesAt", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_bytesAt" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_append" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Acamel\u0028\u0029", + "name": "camel", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_camel" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_chunk" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_endsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AequalsTo\u0028\u0029", + "name": "equalsTo", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_equalsTo" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Afolded\u0028\u0029", + "name": "folded", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_folded" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AindexOf\u0028\u0029", + "name": "indexOf", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_indexOf" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AindexOfLast\u0028\u0029", + "name": "indexOfLast", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_indexOfLast" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AisUtf8\u0028\u0029", + "name": "isUtf8", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_isUtf8" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_join" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_length" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Alower\u0028\u0029", + "name": "lower", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_lower" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Amatch\u0028\u0029", + "name": "match", + "summary": "Matches\u0020the\u0020string\u0020using\u0020a\u0020regular\u0020expression.", + "url": "classes/Symfony-Component-String-ByteString.html#method_match" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003ApadBoth\u0028\u0029", + "name": "padBoth", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_padBoth" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003ApadEnd\u0028\u0029", + "name": "padEnd", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_padEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003ApadStart\u0028\u0029", + "name": "padStart", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_padStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_prepend" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_replace" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AreplaceMatches\u0028\u0029", + "name": "replaceMatches", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_replaceMatches" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Areverse\u0028\u0029", + "name": "reverse", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_reverse" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_slice" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Asnake\u0028\u0029", + "name": "snake", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_snake" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Asplice\u0028\u0029", + "name": "splice", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_splice" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_split" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_startsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Atitle\u0028\u0029", + "name": "title", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_title" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AtoUnicodeString\u0028\u0029", + "name": "toUnicodeString", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_toUnicodeString" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AtoCodePointString\u0028\u0029", + "name": "toCodePointString", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_toCodePointString" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Atrim\u0028\u0029", + "name": "trim", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_trim" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AtrimEnd\u0028\u0029", + "name": "trimEnd", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_trimEnd" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AtrimStart\u0028\u0029", + "name": "trimStart", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_trimStart" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Aupper\u0028\u0029", + "name": "upper", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#method_upper" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003Awidth\u0028\u0029", + "name": "width", + "summary": "Returns\u0020the\u0020printable\u0020length\u0020on\u0020a\u0020terminal.", + "url": "classes/Symfony-Component-String-ByteString.html#method_width" + }, { + "fqsen": "\\Symfony\\Component\\String\\ByteString\u003A\u003AALPHABET_ALPHANUMERIC", + "name": "ALPHABET_ALPHANUMERIC", + "summary": "", + "url": "classes/Symfony-Component-String-ByteString.html#constant_ALPHABET_ALPHANUMERIC" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString", + "name": "CodePointString", + "summary": "Represents\u0020a\u0020string\u0020of\u0020Unicode\u0020code\u0020points\u0020encoded\u0020as\u0020UTF\u002D8.", + "url": "classes/Symfony-Component-String-CodePointString.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_append" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_chunk" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003AcodePointsAt\u0028\u0029", + "name": "codePointsAt", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_codePointsAt" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_endsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003AequalsTo\u0028\u0029", + "name": "equalsTo", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_equalsTo" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003AindexOf\u0028\u0029", + "name": "indexOf", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_indexOf" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003AindexOfLast\u0028\u0029", + "name": "indexOfLast", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_indexOfLast" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_length" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_prepend" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_replace" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_slice" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Asplice\u0028\u0029", + "name": "splice", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_splice" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_split" + }, { + "fqsen": "\\Symfony\\Component\\String\\CodePointString\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "", + "url": "classes/Symfony-Component-String-CodePointString.html#method_startsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\Exception\\ExceptionInterface", + "name": "ExceptionInterface", + "summary": "", + "url": "classes/Symfony-Component-String-Exception-ExceptionInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Exception\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "", + "url": "classes/Symfony-Component-String-Exception-InvalidArgumentException.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Exception\\RuntimeException", + "name": "RuntimeException", + "summary": "", + "url": "classes/Symfony-Component-String-Exception-RuntimeException.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\EnglishInflector", + "name": "EnglishInflector", + "summary": "", + "url": "classes/Symfony-Component-String-Inflector-EnglishInflector.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\EnglishInflector\u003A\u003Asingularize\u0028\u0029", + "name": "singularize", + "summary": "Returns\u0020the\u0020singular\u0020forms\u0020of\u0020a\u0020string.", + "url": "classes/Symfony-Component-String-Inflector-EnglishInflector.html#method_singularize" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\EnglishInflector\u003A\u003Apluralize\u0028\u0029", + "name": "pluralize", + "summary": "Returns\u0020the\u0020plural\u0020forms\u0020of\u0020a\u0020string.", + "url": "classes/Symfony-Component-String-Inflector-EnglishInflector.html#method_pluralize" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\EnglishInflector\u003A\u003APLURAL_MAP", + "name": "PLURAL_MAP", + "summary": "Map\u0020English\u0020plural\u0020to\u0020singular\u0020suffixes.", + "url": "classes/Symfony-Component-String-Inflector-EnglishInflector.html#constant_PLURAL_MAP" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\EnglishInflector\u003A\u003ASINGULAR_MAP", + "name": "SINGULAR_MAP", + "summary": "Map\u0020English\u0020singular\u0020to\u0020plural\u0020suffixes.", + "url": "classes/Symfony-Component-String-Inflector-EnglishInflector.html#constant_SINGULAR_MAP" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\EnglishInflector\u003A\u003AUNINFLECTED", + "name": "UNINFLECTED", + "summary": "A\u0020list\u0020of\u0020words\u0020which\u0020should\u0020not\u0020be\u0020inflected,\u0020reversed.", + "url": "classes/Symfony-Component-String-Inflector-EnglishInflector.html#constant_UNINFLECTED" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector", + "name": "FrenchInflector", + "summary": "French\u0020inflector.", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector\u003A\u003Asingularize\u0028\u0029", + "name": "singularize", + "summary": "Returns\u0020the\u0020singular\u0020forms\u0020of\u0020a\u0020string.", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html#method_singularize" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector\u003A\u003Apluralize\u0028\u0029", + "name": "pluralize", + "summary": "Returns\u0020the\u0020plural\u0020forms\u0020of\u0020a\u0020string.", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html#method_pluralize" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector\u003A\u003AisInflectedWord\u0028\u0029", + "name": "isInflectedWord", + "summary": "", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html#method_isInflectedWord" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector\u003A\u003APLURALIZE_REGEXP", + "name": "PLURALIZE_REGEXP", + "summary": "A\u0020list\u0020of\u0020all\u0020rules\u0020for\u0020pluralise.", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html#constant_PLURALIZE_REGEXP" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector\u003A\u003ASINGULARIZE_REGEXP", + "name": "SINGULARIZE_REGEXP", + "summary": "A\u0020list\u0020of\u0020all\u0020rules\u0020for\u0020singularize.", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html#constant_SINGULARIZE_REGEXP" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\FrenchInflector\u003A\u003AUNINFLECTED", + "name": "UNINFLECTED", + "summary": "A\u0020list\u0020of\u0020words\u0020which\u0020should\u0020not\u0020be\u0020inflected.", + "url": "classes/Symfony-Component-String-Inflector-FrenchInflector.html#constant_UNINFLECTED" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\InflectorInterface", + "name": "InflectorInterface", + "summary": "", + "url": "classes/Symfony-Component-String-Inflector-InflectorInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\InflectorInterface\u003A\u003Asingularize\u0028\u0029", + "name": "singularize", + "summary": "Returns\u0020the\u0020singular\u0020forms\u0020of\u0020a\u0020string.", + "url": "classes/Symfony-Component-String-Inflector-InflectorInterface.html#method_singularize" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector\\InflectorInterface\u003A\u003Apluralize\u0028\u0029", + "name": "pluralize", + "summary": "Returns\u0020the\u0020plural\u0020forms\u0020of\u0020a\u0020string.", + "url": "classes/Symfony-Component-String-Inflector-InflectorInterface.html#method_pluralize" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString", + "name": "LazyString", + "summary": "A\u0020string\u0020whose\u0020value\u0020is\u0020computed\u0020lazily\u0020by\u0020a\u0020callback.", + "url": "classes/Symfony-Component-String-LazyString.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003AfromCallable\u0028\u0029", + "name": "fromCallable", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method_fromCallable" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003AfromStringable\u0028\u0029", + "name": "fromStringable", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method_fromStringable" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003AisStringable\u0028\u0029", + "name": "isStringable", + "summary": "Tells\u0020whether\u0020the\u0020provided\u0020value\u0020can\u0020be\u0020cast\u0020to\u0020string.", + "url": "classes/Symfony-Component-String-LazyString.html#method_isStringable" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Casts\u0020scalars\u0020and\u0020stringable\u0020objects\u0020to\u0020strings.", + "url": "classes/Symfony-Component-String-LazyString.html#method_resolve" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003A__sleep\u0028\u0029", + "name": "__sleep", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method___sleep" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003AjsonSerialize\u0028\u0029", + "name": "jsonSerialize", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method_jsonSerialize" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003AgetPrettyName\u0028\u0029", + "name": "getPrettyName", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#method_getPrettyName" + }, { + "fqsen": "\\Symfony\\Component\\String\\LazyString\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Symfony-Component-String-LazyString.html#property_value" + }, { + "fqsen": "\\Symfony\\Component\\String\\u\u0028\u0029", + "name": "u", + "summary": "", + "url": "namespaces/symfony-component-string.html#function_u" + }, { + "fqsen": "\\Symfony\\Component\\String\\b\u0028\u0029", + "name": "b", + "summary": "", + "url": "namespaces/symfony-component-string.html#function_b" + }, { + "fqsen": "\\Symfony\\Component\\String\\s\u0028\u0029", + "name": "s", + "summary": "", + "url": "namespaces/symfony-component-string.html#function_s" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger", + "name": "AsciiSlugger", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Sets\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003AwithEmoji\u0028\u0029", + "name": "withEmoji", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_withEmoji" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003Aslug\u0028\u0029", + "name": "slug", + "summary": "Creates\u0020a\u0020slug\u0020for\u0020the\u0020given\u0020string\u0020and\u0020locale,\u0020using\u0020appropriate\u0020transliteration\u0020when\u0020needed.", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_slug" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003AcreateTransliterator\u0028\u0029", + "name": "createTransliterator", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_createTransliterator" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003AcreateEmojiTransliterator\u0028\u0029", + "name": "createEmojiTransliterator", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_createEmojiTransliterator" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003AgetParentLocale\u0028\u0029", + "name": "getParentLocale", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#method_getParentLocale" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003ALOCALE_TO_TRANSLITERATOR_ID", + "name": "LOCALE_TO_TRANSLITERATOR_ID", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#constant_LOCALE_TO_TRANSLITERATOR_ID" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003A\u0024defaultLocale", + "name": "defaultLocale", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#property_defaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003A\u0024symbolsMap", + "name": "symbolsMap", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#property_symbolsMap" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003A\u0024emoji", + "name": "emoji", + "summary": "", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#property_emoji" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\AsciiSlugger\u003A\u003A\u0024transliterators", + "name": "transliterators", + "summary": "Cache\u0020of\u0020transliterators\u0020per\u0020locale.", + "url": "classes/Symfony-Component-String-Slugger-AsciiSlugger.html#property_transliterators" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\SluggerInterface", + "name": "SluggerInterface", + "summary": "Creates\u0020a\u0020URL\u002Dfriendly\u0020slug\u0020from\u0020a\u0020given\u0020string.", + "url": "classes/Symfony-Component-String-Slugger-SluggerInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger\\SluggerInterface\u003A\u003Aslug\u0028\u0029", + "name": "slug", + "summary": "Creates\u0020a\u0020slug\u0020for\u0020the\u0020given\u0020string\u0020and\u0020locale,\u0020using\u0020appropriate\u0020transliteration\u0020when\u0020needed.", + "url": "classes/Symfony-Component-String-Slugger-SluggerInterface.html#method_slug" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString", + "name": "UnicodeString", + "summary": "Represents\u0020a\u0020string\u0020of\u0020Unicode\u0020grapheme\u0020clusters\u0020encoded\u0020as\u0020UTF\u002D8.", + "url": "classes/Symfony-Component-String-UnicodeString.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_append" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Achunk\u0028\u0029", + "name": "chunk", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_chunk" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003AendsWith\u0028\u0029", + "name": "endsWith", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_endsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003AequalsTo\u0028\u0029", + "name": "equalsTo", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_equalsTo" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003AindexOf\u0028\u0029", + "name": "indexOf", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_indexOf" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003AindexOfLast\u0028\u0029", + "name": "indexOfLast", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_indexOfLast" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Ajoin\u0028\u0029", + "name": "join", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_join" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Alength\u0028\u0029", + "name": "length", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_length" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Anormalize\u0028\u0029", + "name": "normalize", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_normalize" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Aprepend\u0028\u0029", + "name": "prepend", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_prepend" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_replace" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003AreplaceMatches\u0028\u0029", + "name": "replaceMatches", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_replaceMatches" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Aslice\u0028\u0029", + "name": "slice", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_slice" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Asplice\u0028\u0029", + "name": "splice", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_splice" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003Asplit\u0028\u0029", + "name": "split", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_split" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003AstartsWith\u0028\u0029", + "name": "startsWith", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method_startsWith" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003A__wakeup\u0028\u0029", + "name": "__wakeup", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method___wakeup" + }, { + "fqsen": "\\Symfony\\Component\\String\\UnicodeString\u003A\u003A__clone\u0028\u0029", + "name": "__clone", + "summary": "", + "url": "classes/Symfony-Component-String-UnicodeString.html#method___clone" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation", + "name": "AbstractOperation", + "summary": "Base\u0020catalogues\u0020binary\u0020operation\u0020class.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AgetDomains\u0028\u0029", + "name": "getDomains", + "summary": "Returns\u0020domains\u0020affected\u0020by\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_getDomains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "Returns\u0020all\u0020valid\u0020messages\u0020\u0028\u0027all\u0027\u0029\u0020after\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_getMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AgetNewMessages\u0028\u0029", + "name": "getNewMessages", + "summary": "Returns\u0020new\u0020messages\u0020\u0028\u0027new\u0027\u0029\u0020after\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_getNewMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AgetObsoleteMessages\u0028\u0029", + "name": "getObsoleteMessages", + "summary": "Returns\u0020obsolete\u0020messages\u0020\u0028\u0027obsolete\u0027\u0029\u0020after\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_getObsoleteMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AgetResult\u0028\u0029", + "name": "getResult", + "summary": "Returns\u0020resulting\u0020catalogue\u0020\u0028\u0027result\u0027\u0029.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_getResult" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AmoveMessagesToIntlDomainsIfPossible\u0028\u0029", + "name": "moveMessagesToIntlDomainsIfPossible", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_moveMessagesToIntlDomainsIfPossible" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AprocessDomain\u0028\u0029", + "name": "processDomain", + "summary": "Performs\u0020operation\u0020on\u0020source\u0020and\u0020target\u0020catalogues\u0020for\u0020the\u0020given\u0020domain\u0020and\nstores\u0020the\u0020results.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#method_processDomain" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AOBSOLETE_BATCH", + "name": "OBSOLETE_BATCH", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#constant_OBSOLETE_BATCH" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003ANEW_BATCH", + "name": "NEW_BATCH", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#constant_NEW_BATCH" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003AALL_BATCH", + "name": "ALL_BATCH", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#constant_ALL_BATCH" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003A\u0024source", + "name": "source", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#property_source" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003A\u0024target", + "name": "target", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#property_target" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003A\u0024result", + "name": "result", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#property_result" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003A\u0024messages", + "name": "messages", + "summary": "This\u0020array\u0020stores\u0020\u0027all\u0027,\u0020\u0027new\u0027\u0020and\u0020\u0027obsolete\u0027\u0020messages\u0020for\u0020all\u0020valid\u0020domains.", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#property_messages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation\u003A\u003A\u0024domains", + "name": "domains", + "summary": "", + "url": "classes/Symfony-Component-Translation-Catalogue-AbstractOperation.html#property_domains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\MergeOperation", + "name": "MergeOperation", + "summary": "Merge\u0020operation\u0020between\u0020two\u0020catalogues\u0020as\u0020follows\u003A\nall\u0020\u003D\u0020source\u0020\u222A\u0020target\u0020\u003D\u0020\u007Bx\u003A\u0020x\u0020\u2208\u0020source\u0020\u2228\u0020x\u0020\u2208\u0020target\u007D\nnew\u0020\u003D\u0020all\u0020\u2216\u0020source\u0020\u003D\u0020\u007Bx\u003A\u0020x\u0020\u2208\u0020target\u0020\u2227\u0020x\u0020\u2209\u0020source\u007D\nobsolete\u0020\u003D\u0020source\u0020\u2216\u0020all\u0020\u003D\u0020\u007Bx\u003A\u0020x\u0020\u2208\u0020source\u0020\u2227\u0020x\u0020\u2209\u0020source\u0020\u2227\u0020x\u0020\u2209\u0020target\u007D\u0020\u003D\u0020\u2205\nBasically,\u0020the\u0020result\u0020contains\u0020messages\u0020from\u0020both\u0020catalogues.", + "url": "classes/Symfony-Component-Translation-Catalogue-MergeOperation.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\MergeOperation\u003A\u003AprocessDomain\u0028\u0029", + "name": "processDomain", + "summary": "Performs\u0020operation\u0020on\u0020source\u0020and\u0020target\u0020catalogues\u0020for\u0020the\u0020given\u0020domain\u0020and\nstores\u0020the\u0020results.", + "url": "classes/Symfony-Component-Translation-Catalogue-MergeOperation.html#method_processDomain" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface", + "name": "OperationInterface", + "summary": "Represents\u0020an\u0020operation\u0020on\u0020catalogue\u0028s\u0029.", + "url": "classes/Symfony-Component-Translation-Catalogue-OperationInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface\u003A\u003AgetDomains\u0028\u0029", + "name": "getDomains", + "summary": "Returns\u0020domains\u0020affected\u0020by\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-OperationInterface.html#method_getDomains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "Returns\u0020all\u0020valid\u0020messages\u0020\u0028\u0027all\u0027\u0029\u0020after\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-OperationInterface.html#method_getMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface\u003A\u003AgetNewMessages\u0028\u0029", + "name": "getNewMessages", + "summary": "Returns\u0020new\u0020messages\u0020\u0028\u0027new\u0027\u0029\u0020after\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-OperationInterface.html#method_getNewMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface\u003A\u003AgetObsoleteMessages\u0028\u0029", + "name": "getObsoleteMessages", + "summary": "Returns\u0020obsolete\u0020messages\u0020\u0028\u0027obsolete\u0027\u0029\u0020after\u0020operation.", + "url": "classes/Symfony-Component-Translation-Catalogue-OperationInterface.html#method_getObsoleteMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface\u003A\u003AgetResult\u0028\u0029", + "name": "getResult", + "summary": "Returns\u0020resulting\u0020catalogue\u0020\u0028\u0027result\u0027\u0029.", + "url": "classes/Symfony-Component-Translation-Catalogue-OperationInterface.html#method_getResult" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\TargetOperation", + "name": "TargetOperation", + "summary": "Target\u0020operation\u0020between\u0020two\u0020catalogues\u003A\nintersection\u0020\u003D\u0020source\u0020\u2229\u0020target\u0020\u003D\u0020\u007Bx\u003A\u0020x\u0020\u2208\u0020source\u0020\u2227\u0020x\u0020\u2208\u0020target\u007D\nall\u0020\u003D\u0020intersection\u0020\u222A\u0020\u0028target\u0020\u2216\u0020intersection\u0029\u0020\u003D\u0020target\nnew\u0020\u003D\u0020all\u0020\u2216\u0020source\u0020\u003D\u0020\u007Bx\u003A\u0020x\u0020\u2208\u0020target\u0020\u2227\u0020x\u0020\u2209\u0020source\u007D\nobsolete\u0020\u003D\u0020source\u0020\u2216\u0020all\u0020\u003D\u0020source\u0020\u2216\u0020target\u0020\u003D\u0020\u007Bx\u003A\u0020x\u0020\u2208\u0020source\u0020\u2227\u0020x\u0020\u2209\u0020target\u007D\nBasically,\u0020the\u0020result\u0020contains\u0020messages\u0020from\u0020the\u0020target\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Catalogue-TargetOperation.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue\\TargetOperation\u003A\u003AprocessDomain\u0028\u0029", + "name": "processDomain", + "summary": "Performs\u0020operation\u0020on\u0020source\u0020and\u0020target\u0020catalogues\u0020for\u0020the\u0020given\u0020domain\u0020and\nstores\u0020the\u0020results.", + "url": "classes/Symfony-Component-Translation-Catalogue-TargetOperation.html#method_processDomain" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\CatalogueMetadataAwareInterface", + "name": "CatalogueMetadataAwareInterface", + "summary": "This\u0020interface\u0020is\u0020used\u0020to\u0020get,\u0020set,\u0020and\u0020delete\u0020metadata\u0020about\u0020the\u0020Catalogue.", + "url": "classes/Symfony-Component-Translation-CatalogueMetadataAwareInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\CatalogueMetadataAwareInterface\u003A\u003AgetCatalogueMetadata\u0028\u0029", + "name": "getCatalogueMetadata", + "summary": "Gets\u0020catalogue\u0020metadata\u0020for\u0020the\u0020given\u0020domain\u0020and\u0020key.", + "url": "classes/Symfony-Component-Translation-CatalogueMetadataAwareInterface.html#method_getCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\CatalogueMetadataAwareInterface\u003A\u003AsetCatalogueMetadata\u0028\u0029", + "name": "setCatalogueMetadata", + "summary": "Adds\u0020catalogue\u0020metadata\u0020to\u0020a\u0020message\u0020domain.", + "url": "classes/Symfony-Component-Translation-CatalogueMetadataAwareInterface.html#method_setCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\CatalogueMetadataAwareInterface\u003A\u003AdeleteCatalogueMetadata\u0028\u0029", + "name": "deleteCatalogueMetadata", + "summary": "Deletes\u0020catalogue\u0020metadata\u0020for\u0020the\u0020given\u0020key\u0020and\u0020domain.", + "url": "classes/Symfony-Component-Translation-CatalogueMetadataAwareInterface.html#method_deleteCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand", + "name": "TranslationPullCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A\u0024providerCollection", + "name": "providerCollection", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#property_providerCollection" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A\u0024writer", + "name": "writer", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#property_writer" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A\u0024reader", + "name": "reader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#property_reader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A\u0024defaultLocale", + "name": "defaultLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#property_defaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A\u0024transPaths", + "name": "transPaths", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#property_transPaths" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand\u003A\u003A\u0024enabledLocales", + "name": "enabledLocales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPullCommand.html#property_enabledLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand", + "name": "TranslationPushCommand", + "summary": "Base\u0020class\u0020for\u0020all\u0020commands.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003AgetDomainsFromTranslatorBag\u0028\u0029", + "name": "getDomainsFromTranslatorBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#method_getDomainsFromTranslatorBag" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003A\u0024providers", + "name": "providers", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#property_providers" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003A\u0024reader", + "name": "reader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#property_reader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003A\u0024transPaths", + "name": "transPaths", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#property_transPaths" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand\u003A\u003A\u0024enabledLocales", + "name": "enabledLocales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-TranslationPushCommand.html#property_enabledLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand", + "name": "XliffLintCommand", + "summary": "Validates\u0020XLIFF\u0020files\u0020syntax\u0020and\u0020outputs\u0020encountered\u0020errors.", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_validate" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003Adisplay\u0028\u0029", + "name": "display", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_display" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AdisplayTxt\u0028\u0029", + "name": "displayTxt", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_displayTxt" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AdisplayJson\u0028\u0029", + "name": "displayJson", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_displayJson" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AgetFiles\u0028\u0029", + "name": "getFiles", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_getFiles" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AgetDirectoryIterator\u0028\u0029", + "name": "getDirectoryIterator", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_getDirectoryIterator" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AisReadable\u0028\u0029", + "name": "isReadable", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_isReadable" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AgetTargetLanguageFromFile\u0028\u0029", + "name": "getTargetLanguageFromFile", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_getTargetLanguageFromFile" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003AgetAvailableFormatOptions\u0028\u0029", + "name": "getAvailableFormatOptions", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#method_getAvailableFormatOptions" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003A\u0024format", + "name": "format", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#property_format" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003A\u0024displayCorrectFiles", + "name": "displayCorrectFiles", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#property_displayCorrectFiles" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003A\u0024directoryIteratorProvider", + "name": "directoryIteratorProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#property_directoryIteratorProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003A\u0024isReadableProvider", + "name": "isReadableProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#property_isReadableProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command\\XliffLintCommand\u003A\u003A\u0024requireStrictFileNames", + "name": "requireStrictFileNames", + "summary": "", + "url": "classes/Symfony-Component-Translation-Command-XliffLintCommand.html#property_requireStrictFileNames" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector", + "name": "TranslationDataCollector", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AlateCollect\u0028\u0029", + "name": "lateCollect", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_lateCollect" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003Acollect\u0028\u0029", + "name": "collect", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_collect" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_reset" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_getMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AgetCountMissings\u0028\u0029", + "name": "getCountMissings", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_getCountMissings" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AgetCountFallbacks\u0028\u0029", + "name": "getCountFallbacks", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_getCountFallbacks" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AgetCountDefines\u0028\u0029", + "name": "getCountDefines", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_getCountDefines" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_getName" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AsanitizeCollectedMessages\u0028\u0029", + "name": "sanitizeCollectedMessages", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_sanitizeCollectedMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AcomputeCount\u0028\u0029", + "name": "computeCount", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_computeCount" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003AsanitizeString\u0028\u0029", + "name": "sanitizeString", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#method_sanitizeString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector\u003A\u003A\u0024translator", + "name": "translator", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollector-TranslationDataCollector.html#property_translator" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator", + "name": "DataCollectorTranslator", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "Translates\u0020the\u0020given\u0020message.", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_trans" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Sets\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020default\u0020locale.", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AgetCatalogue\u0028\u0029", + "name": "getCatalogue", + "summary": "Gets\u0020the\u0020catalogue\u0020by\u0020locale.", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_getCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AgetCatalogues\u0028\u0029", + "name": "getCatalogues", + "summary": "Returns\u0020all\u0020catalogues\u0020of\u0020the\u0020instance.", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_getCatalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AwarmUp\u0028\u0029", + "name": "warmUp", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_warmUp" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AgetFallbackLocales\u0028\u0029", + "name": "getFallbackLocales", + "summary": "Gets\u0020the\u0020fallback\u0020locales.", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_getFallbackLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method___call" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AgetCollectedMessages\u0028\u0029", + "name": "getCollectedMessages", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_getCollectedMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AcollectMessage\u0028\u0029", + "name": "collectMessage", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#method_collectMessage" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AMESSAGE_DEFINED", + "name": "MESSAGE_DEFINED", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#constant_MESSAGE_DEFINED" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AMESSAGE_MISSING", + "name": "MESSAGE_MISSING", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#constant_MESSAGE_MISSING" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003AMESSAGE_EQUALS_FALLBACK", + "name": "MESSAGE_EQUALS_FALLBACK", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#constant_MESSAGE_EQUALS_FALLBACK" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003A\u0024translator", + "name": "translator", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#property_translator" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollectorTranslator\u003A\u003A\u0024messages", + "name": "messages", + "summary": "", + "url": "classes/Symfony-Component-Translation-DataCollectorTranslator.html#property_messages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\DataCollectorTranslatorPass", + "name": "DataCollectorTranslatorPass", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-DataCollectorTranslatorPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\DataCollectorTranslatorPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-DataCollectorTranslatorPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\LoggingTranslatorPass", + "name": "LoggingTranslatorPass", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-LoggingTranslatorPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\LoggingTranslatorPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-LoggingTranslatorPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass", + "name": "TranslationDumperPass", + "summary": "Adds\u0020tagged\u0020translation.formatter\u0020services\u0020to\u0020translation\u0020writer.", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslationDumperPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslationDumperPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass", + "name": "TranslationExtractorPass", + "summary": "Adds\u0020tagged\u0020translation.extractor\u0020services\u0020to\u0020translation\u0020extractor.", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslationExtractorPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslationExtractorPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass", + "name": "TranslatorPass", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass", + "name": "TranslatorPathsPass", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#method_process" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003AprocessValue\u0028\u0029", + "name": "processValue", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#method_processValue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003AfindControllerArguments\u0028\u0029", + "name": "findControllerArguments", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#method_findControllerArguments" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003A\u0024skipScalars", + "name": "skipScalars", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#property_skipScalars" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003A\u0024level", + "name": "level", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#property_level" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003A\u0024paths", + "name": "paths", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#property_paths" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003A\u0024definitions", + "name": "definitions", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#property_definitions" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass\u003A\u003A\u0024controllers", + "name": "controllers", + "summary": "", + "url": "classes/Symfony-Component-Translation-DependencyInjection-TranslatorPathsPass.html#property_controllers" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper", + "name": "CsvFileDumper", + "summary": "CsvFileDumper\u0020generates\u0020a\u0020csv\u0020formatted\u0020string\u0020representation\u0020of\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-CsvFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-CsvFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper\u003A\u003AsetCsvControl\u0028\u0029", + "name": "setCsvControl", + "summary": "Sets\u0020the\u0020delimiter\u0020and\u0020escape\u0020character\u0020for\u0020CSV.", + "url": "classes/Symfony-Component-Translation-Dumper-CsvFileDumper.html#method_setCsvControl" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-CsvFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper\u003A\u003A\u0024delimiter", + "name": "delimiter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-CsvFileDumper.html#property_delimiter" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper\u003A\u003A\u0024enclosure", + "name": "enclosure", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-CsvFileDumper.html#property_enclosure" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\DumperInterface", + "name": "DumperInterface", + "summary": "DumperInterface\u0020is\u0020the\u0020interface\u0020implemented\u0020by\u0020all\u0020translation\u0020dumpers.", + "url": "classes/Symfony-Component-Translation-Dumper-DumperInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\DumperInterface\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020the\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-DumperInterface.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper", + "name": "FileDumper", + "summary": "FileDumper\u0020is\u0020an\u0020implementation\u0020of\u0020DumperInterface\u0020that\u0020dump\u0020a\u0020message\u0020catalogue\u0020to\u0020file\u0028s\u0029.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper\u003A\u003AsetRelativePathTemplate\u0028\u0029", + "name": "setRelativePathTemplate", + "summary": "Sets\u0020the\u0020template\u0020for\u0020the\u0020relative\u0020paths\u0020to\u0020files.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html#method_setRelativePathTemplate" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020the\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper\u003A\u003AgetRelativePath\u0028\u0029", + "name": "getRelativePath", + "summary": "Gets\u0020the\u0020relative\u0020file\u0020path\u0020using\u0020the\u0020template.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html#method_getRelativePath" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\FileDumper\u003A\u003A\u0024relativePathTemplate", + "name": "relativePathTemplate", + "summary": "A\u0020template\u0020for\u0020the\u0020relative\u0020paths\u0020to\u0020files.", + "url": "classes/Symfony-Component-Translation-Dumper-FileDumper.html#property_relativePathTemplate" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper", + "name": "IcuResFileDumper", + "summary": "IcuResDumper\u0020generates\u0020an\u0020ICU\u0020ResourceBundle\u0020formatted\u0020string\u0020representation\u0020of\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-IcuResFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-IcuResFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper\u003A\u003AwritePadding\u0028\u0029", + "name": "writePadding", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-IcuResFileDumper.html#method_writePadding" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper\u003A\u003AgetPosition\u0028\u0029", + "name": "getPosition", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-IcuResFileDumper.html#method_getPosition" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-IcuResFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper\u003A\u003A\u0024relativePathTemplate", + "name": "relativePathTemplate", + "summary": "A\u0020template\u0020for\u0020the\u0020relative\u0020paths\u0020to\u0020files.", + "url": "classes/Symfony-Component-Translation-Dumper-IcuResFileDumper.html#property_relativePathTemplate" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IniFileDumper", + "name": "IniFileDumper", + "summary": "IniFileDumper\u0020generates\u0020an\u0020ini\u0020formatted\u0020string\u0020representation\u0020of\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-IniFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IniFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-IniFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\IniFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-IniFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\JsonFileDumper", + "name": "JsonFileDumper", + "summary": "JsonFileDumper\u0020generates\u0020an\u0020json\u0020formatted\u0020string\u0020representation\u0020of\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-JsonFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\JsonFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-JsonFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\JsonFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-JsonFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\MoFileDumper", + "name": "MoFileDumper", + "summary": "MoFileDumper\u0020generates\u0020a\u0020gettext\u0020formatted\u0020string\u0020representation\u0020of\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-MoFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\MoFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-MoFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\MoFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-MoFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\MoFileDumper\u003A\u003AwriteLong\u0028\u0029", + "name": "writeLong", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-MoFileDumper.html#method_writeLong" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PhpFileDumper", + "name": "PhpFileDumper", + "summary": "PhpFileDumper\u0020generates\u0020PHP\u0020files\u0020from\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-PhpFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PhpFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-PhpFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PhpFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-PhpFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper", + "name": "PoFileDumper", + "summary": "PoFileDumper\u0020generates\u0020a\u0020gettext\u0020formatted\u0020string\u0020representation\u0020of\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-PoFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-PoFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper\u003A\u003AgetStandardRules\u0028\u0029", + "name": "getStandardRules", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-PoFileDumper.html#method_getStandardRules" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-PoFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper\u003A\u003Aescape\u0028\u0029", + "name": "escape", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-PoFileDumper.html#method_escape" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper\u003A\u003AformatComments\u0028\u0029", + "name": "formatComments", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-PoFileDumper.html#method_formatComments" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\QtFileDumper", + "name": "QtFileDumper", + "summary": "QtFileDumper\u0020generates\u0020ts\u0020files\u0020from\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-QtFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\QtFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-QtFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\QtFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-QtFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper", + "name": "XliffFileDumper", + "summary": "XliffFileDumper\u0020generates\u0020xliff\u0020files\u0020from\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003AdumpXliff1\u0028\u0029", + "name": "dumpXliff1", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#method_dumpXliff1" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003AdumpXliff2\u0028\u0029", + "name": "dumpXliff2", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#method_dumpXliff2" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003AhasMetadataArrayInfo\u0028\u0029", + "name": "hasMetadataArrayInfo", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#method_hasMetadataArrayInfo" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper\u003A\u003A\u0024extension", + "name": "extension", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-XliffFileDumper.html#property_extension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper", + "name": "YamlFileDumper", + "summary": "YamlFileDumper\u0020generates\u0020yaml\u0020files\u0020from\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Dumper-YamlFileDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-YamlFileDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper\u003A\u003AformatCatalogue\u0028\u0029", + "name": "formatCatalogue", + "summary": "Transforms\u0020a\u0020domain\u0020of\u0020a\u0020message\u0020catalogue\u0020to\u0020its\u0020string\u0020representation.", + "url": "classes/Symfony-Component-Translation-Dumper-YamlFileDumper.html#method_formatCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper\u003A\u003AgetExtension\u0028\u0029", + "name": "getExtension", + "summary": "Gets\u0020the\u0020file\u0020extension\u0020of\u0020the\u0020dumper.", + "url": "classes/Symfony-Component-Translation-Dumper-YamlFileDumper.html#method_getExtension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper\u003A\u003A\u0024extension", + "name": "extension", + "summary": "", + "url": "classes/Symfony-Component-Translation-Dumper-YamlFileDumper.html#property_extension" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ExceptionInterface", + "name": "ExceptionInterface", + "summary": "Exception\u0020interface\u0020for\u0020all\u0020exceptions\u0020thrown\u0020by\u0020the\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-ExceptionInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\IncompleteDsnException", + "name": "IncompleteDsnException", + "summary": "Base\u0020InvalidArgumentException\u0020for\u0020the\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-IncompleteDsnException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\IncompleteDsnException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-IncompleteDsnException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\InvalidArgumentException", + "name": "InvalidArgumentException", + "summary": "Base\u0020InvalidArgumentException\u0020for\u0020the\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-InvalidArgumentException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\InvalidResourceException", + "name": "InvalidResourceException", + "summary": "Thrown\u0020when\u0020a\u0020resource\u0020cannot\u0020be\u0020loaded.", + "url": "classes/Symfony-Component-Translation-Exception-InvalidResourceException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\LogicException", + "name": "LogicException", + "summary": "Base\u0020LogicException\u0020for\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-LogicException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\MissingRequiredOptionException", + "name": "MissingRequiredOptionException", + "summary": "Base\u0020InvalidArgumentException\u0020for\u0020the\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-MissingRequiredOptionException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\MissingRequiredOptionException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-MissingRequiredOptionException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\NotFoundResourceException", + "name": "NotFoundResourceException", + "summary": "Thrown\u0020when\u0020a\u0020resource\u0020does\u0020not\u0020exist.", + "url": "classes/Symfony-Component-Translation-Exception-NotFoundResourceException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderException", + "name": "ProviderException", + "summary": "Base\u0020RuntimeException\u0020for\u0020the\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-ProviderException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-ProviderException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderException\u003A\u003AgetResponse\u0028\u0029", + "name": "getResponse", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-ProviderException.html#method_getResponse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderException\u003A\u003AgetDebug\u0028\u0029", + "name": "getDebug", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-ProviderException.html#method_getDebug" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderException\u003A\u003A\u0024response", + "name": "response", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-ProviderException.html#property_response" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderException\u003A\u003A\u0024debug", + "name": "debug", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-ProviderException.html#property_debug" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderExceptionInterface", + "name": "ProviderExceptionInterface", + "summary": "Exception\u0020interface\u0020for\u0020all\u0020exceptions\u0020thrown\u0020by\u0020the\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-ProviderExceptionInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\ProviderExceptionInterface\u003A\u003AgetDebug\u0028\u0029", + "name": "getDebug", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-ProviderExceptionInterface.html#method_getDebug" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\RuntimeException", + "name": "RuntimeException", + "summary": "Base\u0020RuntimeException\u0020for\u0020the\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-RuntimeException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\UnsupportedSchemeException", + "name": "UnsupportedSchemeException", + "summary": "Base\u0020LogicException\u0020for\u0020Translation\u0020component.", + "url": "classes/Symfony-Component-Translation-Exception-UnsupportedSchemeException.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\UnsupportedSchemeException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-UnsupportedSchemeException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception\\UnsupportedSchemeException\u003A\u003ASCHEME_TO_PACKAGE_MAP", + "name": "SCHEME_TO_PACKAGE_MAP", + "summary": "", + "url": "classes/Symfony-Component-Translation-Exception-UnsupportedSchemeException.html#constant_SCHEME_TO_PACKAGE_MAP" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor", + "name": "AbstractFileExtractor", + "summary": "Base\u0020class\u0020used\u0020by\u0020classes\u0020that\u0020extract\u0020translation\u0020messages\u0020from\u0020files.", + "url": "classes/Symfony-Component-Translation-Extractor-AbstractFileExtractor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor\u003A\u003AextractFiles\u0028\u0029", + "name": "extractFiles", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-AbstractFileExtractor.html#method_extractFiles" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor\u003A\u003AtoSplFileInfo\u0028\u0029", + "name": "toSplFileInfo", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-AbstractFileExtractor.html#method_toSplFileInfo" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor\u003A\u003AisFile\u0028\u0029", + "name": "isFile", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-AbstractFileExtractor.html#method_isFile" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor\u003A\u003AcanBeExtracted\u0028\u0029", + "name": "canBeExtracted", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-AbstractFileExtractor.html#method_canBeExtracted" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor\u003A\u003AextractFromDirectory\u0028\u0029", + "name": "extractFromDirectory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-AbstractFileExtractor.html#method_extractFromDirectory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor", + "name": "ChainExtractor", + "summary": "ChainExtractor\u0020extracts\u0020translation\u0020messages\u0020from\u0020template\u0020files.", + "url": "classes/Symfony-Component-Translation-Extractor-ChainExtractor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor\u003A\u003AaddExtractor\u0028\u0029", + "name": "addExtractor", + "summary": "Adds\u0020a\u0020loader\u0020to\u0020the\u0020translation\u0020extractor.", + "url": "classes/Symfony-Component-Translation-Extractor-ChainExtractor.html#method_addExtractor" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor\u003A\u003AsetPrefix\u0028\u0029", + "name": "setPrefix", + "summary": "Sets\u0020the\u0020prefix\u0020that\u0020should\u0020be\u0020used\u0020for\u0020new\u0020found\u0020messages.", + "url": "classes/Symfony-Component-Translation-Extractor-ChainExtractor.html#method_setPrefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor\u003A\u003Aextract\u0028\u0029", + "name": "extract", + "summary": "Extracts\u0020translation\u0020messages\u0020from\u0020files,\u0020a\u0020file\u0020or\u0020a\u0020directory\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Extractor-ChainExtractor.html#method_extract" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor\u003A\u003A\u0024extractors", + "name": "extractors", + "summary": "The\u0020extractors.", + "url": "classes/Symfony-Component-Translation-Extractor-ChainExtractor.html#property_extractors" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ExtractorInterface", + "name": "ExtractorInterface", + "summary": "Extracts\u0020translation\u0020messages\u0020from\u0020a\u0020directory\u0020or\u0020files\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Extractor-ExtractorInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ExtractorInterface\u003A\u003Aextract\u0028\u0029", + "name": "extract", + "summary": "Extracts\u0020translation\u0020messages\u0020from\u0020files,\u0020a\u0020file\u0020or\u0020a\u0020directory\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Extractor-ExtractorInterface.html#method_extract" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\ExtractorInterface\u003A\u003AsetPrefix\u0028\u0029", + "name": "setPrefix", + "summary": "Sets\u0020the\u0020prefix\u0020that\u0020should\u0020be\u0020used\u0020for\u0020new\u0020found\u0020messages.", + "url": "classes/Symfony-Component-Translation-Extractor-ExtractorInterface.html#method_setPrefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor", + "name": "PhpAstExtractor", + "summary": "PhpAstExtractor\u0020extracts\u0020translation\u0020messages\u0020from\u0020a\u0020PHP\u0020AST.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003Aextract\u0028\u0029", + "name": "extract", + "summary": "Extracts\u0020translation\u0020messages\u0020from\u0020files,\u0020a\u0020file\u0020or\u0020a\u0020directory\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#method_extract" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003AsetPrefix\u0028\u0029", + "name": "setPrefix", + "summary": "Sets\u0020the\u0020prefix\u0020that\u0020should\u0020be\u0020used\u0020for\u0020new\u0020found\u0020messages.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#method_setPrefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003AcanBeExtracted\u0028\u0029", + "name": "canBeExtracted", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#method_canBeExtracted" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003AextractFromDirectory\u0028\u0029", + "name": "extractFromDirectory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#method_extractFromDirectory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#property_parser" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003A\u0024visitors", + "name": "visitors", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#property_visitors" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpAstExtractor\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpAstExtractor.html#property_prefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor", + "name": "PhpExtractor", + "summary": "PhpExtractor\u0020extracts\u0020translation\u0020messages\u0020from\u0020a\u0020PHP\u0020template.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003Aextract\u0028\u0029", + "name": "extract", + "summary": "Extracts\u0020translation\u0020messages\u0020from\u0020files,\u0020a\u0020file\u0020or\u0020a\u0020directory\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_extract" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AsetPrefix\u0028\u0029", + "name": "setPrefix", + "summary": "Sets\u0020the\u0020prefix\u0020that\u0020should\u0020be\u0020used\u0020for\u0020new\u0020found\u0020messages.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_setPrefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AnormalizeToken\u0028\u0029", + "name": "normalizeToken", + "summary": "Normalizes\u0020a\u0020token.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_normalizeToken" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AseekToNextRelevantToken\u0028\u0029", + "name": "seekToNextRelevantToken", + "summary": "Seeks\u0020to\u0020a\u0020non\u002Dwhitespace\u0020token.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_seekToNextRelevantToken" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AskipMethodArgument\u0028\u0029", + "name": "skipMethodArgument", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_skipMethodArgument" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Extracts\u0020the\u0020message\u0020from\u0020the\u0020iterator\u0020while\u0020the\u0020tokens\nmatch\u0020allowed\u0020message\u0020tokens.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_getValue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AparseTokens\u0028\u0029", + "name": "parseTokens", + "summary": "Extracts\u0020trans\u0020message\u0020from\u0020PHP\u0020tokens.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_parseTokens" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AcanBeExtracted\u0028\u0029", + "name": "canBeExtracted", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_canBeExtracted" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AextractFromDirectory\u0028\u0029", + "name": "extractFromDirectory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#method_extractFromDirectory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AMESSAGE_TOKEN", + "name": "MESSAGE_TOKEN", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#constant_MESSAGE_TOKEN" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003AMETHOD_ARGUMENTS_TOKEN", + "name": "METHOD_ARGUMENTS_TOKEN", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#constant_METHOD_ARGUMENTS_TOKEN" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003ADOMAIN_TOKEN", + "name": "DOMAIN_TOKEN", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#constant_DOMAIN_TOKEN" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003A\u0024prefix", + "name": "prefix", + "summary": "Prefix\u0020for\u0020new\u0020found\u0020message.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#property_prefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor\u003A\u003A\u0024sequences", + "name": "sequences", + "summary": "The\u0020sequence\u0020that\u0020captures\u0020translation\u0020messages.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpExtractor.html#property_sequences" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser", + "name": "PhpStringTokenParser", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpStringTokenParser.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parses\u0020a\u0020string\u0020token.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpStringTokenParser.html#method_parse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser\u003A\u003AparseEscapeSequences\u0028\u0029", + "name": "parseEscapeSequences", + "summary": "Parses\u0020escape\u0020sequences\u0020in\u0020strings\u0020\u0028all\u0020string\u0020types\u0020apart\u0020from\u0020single\u0020quoted\u0029.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpStringTokenParser.html#method_parseEscapeSequences" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser\u003A\u003AparseCallback\u0028\u0029", + "name": "parseCallback", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpStringTokenParser.html#method_parseCallback" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser\u003A\u003AparseDocString\u0028\u0029", + "name": "parseDocString", + "summary": "Parses\u0020a\u0020constant\u0020doc\u0020string.", + "url": "classes/Symfony-Component-Translation-Extractor-PhpStringTokenParser.html#method_parseDocString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser\u003A\u003A\u0024replacements", + "name": "replacements", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-PhpStringTokenParser.html#property_replacements" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor", + "name": "AbstractVisitor", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003Ainitialize\u0028\u0029", + "name": "initialize", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_initialize" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003AaddMessageToCatalogue\u0028\u0029", + "name": "addMessageToCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_addMessageToCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003AgetStringArguments\u0028\u0029", + "name": "getStringArguments", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_getStringArguments" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003AhasNodeNamedArguments\u0028\u0029", + "name": "hasNodeNamedArguments", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_hasNodeNamedArguments" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003AnodeFirstNamedArgumentIndex\u0028\u0029", + "name": "nodeFirstNamedArgumentIndex", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_nodeFirstNamedArgumentIndex" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003AgetStringNamedArguments\u0028\u0029", + "name": "getStringNamedArguments", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_getStringNamedArguments" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003AgetStringValue\u0028\u0029", + "name": "getStringValue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#method_getStringValue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003A\u0024catalogue", + "name": "catalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#property_catalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003A\u0024file", + "name": "file", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#property_file" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\AbstractVisitor\u003A\u003A\u0024messagePrefix", + "name": "messagePrefix", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-AbstractVisitor.html#property_messagePrefix" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor", + "name": "ConstraintVisitor", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html#method_enterNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html#method_leaveNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html#method_afterTraverse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\ConstraintVisitor\u003A\u003A\u0024constraintClassNames", + "name": "constraintClassNames", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-ConstraintVisitor.html#property_constraintClassNames" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TranslatableMessageVisitor", + "name": "TranslatableMessageVisitor", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TranslatableMessageVisitor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TranslatableMessageVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TranslatableMessageVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TranslatableMessageVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TranslatableMessageVisitor.html#method_enterNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TranslatableMessageVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TranslatableMessageVisitor.html#method_leaveNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TranslatableMessageVisitor\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TranslatableMessageVisitor.html#method_afterTraverse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TransMethodVisitor", + "name": "TransMethodVisitor", + "summary": "", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TransMethodVisitor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TransMethodVisitor\u003A\u003AbeforeTraverse\u0028\u0029", + "name": "beforeTraverse", + "summary": "Called\u0020once\u0020before\u0020traversal.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TransMethodVisitor.html#method_beforeTraverse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TransMethodVisitor\u003A\u003AenterNode\u0028\u0029", + "name": "enterNode", + "summary": "Called\u0020when\u0020entering\u0020a\u0020node.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TransMethodVisitor.html#method_enterNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TransMethodVisitor\u003A\u003AleaveNode\u0028\u0029", + "name": "leaveNode", + "summary": "Called\u0020when\u0020leaving\u0020a\u0020node.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TransMethodVisitor.html#method_leaveNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor\\TransMethodVisitor\u003A\u003AafterTraverse\u0028\u0029", + "name": "afterTraverse", + "summary": "Called\u0020once\u0020after\u0020traversal.", + "url": "classes/Symfony-Component-Translation-Extractor-Visitor-TransMethodVisitor.html#method_afterTraverse" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\IntlFormatter", + "name": "IntlFormatter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-IntlFormatter.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\IntlFormatter\u003A\u003AformatIntl\u0028\u0029", + "name": "formatIntl", + "summary": "Formats\u0020a\u0020localized\u0020message\u0020using\u0020rules\u0020defined\u0020by\u0020ICU\u0020MessageFormat.", + "url": "classes/Symfony-Component-Translation-Formatter-IntlFormatter.html#method_formatIntl" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\IntlFormatter\u003A\u003A\u0024hasMessageFormatter", + "name": "hasMessageFormatter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-IntlFormatter.html#property_hasMessageFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\IntlFormatter\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-IntlFormatter.html#property_cache" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface", + "name": "IntlFormatterInterface", + "summary": "Formats\u0020ICU\u0020message\u0020patterns.", + "url": "classes/Symfony-Component-Translation-Formatter-IntlFormatterInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface\u003A\u003AformatIntl\u0028\u0029", + "name": "formatIntl", + "summary": "Formats\u0020a\u0020localized\u0020message\u0020using\u0020rules\u0020defined\u0020by\u0020ICU\u0020MessageFormat.", + "url": "classes/Symfony-Component-Translation-Formatter-IntlFormatterInterface.html#method_formatIntl" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter", + "name": "MessageFormatter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatter.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatter.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Formats\u0020a\u0020localized\u0020message\u0020pattern\u0020with\u0020given\u0020arguments.", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatter.html#method_format" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter\u003A\u003AformatIntl\u0028\u0029", + "name": "formatIntl", + "summary": "Formats\u0020a\u0020localized\u0020message\u0020using\u0020rules\u0020defined\u0020by\u0020ICU\u0020MessageFormat.", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatter.html#method_formatIntl" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter\u003A\u003A\u0024translator", + "name": "translator", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatter.html#property_translator" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter\u003A\u003A\u0024intlFormatter", + "name": "intlFormatter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatter.html#property_intlFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface", + "name": "MessageFormatterInterface", + "summary": "", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatterInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface\u003A\u003Aformat\u0028\u0029", + "name": "format", + "summary": "Formats\u0020a\u0020localized\u0020message\u0020pattern\u0020with\u0020given\u0020arguments.", + "url": "classes/Symfony-Component-Translation-Formatter-MessageFormatterInterface.html#method_format" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\IdentityTranslator", + "name": "IdentityTranslator", + "summary": "IdentityTranslator\u0020does\u0020not\u0020translate\u0020anything.", + "url": "classes/Symfony-Component-Translation-IdentityTranslator.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\ArrayLoader", + "name": "ArrayLoader", + "summary": "ArrayLoader\u0020loads\u0020translations\u0020from\u0020a\u0020PHP\u0020array.", + "url": "classes/Symfony-Component-Translation-Loader-ArrayLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\ArrayLoader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-ArrayLoader.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\ArrayLoader\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Flattens\u0020an\u0020nested\u0020array\u0020of\u0020translations.", + "url": "classes/Symfony-Component-Translation-Loader-ArrayLoader.html#method_flatten" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader", + "name": "CsvFileLoader", + "summary": "CsvFileLoader\u0020loads\u0020translations\u0020from\u0020CSV\u0020files.", + "url": "classes/Symfony-Component-Translation-Loader-CsvFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-CsvFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader\u003A\u003AsetCsvControl\u0028\u0029", + "name": "setCsvControl", + "summary": "Sets\u0020the\u0020delimiter,\u0020enclosure,\u0020and\u0020escape\u0020character\u0020for\u0020CSV.", + "url": "classes/Symfony-Component-Translation-Loader-CsvFileLoader.html#method_setCsvControl" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader\u003A\u003A\u0024delimiter", + "name": "delimiter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-CsvFileLoader.html#property_delimiter" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader\u003A\u003A\u0024enclosure", + "name": "enclosure", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-CsvFileLoader.html#property_enclosure" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader\u003A\u003A\u0024escape", + "name": "escape", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-CsvFileLoader.html#property_escape" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\FileLoader", + "name": "FileLoader", + "summary": "ArrayLoader\u0020loads\u0020translations\u0020from\u0020a\u0020PHP\u0020array.", + "url": "classes/Symfony-Component-Translation-Loader-FileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\FileLoader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-FileLoader.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\FileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-FileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader", + "name": "IcuDatFileLoader", + "summary": "IcuResFileLoader\u0020loads\u0020translations\u0020from\u0020a\u0020resource\u0020bundle.", + "url": "classes/Symfony-Component-Translation-Loader-IcuDatFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-IcuDatFileLoader.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IcuResFileLoader", + "name": "IcuResFileLoader", + "summary": "IcuResFileLoader\u0020loads\u0020translations\u0020from\u0020a\u0020resource\u0020bundle.", + "url": "classes/Symfony-Component-Translation-Loader-IcuResFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IcuResFileLoader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-IcuResFileLoader.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IcuResFileLoader\u003A\u003Aflatten\u0028\u0029", + "name": "flatten", + "summary": "Flattens\u0020an\u0020ResourceBundle.", + "url": "classes/Symfony-Component-Translation-Loader-IcuResFileLoader.html#method_flatten" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IniFileLoader", + "name": "IniFileLoader", + "summary": "IniFileLoader\u0020loads\u0020translations\u0020from\u0020an\u0020ini\u0020file.", + "url": "classes/Symfony-Component-Translation-Loader-IniFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\IniFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-IniFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\JsonFileLoader", + "name": "JsonFileLoader", + "summary": "JsonFileLoader\u0020loads\u0020translations\u0020from\u0020an\u0020json\u0020file.", + "url": "classes/Symfony-Component-Translation-Loader-JsonFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\JsonFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-JsonFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\JsonFileLoader\u003A\u003AgetJSONErrorMessage\u0028\u0029", + "name": "getJSONErrorMessage", + "summary": "Translates\u0020JSON_ERROR_\u002A\u0020constant\u0020into\u0020meaningful\u0020message.", + "url": "classes/Symfony-Component-Translation-Loader-JsonFileLoader.html#method_getJSONErrorMessage" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\LoaderInterface", + "name": "LoaderInterface", + "summary": "LoaderInterface\u0020is\u0020the\u0020interface\u0020implemented\u0020by\u0020all\u0020translation\u0020loaders.", + "url": "classes/Symfony-Component-Translation-Loader-LoaderInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\LoaderInterface\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-LoaderInterface.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\MoFileLoader", + "name": "MoFileLoader", + "summary": "ArrayLoader\u0020loads\u0020translations\u0020from\u0020a\u0020PHP\u0020array.", + "url": "classes/Symfony-Component-Translation-Loader-MoFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\MoFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "Parses\u0020machine\u0020object\u0020\u0028MO\u0029\u0020format,\u0020independent\u0020of\u0020the\u0020machine\u0027s\u0020endian\u0020it\nwas\u0020created\u0020on.\u0020Both\u002032bit\u0020and\u002064bit\u0020systems\u0020are\u0020supported.", + "url": "classes/Symfony-Component-Translation-Loader-MoFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\MoFileLoader\u003A\u003AreadLong\u0028\u0029", + "name": "readLong", + "summary": "Reads\u0020an\u0020unsigned\u0020long\u0020from\u0020stream\u0020respecting\u0020endianness.", + "url": "classes/Symfony-Component-Translation-Loader-MoFileLoader.html#method_readLong" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\MoFileLoader\u003A\u003AMO_LITTLE_ENDIAN_MAGIC", + "name": "MO_LITTLE_ENDIAN_MAGIC", + "summary": "Magic\u0020used\u0020for\u0020validating\u0020the\u0020format\u0020of\u0020an\u0020MO\u0020file\u0020as\u0020well\u0020as\ndetecting\u0020if\u0020the\u0020machine\u0020used\u0020to\u0020create\u0020that\u0020file\u0020was\u0020little\u0020endian.", + "url": "classes/Symfony-Component-Translation-Loader-MoFileLoader.html#constant_MO_LITTLE_ENDIAN_MAGIC" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\MoFileLoader\u003A\u003AMO_BIG_ENDIAN_MAGIC", + "name": "MO_BIG_ENDIAN_MAGIC", + "summary": "Magic\u0020used\u0020for\u0020validating\u0020the\u0020format\u0020of\u0020an\u0020MO\u0020file\u0020as\u0020well\u0020as\ndetecting\u0020if\u0020the\u0020machine\u0020used\u0020to\u0020create\u0020that\u0020file\u0020was\u0020big\u0020endian.", + "url": "classes/Symfony-Component-Translation-Loader-MoFileLoader.html#constant_MO_BIG_ENDIAN_MAGIC" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\MoFileLoader\u003A\u003AMO_HEADER_SIZE", + "name": "MO_HEADER_SIZE", + "summary": "The\u0020size\u0020of\u0020the\u0020header\u0020of\u0020an\u0020MO\u0020file\u0020in\u0020bytes.", + "url": "classes/Symfony-Component-Translation-Loader-MoFileLoader.html#constant_MO_HEADER_SIZE" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\PhpFileLoader", + "name": "PhpFileLoader", + "summary": "PhpFileLoader\u0020loads\u0020translations\u0020from\u0020PHP\u0020files\u0020returning\u0020an\u0020array\u0020of\u0020translations.", + "url": "classes/Symfony-Component-Translation-Loader-PhpFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\PhpFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-PhpFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\PhpFileLoader\u003A\u003A\u0024cache", + "name": "cache", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-PhpFileLoader.html#property_cache" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\PoFileLoader", + "name": "PoFileLoader", + "summary": "ArrayLoader\u0020loads\u0020translations\u0020from\u0020a\u0020PHP\u0020array.", + "url": "classes/Symfony-Component-Translation-Loader-PoFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\PoFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "Parses\u0020portable\u0020object\u0020\u0028PO\u0029\u0020format.", + "url": "classes/Symfony-Component-Translation-Loader-PoFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\PoFileLoader\u003A\u003AaddMessage\u0028\u0029", + "name": "addMessage", + "summary": "Save\u0020a\u0020translation\u0020item\u0020to\u0020the\u0020messages.", + "url": "classes/Symfony-Component-Translation-Loader-PoFileLoader.html#method_addMessage" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\QtFileLoader", + "name": "QtFileLoader", + "summary": "QtFileLoader\u0020loads\u0020translations\u0020from\u0020QT\u0020Translations\u0020XML\u0020files.", + "url": "classes/Symfony-Component-Translation-Loader-QtFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\QtFileLoader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-QtFileLoader.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader", + "name": "XliffFileLoader", + "summary": "XliffFileLoader\u0020loads\u0020translations\u0020from\u0020XLIFF\u0020files.", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Loads\u0020a\u0020locale.", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_load" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003Aextract\u0028\u0029", + "name": "extract", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_extract" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003AextractXliff1\u0028\u0029", + "name": "extractXliff1", + "summary": "Extract\u0020messages\u0020and\u0020metadata\u0020from\u0020DOMDocument\u0020into\u0020a\u0020MessageCatalogue.", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_extractXliff1" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003AextractXliff2\u0028\u0029", + "name": "extractXliff2", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_extractXliff2" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003Autf8ToCharset\u0028\u0029", + "name": "utf8ToCharset", + "summary": "Convert\u0020a\u0020UTF8\u0020string\u0020to\u0020the\u0020specified\u0020encoding.", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_utf8ToCharset" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003AparseNotesMetadata\u0028\u0029", + "name": "parseNotesMetadata", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_parseNotesMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader\u003A\u003AisXmlString\u0028\u0029", + "name": "isXmlString", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-XliffFileLoader.html#method_isXmlString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\YamlFileLoader", + "name": "YamlFileLoader", + "summary": "YamlFileLoader\u0020loads\u0020translations\u0020from\u0020Yaml\u0020files.", + "url": "classes/Symfony-Component-Translation-Loader-YamlFileLoader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\YamlFileLoader\u003A\u003AloadResource\u0028\u0029", + "name": "loadResource", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-YamlFileLoader.html#method_loadResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader\\YamlFileLoader\u003A\u003A\u0024yamlParser", + "name": "yamlParser", + "summary": "", + "url": "classes/Symfony-Component-Translation-Loader-YamlFileLoader.html#property_yamlParser" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher", + "name": "LocaleSwitcher", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Sets\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003ArunWithLocale\u0028\u0029", + "name": "runWithLocale", + "summary": "Switch\u0020to\u0020a\u0020new\u0020locale,\u0020execute\u0020a\u0020callback,\u0020then\u0020switch\u0020back\u0020to\u0020the\u0020original.", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#method_runWithLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003Areset\u0028\u0029", + "name": "reset", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#method_reset" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003A\u0024defaultLocale", + "name": "defaultLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#property_defaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003A\u0024locale", + "name": "locale", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#property_locale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003A\u0024localeAwareServices", + "name": "localeAwareServices", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#property_localeAwareServices" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LocaleSwitcher\u003A\u003A\u0024requestContext", + "name": "requestContext", + "summary": "", + "url": "classes/Symfony-Component-Translation-LocaleSwitcher.html#property_requestContext" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator", + "name": "LoggingTranslator", + "summary": "", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "Translates\u0020the\u0020given\u0020message.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_trans" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Sets\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020default\u0020locale.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003AgetCatalogue\u0028\u0029", + "name": "getCatalogue", + "summary": "Gets\u0020the\u0020catalogue\u0020by\u0020locale.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_getCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003AgetCatalogues\u0028\u0029", + "name": "getCatalogues", + "summary": "Returns\u0020all\u0020catalogues\u0020of\u0020the\u0020instance.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_getCatalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003AgetFallbackLocales\u0028\u0029", + "name": "getFallbackLocales", + "summary": "Gets\u0020the\u0020fallback\u0020locales.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_getFallbackLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003A__call\u0028\u0029", + "name": "__call", + "summary": "", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method___call" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003Alog\u0028\u0029", + "name": "log", + "summary": "Logs\u0020for\u0020missing\u0020translations.", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#method_log" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003A\u0024translator", + "name": "translator", + "summary": "", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#property_translator" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\LoggingTranslator\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Symfony-Component-Translation-LoggingTranslator.html#property_logger" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue", + "name": "MessageCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Gets\u0020the\u0020catalogue\u0020locale.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AgetDomains\u0028\u0029", + "name": "getDomains", + "summary": "Gets\u0020the\u0020domains.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_getDomains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Gets\u0020the\u0020messages\u0020within\u0020a\u0020given\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_all" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Sets\u0020a\u0020message\u0020translation.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_set" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020a\u0020message\u0020has\u0020a\u0020translation.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Adefines\u0028\u0029", + "name": "defines", + "summary": "Checks\u0020if\u0020a\u0020message\u0020has\u0020a\u0020translation\u0020\u0028it\u0020does\u0020not\u0020take\u0020into\u0020account\u0020the\u0020fallback\u0020mechanism\u0029.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_defines" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Gets\u0020a\u0020message\u0020translation.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Sets\u0020translations\u0020for\u0020a\u0020given\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_replace" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Adds\u0020translations\u0020for\u0020a\u0020given\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_add" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AaddCatalogue\u0028\u0029", + "name": "addCatalogue", + "summary": "Merges\u0020translations\u0020from\u0020the\u0020given\u0020Catalogue\u0020into\u0020the\u0020current\u0020one.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_addCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AaddFallbackCatalogue\u0028\u0029", + "name": "addFallbackCatalogue", + "summary": "Merges\u0020translations\u0020from\u0020the\u0020given\u0020Catalogue\u0020into\u0020the\u0020current\u0020one\nonly\u0020when\u0020the\u0020translation\u0020does\u0020not\u0020exist.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_addFallbackCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AgetFallbackCatalogue\u0028\u0029", + "name": "getFallbackCatalogue", + "summary": "Gets\u0020the\u0020fallback\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_getFallbackCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AgetResources\u0028\u0029", + "name": "getResources", + "summary": "Returns\u0020an\u0020array\u0020of\u0020resources\u0020loaded\u0020to\u0020build\u0020this\u0020collection.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_getResources" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AaddResource\u0028\u0029", + "name": "addResource", + "summary": "Adds\u0020a\u0020resource\u0020for\u0020this\u0020collection.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_addResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AgetMetadata\u0028\u0029", + "name": "getMetadata", + "summary": "Gets\u0020metadata\u0020for\u0020the\u0020given\u0020domain\u0020and\u0020key.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_getMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AsetMetadata\u0028\u0029", + "name": "setMetadata", + "summary": "Adds\u0020metadata\u0020to\u0020a\u0020message\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_setMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AdeleteMetadata\u0028\u0029", + "name": "deleteMetadata", + "summary": "Deletes\u0020metadata\u0020for\u0020the\u0020given\u0020key\u0020and\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_deleteMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AgetCatalogueMetadata\u0028\u0029", + "name": "getCatalogueMetadata", + "summary": "Gets\u0020catalogue\u0020metadata\u0020for\u0020the\u0020given\u0020domain\u0020and\u0020key.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_getCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AsetCatalogueMetadata\u0028\u0029", + "name": "setCatalogueMetadata", + "summary": "Adds\u0020catalogue\u0020metadata\u0020to\u0020a\u0020message\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_setCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AdeleteCatalogueMetadata\u0028\u0029", + "name": "deleteCatalogueMetadata", + "summary": "Deletes\u0020catalogue\u0020metadata\u0020for\u0020the\u0020given\u0020key\u0020and\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_deleteCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AaddMetadata\u0028\u0029", + "name": "addMetadata", + "summary": "Adds\u0020current\u0020values\u0020with\u0020the\u0020new\u0020values.", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_addMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003AaddCatalogueMetadata\u0028\u0029", + "name": "addCatalogueMetadata", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#method_addCatalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024messages", + "name": "messages", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_messages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024metadata", + "name": "metadata", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_metadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024catalogueMetadata", + "name": "catalogueMetadata", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_catalogueMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024resources", + "name": "resources", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_resources" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024locale", + "name": "locale", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_locale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024fallbackCatalogue", + "name": "fallbackCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_fallbackCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogue\u003A\u003A\u0024parent", + "name": "parent", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogue.html#property_parent" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface", + "name": "MessageCatalogueInterface", + "summary": "MessageCatalogueInterface.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Gets\u0020the\u0020catalogue\u0020locale.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AgetDomains\u0028\u0029", + "name": "getDomains", + "summary": "Gets\u0020the\u0020domains.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_getDomains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Aall\u0028\u0029", + "name": "all", + "summary": "Gets\u0020the\u0020messages\u0020within\u0020a\u0020given\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_all" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Sets\u0020a\u0020message\u0020translation.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_set" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Checks\u0020if\u0020a\u0020message\u0020has\u0020a\u0020translation.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Adefines\u0028\u0029", + "name": "defines", + "summary": "Checks\u0020if\u0020a\u0020message\u0020has\u0020a\u0020translation\u0020\u0028it\u0020does\u0020not\u0020take\u0020into\u0020account\u0020the\u0020fallback\u0020mechanism\u0029.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_defines" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Gets\u0020a\u0020message\u0020translation.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Areplace\u0028\u0029", + "name": "replace", + "summary": "Sets\u0020translations\u0020for\u0020a\u0020given\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_replace" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003Aadd\u0028\u0029", + "name": "add", + "summary": "Adds\u0020translations\u0020for\u0020a\u0020given\u0020domain.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_add" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AaddCatalogue\u0028\u0029", + "name": "addCatalogue", + "summary": "Merges\u0020translations\u0020from\u0020the\u0020given\u0020Catalogue\u0020into\u0020the\u0020current\u0020one.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_addCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AaddFallbackCatalogue\u0028\u0029", + "name": "addFallbackCatalogue", + "summary": "Merges\u0020translations\u0020from\u0020the\u0020given\u0020Catalogue\u0020into\u0020the\u0020current\u0020one\nonly\u0020when\u0020the\u0020translation\u0020does\u0020not\u0020exist.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_addFallbackCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AgetFallbackCatalogue\u0028\u0029", + "name": "getFallbackCatalogue", + "summary": "Gets\u0020the\u0020fallback\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_getFallbackCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AgetResources\u0028\u0029", + "name": "getResources", + "summary": "Returns\u0020an\u0020array\u0020of\u0020resources\u0020loaded\u0020to\u0020build\u0020this\u0020collection.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_getResources" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AaddResource\u0028\u0029", + "name": "addResource", + "summary": "Adds\u0020a\u0020resource\u0020for\u0020this\u0020collection.", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#method_addResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MessageCatalogueInterface\u003A\u003AINTL_DOMAIN_SUFFIX", + "name": "INTL_DOMAIN_SUFFIX", + "summary": "", + "url": "classes/Symfony-Component-Translation-MessageCatalogueInterface.html#constant_INTL_DOMAIN_SUFFIX" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MetadataAwareInterface", + "name": "MetadataAwareInterface", + "summary": "This\u0020interface\u0020is\u0020used\u0020to\u0020get,\u0020set,\u0020and\u0020delete\u0020metadata\u0020about\u0020the\u0020translation\u0020messages.", + "url": "classes/Symfony-Component-Translation-MetadataAwareInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MetadataAwareInterface\u003A\u003AgetMetadata\u0028\u0029", + "name": "getMetadata", + "summary": "Gets\u0020metadata\u0020for\u0020the\u0020given\u0020domain\u0020and\u0020key.", + "url": "classes/Symfony-Component-Translation-MetadataAwareInterface.html#method_getMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MetadataAwareInterface\u003A\u003AsetMetadata\u0028\u0029", + "name": "setMetadata", + "summary": "Adds\u0020metadata\u0020to\u0020a\u0020message\u0020domain.", + "url": "classes/Symfony-Component-Translation-MetadataAwareInterface.html#method_setMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\MetadataAwareInterface\u003A\u003AdeleteMetadata\u0028\u0029", + "name": "deleteMetadata", + "summary": "Deletes\u0020metadata\u0020for\u0020the\u0020given\u0020key\u0020and\u0020domain.", + "url": "classes/Symfony-Component-Translation-MetadataAwareInterface.html#method_deleteMetadata" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory", + "name": "AbstractProviderFactory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-AbstractProviderFactory.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory\u003A\u003Asupports\u0028\u0029", + "name": "supports", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-AbstractProviderFactory.html#method_supports" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory\u003A\u003AgetSupportedSchemes\u0028\u0029", + "name": "getSupportedSchemes", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-AbstractProviderFactory.html#method_getSupportedSchemes" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory\u003A\u003AgetUser\u0028\u0029", + "name": "getUser", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-AbstractProviderFactory.html#method_getUser" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory\u003A\u003AgetPassword\u0028\u0029", + "name": "getPassword", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-AbstractProviderFactory.html#method_getPassword" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn", + "name": "Dsn", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetScheme\u0028\u0029", + "name": "getScheme", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getScheme" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetHost\u0028\u0029", + "name": "getHost", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getHost" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetUser\u0028\u0029", + "name": "getUser", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getUser" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetPassword\u0028\u0029", + "name": "getPassword", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getPassword" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetPort\u0028\u0029", + "name": "getPort", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getPort" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetOption\u0028\u0029", + "name": "getOption", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getOption" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetRequiredOption\u0028\u0029", + "name": "getRequiredOption", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getRequiredOption" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetOptions\u0028\u0029", + "name": "getOptions", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getOptions" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetPath\u0028\u0029", + "name": "getPath", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getPath" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003AgetOriginalDsn\u0028\u0029", + "name": "getOriginalDsn", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#method_getOriginalDsn" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024scheme", + "name": "scheme", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_scheme" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024host", + "name": "host", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_host" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024user", + "name": "user", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_user" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024password", + "name": "password", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_password" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024port", + "name": "port", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_port" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024path", + "name": "path", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_path" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024options", + "name": "options", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_options" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\Dsn\u003A\u003A\u0024originalDsn", + "name": "originalDsn", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-Dsn.html#property_originalDsn" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider", + "name": "FilteringProvider", + "summary": "Filters\u0020domains\u0020and\u0020locales\u0020between\u0020the\u0020Translator\u0020config\u0020values\u0020and\u0020those\u0020specific\u0020to\u0020each\u0020provider.", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Translations\u0020available\u0020in\u0020the\u0020TranslatorBag\u0020only\u0020must\u0020be\u0020created.", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#method_read" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#method_delete" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003AgetDomains\u0028\u0029", + "name": "getDomains", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#method_getDomains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003A\u0024provider", + "name": "provider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#property_provider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003A\u0024locales", + "name": "locales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#property_locales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\FilteringProvider\u003A\u003A\u0024domains", + "name": "domains", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-FilteringProvider.html#property_domains" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProvider", + "name": "NullProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProvider.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProvider\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProvider.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProvider\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Translations\u0020available\u0020in\u0020the\u0020TranslatorBag\u0020only\u0020must\u0020be\u0020created.", + "url": "classes/Symfony-Component-Translation-Provider-NullProvider.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProvider\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProvider.html#method_read" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProvider\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProvider.html#method_delete" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProviderFactory", + "name": "NullProviderFactory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProviderFactory.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProviderFactory\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProviderFactory.html#method_create" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\NullProviderFactory\u003A\u003AgetSupportedSchemes\u0028\u0029", + "name": "getSupportedSchemes", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-NullProviderFactory.html#method_getSupportedSchemes" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderFactoryInterface", + "name": "ProviderFactoryInterface", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-ProviderFactoryInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderFactoryInterface\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-ProviderFactoryInterface.html#method_create" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderFactoryInterface\u003A\u003Asupports\u0028\u0029", + "name": "supports", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-ProviderFactoryInterface.html#method_supports" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderInterface", + "name": "ProviderInterface", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-ProviderInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderInterface\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Translations\u0020available\u0020in\u0020the\u0020TranslatorBag\u0020only\u0020must\u0020be\u0020created.", + "url": "classes/Symfony-Component-Translation-Provider-ProviderInterface.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderInterface\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-ProviderInterface.html#method_read" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\ProviderInterface\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-ProviderInterface.html#method_delete" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection", + "name": "TranslationProviderCollection", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html#method_has" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html#method_get" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection\u003A\u003Akeys\u0028\u0029", + "name": "keys", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html#method_keys" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection\u003A\u003A\u0024providers", + "name": "providers", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollection.html#property_providers" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory", + "name": "TranslationProviderCollectionFactory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollectionFactory.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollectionFactory.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory\u003A\u003AfromConfig\u0028\u0029", + "name": "fromConfig", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollectionFactory.html#method_fromConfig" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory\u003A\u003AfromDsnObject\u0028\u0029", + "name": "fromDsnObject", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollectionFactory.html#method_fromDsnObject" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory\u003A\u003A\u0024factories", + "name": "factories", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollectionFactory.html#property_factories" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory\u003A\u003A\u0024enabledLocales", + "name": "enabledLocales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Provider-TranslationProviderCollectionFactory.html#property_enabledLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator", + "name": "PseudoLocalizationTranslator", + "summary": "This\u0020translator\u0020should\u0020only\u0020be\u0020used\u0020in\u0020a\u0020development\u0020environment.", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Available\u0020options\u003A\n\u0020\u002A\u0020accents\u003A\n\u0020\u0020\u0020\u0020\u0020type\u003A\u0020boolean\n\u0020\u0020\u0020\u0020\u0020default\u003A\u0020true\n\u0020\u0020\u0020\u0020\u0020description\u003A\u0020replace\u0020ASCII\u0020characters\u0020of\u0020the\u0020translated\u0020string\u0020with\u0020accented\u0020versions\u0020or\u0020similar\u0020characters\n\u0020\u0020\u0020\u0020\u0020example\u003A\u0020if\u0020true,\u0020\u0022foo\u0022\u0020\u003D\u003E\u0020\u0022\u0192\u00F6\u00F6\u0022.", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "Translates\u0020the\u0020given\u0020message.", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_trans" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020default\u0020locale.", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003AgetParts\u0028\u0029", + "name": "getParts", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_getParts" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003AparseNode\u0028\u0029", + "name": "parseNode", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_parseNode" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003AaddAccents\u0028\u0029", + "name": "addAccents", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_addAccents" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003Aexpand\u0028\u0029", + "name": "expand", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_expand" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003AaddBrackets\u0028\u0029", + "name": "addBrackets", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_addBrackets" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003Astrlen\u0028\u0029", + "name": "strlen", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#method_strlen" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003AEXPANSION_CHARACTER", + "name": "EXPANSION_CHARACTER", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#constant_EXPANSION_CHARACTER" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A\u0024translator", + "name": "translator", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#property_translator" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A\u0024accents", + "name": "accents", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#property_accents" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A\u0024expansionFactor", + "name": "expansionFactor", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#property_expansionFactor" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A\u0024brackets", + "name": "brackets", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#property_brackets" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A\u0024parseHTML", + "name": "parseHTML", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#property_parseHTML" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator\u003A\u003A\u0024localizableHTMLAttributes", + "name": "localizableHTMLAttributes", + "summary": "", + "url": "classes/Symfony-Component-Translation-PseudoLocalizationTranslator.html#property_localizableHTMLAttributes" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader\\TranslationReader", + "name": "TranslationReader", + "summary": "TranslationReader\u0020reads\u0020translation\u0020messages\u0020from\u0020translation\u0020files.", + "url": "classes/Symfony-Component-Translation-Reader-TranslationReader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader\\TranslationReader\u003A\u003AaddLoader\u0028\u0029", + "name": "addLoader", + "summary": "Adds\u0020a\u0020loader\u0020to\u0020the\u0020translation\u0020extractor.", + "url": "classes/Symfony-Component-Translation-Reader-TranslationReader.html#method_addLoader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader\\TranslationReader\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Reads\u0020translation\u0020messages\u0020from\u0020a\u0020directory\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Reader-TranslationReader.html#method_read" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader\\TranslationReader\u003A\u003A\u0024loaders", + "name": "loaders", + "summary": "Loaders\u0020used\u0020for\u0020import.", + "url": "classes/Symfony-Component-Translation-Reader-TranslationReader.html#property_loaders" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface", + "name": "TranslationReaderInterface", + "summary": "TranslationReader\u0020reads\u0020translation\u0020messages\u0020from\u0020translation\u0020files.", + "url": "classes/Symfony-Component-Translation-Reader-TranslationReaderInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Reads\u0020translation\u0020messages\u0020from\u0020a\u0020directory\u0020to\u0020the\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Reader-TranslationReaderInterface.html#method_read" + }, { + "fqsen": "\\findTranslationFiles\u0028\u0029", + "name": "findTranslationFiles", + "summary": "", + "url": "namespaces/default.html#function_findTranslationFiles" + }, { + "fqsen": "\\calculateTranslationStatus\u0028\u0029", + "name": "calculateTranslationStatus", + "summary": "", + "url": "namespaces/default.html#function_calculateTranslationStatus" + }, { + "fqsen": "\\isTranslationCompleted\u0028\u0029", + "name": "isTranslationCompleted", + "summary": "", + "url": "namespaces/default.html#function_isTranslationCompleted" + }, { + "fqsen": "\\printTranslationStatus\u0028\u0029", + "name": "printTranslationStatus", + "summary": "", + "url": "namespaces/default.html#function_printTranslationStatus" + }, { + "fqsen": "\\extractLocaleFromFilePath\u0028\u0029", + "name": "extractLocaleFromFilePath", + "summary": "", + "url": "namespaces/default.html#function_extractLocaleFromFilePath" + }, { + "fqsen": "\\extractTranslationKeys\u0028\u0029", + "name": "extractTranslationKeys", + "summary": "", + "url": "namespaces/default.html#function_extractTranslationKeys" + }, { + "fqsen": "\\findTransUnitMismatches\u0028\u0029", + "name": "findTransUnitMismatches", + "summary": "Check\u0020whether\u0020the\u0020trans\u002Dunit\u0020id\u0020and\u0020source\u0020match\u0020with\u0020the\u0020base\u0020translation.", + "url": "namespaces/default.html#function_findTransUnitMismatches" + }, { + "fqsen": "\\printTitle\u0028\u0029", + "name": "printTitle", + "summary": "", + "url": "namespaces/default.html#function_printTitle" + }, { + "fqsen": "\\printTable\u0028\u0029", + "name": "printTable", + "summary": "", + "url": "namespaces/default.html#function_printTable" + }, { + "fqsen": "\\textColorGreen\u0028\u0029", + "name": "textColorGreen", + "summary": "", + "url": "namespaces/default.html#function_textColorGreen" + }, { + "fqsen": "\\textColorRed\u0028\u0029", + "name": "textColorRed", + "summary": "", + "url": "namespaces/default.html#function_textColorRed" + }, { + "fqsen": "\\textColorNormal\u0028\u0029", + "name": "textColorNormal", + "summary": "", + "url": "namespaces/default.html#function_textColorNormal" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\t\u0028\u0029", + "name": "t", + "summary": "", + "url": "namespaces/symfony-component-translation.html#function_t" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase", + "name": "ProviderFactoryTestCase", + "summary": "A\u0020test\u0020case\u0020to\u0020ease\u0020testing\u0020a\u0020translation\u0020provider\u0020factory.", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AcreateFactory\u0028\u0029", + "name": "createFactory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_createFactory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AsupportsProvider\u0028\u0029", + "name": "supportsProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_supportsProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AcreateProvider\u0028\u0029", + "name": "createProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_createProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AunsupportedSchemeProvider\u0028\u0029", + "name": "unsupportedSchemeProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_unsupportedSchemeProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AincompleteDsnProvider\u0028\u0029", + "name": "incompleteDsnProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_incompleteDsnProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AtestSupports\u0028\u0029", + "name": "testSupports", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_testSupports" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AtestCreate\u0028\u0029", + "name": "testCreate", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_testCreate" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AtestUnsupportedSchemeException\u0028\u0029", + "name": "testUnsupportedSchemeException", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_testUnsupportedSchemeException" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AtestIncompleteDsnException\u0028\u0029", + "name": "testIncompleteDsnException", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_testIncompleteDsnException" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AgetClient\u0028\u0029", + "name": "getClient", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_getClient" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AgetLogger\u0028\u0029", + "name": "getLogger", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_getLogger" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AgetDefaultLocale\u0028\u0029", + "name": "getDefaultLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_getDefaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AgetLoader\u0028\u0029", + "name": "getLoader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_getLoader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AgetXliffFileDumper\u0028\u0029", + "name": "getXliffFileDumper", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_getXliffFileDumper" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003AgetTranslatorBag\u0028\u0029", + "name": "getTranslatorBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#method_getTranslatorBag" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003A\u0024client", + "name": "client", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#property_client" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#property_logger" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003A\u0024defaultLocale", + "name": "defaultLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#property_defaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003A\u0024loader", + "name": "loader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#property_loader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003A\u0024xliffFileDumper", + "name": "xliffFileDumper", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#property_xliffFileDumper" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase\u003A\u003A\u0024translatorBag", + "name": "translatorBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderFactoryTestCase.html#property_translatorBag" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase", + "name": "ProviderTestCase", + "summary": "A\u0020test\u0020case\u0020to\u0020ease\u0020testing\u0020a\u0020translation\u0020provider.", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AcreateProvider\u0028\u0029", + "name": "createProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_createProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AtoStringProvider\u0028\u0029", + "name": "toStringProvider", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_toStringProvider" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AtestToString\u0028\u0029", + "name": "testToString", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_testToString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AgetClient\u0028\u0029", + "name": "getClient", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_getClient" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AgetLoader\u0028\u0029", + "name": "getLoader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_getLoader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AgetLogger\u0028\u0029", + "name": "getLogger", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_getLogger" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AgetDefaultLocale\u0028\u0029", + "name": "getDefaultLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_getDefaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AgetXliffFileDumper\u0028\u0029", + "name": "getXliffFileDumper", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_getXliffFileDumper" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003AgetTranslatorBag\u0028\u0029", + "name": "getTranslatorBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#method_getTranslatorBag" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003A\u0024client", + "name": "client", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#property_client" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#property_logger" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003A\u0024defaultLocale", + "name": "defaultLocale", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#property_defaultLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003A\u0024loader", + "name": "loader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#property_loader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003A\u0024xliffFileDumper", + "name": "xliffFileDumper", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#property_xliffFileDumper" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test\\ProviderTestCase\u003A\u003A\u0024translatorBag", + "name": "translatorBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-Test-ProviderTestCase.html#property_translatorBag" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage", + "name": "TranslatableMessage", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003AgetMessage\u0028\u0029", + "name": "getMessage", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#method_getMessage" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#method_getParameters" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003AgetDomain\u0028\u0029", + "name": "getDomain", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#method_getDomain" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#method_trans" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003A\u0024message", + "name": "message", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#property_message" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003A\u0024parameters", + "name": "parameters", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#property_parameters" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatableMessage\u003A\u003A\u0024domain", + "name": "domain", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatableMessage.html#property_domain" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator", + "name": "Translator", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AsetConfigCacheFactory\u0028\u0029", + "name": "setConfigCacheFactory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_setConfigCacheFactory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AaddLoader\u0028\u0029", + "name": "addLoader", + "summary": "Adds\u0020a\u0020Loader.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_addLoader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AaddResource\u0028\u0029", + "name": "addResource", + "summary": "Adds\u0020a\u0020Resource.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_addResource" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Sets\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020default\u0020locale.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AsetFallbackLocales\u0028\u0029", + "name": "setFallbackLocales", + "summary": "Sets\u0020the\u0020fallback\u0020locales.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_setFallbackLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "Translates\u0020the\u0020given\u0020message.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_trans" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetCatalogue\u0028\u0029", + "name": "getCatalogue", + "summary": "Gets\u0020the\u0020catalogue\u0020by\u0020locale.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetCatalogues\u0028\u0029", + "name": "getCatalogues", + "summary": "Returns\u0020all\u0020catalogues\u0020of\u0020the\u0020instance.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getCatalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetLoaders\u0028\u0029", + "name": "getLoaders", + "summary": "Gets\u0020the\u0020loaders.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getLoaders" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AloadCatalogue\u0028\u0029", + "name": "loadCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_loadCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AinitializeCatalogue\u0028\u0029", + "name": "initializeCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_initializeCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AinitializeCacheCatalogue\u0028\u0029", + "name": "initializeCacheCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_initializeCacheCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AdumpCatalogue\u0028\u0029", + "name": "dumpCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_dumpCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetFallbackContent\u0028\u0029", + "name": "getFallbackContent", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getFallbackContent" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetCatalogueCachePath\u0028\u0029", + "name": "getCatalogueCachePath", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getCatalogueCachePath" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AloadFallbackCatalogues\u0028\u0029", + "name": "loadFallbackCatalogues", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_loadFallbackCatalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AcomputeFallbackLocales\u0028\u0029", + "name": "computeFallbackLocales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_computeFallbackLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AassertValidLocale\u0028\u0029", + "name": "assertValidLocale", + "summary": "Asserts\u0020that\u0020the\u0020locale\u0020is\u0020valid,\u0020throws\u0020an\u0020Exception\u0020if\u0020not.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_assertValidLocale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetConfigCacheFactory\u0028\u0029", + "name": "getConfigCacheFactory", + "summary": "Provides\u0020the\u0020ConfigCache\u0020factory\u0020implementation,\u0020falling\u0020back\u0020to\u0020a\ndefault\u0020implementation\u0020if\u0020necessary.", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getConfigCacheFactory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003AgetAllMessages\u0028\u0029", + "name": "getAllMessages", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#method_getAllMessages" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024catalogues", + "name": "catalogues", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_catalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024locale", + "name": "locale", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_locale" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024fallbackLocales", + "name": "fallbackLocales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_fallbackLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024loaders", + "name": "loaders", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_loaders" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024resources", + "name": "resources", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_resources" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024formatter", + "name": "formatter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_formatter" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024cacheDir", + "name": "cacheDir", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_cacheDir" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024debug", + "name": "debug", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_debug" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024cacheVary", + "name": "cacheVary", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_cacheVary" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024configCacheFactory", + "name": "configCacheFactory", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_configCacheFactory" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024parentLocales", + "name": "parentLocales", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_parentLocales" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Translator\u003A\u003A\u0024hasIntlFormatter", + "name": "hasIntlFormatter", + "summary": "", + "url": "classes/Symfony-Component-Translation-Translator.html#property_hasIntlFormatter" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag", + "name": "TranslatorBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003AaddCatalogue\u0028\u0029", + "name": "addCatalogue", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#method_addCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003AaddBag\u0028\u0029", + "name": "addBag", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#method_addBag" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003AgetCatalogue\u0028\u0029", + "name": "getCatalogue", + "summary": "Gets\u0020the\u0020catalogue\u0020by\u0020locale.", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#method_getCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003AgetCatalogues\u0028\u0029", + "name": "getCatalogues", + "summary": "Returns\u0020all\u0020catalogues\u0020of\u0020the\u0020instance.", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#method_getCatalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003Adiff\u0028\u0029", + "name": "diff", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#method_diff" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003Aintersect\u0028\u0029", + "name": "intersect", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#method_intersect" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBag\u003A\u003A\u0024catalogues", + "name": "catalogues", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBag.html#property_catalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBagInterface", + "name": "TranslatorBagInterface", + "summary": "", + "url": "classes/Symfony-Component-Translation-TranslatorBagInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBagInterface\u003A\u003AgetCatalogue\u0028\u0029", + "name": "getCatalogue", + "summary": "Gets\u0020the\u0020catalogue\u0020by\u0020locale.", + "url": "classes/Symfony-Component-Translation-TranslatorBagInterface.html#method_getCatalogue" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\TranslatorBagInterface\u003A\u003AgetCatalogues\u0028\u0029", + "name": "getCatalogues", + "summary": "Returns\u0020all\u0020catalogues\u0020of\u0020the\u0020instance.", + "url": "classes/Symfony-Component-Translation-TranslatorBagInterface.html#method_getCatalogues" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\ArrayConverter", + "name": "ArrayConverter", + "summary": "ArrayConverter\u0020generates\u0020tree\u0020like\u0020structure\u0020from\u0020a\u0020message\u0020catalogue.", + "url": "classes/Symfony-Component-Translation-Util-ArrayConverter.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\ArrayConverter\u003A\u003AexpandToTree\u0028\u0029", + "name": "expandToTree", + "summary": "Converts\u0020linear\u0020messages\u0020array\u0020to\u0020tree\u002Dlike\u0020array.", + "url": "classes/Symfony-Component-Translation-Util-ArrayConverter.html#method_expandToTree" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\ArrayConverter\u003A\u003AgetElementByPath\u0028\u0029", + "name": "getElementByPath", + "summary": "", + "url": "classes/Symfony-Component-Translation-Util-ArrayConverter.html#method_getElementByPath" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\ArrayConverter\u003A\u003AcancelExpand\u0028\u0029", + "name": "cancelExpand", + "summary": "", + "url": "classes/Symfony-Component-Translation-Util-ArrayConverter.html#method_cancelExpand" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\ArrayConverter\u003A\u003AgetKeyParts\u0028\u0029", + "name": "getKeyParts", + "summary": "", + "url": "classes/Symfony-Component-Translation-Util-ArrayConverter.html#method_getKeyParts" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils", + "name": "XliffUtils", + "summary": "Provides\u0020some\u0020utility\u0020methods\u0020for\u0020XLIFF\u0020translation\u0020files,\u0020such\u0020as\u0020validating\ntheir\u0020contents\u0020according\u0020to\u0020the\u0020XSD\u0020schema.", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AgetVersionNumber\u0028\u0029", + "name": "getVersionNumber", + "summary": "Gets\u0020xliff\u0020file\u0020version\u0020based\u0020on\u0020the\u0020root\u0020\u0022version\u0022\u0020attribute.", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_getVersionNumber" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AvalidateSchema\u0028\u0029", + "name": "validateSchema", + "summary": "Validates\u0020and\u0020parses\u0020the\u0020given\u0020file\u0020into\u0020a\u0020DOMDocument.", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_validateSchema" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AshouldEnableEntityLoader\u0028\u0029", + "name": "shouldEnableEntityLoader", + "summary": "", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_shouldEnableEntityLoader" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AgetErrorsAsString\u0028\u0029", + "name": "getErrorsAsString", + "summary": "", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_getErrorsAsString" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AgetSchema\u0028\u0029", + "name": "getSchema", + "summary": "", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_getSchema" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AfixXmlLocation\u0028\u0029", + "name": "fixXmlLocation", + "summary": "Internally\u0020changes\u0020the\u0020URI\u0020of\u0020a\u0020dependent\u0020xsd\u0020to\u0020be\u0020loaded\u0020locally.", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_fixXmlLocation" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util\\XliffUtils\u003A\u003AgetXmlErrors\u0028\u0029", + "name": "getXmlErrors", + "summary": "Returns\u0020the\u0020XML\u0020errors\u0020of\u0020the\u0020internal\u0020XML\u0020parser.", + "url": "classes/Symfony-Component-Translation-Util-XliffUtils.html#method_getXmlErrors" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriter", + "name": "TranslationWriter", + "summary": "TranslationWriter\u0020writes\u0020translation\u0020messages.", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriter.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriter\u003A\u003AaddDumper\u0028\u0029", + "name": "addDumper", + "summary": "Adds\u0020a\u0020dumper\u0020to\u0020the\u0020writer.", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriter.html#method_addDumper" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriter\u003A\u003AgetFormats\u0028\u0029", + "name": "getFormats", + "summary": "Obtains\u0020the\u0020list\u0020of\u0020supported\u0020formats.", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriter.html#method_getFormats" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020translation\u0020from\u0020the\u0020catalogue\u0020according\u0020to\u0020the\u0020selected\u0020format.", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriter.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriter\u003A\u003A\u0024dumpers", + "name": "dumpers", + "summary": "", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriter.html#property_dumpers" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface", + "name": "TranslationWriterInterface", + "summary": "TranslationWriter\u0020writes\u0020translation\u0020messages.", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriterInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Writes\u0020translation\u0020from\u0020the\u0020catalogue\u0020according\u0020to\u0020the\u0020selected\u0020format.", + "url": "classes/Symfony-Component-Translation-Writer-TranslationWriterInterface.html#method_write" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\LocaleAwareInterface", + "name": "LocaleAwareInterface", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-LocaleAwareInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\LocaleAwareInterface\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "Sets\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Contracts-Translation-LocaleAwareInterface.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\LocaleAwareInterface\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020current\u0020locale.", + "url": "classes/Symfony-Contracts-Translation-LocaleAwareInterface.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest", + "name": "TranslatorTest", + "summary": "Test\u0020should\u0020cover\u0020all\u0020languages\u0020mentioned\u0020on\u0020http\u003A\/\/translate.sourceforge.net\/wiki\/l10n\/pluralforms\nand\u0020Plural\u0020forms\u0020mentioned\u0020on\u0020http\u003A\/\/www.gnu.org\/software\/gettext\/manual\/gettext.html\u0023Plural\u002Dforms.", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AsetUp\u0028\u0029", + "name": "setUp", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_setUp" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtearDown\u0028\u0029", + "name": "tearDown", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_tearDown" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgetTranslator\u0028\u0029", + "name": "getTranslator", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_getTranslator" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestTrans\u0028\u0029", + "name": "testTrans", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testTrans" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestTransChoiceWithExplicitLocale\u0028\u0029", + "name": "testTransChoiceWithExplicitLocale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testTransChoiceWithExplicitLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestTransChoiceWithDefaultLocale\u0028\u0029", + "name": "testTransChoiceWithDefaultLocale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testTransChoiceWithDefaultLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestTransChoiceWithEnUsPosix\u0028\u0029", + "name": "testTransChoiceWithEnUsPosix", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testTransChoiceWithEnUsPosix" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestGetSetLocale\u0028\u0029", + "name": "testGetSetLocale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testGetSetLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestGetLocaleReturnsDefaultLocaleIfNotSet\u0028\u0029", + "name": "testGetLocaleReturnsDefaultLocaleIfNotSet", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testGetLocaleReturnsDefaultLocaleIfNotSet" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgetTransTests\u0028\u0029", + "name": "getTransTests", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_getTransTests" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgetTransChoiceTests\u0028\u0029", + "name": "getTransChoiceTests", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_getTransChoiceTests" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestInterval\u0028\u0029", + "name": "testInterval", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testInterval" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgetInterval\u0028\u0029", + "name": "getInterval", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_getInterval" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestChoose\u0028\u0029", + "name": "testChoose", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testChoose" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestReturnMessageIfExactlyOneStandardRuleIsGiven\u0028\u0029", + "name": "testReturnMessageIfExactlyOneStandardRuleIsGiven", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testReturnMessageIfExactlyOneStandardRuleIsGiven" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestThrowExceptionIfMatchingMessageCannotBeFound\u0028\u0029", + "name": "testThrowExceptionIfMatchingMessageCannotBeFound", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testThrowExceptionIfMatchingMessageCannotBeFound" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgetNonMatchingMessages\u0028\u0029", + "name": "getNonMatchingMessages", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_getNonMatchingMessages" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgetChooseTests\u0028\u0029", + "name": "getChooseTests", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_getChooseTests" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestFailedLangcodes\u0028\u0029", + "name": "testFailedLangcodes", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testFailedLangcodes" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AtestLangcodes\u0028\u0029", + "name": "testLangcodes", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_testLangcodes" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AsuccessLangcodes\u0028\u0029", + "name": "successLangcodes", + "summary": "This\u0020array\u0020should\u0020contain\u0020all\u0020currently\u0020known\u0020langcodes.", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_successLangcodes" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AfailingLangcodes\u0028\u0029", + "name": "failingLangcodes", + "summary": "This\u0020array\u0020should\u0020be\u0020at\u0020least\u0020empty\u0020within\u0020the\u0020near\u0020future.", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_failingLangcodes" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AvalidateMatrix\u0028\u0029", + "name": "validateMatrix", + "summary": "We\u0020validate\u0020only\u0020on\u0020the\u0020plural\u0020coverage.\u0020Thus\u0020the\u0020real\u0020rules\u0020is\u0020not\u0020tested.", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_validateMatrix" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003AgenerateTestData\u0028\u0029", + "name": "generateTestData", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#method_generateTestData" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest\u003A\u003A\u0024defaultLocale", + "name": "defaultLocale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-Test-TranslatorTest.html#property_defaultLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatableInterface", + "name": "TranslatableInterface", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatableInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatableInterface\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatableInterface.html#method_trans" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorInterface", + "name": "TranslatorInterface", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatorInterface.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorInterface\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "Translates\u0020the\u0020given\u0020message.", + "url": "classes/Symfony-Contracts-Translation-TranslatorInterface.html#method_trans" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorInterface\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "Returns\u0020the\u0020default\u0020locale.", + "url": "classes/Symfony-Contracts-Translation-TranslatorInterface.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorTrait", + "name": "TranslatorTrait", + "summary": "A\u0020trait\u0020to\u0020help\u0020implement\u0020TranslatorInterface\u0020and\u0020LocaleAwareInterface.", + "url": "classes/Symfony-Contracts-Translation-TranslatorTrait.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorTrait\u003A\u003AsetLocale\u0028\u0029", + "name": "setLocale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatorTrait.html#method_setLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorTrait\u003A\u003AgetLocale\u0028\u0029", + "name": "getLocale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatorTrait.html#method_getLocale" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorTrait\u003A\u003Atrans\u0028\u0029", + "name": "trans", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatorTrait.html#method_trans" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorTrait\u003A\u003AgetPluralizationRule\u0028\u0029", + "name": "getPluralizationRule", + "summary": "Returns\u0020the\u0020plural\u0020position\u0020to\u0020use\u0020for\u0020the\u0020given\u0020locale\u0020and\u0020number.", + "url": "classes/Symfony-Contracts-Translation-TranslatorTrait.html#method_getPluralizationRule" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\TranslatorTrait\u003A\u003A\u0024locale", + "name": "locale", + "summary": "", + "url": "classes/Symfony-Contracts-Translation-TranslatorTrait.html#property_locale" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster", + "name": "AmqpCaster", + "summary": "Casts\u0020Amqp\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AcastConnection\u0028\u0029", + "name": "castConnection", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#method_castConnection" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AcastChannel\u0028\u0029", + "name": "castChannel", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#method_castChannel" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AcastQueue\u0028\u0029", + "name": "castQueue", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#method_castQueue" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AcastExchange\u0028\u0029", + "name": "castExchange", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#method_castExchange" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AcastEnvelope\u0028\u0029", + "name": "castEnvelope", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#method_castEnvelope" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AextractFlags\u0028\u0029", + "name": "extractFlags", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#method_extractFlags" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AFLAGS", + "name": "FLAGS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#constant_FLAGS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\AmqpCaster\u003A\u003AEXCHANGE_TYPES", + "name": "EXCHANGE_TYPES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-AmqpCaster.html#constant_EXCHANGE_TYPES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ArgsStub", + "name": "ArgsStub", + "summary": "Represents\u0020a\u0020list\u0020of\u0020function\u0020arguments.", + "url": "classes/Symfony-Component-VarDumper-Caster-ArgsStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ArgsStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ArgsStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ArgsStub\u003A\u003AgetParameters\u0028\u0029", + "name": "getParameters", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ArgsStub.html#method_getParameters" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ArgsStub\u003A\u003A\u0024parameters", + "name": "parameters", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ArgsStub.html#property_parameters" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster", + "name": "Caster", + "summary": "Helper\u0020for\u0020filtering\u0020out\u0020properties\u0020in\u0020casters.", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AcastObject\u0028\u0029", + "name": "castObject", + "summary": "Casts\u0020objects\u0020to\u0020arrays\u0020and\u0020adds\u0020the\u0020dynamic\u0020property\u0020prefix.", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#method_castObject" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003Afilter\u0028\u0029", + "name": "filter", + "summary": "Filters\u0020out\u0020the\u0020specified\u0020properties.", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#method_filter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AcastPhpIncompleteClass\u0028\u0029", + "name": "castPhpIncompleteClass", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#method_castPhpIncompleteClass" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AgetClassProperties\u0028\u0029", + "name": "getClassProperties", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#method_getClassProperties" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_VERBOSE", + "name": "EXCLUDE_VERBOSE", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_VERBOSE" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_VIRTUAL", + "name": "EXCLUDE_VIRTUAL", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_VIRTUAL" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_DYNAMIC", + "name": "EXCLUDE_DYNAMIC", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_DYNAMIC" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_PUBLIC", + "name": "EXCLUDE_PUBLIC", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_PUBLIC" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_PROTECTED", + "name": "EXCLUDE_PROTECTED", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_PROTECTED" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_PRIVATE", + "name": "EXCLUDE_PRIVATE", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_PRIVATE" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_NULL", + "name": "EXCLUDE_NULL", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_NULL" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_EMPTY", + "name": "EXCLUDE_EMPTY", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_EMPTY" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_NOT_IMPORTANT", + "name": "EXCLUDE_NOT_IMPORTANT", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_NOT_IMPORTANT" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_STRICT", + "name": "EXCLUDE_STRICT", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_STRICT" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003AEXCLUDE_UNINITIALIZED", + "name": "EXCLUDE_UNINITIALIZED", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_EXCLUDE_UNINITIALIZED" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003APREFIX_VIRTUAL", + "name": "PREFIX_VIRTUAL", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_PREFIX_VIRTUAL" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003APREFIX_DYNAMIC", + "name": "PREFIX_DYNAMIC", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_PREFIX_DYNAMIC" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003APREFIX_PROTECTED", + "name": "PREFIX_PROTECTED", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_PREFIX_PROTECTED" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003APATTERN_PRIVATE", + "name": "PATTERN_PRIVATE", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#constant_PATTERN_PRIVATE" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\Caster\u003A\u003A\u0024classProperties", + "name": "classProperties", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-Caster.html#property_classProperties" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ClassStub", + "name": "ClassStub", + "summary": "Represents\u0020a\u0020PHP\u0020class\u0020identifier.", + "url": "classes/Symfony-Component-VarDumper-Caster-ClassStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ClassStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ClassStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ClassStub\u003A\u003AwrapCallable\u0028\u0029", + "name": "wrapCallable", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ClassStub.html#method_wrapCallable" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ConstStub", + "name": "ConstStub", + "summary": "Represents\u0020a\u0020PHP\u0020constant\u0020and\u0020its\u0020value.", + "url": "classes/Symfony-Component-VarDumper-Caster-ConstStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ConstStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ConstStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ConstStub\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ConstStub.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\CutArrayStub", + "name": "CutArrayStub", + "summary": "Represents\u0020a\u0020cut\u0020array.", + "url": "classes/Symfony-Component-VarDumper-Caster-CutArrayStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\CutArrayStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-CutArrayStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\CutArrayStub\u003A\u003A\u0024preservedSubset", + "name": "preservedSubset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-CutArrayStub.html#property_preservedSubset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\CutStub", + "name": "CutStub", + "summary": "Represents\u0020the\u0020main\u0020properties\u0020of\u0020a\u0020PHP\u0020variable,\u0020pre\u002Dcasted\u0020by\u0020a\u0020caster.", + "url": "classes/Symfony-Component-VarDumper-Caster-CutStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\CutStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-CutStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster", + "name": "DateCaster", + "summary": "Casts\u0020DateTimeInterface\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AcastDateTime\u0028\u0029", + "name": "castDateTime", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_castDateTime" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AcastInterval\u0028\u0029", + "name": "castInterval", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_castInterval" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AformatInterval\u0028\u0029", + "name": "formatInterval", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_formatInterval" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AcastTimeZone\u0028\u0029", + "name": "castTimeZone", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_castTimeZone" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AcastPeriod\u0028\u0029", + "name": "castPeriod", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_castPeriod" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AformatDateTime\u0028\u0029", + "name": "formatDateTime", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_formatDateTime" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003AformatSeconds\u0028\u0029", + "name": "formatSeconds", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#method_formatSeconds" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DateCaster\u003A\u003APERIOD_LIMIT", + "name": "PERIOD_LIMIT", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DateCaster.html#constant_PERIOD_LIMIT" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster", + "name": "DoctrineCaster", + "summary": "Casts\u0020Doctrine\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-DoctrineCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster\u003A\u003AcastCommonProxy\u0028\u0029", + "name": "castCommonProxy", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DoctrineCaster.html#method_castCommonProxy" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster\u003A\u003AcastOrmProxy\u0028\u0029", + "name": "castOrmProxy", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DoctrineCaster.html#method_castOrmProxy" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DoctrineCaster\u003A\u003AcastPersistentCollection\u0028\u0029", + "name": "castPersistentCollection", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DoctrineCaster.html#method_castPersistentCollection" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster", + "name": "DOMCaster", + "summary": "Casts\u0020DOM\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastException\u0028\u0029", + "name": "castException", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castException" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastLength\u0028\u0029", + "name": "castLength", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castLength" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastImplementation\u0028\u0029", + "name": "castImplementation", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castImplementation" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastNode\u0028\u0029", + "name": "castNode", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castNode" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastNameSpaceNode\u0028\u0029", + "name": "castNameSpaceNode", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castNameSpaceNode" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastDocument\u0028\u0029", + "name": "castDocument", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castDocument" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastCharacterData\u0028\u0029", + "name": "castCharacterData", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castCharacterData" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastAttr\u0028\u0029", + "name": "castAttr", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castAttr" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastElement\u0028\u0029", + "name": "castElement", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castElement" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastText\u0028\u0029", + "name": "castText", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castText" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastDocumentType\u0028\u0029", + "name": "castDocumentType", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castDocumentType" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastNotation\u0028\u0029", + "name": "castNotation", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castNotation" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastEntity\u0028\u0029", + "name": "castEntity", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castEntity" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastProcessingInstruction\u0028\u0029", + "name": "castProcessingInstruction", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castProcessingInstruction" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AcastXPath\u0028\u0029", + "name": "castXPath", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#method_castXPath" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003AERROR_CODES", + "name": "ERROR_CODES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#constant_ERROR_CODES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DOMCaster\u003A\u003ANODE_TYPES", + "name": "NODE_TYPES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DOMCaster.html#constant_NODE_TYPES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsCaster", + "name": "DsCaster", + "summary": "Casts\u0020Ds\u0020extension\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-DsCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsCaster\u003A\u003AcastCollection\u0028\u0029", + "name": "castCollection", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DsCaster.html#method_castCollection" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsCaster\u003A\u003AcastMap\u0028\u0029", + "name": "castMap", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DsCaster.html#method_castMap" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsCaster\u003A\u003AcastPair\u0028\u0029", + "name": "castPair", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DsCaster.html#method_castPair" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsCaster\u003A\u003AcastPairStub\u0028\u0029", + "name": "castPairStub", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DsCaster.html#method_castPairStub" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsPairStub", + "name": "DsPairStub", + "summary": "Represents\u0020the\u0020main\u0020properties\u0020of\u0020a\u0020PHP\u0020variable.", + "url": "classes/Symfony-Component-VarDumper-Caster-DsPairStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\DsPairStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-DsPairStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\EnumStub", + "name": "EnumStub", + "summary": "Represents\u0020an\u0020enumeration\u0020of\u0020values.", + "url": "classes/Symfony-Component-VarDumper-Caster-EnumStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\EnumStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-EnumStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\EnumStub\u003A\u003A\u0024dumpKeys", + "name": "dumpKeys", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-EnumStub.html#property_dumpKeys" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster", + "name": "ExceptionCaster", + "summary": "Casts\u0020common\u0020Exception\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastError\u0028\u0029", + "name": "castError", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castError" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastException\u0028\u0029", + "name": "castException", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castException" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastErrorException\u0028\u0029", + "name": "castErrorException", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castErrorException" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastThrowingCasterException\u0028\u0029", + "name": "castThrowingCasterException", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castThrowingCasterException" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastSilencedErrorContext\u0028\u0029", + "name": "castSilencedErrorContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castSilencedErrorContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastTraceStub\u0028\u0029", + "name": "castTraceStub", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castTraceStub" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastFrameStub\u0028\u0029", + "name": "castFrameStub", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castFrameStub" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AcastFlattenException\u0028\u0029", + "name": "castFlattenException", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_castFlattenException" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AfilterExceptionArray\u0028\u0029", + "name": "filterExceptionArray", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_filterExceptionArray" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AtraceUnshift\u0028\u0029", + "name": "traceUnshift", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_traceUnshift" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003AextractSource\u0028\u0029", + "name": "extractSource", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#method_extractSource" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003A\u0024srcContext", + "name": "srcContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#property_srcContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003A\u0024traceArgs", + "name": "traceArgs", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#property_traceArgs" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003A\u0024errorTypes", + "name": "errorTypes", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#property_errorTypes" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ExceptionCaster\u003A\u003A\u0024framesCache", + "name": "framesCache", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ExceptionCaster.html#property_framesCache" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster", + "name": "FFICaster", + "summary": "Casts\u0020FFI\u0020extension\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster\u003A\u003AcastCTypeOrCData\u0028\u0029", + "name": "castCTypeOrCData", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html#method_castCTypeOrCData" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster\u003A\u003AcastFFIFunction\u0028\u0029", + "name": "castFFIFunction", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html#method_castFFIFunction" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster\u003A\u003AcastFFIPointer\u0028\u0029", + "name": "castFFIPointer", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html#method_castFFIPointer" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster\u003A\u003AcastFFIStringValue\u0028\u0029", + "name": "castFFIStringValue", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html#method_castFFIStringValue" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster\u003A\u003AcastFFIStructLike\u0028\u0029", + "name": "castFFIStructLike", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html#method_castFFIStructLike" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FFICaster\u003A\u003AMAX_STRING_LENGTH", + "name": "MAX_STRING_LENGTH", + "summary": "In\u0020case\u0020of\u0020\u0022char\u002A\u0022\u0020contains\u0020a\u0020string,\u0020the\u0020length\u0020of\u0020which\u0020depends\u0020on\nsome\u0020other\u0020parameter,\u0020then\u0020during\u0020the\u0020generation\u0020of\u0020the\u0020string\u0020it\u0020is\npossible\u0020to\u0020go\u0020beyond\u0020the\u0020allowable\u0020memory\u0020area.", + "url": "classes/Symfony-Component-VarDumper-Caster-FFICaster.html#constant_MAX_STRING_LENGTH" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FiberCaster", + "name": "FiberCaster", + "summary": "Casts\u0020Fiber\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-FiberCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FiberCaster\u003A\u003AcastFiber\u0028\u0029", + "name": "castFiber", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FiberCaster.html#method_castFiber" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FrameStub", + "name": "FrameStub", + "summary": "Represents\u0020a\u0020single\u0020backtrace\u0020frame\u0020as\u0020returned\u0020by\u0020debug_backtrace\u0028\u0029\u0020or\u0020Exception\u002D\u003EgetTrace\u0028\u0029.", + "url": "classes/Symfony-Component-VarDumper-Caster-FrameStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FrameStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FrameStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FrameStub\u003A\u003A\u0024keepArgs", + "name": "keepArgs", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FrameStub.html#property_keepArgs" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\FrameStub\u003A\u003A\u0024inTraceStub", + "name": "inTraceStub", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-FrameStub.html#property_inTraceStub" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\GmpCaster", + "name": "GmpCaster", + "summary": "Casts\u0020GMP\u0020objects\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-GmpCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\GmpCaster\u003A\u003AcastGmp\u0028\u0029", + "name": "castGmp", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-GmpCaster.html#method_castGmp" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ImagineCaster", + "name": "ImagineCaster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ImagineCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ImagineCaster\u003A\u003AcastImage\u0028\u0029", + "name": "castImage", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ImagineCaster.html#method_castImage" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ImgStub", + "name": "ImgStub", + "summary": "Represents\u0020a\u0020PHP\u0020constant\u0020and\u0020its\u0020value.", + "url": "classes/Symfony-Component-VarDumper-Caster-ImgStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ImgStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ImgStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster", + "name": "IntlCaster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster\u003A\u003AcastMessageFormatter\u0028\u0029", + "name": "castMessageFormatter", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html#method_castMessageFormatter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster\u003A\u003AcastNumberFormatter\u0028\u0029", + "name": "castNumberFormatter", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html#method_castNumberFormatter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster\u003A\u003AcastIntlTimeZone\u0028\u0029", + "name": "castIntlTimeZone", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html#method_castIntlTimeZone" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster\u003A\u003AcastIntlCalendar\u0028\u0029", + "name": "castIntlCalendar", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html#method_castIntlCalendar" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster\u003A\u003AcastIntlDateFormatter\u0028\u0029", + "name": "castIntlDateFormatter", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html#method_castIntlDateFormatter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\IntlCaster\u003A\u003AcastError\u0028\u0029", + "name": "castError", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-IntlCaster.html#method_castError" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\LinkStub", + "name": "LinkStub", + "summary": "Represents\u0020a\u0020file\u0020or\u0020a\u0020URL.", + "url": "classes/Symfony-Component-VarDumper-Caster-LinkStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\LinkStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-LinkStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\LinkStub\u003A\u003AgetComposerRoot\u0028\u0029", + "name": "getComposerRoot", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-LinkStub.html#method_getComposerRoot" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\LinkStub\u003A\u003A\u0024inVendor", + "name": "inVendor", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-LinkStub.html#property_inVendor" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\LinkStub\u003A\u003A\u0024vendorRoots", + "name": "vendorRoots", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-LinkStub.html#property_vendorRoots" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\LinkStub\u003A\u003A\u0024composerRoots", + "name": "composerRoots", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-LinkStub.html#property_composerRoots" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster", + "name": "MemcachedCaster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster\u003A\u003AcastMemcached\u0028\u0029", + "name": "castMemcached", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html#method_castMemcached" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster\u003A\u003AgetNonDefaultOptions\u0028\u0029", + "name": "getNonDefaultOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html#method_getNonDefaultOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster\u003A\u003AdiscoverDefaultOptions\u0028\u0029", + "name": "discoverDefaultOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html#method_discoverDefaultOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster\u003A\u003AgetOptionConstants\u0028\u0029", + "name": "getOptionConstants", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html#method_getOptionConstants" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster\u003A\u003A\u0024optionConstants", + "name": "optionConstants", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html#property_optionConstants" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\MemcachedCaster\u003A\u003A\u0024defaultOptions", + "name": "defaultOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-MemcachedCaster.html#property_defaultOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PdoCaster", + "name": "PdoCaster", + "summary": "Casts\u0020PDO\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-PdoCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PdoCaster\u003A\u003AcastPdo\u0028\u0029", + "name": "castPdo", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PdoCaster.html#method_castPdo" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PdoCaster\u003A\u003AcastPdoStatement\u0028\u0029", + "name": "castPdoStatement", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PdoCaster.html#method_castPdoStatement" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PdoCaster\u003A\u003APDO_ATTRIBUTES", + "name": "PDO_ATTRIBUTES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PdoCaster.html#constant_PDO_ATTRIBUTES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster", + "name": "PgSqlCaster", + "summary": "Casts\u0020pqsql\u0020resources\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003AcastLargeObject\u0028\u0029", + "name": "castLargeObject", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#method_castLargeObject" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003AcastLink\u0028\u0029", + "name": "castLink", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#method_castLink" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003AcastResult\u0028\u0029", + "name": "castResult", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#method_castResult" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003APARAM_CODES", + "name": "PARAM_CODES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#constant_PARAM_CODES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003ATRANSACTION_STATUS", + "name": "TRANSACTION_STATUS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#constant_TRANSACTION_STATUS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003ARESULT_STATUS", + "name": "RESULT_STATUS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#constant_RESULT_STATUS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\PgSqlCaster\u003A\u003ADIAG_CODES", + "name": "DIAG_CODES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-PgSqlCaster.html#constant_DIAG_CODES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ProxyManagerCaster", + "name": "ProxyManagerCaster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ProxyManagerCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ProxyManagerCaster\u003A\u003AcastProxy\u0028\u0029", + "name": "castProxy", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ProxyManagerCaster.html#method_castProxy" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster", + "name": "RdKafkaCaster", + "summary": "Casts\u0020RdKafka\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastKafkaConsumer\u0028\u0029", + "name": "castKafkaConsumer", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castKafkaConsumer" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastTopic\u0028\u0029", + "name": "castTopic", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castTopic" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastTopicPartition\u0028\u0029", + "name": "castTopicPartition", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castTopicPartition" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastMessage\u0028\u0029", + "name": "castMessage", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castMessage" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastConf\u0028\u0029", + "name": "castConf", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castConf" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastTopicConf\u0028\u0029", + "name": "castTopicConf", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castTopicConf" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastRdKafka\u0028\u0029", + "name": "castRdKafka", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castRdKafka" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastCollectionMetadata\u0028\u0029", + "name": "castCollectionMetadata", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castCollectionMetadata" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastTopicMetadata\u0028\u0029", + "name": "castTopicMetadata", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castTopicMetadata" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastPartitionMetadata\u0028\u0029", + "name": "castPartitionMetadata", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castPartitionMetadata" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AcastBrokerMetadata\u0028\u0029", + "name": "castBrokerMetadata", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_castBrokerMetadata" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RdKafkaCaster\u003A\u003AextractMetadata\u0028\u0029", + "name": "extractMetadata", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RdKafkaCaster.html#method_extractMetadata" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster", + "name": "RedisCaster", + "summary": "Casts\u0020Redis\u0020class\u0020from\u0020ext\u002Dredis\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003AcastRedis\u0028\u0029", + "name": "castRedis", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#method_castRedis" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003AcastRedisArray\u0028\u0029", + "name": "castRedisArray", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#method_castRedisArray" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003AcastRedisCluster\u0028\u0029", + "name": "castRedisCluster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#method_castRedisCluster" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003AgetRedisOptions\u0028\u0029", + "name": "getRedisOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#method_getRedisOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003ASERIALIZERS", + "name": "SERIALIZERS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#constant_SERIALIZERS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003AMODES", + "name": "MODES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#constant_MODES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003ACOMPRESSION_MODES", + "name": "COMPRESSION_MODES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#constant_COMPRESSION_MODES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\RedisCaster\u003A\u003AFAILOVER_OPTIONS", + "name": "FAILOVER_OPTIONS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-RedisCaster.html#constant_FAILOVER_OPTIONS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster", + "name": "ReflectionCaster", + "summary": "Casts\u0020Reflector\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastClosure\u0028\u0029", + "name": "castClosure", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castClosure" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AunsetClosureFileInfo\u0028\u0029", + "name": "unsetClosureFileInfo", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_unsetClosureFileInfo" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastGenerator\u0028\u0029", + "name": "castGenerator", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castGenerator" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastType\u0028\u0029", + "name": "castType", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castType" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastAttribute\u0028\u0029", + "name": "castAttribute", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castAttribute" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastReflectionGenerator\u0028\u0029", + "name": "castReflectionGenerator", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castReflectionGenerator" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastClass\u0028\u0029", + "name": "castClass", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castClass" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastFunctionAbstract\u0028\u0029", + "name": "castFunctionAbstract", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castFunctionAbstract" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastClassConstant\u0028\u0029", + "name": "castClassConstant", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castClassConstant" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastMethod\u0028\u0029", + "name": "castMethod", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castMethod" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastParameter\u0028\u0029", + "name": "castParameter", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castParameter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastProperty\u0028\u0029", + "name": "castProperty", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castProperty" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastReference\u0028\u0029", + "name": "castReference", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castReference" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastExtension\u0028\u0029", + "name": "castExtension", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castExtension" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AcastZendExtension\u0028\u0029", + "name": "castZendExtension", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_castZendExtension" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AgetSignature\u0028\u0029", + "name": "getSignature", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_getSignature" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AaddExtra\u0028\u0029", + "name": "addExtra", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_addExtra" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AaddMap\u0028\u0029", + "name": "addMap", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_addMap" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AaddAttributes\u0028\u0029", + "name": "addAttributes", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#method_addAttributes" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AUNSET_CLOSURE_FILE_INFO", + "name": "UNSET_CLOSURE_FILE_INFO", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#constant_UNSET_CLOSURE_FILE_INFO" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ReflectionCaster\u003A\u003AEXTRA_MAP", + "name": "EXTRA_MAP", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ReflectionCaster.html#constant_EXTRA_MAP" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster", + "name": "ResourceCaster", + "summary": "Casts\u0020common\u0020resource\u0020types\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastCurl\u0028\u0029", + "name": "castCurl", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castCurl" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastDba\u0028\u0029", + "name": "castDba", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castDba" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastProcess\u0028\u0029", + "name": "castProcess", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castProcess" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastStream\u0028\u0029", + "name": "castStream", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castStream" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastStreamContext\u0028\u0029", + "name": "castStreamContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castStreamContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastGd\u0028\u0029", + "name": "castGd", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castGd" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ResourceCaster\u003A\u003AcastOpensslX509\u0028\u0029", + "name": "castOpensslX509", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ResourceCaster.html#method_castOpensslX509" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ScalarStub", + "name": "ScalarStub", + "summary": "Represents\u0020any\u0020arbitrary\u0020value.", + "url": "classes/Symfony-Component-VarDumper-Caster-ScalarStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\ScalarStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-ScalarStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster", + "name": "SplCaster", + "summary": "Casts\u0020SPL\u0020related\u0020classes\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastArrayObject\u0028\u0029", + "name": "castArrayObject", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castArrayObject" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastArrayIterator\u0028\u0029", + "name": "castArrayIterator", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castArrayIterator" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastHeap\u0028\u0029", + "name": "castHeap", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castHeap" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastDoublyLinkedList\u0028\u0029", + "name": "castDoublyLinkedList", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castDoublyLinkedList" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastFileInfo\u0028\u0029", + "name": "castFileInfo", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castFileInfo" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastFileObject\u0028\u0029", + "name": "castFileObject", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castFileObject" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastObjectStorage\u0028\u0029", + "name": "castObjectStorage", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castObjectStorage" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastOuterIterator\u0028\u0029", + "name": "castOuterIterator", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castOuterIterator" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastWeakReference\u0028\u0029", + "name": "castWeakReference", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castWeakReference" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastWeakMap\u0028\u0029", + "name": "castWeakMap", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castWeakMap" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003AcastSplArray\u0028\u0029", + "name": "castSplArray", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#method_castSplArray" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SplCaster\u003A\u003ASPL_FILE_OBJECT_FLAGS", + "name": "SPL_FILE_OBJECT_FLAGS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SplCaster.html#constant_SPL_FILE_OBJECT_FLAGS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\StubCaster", + "name": "StubCaster", + "summary": "Casts\u0020a\u0020caster\u0027s\u0020Stub.", + "url": "classes/Symfony-Component-VarDumper-Caster-StubCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\StubCaster\u003A\u003AcastStub\u0028\u0029", + "name": "castStub", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-StubCaster.html#method_castStub" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\StubCaster\u003A\u003AcastCutArray\u0028\u0029", + "name": "castCutArray", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-StubCaster.html#method_castCutArray" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\StubCaster\u003A\u003AcutInternals\u0028\u0029", + "name": "cutInternals", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-StubCaster.html#method_cutInternals" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\StubCaster\u003A\u003AcastEnum\u0028\u0029", + "name": "castEnum", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-StubCaster.html#method_castEnum" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\StubCaster\u003A\u003AcastScalar\u0028\u0029", + "name": "castScalar", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-StubCaster.html#method_castScalar" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster", + "name": "SymfonyCaster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AcastRequest\u0028\u0029", + "name": "castRequest", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#method_castRequest" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AcastHttpClient\u0028\u0029", + "name": "castHttpClient", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#method_castHttpClient" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AcastHttpClientResponse\u0028\u0029", + "name": "castHttpClientResponse", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#method_castHttpClientResponse" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AcastLazyObjectState\u0028\u0029", + "name": "castLazyObjectState", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#method_castLazyObjectState" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AcastUuid\u0028\u0029", + "name": "castUuid", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#method_castUuid" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AcastUlid\u0028\u0029", + "name": "castUlid", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#method_castUlid" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\SymfonyCaster\u003A\u003AREQUEST_GETTERS", + "name": "REQUEST_GETTERS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-SymfonyCaster.html#constant_REQUEST_GETTERS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\TraceStub", + "name": "TraceStub", + "summary": "Represents\u0020a\u0020backtrace\u0020as\u0020returned\u0020by\u0020debug_backtrace\u0028\u0029\u0020or\u0020Exception\u002D\u003EgetTrace\u0028\u0029.", + "url": "classes/Symfony-Component-VarDumper-Caster-TraceStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\TraceStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-TraceStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\TraceStub\u003A\u003A\u0024keepArgs", + "name": "keepArgs", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-TraceStub.html#property_keepArgs" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\TraceStub\u003A\u003A\u0024sliceOffset", + "name": "sliceOffset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-TraceStub.html#property_sliceOffset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\TraceStub\u003A\u003A\u0024sliceLength", + "name": "sliceLength", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-TraceStub.html#property_sliceLength" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\TraceStub\u003A\u003A\u0024numberingOffset", + "name": "numberingOffset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-TraceStub.html#property_numberingOffset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\UninitializedStub", + "name": "UninitializedStub", + "summary": "Represents\u0020an\u0020uninitialized\u0020property.", + "url": "classes/Symfony-Component-VarDumper-Caster-UninitializedStub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\UninitializedStub\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-UninitializedStub.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\UuidCaster", + "name": "UuidCaster", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-UuidCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\UuidCaster\u003A\u003AcastRamseyUuid\u0028\u0029", + "name": "castRamseyUuid", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-UuidCaster.html#method_castRamseyUuid" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\XmlReaderCaster", + "name": "XmlReaderCaster", + "summary": "Casts\u0020XmlReader\u0020class\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-XmlReaderCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\XmlReaderCaster\u003A\u003AcastXmlReader\u0028\u0029", + "name": "castXmlReader", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-XmlReaderCaster.html#method_castXmlReader" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\XmlReaderCaster\u003A\u003ANODE_TYPES", + "name": "NODE_TYPES", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-XmlReaderCaster.html#constant_NODE_TYPES" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster", + "name": "XmlResourceCaster", + "summary": "Casts\u0020XML\u0020resources\u0020to\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Caster-XmlResourceCaster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster\u003A\u003AcastXml\u0028\u0029", + "name": "castXml", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-XmlResourceCaster.html#method_castXml" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster\\XmlResourceCaster\u003A\u003AXML_ERRORS", + "name": "XML_ERRORS", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Caster-XmlResourceCaster.html#constant_XML_ERRORS" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner", + "name": "AbstractCloner", + "summary": "AbstractCloner\u0020implements\u0020a\u0020generic\u0020caster\u0020mechanism\u0020for\u0020objects\u0020and\u0020resources.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AaddCasters\u0028\u0029", + "name": "addCasters", + "summary": "Adds\u0020casters\u0020for\u0020resources\u0020and\u0020objects.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_addCasters" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AsetMaxItems\u0028\u0029", + "name": "setMaxItems", + "summary": "Sets\u0020the\u0020maximum\u0020number\u0020of\u0020items\u0020to\u0020clone\u0020past\u0020the\u0020minimum\u0020depth\u0020in\u0020nested\u0020structures.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_setMaxItems" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AsetMaxString\u0028\u0029", + "name": "setMaxString", + "summary": "Sets\u0020the\u0020maximum\u0020cloned\u0020length\u0020for\u0020strings.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_setMaxString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AsetMinDepth\u0028\u0029", + "name": "setMinDepth", + "summary": "Sets\u0020the\u0020minimum\u0020tree\u0020depth\u0020where\u0020we\u0020are\u0020guaranteed\u0020to\u0020clone\u0020all\u0020the\u0020items.\u0020\u0020After\u0020this\ndepth\u0020is\u0020reached,\u0020only\u0020setMaxItems\u0020items\u0020will\u0020be\u0020cloned.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_setMinDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AcloneVar\u0028\u0029", + "name": "cloneVar", + "summary": "Clones\u0020a\u0020PHP\u0020variable.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_cloneVar" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AdoClone\u0028\u0029", + "name": "doClone", + "summary": "Effectively\u0020clones\u0020the\u0020PHP\u0020variable.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_doClone" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AcastObject\u0028\u0029", + "name": "castObject", + "summary": "Casts\u0020an\u0020object\u0020to\u0020an\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_castObject" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003AcastResource\u0028\u0029", + "name": "castResource", + "summary": "Casts\u0020a\u0020resource\u0020to\u0020an\u0020array\u0020representation.", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#method_castResource" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024defaultCasters", + "name": "defaultCasters", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_defaultCasters" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024maxItems", + "name": "maxItems", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_maxItems" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024maxString", + "name": "maxString", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_maxString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024minDepth", + "name": "minDepth", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_minDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024casters", + "name": "casters", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_casters" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024prevErrorHandler", + "name": "prevErrorHandler", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_prevErrorHandler" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024classInfo", + "name": "classInfo", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_classInfo" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\AbstractCloner\u003A\u003A\u0024filter", + "name": "filter", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-AbstractCloner.html#property_filter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\ClonerInterface", + "name": "ClonerInterface", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-ClonerInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\ClonerInterface\u003A\u003AcloneVar\u0028\u0029", + "name": "cloneVar", + "summary": "Clones\u0020a\u0020PHP\u0020variable.", + "url": "classes/Symfony-Component-VarDumper-Cloner-ClonerInterface.html#method_cloneVar" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor", + "name": "Cursor", + "summary": "Represents\u0020the\u0020current\u0020state\u0020of\u0020a\u0020dumper\u0020while\u0020dumping.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003AHASH_INDEXED", + "name": "HASH_INDEXED", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#constant_HASH_INDEXED" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003AHASH_ASSOC", + "name": "HASH_ASSOC", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#constant_HASH_ASSOC" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003AHASH_OBJECT", + "name": "HASH_OBJECT", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#constant_HASH_OBJECT" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003AHASH_RESOURCE", + "name": "HASH_RESOURCE", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#constant_HASH_RESOURCE" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024depth", + "name": "depth", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_depth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024refIndex", + "name": "refIndex", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_refIndex" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024softRefTo", + "name": "softRefTo", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_softRefTo" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024softRefCount", + "name": "softRefCount", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_softRefCount" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024softRefHandle", + "name": "softRefHandle", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_softRefHandle" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hardRefTo", + "name": "hardRefTo", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hardRefTo" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hardRefCount", + "name": "hardRefCount", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hardRefCount" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hardRefHandle", + "name": "hardRefHandle", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hardRefHandle" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hashType", + "name": "hashType", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hashType" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hashKey", + "name": "hashKey", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hashKey" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hashKeyIsBinary", + "name": "hashKeyIsBinary", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hashKeyIsBinary" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hashIndex", + "name": "hashIndex", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hashIndex" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hashLength", + "name": "hashLength", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hashLength" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024hashCut", + "name": "hashCut", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_hashCut" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024stop", + "name": "stop", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_stop" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024attr", + "name": "attr", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_attr" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Cursor\u003A\u003A\u0024skipChildren", + "name": "skipChildren", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Cursor.html#property_skipChildren" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data", + "name": "Data", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AgetType\u0028\u0029", + "name": "getType", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_getType" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Returns\u0020a\u0020native\u0020representation\u0020of\u0020the\u0020original\u0020value.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_getValue" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003Acount\u0028\u0029", + "name": "count", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_count" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AgetIterator\u0028\u0029", + "name": "getIterator", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_getIterator" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A__get\u0028\u0029", + "name": "__get", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method___get" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A__isset\u0028\u0029", + "name": "__isset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method___isset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AoffsetExists\u0028\u0029", + "name": "offsetExists", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_offsetExists" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AoffsetGet\u0028\u0029", + "name": "offsetGet", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_offsetGet" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AoffsetSet\u0028\u0029", + "name": "offsetSet", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_offsetSet" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AoffsetUnset\u0028\u0029", + "name": "offsetUnset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_offsetUnset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A__toString\u0028\u0029", + "name": "__toString", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method___toString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AwithMaxDepth\u0028\u0029", + "name": "withMaxDepth", + "summary": "Returns\u0020a\u0020depth\u0020limited\u0020clone\u0020of\u0020\u0024this.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_withMaxDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AwithMaxItemsPerDepth\u0028\u0029", + "name": "withMaxItemsPerDepth", + "summary": "Limits\u0020the\u0020number\u0020of\u0020elements\u0020per\u0020depth\u0020level.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_withMaxItemsPerDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AwithRefHandles\u0028\u0029", + "name": "withRefHandles", + "summary": "Enables\/disables\u0020objects\u0027\u0020identifiers\u0020tracking.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_withRefHandles" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AwithContext\u0028\u0029", + "name": "withContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_withContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_getContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003Aseek\u0028\u0029", + "name": "seek", + "summary": "Seeks\u0020to\u0020a\u0020specific\u0020key\u0020in\u0020nested\u0020data\u0020structures.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_seek" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020data\u0020with\u0020a\u0020DumperInterface\u0020dumper.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AdumpItem\u0028\u0029", + "name": "dumpItem", + "summary": "Depth\u002Dfirst\u0020dumping\u0020of\u0020items.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_dumpItem" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AdumpChildren\u0028\u0029", + "name": "dumpChildren", + "summary": "Dumps\u0020children\u0020of\u0020hash\u0020structures.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_dumpChildren" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003AgetStub\u0028\u0029", + "name": "getStub", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#method_getStub" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024data", + "name": "data", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_data" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024position", + "name": "position", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_position" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024key", + "name": "key", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_key" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024maxDepth", + "name": "maxDepth", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_maxDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024maxItemsPerDepth", + "name": "maxItemsPerDepth", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_maxItemsPerDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024useRefHandles", + "name": "useRefHandles", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_useRefHandles" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Data\u003A\u003A\u0024context", + "name": "context", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Data.html#property_context" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\DumperInterface", + "name": "DumperInterface", + "summary": "DumperInterface\u0020used\u0020by\u0020Data\u0020objects.", + "url": "classes/Symfony-Component-VarDumper-Cloner-DumperInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\DumperInterface\u003A\u003AdumpScalar\u0028\u0029", + "name": "dumpScalar", + "summary": "Dumps\u0020a\u0020scalar\u0020value.", + "url": "classes/Symfony-Component-VarDumper-Cloner-DumperInterface.html#method_dumpScalar" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\DumperInterface\u003A\u003AdumpString\u0028\u0029", + "name": "dumpString", + "summary": "Dumps\u0020a\u0020string.", + "url": "classes/Symfony-Component-VarDumper-Cloner-DumperInterface.html#method_dumpString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\DumperInterface\u003A\u003AenterHash\u0028\u0029", + "name": "enterHash", + "summary": "Dumps\u0020while\u0020entering\u0020an\u0020hash.", + "url": "classes/Symfony-Component-VarDumper-Cloner-DumperInterface.html#method_enterHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\DumperInterface\u003A\u003AleaveHash\u0028\u0029", + "name": "leaveHash", + "summary": "Dumps\u0020while\u0020leaving\u0020an\u0020hash.", + "url": "classes/Symfony-Component-VarDumper-Cloner-DumperInterface.html#method_leaveHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub", + "name": "Stub", + "summary": "Represents\u0020the\u0020main\u0020properties\u0020of\u0020a\u0020PHP\u0020variable.", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ATYPE_REF", + "name": "TYPE_REF", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_TYPE_REF" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ATYPE_STRING", + "name": "TYPE_STRING", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_TYPE_STRING" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ATYPE_ARRAY", + "name": "TYPE_ARRAY", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_TYPE_ARRAY" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ATYPE_OBJECT", + "name": "TYPE_OBJECT", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_TYPE_OBJECT" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ATYPE_RESOURCE", + "name": "TYPE_RESOURCE", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_TYPE_RESOURCE" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ATYPE_SCALAR", + "name": "TYPE_SCALAR", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_TYPE_SCALAR" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ASTRING_BINARY", + "name": "STRING_BINARY", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_STRING_BINARY" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003ASTRING_UTF8", + "name": "STRING_UTF8", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_STRING_UTF8" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003AARRAY_ASSOC", + "name": "ARRAY_ASSOC", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_ARRAY_ASSOC" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003AARRAY_INDEXED", + "name": "ARRAY_INDEXED", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#constant_ARRAY_INDEXED" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024type", + "name": "type", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_type" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024class", + "name": "class", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_class" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_value" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024cut", + "name": "cut", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_cut" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024handle", + "name": "handle", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_handle" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024refCount", + "name": "refCount", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_refCount" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024position", + "name": "position", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_position" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024attr", + "name": "attr", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_attr" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\Stub\u003A\u003A\u0024defaultProperties", + "name": "defaultProperties", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-Stub.html#property_defaultProperties" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\VarCloner", + "name": "VarCloner", + "summary": "AbstractCloner\u0020implements\u0020a\u0020generic\u0020caster\u0020mechanism\u0020for\u0020objects\u0020and\u0020resources.", + "url": "classes/Symfony-Component-VarDumper-Cloner-VarCloner.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\VarCloner\u003A\u003AdoClone\u0028\u0029", + "name": "doClone", + "summary": "Effectively\u0020clones\u0020the\u0020PHP\u0020variable.", + "url": "classes/Symfony-Component-VarDumper-Cloner-VarCloner.html#method_doClone" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner\\VarCloner\u003A\u003A\u0024arrayCache", + "name": "arrayCache", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Cloner-VarCloner.html#property_arrayCache" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\CliDescriptor", + "name": "CliDescriptor", + "summary": "Describe\u0020collected\u0020data\u0020clones\u0020for\u0020cli\u0020output.", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-CliDescriptor.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\CliDescriptor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-CliDescriptor.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\CliDescriptor\u003A\u003Adescribe\u0028\u0029", + "name": "describe", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-CliDescriptor.html#method_describe" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\CliDescriptor\u003A\u003A\u0024dumper", + "name": "dumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-CliDescriptor.html#property_dumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\CliDescriptor\u003A\u003A\u0024lastIdentifier", + "name": "lastIdentifier", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-CliDescriptor.html#property_lastIdentifier" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\DumpDescriptorInterface", + "name": "DumpDescriptorInterface", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-DumpDescriptorInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\DumpDescriptorInterface\u003A\u003Adescribe\u0028\u0029", + "name": "describe", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-DumpDescriptorInterface.html#method_describe" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor", + "name": "HtmlDescriptor", + "summary": "Describe\u0020collected\u0020data\u0020clones\u0020for\u0020html\u0020output.", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor\u003A\u003Adescribe\u0028\u0029", + "name": "describe", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html#method_describe" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor\u003A\u003AextractDate\u0028\u0029", + "name": "extractDate", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html#method_extractDate" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor\u003A\u003ArenderTags\u0028\u0029", + "name": "renderTags", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html#method_renderTags" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor\u003A\u003A\u0024dumper", + "name": "dumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html#property_dumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor\\HtmlDescriptor\u003A\u003A\u0024initialized", + "name": "initialized", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-Descriptor-HtmlDescriptor.html#property_initialized" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand", + "name": "ServerDumpCommand", + "summary": "Starts\u0020a\u0020dump\u0020server\u0020to\u0020collect\u0020and\u0020output\u0020dumps\u0020on\u0020a\u0020single\u0020place\u0020with\u0020multiple\u0020formats\u0020support.", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003AgetAvailableFormats\u0028\u0029", + "name": "getAvailableFormats", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#method_getAvailableFormats" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003A\u0024server", + "name": "server", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#property_server" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\ServerDumpCommand\u003A\u003A\u0024descriptors", + "name": "descriptors", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Command-ServerDumpCommand.html#property_descriptors" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper", + "name": "AbstractDumper", + "summary": "Abstract\u0020mechanism\u0020for\u0020dumping\u0020a\u0020Data\u0020object.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003AsetOutput\u0028\u0029", + "name": "setOutput", + "summary": "Sets\u0020the\u0020output\u0020destination\u0020of\u0020the\u0020dumps.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_setOutput" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003AsetCharset\u0028\u0029", + "name": "setCharset", + "summary": "Sets\u0020the\u0020default\u0020character\u0020encoding\u0020to\u0020use\u0020for\u0020non\u002DUTF8\u0020strings.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_setCharset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003AsetIndentPad\u0028\u0029", + "name": "setIndentPad", + "summary": "Sets\u0020the\u0020indentation\u0020pad\u0020string.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_setIndentPad" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020a\u0020Data\u0020object.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003AdumpLine\u0028\u0029", + "name": "dumpLine", + "summary": "Dumps\u0020the\u0020current\u0020line.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_dumpLine" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003AechoLine\u0028\u0029", + "name": "echoLine", + "summary": "Generic\u0020line\u0020dumper\u0020callback.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_echoLine" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003Autf8Encode\u0028\u0029", + "name": "utf8Encode", + "summary": "Converts\u0020a\u0020non\u002DUTF\u002D8\u0020string\u0020to\u0020UTF\u002D8.", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#method_utf8Encode" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003ADUMP_LIGHT_ARRAY", + "name": "DUMP_LIGHT_ARRAY", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#constant_DUMP_LIGHT_ARRAY" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003ADUMP_STRING_LENGTH", + "name": "DUMP_STRING_LENGTH", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#constant_DUMP_STRING_LENGTH" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003ADUMP_COMMA_SEPARATOR", + "name": "DUMP_COMMA_SEPARATOR", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#constant_DUMP_COMMA_SEPARATOR" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003ADUMP_TRAILING_COMMA", + "name": "DUMP_TRAILING_COMMA", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#constant_DUMP_TRAILING_COMMA" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024defaultOutput", + "name": "defaultOutput", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_defaultOutput" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024line", + "name": "line", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_line" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024lineDumper", + "name": "lineDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_lineDumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024outputStream", + "name": "outputStream", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_outputStream" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024decimalPoint", + "name": "decimalPoint", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_decimalPoint" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024indentPad", + "name": "indentPad", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_indentPad" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024flags", + "name": "flags", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_flags" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\AbstractDumper\u003A\u003A\u0024charset", + "name": "charset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-AbstractDumper.html#property_charset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper", + "name": "CliDumper", + "summary": "CliDumper\u0020dumps\u0020variables\u0020for\u0020command\u0020line\u0020output.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AsetColors\u0028\u0029", + "name": "setColors", + "summary": "Enables\/disables\u0020colored\u0020output.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_setColors" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AsetMaxStringWidth\u0028\u0029", + "name": "setMaxStringWidth", + "summary": "Sets\u0020the\u0020maximum\u0020number\u0020of\u0020characters\u0020per\u0020line\u0020for\u0020dumped\u0020strings.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_setMaxStringWidth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AsetStyles\u0028\u0029", + "name": "setStyles", + "summary": "Configures\u0020styles.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_setStyles" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AsetDisplayOptions\u0028\u0029", + "name": "setDisplayOptions", + "summary": "Configures\u0020display\u0020options.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_setDisplayOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AdumpScalar\u0028\u0029", + "name": "dumpScalar", + "summary": "Dumps\u0020a\u0020scalar\u0020value.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_dumpScalar" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AdumpString\u0028\u0029", + "name": "dumpString", + "summary": "Dumps\u0020a\u0020string.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_dumpString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AenterHash\u0028\u0029", + "name": "enterHash", + "summary": "Dumps\u0020while\u0020entering\u0020an\u0020hash.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_enterHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AleaveHash\u0028\u0029", + "name": "leaveHash", + "summary": "Dumps\u0020while\u0020leaving\u0020an\u0020hash.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_leaveHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AdumpEllipsis\u0028\u0029", + "name": "dumpEllipsis", + "summary": "Dumps\u0020an\u0020ellipsis\u0020for\u0020cut\u0020children.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_dumpEllipsis" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AdumpKey\u0028\u0029", + "name": "dumpKey", + "summary": "Dumps\u0020a\u0020key\u0020in\u0020a\u0020hash\u0020structure.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_dumpKey" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003Astyle\u0028\u0029", + "name": "style", + "summary": "Decorates\u0020a\u0020value\u0020with\u0020some\u0020style.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_style" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AsupportsColors\u0028\u0029", + "name": "supportsColors", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_supportsColors" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AdumpLine\u0028\u0029", + "name": "dumpLine", + "summary": "Dumps\u0020the\u0020current\u0020line.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_dumpLine" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AendValue\u0028\u0029", + "name": "endValue", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_endValue" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AhasColorSupport\u0028\u0029", + "name": "hasColorSupport", + "summary": "Returns\u0020true\u0020if\u0020the\u0020stream\u0020supports\u0020colorization.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_hasColorSupport" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AisWindowsTrueColor\u0028\u0029", + "name": "isWindowsTrueColor", + "summary": "Returns\u0020true\u0020if\u0020the\u0020Windows\u0020terminal\u0020supports\u0020true\u0020color.", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_isWindowsTrueColor" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003AgetSourceLink\u0028\u0029", + "name": "getSourceLink", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#method_getSourceLink" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024defaultColors", + "name": "defaultColors", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_defaultColors" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024defaultOutput", + "name": "defaultOutput", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_defaultOutput" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024colors", + "name": "colors", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_colors" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024maxStringWidth", + "name": "maxStringWidth", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_maxStringWidth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_styles" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024controlCharsRx", + "name": "controlCharsRx", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_controlCharsRx" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024controlCharsMap", + "name": "controlCharsMap", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_controlCharsMap" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024unicodeCharsRx", + "name": "unicodeCharsRx", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_unicodeCharsRx" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024collapseNextHash", + "name": "collapseNextHash", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_collapseNextHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024expandNextHash", + "name": "expandNextHash", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_expandNextHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024displayOptions", + "name": "displayOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_displayOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\CliDumper\u003A\u003A\u0024handlesHrefGracefully", + "name": "handlesHrefGracefully", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-CliDumper.html#property_handlesHrefGracefully" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\CliContextProvider", + "name": "CliContextProvider", + "summary": "Tries\u0020to\u0020provide\u0020context\u0020on\u0020CLI.", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-CliContextProvider.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\CliContextProvider\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-CliContextProvider.html#method_getContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\ContextProviderInterface", + "name": "ContextProviderInterface", + "summary": "Interface\u0020to\u0020provide\u0020contextual\u0020data\u0020about\u0020dump\u0020data\u0020clones\u0020sent\u0020to\u0020a\u0020server.", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-ContextProviderInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\ContextProviderInterface\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-ContextProviderInterface.html#method_getContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\RequestContextProvider", + "name": "RequestContextProvider", + "summary": "Tries\u0020to\u0020provide\u0020context\u0020from\u0020a\u0020request.", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-RequestContextProvider.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\RequestContextProvider\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-RequestContextProvider.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\RequestContextProvider\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-RequestContextProvider.html#method_getContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\RequestContextProvider\u003A\u003A\u0024requestStack", + "name": "requestStack", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-RequestContextProvider.html#property_requestStack" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\RequestContextProvider\u003A\u003A\u0024cloner", + "name": "cloner", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-RequestContextProvider.html#property_cloner" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider", + "name": "SourceContextProvider", + "summary": "Tries\u0020to\u0020provide\u0020context\u0020from\u0020sources\u0020\u0028class\u0020name,\u0020file,\u0020line,\u0020code\u0020excerpt,\u0020...\u0029.", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003AgetContext\u0028\u0029", + "name": "getContext", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#method_getContext" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003AhtmlEncode\u0028\u0029", + "name": "htmlEncode", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#method_htmlEncode" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003A\u0024limit", + "name": "limit", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#property_limit" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003A\u0024charset", + "name": "charset", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#property_charset" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003A\u0024projectDir", + "name": "projectDir", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#property_projectDir" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider\\SourceContextProvider\u003A\u003A\u0024fileLinkFormatter", + "name": "fileLinkFormatter", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextProvider-SourceContextProvider.html#property_fileLinkFormatter" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextualizedDumper", + "name": "ContextualizedDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextualizedDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextualizedDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextualizedDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextualizedDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextualizedDumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextualizedDumper\u003A\u003A\u0024wrappedDumper", + "name": "wrappedDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextualizedDumper.html#property_wrappedDumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextualizedDumper\u003A\u003A\u0024contextProviders", + "name": "contextProviders", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ContextualizedDumper.html#property_contextProviders" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface", + "name": "DataDumperInterface", + "summary": "DataDumperInterface\u0020for\u0020dumping\u0020Data\u0020objects.", + "url": "classes/Symfony-Component-VarDumper-Dumper-DataDumperInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\DataDumperInterface\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-DataDumperInterface.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\esc\u0028\u0029", + "name": "esc", + "summary": "", + "url": "namespaces/symfony-component-vardumper-dumper.html#function_esc" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper", + "name": "HtmlDumper", + "summary": "HtmlDumper\u0020dumps\u0020variables\u0020as\u0020HTML.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AsetStyles\u0028\u0029", + "name": "setStyles", + "summary": "Configures\u0020styles.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_setStyles" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AsetTheme\u0028\u0029", + "name": "setTheme", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_setTheme" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AsetDisplayOptions\u0028\u0029", + "name": "setDisplayOptions", + "summary": "Configures\u0020display\u0020options.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_setDisplayOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AsetDumpHeader\u0028\u0029", + "name": "setDumpHeader", + "summary": "Sets\u0020an\u0020HTML\u0020header\u0020that\u0020will\u0020be\u0020dumped\u0020once\u0020in\u0020the\u0020output\u0020stream.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_setDumpHeader" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AsetDumpBoundaries\u0028\u0029", + "name": "setDumpBoundaries", + "summary": "Sets\u0020an\u0020HTML\u0020prefix\u0020and\u0020suffix\u0020that\u0020will\u0020encapse\u0020every\u0020single\u0020dump.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_setDumpBoundaries" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020a\u0020Data\u0020object.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AgetDumpHeader\u0028\u0029", + "name": "getDumpHeader", + "summary": "Dumps\u0020the\u0020HTML\u0020header.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_getDumpHeader" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AdumpString\u0028\u0029", + "name": "dumpString", + "summary": "Dumps\u0020a\u0020string.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_dumpString" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AenterHash\u0028\u0029", + "name": "enterHash", + "summary": "Dumps\u0020while\u0020entering\u0020an\u0020hash.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_enterHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AleaveHash\u0028\u0029", + "name": "leaveHash", + "summary": "Dumps\u0020while\u0020leaving\u0020an\u0020hash.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_leaveHash" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003Astyle\u0028\u0029", + "name": "style", + "summary": "Decorates\u0020a\u0020value\u0020with\u0020some\u0020style.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_style" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AdumpLine\u0028\u0029", + "name": "dumpLine", + "summary": "Dumps\u0020the\u0020current\u0020line.", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_dumpLine" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003AgetSourceLink\u0028\u0029", + "name": "getSourceLink", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#method_getSourceLink" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024defaultOutput", + "name": "defaultOutput", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_defaultOutput" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024themes", + "name": "themes", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_themes" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024dumpHeader", + "name": "dumpHeader", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_dumpHeader" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024dumpPrefix", + "name": "dumpPrefix", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_dumpPrefix" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024dumpSuffix", + "name": "dumpSuffix", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_dumpSuffix" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024dumpId", + "name": "dumpId", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_dumpId" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024colors", + "name": "colors", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_colors" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024headerIsDumped", + "name": "headerIsDumped", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_headerIsDumped" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024lastDepth", + "name": "lastDepth", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_lastDepth" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024styles", + "name": "styles", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_styles" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024displayOptions", + "name": "displayOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_displayOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\HtmlDumper\u003A\u003A\u0024extraDisplayOptions", + "name": "extraDisplayOptions", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-HtmlDumper.html#property_extraDisplayOptions" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ServerDumper", + "name": "ServerDumper", + "summary": "ServerDumper\u0020forwards\u0020serialized\u0020Data\u0020clones\u0020to\u0020a\u0020server.", + "url": "classes/Symfony-Component-VarDumper-Dumper-ServerDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ServerDumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ServerDumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ServerDumper\u003A\u003AgetContextProviders\u0028\u0029", + "name": "getContextProviders", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ServerDumper.html#method_getContextProviders" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ServerDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ServerDumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ServerDumper\u003A\u003A\u0024connection", + "name": "connection", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ServerDumper.html#property_connection" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ServerDumper\u003A\u003A\u0024wrappedDumper", + "name": "wrappedDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Dumper-ServerDumper.html#property_wrappedDumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Exception\\ThrowingCasterException", + "name": "ThrowingCasterException", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Exception-ThrowingCasterException.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Exception\\ThrowingCasterException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Exception-ThrowingCasterException.html#method___construct" + }, { + "fqsen": "\\dump\u0028\u0029", + "name": "dump", + "summary": "", + "url": "namespaces/default.html#function_dump" + }, { + "fqsen": "\\dd\u0028\u0029", + "name": "dd", + "summary": "", + "url": "namespaces/default.html#function_dd" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection", + "name": "Connection", + "summary": "Forwards\u0020serialized\u0020Data\u0020clones\u0020to\u0020a\u0020server.", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003AgetContextProviders\u0028\u0029", + "name": "getContextProviders", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#method_getContextProviders" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#method_write" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003AcreateSocket\u0028\u0029", + "name": "createSocket", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#method_createSocket" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003A\u0024host", + "name": "host", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#property_host" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003A\u0024contextProviders", + "name": "contextProviders", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#property_contextProviders" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\Connection\u003A\u003A\u0024socket", + "name": "socket", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-Connection.html#property_socket" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer", + "name": "DumpServer", + "summary": "A\u0020server\u0020collecting\u0020Data\u0020clones\u0020sent\u0020by\u0020a\u0020ServerDumper.", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003Astart\u0028\u0029", + "name": "start", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#method_start" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003Alisten\u0028\u0029", + "name": "listen", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#method_listen" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003AgetHost\u0028\u0029", + "name": "getHost", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#method_getHost" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003AgetMessages\u0028\u0029", + "name": "getMessages", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#method_getMessages" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003A\u0024host", + "name": "host", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#property_host" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003A\u0024logger", + "name": "logger", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#property_logger" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server\\DumpServer\u003A\u003A\u0024socket", + "name": "socket", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Server-DumpServer.html#property_socket" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait", + "name": "VarDumperTestTrait", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait\u003A\u003AsetUpVarDumper\u0028\u0029", + "name": "setUpVarDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html#method_setUpVarDumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait\u003A\u003AtearDownVarDumper\u0028\u0029", + "name": "tearDownVarDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html#method_tearDownVarDumper" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait\u003A\u003AassertDumpEquals\u0028\u0029", + "name": "assertDumpEquals", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html#method_assertDumpEquals" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait\u003A\u003AassertDumpMatchesFormat\u0028\u0029", + "name": "assertDumpMatchesFormat", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html#method_assertDumpMatchesFormat" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait\u003A\u003AgetDump\u0028\u0029", + "name": "getDump", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html#method_getDump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test\\VarDumperTestTrait\u003A\u003AprepareExpectation\u0028\u0029", + "name": "prepareExpectation", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-Test-VarDumperTestTrait.html#method_prepareExpectation" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\VarDumper", + "name": "VarDumper", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-VarDumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\VarDumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-VarDumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\VarDumper\u003A\u003AsetHandler\u0028\u0029", + "name": "setHandler", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-VarDumper.html#method_setHandler" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\VarDumper\u003A\u003Aregister\u0028\u0029", + "name": "register", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-VarDumper.html#method_register" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\VarDumper\u003A\u003AgetDefaultContextProviders\u0028\u0029", + "name": "getDefaultContextProviders", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-VarDumper.html#method_getDefaultContextProviders" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\VarDumper\u003A\u003A\u0024handler", + "name": "handler", + "summary": "", + "url": "classes/Symfony-Component-VarDumper-VarDumper.html#property_handler" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand", + "name": "LintCommand", + "summary": "Validates\u0020YAML\u0020files\u0020syntax\u0020and\u0020outputs\u0020encountered\u0020errors.", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003Aconfigure\u0028\u0029", + "name": "configure", + "summary": "Configures\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_configure" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003Aexecute\u0028\u0029", + "name": "execute", + "summary": "Executes\u0020the\u0020current\u0020command.", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_execute" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003Avalidate\u0028\u0029", + "name": "validate", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_validate" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003Adisplay\u0028\u0029", + "name": "display", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_display" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AdisplayTxt\u0028\u0029", + "name": "displayTxt", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_displayTxt" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AdisplayJson\u0028\u0029", + "name": "displayJson", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_displayJson" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AgetFiles\u0028\u0029", + "name": "getFiles", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_getFiles" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AgetParser\u0028\u0029", + "name": "getParser", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_getParser" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AgetDirectoryIterator\u0028\u0029", + "name": "getDirectoryIterator", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_getDirectoryIterator" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AisReadable\u0028\u0029", + "name": "isReadable", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_isReadable" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003Acomplete\u0028\u0029", + "name": "complete", + "summary": "Adds\u0020suggestions\u0020to\u0020\u0024suggestions\u0020for\u0020the\u0020current\u0020completion\u0020input\u0020\u0028e.g.\u0020option\u0020or\u0020argument\u0029.", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_complete" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003AgetAvailableFormatOptions\u0028\u0029", + "name": "getAvailableFormatOptions", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#method_getAvailableFormatOptions" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003A\u0024parser", + "name": "parser", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#property_parser" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003A\u0024format", + "name": "format", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#property_format" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003A\u0024displayCorrectFiles", + "name": "displayCorrectFiles", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#property_displayCorrectFiles" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003A\u0024directoryIteratorProvider", + "name": "directoryIteratorProvider", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#property_directoryIteratorProvider" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command\\LintCommand\u003A\u003A\u0024isReadableProvider", + "name": "isReadableProvider", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Command-LintCommand.html#property_isReadableProvider" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Dumper", + "name": "Dumper", + "summary": "Dumper\u0020dumps\u0020PHP\u0020variables\u0020to\u0020YAML\u0020strings.", + "url": "classes/Symfony-Component-Yaml-Dumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Dumper\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Dumper.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Dumper\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020a\u0020PHP\u0020value\u0020to\u0020YAML.", + "url": "classes/Symfony-Component-Yaml-Dumper.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Dumper\u003A\u003AdumpTaggedValue\u0028\u0029", + "name": "dumpTaggedValue", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Dumper.html#method_dumpTaggedValue" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Dumper\u003A\u003AgetBlockIndentationIndicator\u0028\u0029", + "name": "getBlockIndentationIndicator", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Dumper.html#method_getBlockIndentationIndicator" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Dumper\u003A\u003A\u0024indentation", + "name": "indentation", + "summary": "The\u0020amount\u0020of\u0020spaces\u0020to\u0020use\u0020for\u0020indentation\u0020of\u0020nested\u0020nodes.", + "url": "classes/Symfony-Component-Yaml-Dumper.html#property_indentation" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\DumpException", + "name": "DumpException", + "summary": "Exception\u0020class\u0020thrown\u0020when\u0020an\u0020error\u0020occurs\u0020during\u0020dumping.", + "url": "classes/Symfony-Component-Yaml-Exception-DumpException.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ExceptionInterface", + "name": "ExceptionInterface", + "summary": "Exception\u0020interface\u0020for\u0020all\u0020exceptions\u0020thrown\u0020by\u0020the\u0020component.", + "url": "classes/Symfony-Component-Yaml-Exception-ExceptionInterface.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException", + "name": "ParseException", + "summary": "Exception\u0020class\u0020thrown\u0020when\u0020an\u0020error\u0020occurs\u0020during\u0020parsing.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AgetSnippet\u0028\u0029", + "name": "getSnippet", + "summary": "Gets\u0020the\u0020snippet\u0020of\u0020code\u0020near\u0020the\u0020error.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_getSnippet" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AsetSnippet\u0028\u0029", + "name": "setSnippet", + "summary": "Sets\u0020the\u0020snippet\u0020of\u0020code\u0020near\u0020the\u0020error.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_setSnippet" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AgetParsedFile\u0028\u0029", + "name": "getParsedFile", + "summary": "Gets\u0020the\u0020filename\u0020where\u0020the\u0020error\u0020occurred.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_getParsedFile" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AsetParsedFile\u0028\u0029", + "name": "setParsedFile", + "summary": "Sets\u0020the\u0020filename\u0020where\u0020the\u0020error\u0020occurred.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_setParsedFile" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AgetParsedLine\u0028\u0029", + "name": "getParsedLine", + "summary": "Gets\u0020the\u0020line\u0020where\u0020the\u0020error\u0020occurred.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_getParsedLine" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AsetParsedLine\u0028\u0029", + "name": "setParsedLine", + "summary": "Sets\u0020the\u0020line\u0020where\u0020the\u0020error\u0020occurred.", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_setParsedLine" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003AupdateRepr\u0028\u0029", + "name": "updateRepr", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#method_updateRepr" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003A\u0024parsedFile", + "name": "parsedFile", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#property_parsedFile" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003A\u0024parsedLine", + "name": "parsedLine", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#property_parsedLine" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003A\u0024snippet", + "name": "snippet", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#property_snippet" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\ParseException\u003A\u003A\u0024rawMessage", + "name": "rawMessage", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Exception-ParseException.html#property_rawMessage" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception\\RuntimeException", + "name": "RuntimeException", + "summary": "Exception\u0020class\u0020thrown\u0020when\u0020an\u0020error\u0020occurs\u0020during\u0020parsing.", + "url": "classes/Symfony-Component-Yaml-Exception-RuntimeException.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser", + "name": "Parser", + "summary": "Parser\u0020parses\u0020YAML\u0020strings\u0020to\u0020convert\u0020them\u0020to\u0020PHP\u0020arrays.", + "url": "classes/Symfony-Component-Yaml-Parser.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AparseFile\u0028\u0029", + "name": "parseFile", + "summary": "Parses\u0020a\u0020YAML\u0020file\u0020into\u0020a\u0020PHP\u0020value.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_parseFile" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parses\u0020a\u0020YAML\u0020string\u0020to\u0020a\u0020PHP\u0020value.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_parse" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AdoParse\u0028\u0029", + "name": "doParse", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_doParse" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AparseBlock\u0028\u0029", + "name": "parseBlock", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_parseBlock" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AgetCurrentLineIndentation\u0028\u0029", + "name": "getCurrentLineIndentation", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_getCurrentLineIndentation" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AgetNextEmbedBlock\u0028\u0029", + "name": "getNextEmbedBlock", + "summary": "Returns\u0020the\u0020next\u0020embed\u0020block\u0020of\u0020YAML.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_getNextEmbedBlock" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AhasMoreLines\u0028\u0029", + "name": "hasMoreLines", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_hasMoreLines" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AmoveToNextLine\u0028\u0029", + "name": "moveToNextLine", + "summary": "Moves\u0020the\u0020parser\u0020to\u0020the\u0020next\u0020line.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_moveToNextLine" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AmoveToPreviousLine\u0028\u0029", + "name": "moveToPreviousLine", + "summary": "Moves\u0020the\u0020parser\u0020to\u0020the\u0020previous\u0020line.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_moveToPreviousLine" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AparseValue\u0028\u0029", + "name": "parseValue", + "summary": "Parses\u0020a\u0020YAML\u0020value.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_parseValue" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AparseBlockScalar\u0028\u0029", + "name": "parseBlockScalar", + "summary": "Parses\u0020a\u0020block\u0020scalar.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_parseBlockScalar" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisNextLineIndented\u0028\u0029", + "name": "isNextLineIndented", + "summary": "Returns\u0020true\u0020if\u0020the\u0020next\u0020line\u0020is\u0020indented.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isNextLineIndented" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisCurrentLineEmpty\u0028\u0029", + "name": "isCurrentLineEmpty", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isCurrentLineEmpty" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisCurrentLineBlank\u0028\u0029", + "name": "isCurrentLineBlank", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isCurrentLineBlank" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisCurrentLineComment\u0028\u0029", + "name": "isCurrentLineComment", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isCurrentLineComment" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisCurrentLineLastLineInDocument\u0028\u0029", + "name": "isCurrentLineLastLineInDocument", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isCurrentLineLastLineInDocument" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003Acleanup\u0028\u0029", + "name": "cleanup", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_cleanup" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisNextLineUnIndentedCollection\u0028\u0029", + "name": "isNextLineUnIndentedCollection", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isNextLineUnIndentedCollection" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AisStringUnIndentedCollectionItem\u0028\u0029", + "name": "isStringUnIndentedCollectionItem", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_isStringUnIndentedCollectionItem" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AtrimTag\u0028\u0029", + "name": "trimTag", + "summary": "Trim\u0020the\u0020tag\u0020on\u0020top\u0020of\u0020the\u0020value.", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_trimTag" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AgetLineTag\u0028\u0029", + "name": "getLineTag", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_getLineTag" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AlexInlineQuotedString\u0028\u0029", + "name": "lexInlineQuotedString", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_lexInlineQuotedString" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AlexUnquotedString\u0028\u0029", + "name": "lexUnquotedString", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_lexUnquotedString" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AlexInlineMapping\u0028\u0029", + "name": "lexInlineMapping", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_lexInlineMapping" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AlexInlineSequence\u0028\u0029", + "name": "lexInlineSequence", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_lexInlineSequence" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AlexInlineStructure\u0028\u0029", + "name": "lexInlineStructure", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_lexInlineStructure" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AconsumeWhitespaces\u0028\u0029", + "name": "consumeWhitespaces", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#method_consumeWhitespaces" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003ATAG_PATTERN", + "name": "TAG_PATTERN", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#constant_TAG_PATTERN" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003ABLOCK_SCALAR_HEADER_PATTERN", + "name": "BLOCK_SCALAR_HEADER_PATTERN", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#constant_BLOCK_SCALAR_HEADER_PATTERN" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003AREFERENCE_PATTERN", + "name": "REFERENCE_PATTERN", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#constant_REFERENCE_PATTERN" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024filename", + "name": "filename", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_filename" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024offset", + "name": "offset", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_offset" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024numberOfParsedLines", + "name": "numberOfParsedLines", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_numberOfParsedLines" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024totalNumberOfLines", + "name": "totalNumberOfLines", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_totalNumberOfLines" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024lines", + "name": "lines", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_lines" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024currentLineNb", + "name": "currentLineNb", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_currentLineNb" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024currentLine", + "name": "currentLine", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_currentLine" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024refs", + "name": "refs", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_refs" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024skippedLineNumbers", + "name": "skippedLineNumbers", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_skippedLineNumbers" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024locallySkippedLineNumbers", + "name": "locallySkippedLineNumbers", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_locallySkippedLineNumbers" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Parser\u003A\u003A\u0024refsBeingParsed", + "name": "refsBeingParsed", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Parser.html#property_refsBeingParsed" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag\\TaggedValue", + "name": "TaggedValue", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Tag-TaggedValue.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag\\TaggedValue\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Tag-TaggedValue.html#method___construct" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag\\TaggedValue\u003A\u003AgetTag\u0028\u0029", + "name": "getTag", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Tag-TaggedValue.html#method_getTag" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag\\TaggedValue\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Tag-TaggedValue.html#method_getValue" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag\\TaggedValue\u003A\u003A\u0024tag", + "name": "tag", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Tag-TaggedValue.html#property_tag" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag\\TaggedValue\u003A\u003A\u0024value", + "name": "value", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Tag-TaggedValue.html#property_value" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml", + "name": "Yaml", + "summary": "Yaml\u0020offers\u0020convenience\u0020methods\u0020to\u0020load\u0020and\u0020dump\u0020YAML.", + "url": "classes/Symfony-Component-Yaml-Yaml.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003AparseFile\u0028\u0029", + "name": "parseFile", + "summary": "Parses\u0020a\u0020YAML\u0020file\u0020into\u0020a\u0020PHP\u0020value.", + "url": "classes/Symfony-Component-Yaml-Yaml.html#method_parseFile" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parses\u0020YAML\u0020into\u0020a\u0020PHP\u0020value.", + "url": "classes/Symfony-Component-Yaml-Yaml.html#method_parse" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003Adump\u0028\u0029", + "name": "dump", + "summary": "Dumps\u0020a\u0020PHP\u0020value\u0020to\u0020a\u0020YAML\u0020string.", + "url": "classes/Symfony-Component-Yaml-Yaml.html#method_dump" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_OBJECT", + "name": "DUMP_OBJECT", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_OBJECT" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003APARSE_EXCEPTION_ON_INVALID_TYPE", + "name": "PARSE_EXCEPTION_ON_INVALID_TYPE", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_PARSE_EXCEPTION_ON_INVALID_TYPE" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003APARSE_OBJECT", + "name": "PARSE_OBJECT", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_PARSE_OBJECT" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003APARSE_OBJECT_FOR_MAP", + "name": "PARSE_OBJECT_FOR_MAP", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_PARSE_OBJECT_FOR_MAP" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_EXCEPTION_ON_INVALID_TYPE", + "name": "DUMP_EXCEPTION_ON_INVALID_TYPE", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_EXCEPTION_ON_INVALID_TYPE" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003APARSE_DATETIME", + "name": "PARSE_DATETIME", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_PARSE_DATETIME" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_OBJECT_AS_MAP", + "name": "DUMP_OBJECT_AS_MAP", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_OBJECT_AS_MAP" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_MULTI_LINE_LITERAL_BLOCK", + "name": "DUMP_MULTI_LINE_LITERAL_BLOCK", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_MULTI_LINE_LITERAL_BLOCK" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003APARSE_CONSTANT", + "name": "PARSE_CONSTANT", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_PARSE_CONSTANT" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003APARSE_CUSTOM_TAGS", + "name": "PARSE_CUSTOM_TAGS", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_PARSE_CUSTOM_TAGS" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_EMPTY_ARRAY_AS_SEQUENCE", + "name": "DUMP_EMPTY_ARRAY_AS_SEQUENCE", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_EMPTY_ARRAY_AS_SEQUENCE" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_NULL_AS_TILDE", + "name": "DUMP_NULL_AS_TILDE", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_NULL_AS_TILDE" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Yaml\u003A\u003ADUMP_NUMERIC_KEY_AS_STRING", + "name": "DUMP_NUMERIC_KEY_AS_STRING", + "summary": "", + "url": "classes/Symfony-Component-Yaml-Yaml.html#constant_DUMP_NUMERIC_KEY_AS_STRING" + }, { + "fqsen": "\\Dotenv\\Dotenv", + "name": "Dotenv", + "summary": "", + "url": "classes/Dotenv-Dotenv.html" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020dotenv\u0020instance.", + "url": "classes/Dotenv-Dotenv.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020dotenv\u0020instance.", + "url": "classes/Dotenv-Dotenv.html#method_create" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AcreateMutable\u0028\u0029", + "name": "createMutable", + "summary": "Create\u0020a\u0020new\u0020mutable\u0020dotenv\u0020instance\u0020with\u0020default\u0020repository.", + "url": "classes/Dotenv-Dotenv.html#method_createMutable" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AcreateUnsafeMutable\u0028\u0029", + "name": "createUnsafeMutable", + "summary": "Create\u0020a\u0020new\u0020mutable\u0020dotenv\u0020instance\u0020with\u0020default\u0020repository\u0020with\u0020the\u0020putenv\u0020adapter.", + "url": "classes/Dotenv-Dotenv.html#method_createUnsafeMutable" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AcreateImmutable\u0028\u0029", + "name": "createImmutable", + "summary": "Create\u0020a\u0020new\u0020immutable\u0020dotenv\u0020instance\u0020with\u0020default\u0020repository.", + "url": "classes/Dotenv-Dotenv.html#method_createImmutable" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AcreateUnsafeImmutable\u0028\u0029", + "name": "createUnsafeImmutable", + "summary": "Create\u0020a\u0020new\u0020immutable\u0020dotenv\u0020instance\u0020with\u0020default\u0020repository\u0020with\u0020the\u0020putenv\u0020adapter.", + "url": "classes/Dotenv-Dotenv.html#method_createUnsafeImmutable" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AcreateArrayBacked\u0028\u0029", + "name": "createArrayBacked", + "summary": "Create\u0020a\u0020new\u0020dotenv\u0020instance\u0020with\u0020an\u0020array\u0020backed\u0020repository.", + "url": "classes/Dotenv-Dotenv.html#method_createArrayBacked" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parse\u0020the\u0020given\u0020content\u0020and\u0020resolve\u0020nested\u0020variables.", + "url": "classes/Dotenv-Dotenv.html#method_parse" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Read\u0020and\u0020load\u0020environment\u0020file\u0028s\u0029.", + "url": "classes/Dotenv-Dotenv.html#method_load" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AsafeLoad\u0028\u0029", + "name": "safeLoad", + "summary": "Read\u0020and\u0020load\u0020environment\u0020file\u0028s\u0029,\u0020silently\u0020failing\u0020if\u0020no\u0020files\u0020can\u0020be\u0020read.", + "url": "classes/Dotenv-Dotenv.html#method_safeLoad" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003Arequired\u0028\u0029", + "name": "required", + "summary": "Required\u0020ensures\u0020that\u0020the\u0020specified\u0020variables\u0020exist,\u0020and\u0020returns\u0020a\u0020new\u0020validator\u0020object.", + "url": "classes/Dotenv-Dotenv.html#method_required" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003AifPresent\u0028\u0029", + "name": "ifPresent", + "summary": "Returns\u0020a\u0020new\u0020validator\u0020object\u0020that\u0020won\u0027t\u0020check\u0020if\u0020the\u0020specified\u0020variables\u0020exist.", + "url": "classes/Dotenv-Dotenv.html#method_ifPresent" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003A\u0024store", + "name": "store", + "summary": "The\u0020store\u0020instance.", + "url": "classes/Dotenv-Dotenv.html#property_store" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003A\u0024parser", + "name": "parser", + "summary": "The\u0020parser\u0020instance.", + "url": "classes/Dotenv-Dotenv.html#property_parser" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003A\u0024loader", + "name": "loader", + "summary": "The\u0020loader\u0020instance.", + "url": "classes/Dotenv-Dotenv.html#property_loader" + }, { + "fqsen": "\\Dotenv\\Dotenv\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020repository\u0020instance.", + "url": "classes/Dotenv-Dotenv.html#property_repository" + }, { + "fqsen": "\\Dotenv\\Exception\\ExceptionInterface", + "name": "ExceptionInterface", + "summary": "", + "url": "classes/Dotenv-Exception-ExceptionInterface.html" + }, { + "fqsen": "\\Dotenv\\Exception\\InvalidEncodingException", + "name": "InvalidEncodingException", + "summary": "", + "url": "classes/Dotenv-Exception-InvalidEncodingException.html" + }, { + "fqsen": "\\Dotenv\\Exception\\InvalidFileException", + "name": "InvalidFileException", + "summary": "", + "url": "classes/Dotenv-Exception-InvalidFileException.html" + }, { + "fqsen": "\\Dotenv\\Exception\\InvalidPathException", + "name": "InvalidPathException", + "summary": "", + "url": "classes/Dotenv-Exception-InvalidPathException.html" + }, { + "fqsen": "\\Dotenv\\Exception\\ValidationException", + "name": "ValidationException", + "summary": "", + "url": "classes/Dotenv-Exception-ValidationException.html" + }, { + "fqsen": "\\Dotenv\\Loader\\Loader", + "name": "Loader", + "summary": "", + "url": "classes/Dotenv-Loader-Loader.html" + }, { + "fqsen": "\\Dotenv\\Loader\\Loader\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020given\u0020entries\u0020into\u0020the\u0020repository.", + "url": "classes/Dotenv-Loader-Loader.html#method_load" + }, { + "fqsen": "\\Dotenv\\Loader\\LoaderInterface", + "name": "LoaderInterface", + "summary": "", + "url": "classes/Dotenv-Loader-LoaderInterface.html" + }, { + "fqsen": "\\Dotenv\\Loader\\LoaderInterface\u003A\u003Aload\u0028\u0029", + "name": "load", + "summary": "Load\u0020the\u0020given\u0020entries\u0020into\u0020the\u0020repository.", + "url": "classes/Dotenv-Loader-LoaderInterface.html#method_load" + }, { + "fqsen": "\\Dotenv\\Loader\\Resolver", + "name": "Resolver", + "summary": "", + "url": "classes/Dotenv-Loader-Resolver.html" + }, { + "fqsen": "\\Dotenv\\Loader\\Resolver\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020is\u0020a\u0020singleton.", + "url": "classes/Dotenv-Loader-Resolver.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Loader\\Resolver\u003A\u003Aresolve\u0028\u0029", + "name": "resolve", + "summary": "Resolve\u0020the\u0020nested\u0020variables\u0020in\u0020the\u0020given\u0020value.", + "url": "classes/Dotenv-Loader-Resolver.html#method_resolve" + }, { + "fqsen": "\\Dotenv\\Loader\\Resolver\u003A\u003AresolveVariable\u0028\u0029", + "name": "resolveVariable", + "summary": "Resolve\u0020a\u0020single\u0020nested\u0020variable.", + "url": "classes/Dotenv-Loader-Resolver.html#method_resolveVariable" + }, { + "fqsen": "\\Dotenv\\Parser\\Entry", + "name": "Entry", + "summary": "", + "url": "classes/Dotenv-Parser-Entry.html" + }, { + "fqsen": "\\Dotenv\\Parser\\Entry\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020entry\u0020instance.", + "url": "classes/Dotenv-Parser-Entry.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Parser\\Entry\u003A\u003AgetName\u0028\u0029", + "name": "getName", + "summary": "Get\u0020the\u0020entry\u0020name.", + "url": "classes/Dotenv-Parser-Entry.html#method_getName" + }, { + "fqsen": "\\Dotenv\\Parser\\Entry\u003A\u003AgetValue\u0028\u0029", + "name": "getValue", + "summary": "Get\u0020the\u0020entry\u0020value.", + "url": "classes/Dotenv-Parser-Entry.html#method_getValue" + }, { + "fqsen": "\\Dotenv\\Parser\\Entry\u003A\u003A\u0024name", + "name": "name", + "summary": "The\u0020entry\u0020name.", + "url": "classes/Dotenv-Parser-Entry.html#property_name" + }, { + "fqsen": "\\Dotenv\\Parser\\Entry\u003A\u003A\u0024value", + "name": "value", + "summary": "The\u0020entry\u0020value.", + "url": "classes/Dotenv-Parser-Entry.html#property_value" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser", + "name": "EntryParser", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020is\u0020a\u0020singleton.", + "url": "classes/Dotenv-Parser-EntryParser.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parse\u0020a\u0020raw\u0020entry\u0020into\u0020a\u0020proper\u0020entry.", + "url": "classes/Dotenv-Parser-EntryParser.html#method_parse" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AsplitStringIntoParts\u0028\u0029", + "name": "splitStringIntoParts", + "summary": "Split\u0020the\u0020compound\u0020string\u0020into\u0020parts.", + "url": "classes/Dotenv-Parser-EntryParser.html#method_splitStringIntoParts" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AparseName\u0028\u0029", + "name": "parseName", + "summary": "Parse\u0020the\u0020given\u0020variable\u0020name.", + "url": "classes/Dotenv-Parser-EntryParser.html#method_parseName" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AisQuotedName\u0028\u0029", + "name": "isQuotedName", + "summary": "Is\u0020the\u0020given\u0020variable\u0020name\u0020quoted\u003F", + "url": "classes/Dotenv-Parser-EntryParser.html#method_isQuotedName" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AisValidName\u0028\u0029", + "name": "isValidName", + "summary": "Is\u0020the\u0020given\u0020variable\u0020name\u0020valid\u003F", + "url": "classes/Dotenv-Parser-EntryParser.html#method_isValidName" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AparseValue\u0028\u0029", + "name": "parseValue", + "summary": "Parse\u0020the\u0020given\u0020variable\u0020value.", + "url": "classes/Dotenv-Parser-EntryParser.html#method_parseValue" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AprocessToken\u0028\u0029", + "name": "processToken", + "summary": "Process\u0020the\u0020given\u0020token.", + "url": "classes/Dotenv-Parser-EntryParser.html#method_processToken" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AgetErrorMessage\u0028\u0029", + "name": "getErrorMessage", + "summary": "Generate\u0020a\u0020friendly\u0020error\u0020message.", + "url": "classes/Dotenv-Parser-EntryParser.html#method_getErrorMessage" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AINITIAL_STATE", + "name": "INITIAL_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_INITIAL_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AUNQUOTED_STATE", + "name": "UNQUOTED_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_UNQUOTED_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003ASINGLE_QUOTED_STATE", + "name": "SINGLE_QUOTED_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_SINGLE_QUOTED_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003ADOUBLE_QUOTED_STATE", + "name": "DOUBLE_QUOTED_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_DOUBLE_QUOTED_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AESCAPE_SEQUENCE_STATE", + "name": "ESCAPE_SEQUENCE_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_ESCAPE_SEQUENCE_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AWHITESPACE_STATE", + "name": "WHITESPACE_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_WHITESPACE_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003ACOMMENT_STATE", + "name": "COMMENT_STATE", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_COMMENT_STATE" + }, { + "fqsen": "\\Dotenv\\Parser\\EntryParser\u003A\u003AREJECT_STATES", + "name": "REJECT_STATES", + "summary": "", + "url": "classes/Dotenv-Parser-EntryParser.html#constant_REJECT_STATES" + }, { + "fqsen": "\\Dotenv\\Parser\\Lexer", + "name": "Lexer", + "summary": "", + "url": "classes/Dotenv-Parser-Lexer.html" + }, { + "fqsen": "\\Dotenv\\Parser\\Lexer\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020is\u0020a\u0020singleton.", + "url": "classes/Dotenv-Parser-Lexer.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Parser\\Lexer\u003A\u003Alex\u0028\u0029", + "name": "lex", + "summary": "Convert\u0020content\u0020into\u0020a\u0020token\u0020stream.", + "url": "classes/Dotenv-Parser-Lexer.html#method_lex" + }, { + "fqsen": "\\Dotenv\\Parser\\Lexer\u003A\u003APATTERNS", + "name": "PATTERNS", + "summary": "The\u0020regex\u0020for\u0020each\u0020type\u0020of\u0020token.", + "url": "classes/Dotenv-Parser-Lexer.html#constant_PATTERNS" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines", + "name": "Lines", + "summary": "", + "url": "classes/Dotenv-Parser-Lines.html" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "This\u0020class\u0020is\u0020a\u0020singleton.", + "url": "classes/Dotenv-Parser-Lines.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "Process\u0020the\u0020array\u0020of\u0020lines\u0020of\u0020environment\u0020variables.", + "url": "classes/Dotenv-Parser-Lines.html#method_process" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines\u003A\u003AmultilineProcess\u0028\u0029", + "name": "multilineProcess", + "summary": "Used\u0020to\u0020make\u0020all\u0020multiline\u0020variable\u0020process.", + "url": "classes/Dotenv-Parser-Lines.html#method_multilineProcess" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines\u003A\u003AlooksLikeMultilineStart\u0028\u0029", + "name": "looksLikeMultilineStart", + "summary": "Determine\u0020if\u0020the\u0020given\u0020line\u0020can\u0020be\u0020the\u0020start\u0020of\u0020a\u0020multiline\u0020variable.", + "url": "classes/Dotenv-Parser-Lines.html#method_looksLikeMultilineStart" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines\u003A\u003AlooksLikeMultilineStop\u0028\u0029", + "name": "looksLikeMultilineStop", + "summary": "Determine\u0020if\u0020the\u0020given\u0020line\u0020can\u0020be\u0020the\u0020start\u0020of\u0020a\u0020multiline\u0020variable.", + "url": "classes/Dotenv-Parser-Lines.html#method_looksLikeMultilineStop" + }, { + "fqsen": "\\Dotenv\\Parser\\Lines\u003A\u003AisCommentOrWhitespace\u0028\u0029", + "name": "isCommentOrWhitespace", + "summary": "Determine\u0020if\u0020the\u0020line\u0020in\u0020the\u0020file\u0020is\u0020a\u0020comment\u0020or\u0020whitespace.", + "url": "classes/Dotenv-Parser-Lines.html#method_isCommentOrWhitespace" + }, { + "fqsen": "\\Dotenv\\Parser\\Parser", + "name": "Parser", + "summary": "", + "url": "classes/Dotenv-Parser-Parser.html" + }, { + "fqsen": "\\Dotenv\\Parser\\Parser\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parse\u0020content\u0020into\u0020an\u0020entry\u0020array.", + "url": "classes/Dotenv-Parser-Parser.html#method_parse" + }, { + "fqsen": "\\Dotenv\\Parser\\Parser\u003A\u003Aprocess\u0028\u0029", + "name": "process", + "summary": "Convert\u0020the\u0020raw\u0020entries\u0020into\u0020proper\u0020entries.", + "url": "classes/Dotenv-Parser-Parser.html#method_process" + }, { + "fqsen": "\\Dotenv\\Parser\\ParserInterface", + "name": "ParserInterface", + "summary": "", + "url": "classes/Dotenv-Parser-ParserInterface.html" + }, { + "fqsen": "\\Dotenv\\Parser\\ParserInterface\u003A\u003Aparse\u0028\u0029", + "name": "parse", + "summary": "Parse\u0020content\u0020into\u0020an\u0020entry\u0020array.", + "url": "classes/Dotenv-Parser-ParserInterface.html#method_parse" + }, { + "fqsen": "\\Dotenv\\Parser\\Value", + "name": "Value", + "summary": "", + "url": "classes/Dotenv-Parser-Value.html" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Internal\u0020constructor\u0020for\u0020a\u0020value.", + "url": "classes/Dotenv-Parser-Value.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003Ablank\u0028\u0029", + "name": "blank", + "summary": "Create\u0020an\u0020empty\u0020value\u0020instance.", + "url": "classes/Dotenv-Parser-Value.html#method_blank" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003Aappend\u0028\u0029", + "name": "append", + "summary": "Create\u0020a\u0020new\u0020value\u0020instance,\u0020appending\u0020the\u0020characters.", + "url": "classes/Dotenv-Parser-Value.html#method_append" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003AgetChars\u0028\u0029", + "name": "getChars", + "summary": "Get\u0020the\u0020string\u0020representation\u0020of\u0020the\u0020parsed\u0020value.", + "url": "classes/Dotenv-Parser-Value.html#method_getChars" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003AgetVars\u0028\u0029", + "name": "getVars", + "summary": "Get\u0020the\u0020locations\u0020of\u0020the\u0020variables\u0020in\u0020the\u0020value.", + "url": "classes/Dotenv-Parser-Value.html#method_getVars" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003A\u0024chars", + "name": "chars", + "summary": "The\u0020string\u0020representation\u0020of\u0020the\u0020parsed\u0020value.", + "url": "classes/Dotenv-Parser-Value.html#property_chars" + }, { + "fqsen": "\\Dotenv\\Parser\\Value\u003A\u003A\u0024vars", + "name": "vars", + "summary": "The\u0020locations\u0020of\u0020the\u0020variables\u0020in\u0020the\u0020value.", + "url": "classes/Dotenv-Parser-Value.html#property_vars" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\AdapterInterface", + "name": "AdapterInterface", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-AdapterInterface.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\AdapterInterface\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020adapter,\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Dotenv-Repository-Adapter-AdapterInterface.html#method_create" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter", + "name": "ApacheAdapter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020apache\u0020adapter\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020adapter,\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html#method_create" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Determines\u0020if\u0020the\u0020adapter\u0020is\u0020supported.", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html#method_isSupported" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ApacheAdapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ApacheAdapter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter", + "name": "ArrayAdapter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020array\u0020adapter\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020adapter,\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html#method_create" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ArrayAdapter\u003A\u003A\u0024variables", + "name": "variables", + "summary": "The\u0020variables\u0020and\u0020their\u0020values.", + "url": "classes/Dotenv-Repository-Adapter-ArrayAdapter.html#property_variables" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\EnvConstAdapter", + "name": "EnvConstAdapter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-EnvConstAdapter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\EnvConstAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020env\u0020const\u0020adapter\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-EnvConstAdapter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\EnvConstAdapter\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020adapter,\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Dotenv-Repository-Adapter-EnvConstAdapter.html#method_create" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\EnvConstAdapter\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-EnvConstAdapter.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\EnvConstAdapter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-EnvConstAdapter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\EnvConstAdapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-EnvConstAdapter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter", + "name": "GuardedWriter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020guarded\u0020writer\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter\u003A\u003AisAllowed\u0028\u0029", + "name": "isAllowed", + "summary": "Determine\u0020if\u0020the\u0020given\u0020variable\u0020is\u0020allowed.", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html#method_isAllowed" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter\u003A\u003A\u0024writer", + "name": "writer", + "summary": "The\u0020inner\u0020writer\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html#property_writer" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\GuardedWriter\u003A\u003A\u0024allowList", + "name": "allowList", + "summary": "The\u0020variable\u0020name\u0020allow\u0020list.", + "url": "classes/Dotenv-Repository-Adapter-GuardedWriter.html#property_allowList" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter", + "name": "ImmutableWriter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020immutable\u0020writer\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003AisExternallyDefined\u0028\u0029", + "name": "isExternallyDefined", + "summary": "Determine\u0020if\u0020the\u0020given\u0020variable\u0020is\u0020externally\u0020defined.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#method_isExternallyDefined" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003A\u0024writer", + "name": "writer", + "summary": "The\u0020inner\u0020writer\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#property_writer" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003A\u0024reader", + "name": "reader", + "summary": "The\u0020inner\u0020reader\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#property_reader" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ImmutableWriter\u003A\u003A\u0024loaded", + "name": "loaded", + "summary": "The\u0020record\u0020of\u0020loaded\u0020variables.", + "url": "classes/Dotenv-Repository-Adapter-ImmutableWriter.html#property_loaded" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiReader", + "name": "MultiReader", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-MultiReader.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiReader\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020multi\u002Dreader\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-MultiReader.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiReader\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-MultiReader.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiReader\u003A\u003A\u0024readers", + "name": "readers", + "summary": "The\u0020set\u0020of\u0020readers\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-MultiReader.html#property_readers" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiWriter", + "name": "MultiWriter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-MultiWriter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020multi\u002Dwriter\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-MultiWriter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiWriter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-MultiWriter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiWriter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-MultiWriter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\MultiWriter\u003A\u003A\u0024writers", + "name": "writers", + "summary": "The\u0020set\u0020of\u0020writers\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-MultiWriter.html#property_writers" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter", + "name": "PutenvAdapter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020putenv\u0020adapter\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020adapter,\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html#method_create" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter\u003A\u003AisSupported\u0028\u0029", + "name": "isSupported", + "summary": "Determines\u0020if\u0020the\u0020adapter\u0020is\u0020supported.", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html#method_isSupported" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\PutenvAdapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-PutenvAdapter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReaderInterface", + "name": "ReaderInterface", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-ReaderInterface.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReaderInterface\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-ReaderInterface.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter", + "name": "ReplacingWriter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020replacement\u0020writer\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003Aexists\u0028\u0029", + "name": "exists", + "summary": "Does\u0020the\u0020given\u0020environment\u0020variable\u0020exist.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#method_exists" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003A\u0024writer", + "name": "writer", + "summary": "The\u0020inner\u0020writer\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#property_writer" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003A\u0024reader", + "name": "reader", + "summary": "The\u0020inner\u0020reader\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#property_reader" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ReplacingWriter\u003A\u003A\u0024seen", + "name": "seen", + "summary": "The\u0020record\u0020of\u0020seen\u0020variables.", + "url": "classes/Dotenv-Repository-Adapter-ReplacingWriter.html#property_seen" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ServerConstAdapter", + "name": "ServerConstAdapter", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-ServerConstAdapter.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ServerConstAdapter\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020server\u0020const\u0020adapter\u0020instance.", + "url": "classes/Dotenv-Repository-Adapter-ServerConstAdapter.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ServerConstAdapter\u003A\u003Acreate\u0028\u0029", + "name": "create", + "summary": "Create\u0020a\u0020new\u0020instance\u0020of\u0020the\u0020adapter,\u0020if\u0020it\u0020is\u0020available.", + "url": "classes/Dotenv-Repository-Adapter-ServerConstAdapter.html#method_create" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ServerConstAdapter\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020an\u0020environment\u0020variable,\u0020if\u0020it\u0020exists.", + "url": "classes/Dotenv-Repository-Adapter-ServerConstAdapter.html#method_read" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ServerConstAdapter\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ServerConstAdapter.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\ServerConstAdapter\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-ServerConstAdapter.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\WriterInterface", + "name": "WriterInterface", + "summary": "", + "url": "classes/Dotenv-Repository-Adapter-WriterInterface.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\WriterInterface\u003A\u003Awrite\u0028\u0029", + "name": "write", + "summary": "Write\u0020to\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-WriterInterface.html#method_write" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter\\WriterInterface\u003A\u003Adelete\u0028\u0029", + "name": "delete", + "summary": "Delete\u0020an\u0020environment\u0020variable,\u0020if\u0020possible.", + "url": "classes/Dotenv-Repository-Adapter-WriterInterface.html#method_delete" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository", + "name": "AdapterRepository", + "summary": "", + "url": "classes/Dotenv-Repository-AdapterRepository.html" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020adapter\u0020repository\u0020instance.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020the\u0020given\u0020environment\u0020variable\u0020is\u0020defined.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#method_has" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020environment\u0020variable.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#method_get" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020an\u0020environment\u0020variable.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#method_set" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Clear\u0020an\u0020environment\u0020variable.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#method_clear" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003A\u0024reader", + "name": "reader", + "summary": "The\u0020reader\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#property_reader" + }, { + "fqsen": "\\Dotenv\\Repository\\AdapterRepository\u003A\u003A\u0024writer", + "name": "writer", + "summary": "The\u0020writer\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-AdapterRepository.html#property_writer" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder", + "name": "RepositoryBuilder", + "summary": "", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020repository\u0020builder\u0020instance.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AcreateWithNoAdapters\u0028\u0029", + "name": "createWithNoAdapters", + "summary": "Create\u0020a\u0020new\u0020repository\u0020builder\u0020instance\u0020with\u0020no\u0020adapters\u0020added.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_createWithNoAdapters" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AcreateWithDefaultAdapters\u0028\u0029", + "name": "createWithDefaultAdapters", + "summary": "Create\u0020a\u0020new\u0020repository\u0020builder\u0020instance\u0020with\u0020the\u0020default\u0020adapters\u0020added.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_createWithDefaultAdapters" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AdefaultAdapters\u0028\u0029", + "name": "defaultAdapters", + "summary": "Return\u0020the\u0020array\u0020of\u0020default\u0020adapters.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_defaultAdapters" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AisAnAdapterClass\u0028\u0029", + "name": "isAnAdapterClass", + "summary": "Determine\u0020if\u0020the\u0020given\u0020name\u0020if\u0020of\u0020an\u0020adapterclass.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_isAnAdapterClass" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AaddReader\u0028\u0029", + "name": "addReader", + "summary": "Creates\u0020a\u0020repository\u0020builder\u0020with\u0020the\u0020given\u0020reader\u0020added.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_addReader" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AaddWriter\u0028\u0029", + "name": "addWriter", + "summary": "Creates\u0020a\u0020repository\u0020builder\u0020with\u0020the\u0020given\u0020writer\u0020added.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_addWriter" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003AaddAdapter\u0028\u0029", + "name": "addAdapter", + "summary": "Creates\u0020a\u0020repository\u0020builder\u0020with\u0020the\u0020given\u0020adapter\u0020added.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_addAdapter" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003A\u0024immutable", + "name": "immutable", + "summary": "Are\u0020we\u0020immutable\u003F", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#property_immutable" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003A\u0024allowList", + "name": "allowList", + "summary": "The\u0020variable\u0020name\u0020allow\u0020list.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#property_allowList" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Creates\u0020a\u0020new\u0020repository\u0020instance.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#method_make" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003ADEFAULT_ADAPTERS", + "name": "DEFAULT_ADAPTERS", + "summary": "The\u0020set\u0020of\u0020default\u0020adapters.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#constant_DEFAULT_ADAPTERS" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003A\u0024readers", + "name": "readers", + "summary": "The\u0020set\u0020of\u0020readers\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#property_readers" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryBuilder\u003A\u003A\u0024writers", + "name": "writers", + "summary": "The\u0020set\u0020of\u0020writers\u0020to\u0020use.", + "url": "classes/Dotenv-Repository-RepositoryBuilder.html#property_writers" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryInterface", + "name": "RepositoryInterface", + "summary": "", + "url": "classes/Dotenv-Repository-RepositoryInterface.html" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryInterface\u003A\u003Ahas\u0028\u0029", + "name": "has", + "summary": "Determine\u0020if\u0020the\u0020given\u0020environment\u0020variable\u0020is\u0020defined.", + "url": "classes/Dotenv-Repository-RepositoryInterface.html#method_has" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryInterface\u003A\u003Aget\u0028\u0029", + "name": "get", + "summary": "Get\u0020an\u0020environment\u0020variable.", + "url": "classes/Dotenv-Repository-RepositoryInterface.html#method_get" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryInterface\u003A\u003Aset\u0028\u0029", + "name": "set", + "summary": "Set\u0020an\u0020environment\u0020variable.", + "url": "classes/Dotenv-Repository-RepositoryInterface.html#method_set" + }, { + "fqsen": "\\Dotenv\\Repository\\RepositoryInterface\u003A\u003Aclear\u0028\u0029", + "name": "clear", + "summary": "Clear\u0020an\u0020environment\u0020variable.", + "url": "classes/Dotenv-Repository-RepositoryInterface.html#method_clear" + }, { + "fqsen": "\\Dotenv\\Store\\FileStore", + "name": "FileStore", + "summary": "", + "url": "classes/Dotenv-Store-FileStore.html" + }, { + "fqsen": "\\Dotenv\\Store\\FileStore\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020file\u0020store\u0020instance.", + "url": "classes/Dotenv-Store-FileStore.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Store\\FileStore\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020the\u0020content\u0020of\u0020the\u0020environment\u0020file\u0028s\u0029.", + "url": "classes/Dotenv-Store-FileStore.html#method_read" + }, { + "fqsen": "\\Dotenv\\Store\\FileStore\u003A\u003A\u0024filePaths", + "name": "filePaths", + "summary": "The\u0020file\u0020paths.", + "url": "classes/Dotenv-Store-FileStore.html#property_filePaths" + }, { + "fqsen": "\\Dotenv\\Store\\FileStore\u003A\u003A\u0024shortCircuit", + "name": "shortCircuit", + "summary": "Should\u0020file\u0020loading\u0020short\u0020circuit\u003F", + "url": "classes/Dotenv-Store-FileStore.html#property_shortCircuit" + }, { + "fqsen": "\\Dotenv\\Store\\FileStore\u003A\u003A\u0024fileEncoding", + "name": "fileEncoding", + "summary": "The\u0020file\u0020encoding.", + "url": "classes/Dotenv-Store-FileStore.html#property_fileEncoding" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder", + "name": "StoreBuilder", + "summary": "", + "url": "classes/Dotenv-Store-StoreBuilder.html" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020store\u0020builder\u0020instance.", + "url": "classes/Dotenv-Store-StoreBuilder.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003AcreateWithNoNames\u0028\u0029", + "name": "createWithNoNames", + "summary": "Create\u0020a\u0020new\u0020store\u0020builder\u0020instance\u0020with\u0020no\u0020names.", + "url": "classes/Dotenv-Store-StoreBuilder.html#method_createWithNoNames" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003AcreateWithDefaultName\u0028\u0029", + "name": "createWithDefaultName", + "summary": "Create\u0020a\u0020new\u0020store\u0020builder\u0020instance\u0020with\u0020the\u0020default\u0020name.", + "url": "classes/Dotenv-Store-StoreBuilder.html#method_createWithDefaultName" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003AaddPath\u0028\u0029", + "name": "addPath", + "summary": "Creates\u0020a\u0020store\u0020builder\u0020with\u0020the\u0020given\u0020path\u0020added.", + "url": "classes/Dotenv-Store-StoreBuilder.html#method_addPath" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003AaddName\u0028\u0029", + "name": "addName", + "summary": "Creates\u0020a\u0020store\u0020builder\u0020with\u0020the\u0020given\u0020name\u0020added.", + "url": "classes/Dotenv-Store-StoreBuilder.html#method_addName" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003A\u0024shortCircuit", + "name": "shortCircuit", + "summary": "Should\u0020file\u0020loading\u0020short\u0020circuit\u003F", + "url": "classes/Dotenv-Store-StoreBuilder.html#property_shortCircuit" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003A\u0024fileEncoding", + "name": "fileEncoding", + "summary": "The\u0020file\u0020encoding.", + "url": "classes/Dotenv-Store-StoreBuilder.html#property_fileEncoding" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003Amake\u0028\u0029", + "name": "make", + "summary": "Creates\u0020a\u0020new\u0020store\u0020instance.", + "url": "classes/Dotenv-Store-StoreBuilder.html#method_make" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003ADEFAULT_NAME", + "name": "DEFAULT_NAME", + "summary": "The\u0020of\u0020default\u0020name.", + "url": "classes/Dotenv-Store-StoreBuilder.html#constant_DEFAULT_NAME" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003A\u0024paths", + "name": "paths", + "summary": "The\u0020paths\u0020to\u0020search\u0020within.", + "url": "classes/Dotenv-Store-StoreBuilder.html#property_paths" + }, { + "fqsen": "\\Dotenv\\Store\\StoreBuilder\u003A\u003A\u0024names", + "name": "names", + "summary": "The\u0020file\u0020names\u0020to\u0020search\u0020for.", + "url": "classes/Dotenv-Store-StoreBuilder.html#property_names" + }, { + "fqsen": "\\Dotenv\\Store\\StoreInterface", + "name": "StoreInterface", + "summary": "", + "url": "classes/Dotenv-Store-StoreInterface.html" + }, { + "fqsen": "\\Dotenv\\Store\\StoreInterface\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020the\u0020content\u0020of\u0020the\u0020environment\u0020file\u0028s\u0029.", + "url": "classes/Dotenv-Store-StoreInterface.html#method_read" + }, { + "fqsen": "\\Dotenv\\Store\\StringStore", + "name": "StringStore", + "summary": "", + "url": "classes/Dotenv-Store-StringStore.html" + }, { + "fqsen": "\\Dotenv\\Store\\StringStore\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020string\u0020store\u0020instance.", + "url": "classes/Dotenv-Store-StringStore.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Store\\StringStore\u003A\u003Aread\u0028\u0029", + "name": "read", + "summary": "Read\u0020the\u0020content\u0020of\u0020the\u0020environment\u0020file\u0028s\u0029.", + "url": "classes/Dotenv-Store-StringStore.html#method_read" + }, { + "fqsen": "\\Dotenv\\Store\\StringStore\u003A\u003A\u0024content", + "name": "content", + "summary": "The\u0020file\u0020content.", + "url": "classes/Dotenv-Store-StringStore.html#property_content" + }, { + "fqsen": "\\Dotenv\\Validator", + "name": "Validator", + "summary": "", + "url": "classes/Dotenv-Validator.html" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "Create\u0020a\u0020new\u0020validator\u0020instance.", + "url": "classes/Dotenv-Validator.html#method___construct" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003Arequired\u0028\u0029", + "name": "required", + "summary": "Assert\u0020that\u0020each\u0020variable\u0020is\u0020present.", + "url": "classes/Dotenv-Validator.html#method_required" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003AnotEmpty\u0028\u0029", + "name": "notEmpty", + "summary": "Assert\u0020that\u0020each\u0020variable\u0020is\u0020not\u0020empty.", + "url": "classes/Dotenv-Validator.html#method_notEmpty" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003AisInteger\u0028\u0029", + "name": "isInteger", + "summary": "Assert\u0020that\u0020each\u0020specified\u0020variable\u0020is\u0020an\u0020integer.", + "url": "classes/Dotenv-Validator.html#method_isInteger" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003AisBoolean\u0028\u0029", + "name": "isBoolean", + "summary": "Assert\u0020that\u0020each\u0020specified\u0020variable\u0020is\u0020a\u0020boolean.", + "url": "classes/Dotenv-Validator.html#method_isBoolean" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003AallowedValues\u0028\u0029", + "name": "allowedValues", + "summary": "Assert\u0020that\u0020each\u0020variable\u0020is\u0020amongst\u0020the\u0020given\u0020choices.", + "url": "classes/Dotenv-Validator.html#method_allowedValues" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003AallowedRegexValues\u0028\u0029", + "name": "allowedRegexValues", + "summary": "Assert\u0020that\u0020each\u0020variable\u0020matches\u0020the\u0020given\u0020regular\u0020expression.", + "url": "classes/Dotenv-Validator.html#method_allowedRegexValues" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003Aassert\u0028\u0029", + "name": "assert", + "summary": "Assert\u0020that\u0020the\u0020callback\u0020returns\u0020true\u0020for\u0020each\u0020variable.", + "url": "classes/Dotenv-Validator.html#method_assert" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003AassertNullable\u0028\u0029", + "name": "assertNullable", + "summary": "Assert\u0020that\u0020the\u0020callback\u0020returns\u0020true\u0020for\u0020each\u0020variable.", + "url": "classes/Dotenv-Validator.html#method_assertNullable" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003A\u0024repository", + "name": "repository", + "summary": "The\u0020environment\u0020repository\u0020instance.", + "url": "classes/Dotenv-Validator.html#property_repository" + }, { + "fqsen": "\\Dotenv\\Validator\u003A\u003A\u0024variables", + "name": "variables", + "summary": "The\u0020variables\u0020to\u0020validate.", + "url": "classes/Dotenv-Validator.html#property_variables" + }, { + "fqsen": "\\voku\\helper\\ASCII", + "name": "ASCII", + "summary": "", + "url": "classes/voku-helper-ASCII.html" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AgetAllLanguages\u0028\u0029", + "name": "getAllLanguages", + "summary": "Get\u0020all\u0020languages\u0020from\u0020the\u0020constants\u0020\u0022ASCII\u003A\u003A.\u002ALANGUAGE_CODE\u0022.", + "url": "classes/voku-helper-ASCII.html#method_getAllLanguages" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AcharsArray\u0028\u0029", + "name": "charsArray", + "summary": "Returns\u0020an\u0020replacement\u0020array\u0020for\u0020ASCII\u0020methods.", + "url": "classes/voku-helper-ASCII.html#method_charsArray" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AcharsArrayWithMultiLanguageValues\u0028\u0029", + "name": "charsArrayWithMultiLanguageValues", + "summary": "Returns\u0020an\u0020replacement\u0020array\u0020for\u0020ASCII\u0020methods\u0020with\u0020a\u0020mix\u0020of\u0020multiple\u0020languages.", + "url": "classes/voku-helper-ASCII.html#method_charsArrayWithMultiLanguageValues" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AcharsArrayWithOneLanguage\u0028\u0029", + "name": "charsArrayWithOneLanguage", + "summary": "Returns\u0020an\u0020replacement\u0020array\u0020for\u0020ASCII\u0020methods\u0020with\u0020one\u0020language.", + "url": "classes/voku-helper-ASCII.html#method_charsArrayWithOneLanguage" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AcharsArrayWithSingleLanguageValues\u0028\u0029", + "name": "charsArrayWithSingleLanguageValues", + "summary": "Returns\u0020an\u0020replacement\u0020array\u0020for\u0020ASCII\u0020methods\u0020with\u0020multiple\u0020languages.", + "url": "classes/voku-helper-ASCII.html#method_charsArrayWithSingleLanguageValues" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Aclean\u0028\u0029", + "name": "clean", + "summary": "Accepts\u0020a\u0020string\u0020and\u0020removes\u0020all\u0020non\u002DUTF\u002D8\u0020characters\u0020from\u0020it\u0020\u002B\u0020extras\u0020if\u0020needed.", + "url": "classes/voku-helper-ASCII.html#method_clean" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ais_ascii\u0028\u0029", + "name": "is_ascii", + "summary": "Checks\u0020if\u0020a\u0020string\u0020is\u00207\u0020bit\u0020ASCII.", + "url": "classes/voku-helper-ASCII.html#method_is_ascii" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Anormalize_msword\u0028\u0029", + "name": "normalize_msword", + "summary": "Returns\u0020a\u0020string\u0020with\u0020smart\u0020quotes,\u0020ellipsis\u0020characters,\u0020and\u0020dashes\u0020from\nWindows\u002D1252\u0020\u0028commonly\u0020used\u0020in\u0020Word\u0020documents\u0029\u0020replaced\u0020by\u0020their\u0020ASCII\nequivalents.", + "url": "classes/voku-helper-ASCII.html#method_normalize_msword" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Anormalize_whitespace\u0028\u0029", + "name": "normalize_whitespace", + "summary": "Normalize\u0020the\u0020whitespace.", + "url": "classes/voku-helper-ASCII.html#method_normalize_whitespace" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Aremove_invisible_characters\u0028\u0029", + "name": "remove_invisible_characters", + "summary": "Remove\u0020invisible\u0020characters\u0020from\u0020a\u0020string.", + "url": "classes/voku-helper-ASCII.html#method_remove_invisible_characters" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ato_ascii_remap\u0028\u0029", + "name": "to_ascii_remap", + "summary": "WARNING\u003A\u0020This\u0020method\u0020will\u0020return\u0020broken\u0020characters\u0020and\u0020is\u0020only\u0020for\u0020special\u0020cases.", + "url": "classes/voku-helper-ASCII.html#method_to_ascii_remap" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ato_ascii_remap_intern\u0028\u0029", + "name": "to_ascii_remap_intern", + "summary": "WARNING\u003A\u0020This\u0020method\u0020will\u0020return\u0020broken\u0020characters\u0020and\u0020is\u0020only\u0020for\u0020special\u0020cases.", + "url": "classes/voku-helper-ASCII.html#method_to_ascii_remap_intern" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ato_ascii\u0028\u0029", + "name": "to_ascii", + "summary": "Returns\u0020an\u0020ASCII\u0020version\u0020of\u0020the\u0020string.\u0020A\u0020set\u0020of\u0020non\u002DASCII\u0020characters\u0020are\nreplaced\u0020with\u0020their\u0020closest\u0020ASCII\u0020counterparts,\u0020and\u0020the\u0020rest\u0020are\u0020removed\nby\u0020default.\u0020The\u0020language\u0020or\u0020locale\u0020of\u0020the\u0020source\u0020string\u0020can\u0020be\u0020supplied\nfor\u0020language\u002Dspecific\u0020transliteration\u0020in\u0020any\u0020of\u0020the\u0020following\u0020formats\u003A\nen,\u0020en_GB,\u0020or\u0020en\u002DGB.\u0020For\u0020example,\u0020passing\u0020\u0022de\u0022\u0020results\u0020in\u0020\u0022\u00E4\u00F6\u00FC\u0022\u0020mapping\nto\u0020\u0022aeoeue\u0022\u0020rather\u0020than\u0020\u0022aou\u0022\u0020as\u0020in\u0020other\u0020languages.", + "url": "classes/voku-helper-ASCII.html#method_to_ascii" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ato_filename\u0028\u0029", + "name": "to_filename", + "summary": "Convert\u0020given\u0020string\u0020to\u0020safe\u0020filename\u0020\u0028and\u0020keep\u0020string\u0020case\u0029.", + "url": "classes/voku-helper-ASCII.html#method_to_filename" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ato_slugify\u0028\u0029", + "name": "to_slugify", + "summary": "Converts\u0020the\u0020string\u0020into\u0020an\u0020URL\u0020slug.\u0020This\u0020includes\u0020replacing\u0020non\u002DASCII\ncharacters\u0020with\u0020their\u0020closest\u0020ASCII\u0020equivalents,\u0020removing\u0020remaining\nnon\u002DASCII\u0020and\u0020non\u002Dalphanumeric\u0020characters,\u0020and\u0020replacing\u0020whitespace\u0020with\n\u0024separator.\u0020The\u0020separator\u0020defaults\u0020to\u0020a\u0020single\u0020dash,\u0020and\u0020the\u0020string\nis\u0020also\u0020converted\u0020to\u0020lowercase.\u0020The\u0020language\u0020of\u0020the\u0020source\u0020string\u0020can\nalso\u0020be\u0020supplied\u0020for\u0020language\u002Dspecific\u0020transliteration.", + "url": "classes/voku-helper-ASCII.html#method_to_slugify" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Ato_transliterate\u0028\u0029", + "name": "to_transliterate", + "summary": "Returns\u0020an\u0020ASCII\u0020version\u0020of\u0020the\u0020string.\u0020A\u0020set\u0020of\u0020non\u002DASCII\u0020characters\u0020are\nreplaced\u0020with\u0020their\u0020closest\u0020ASCII\u0020counterparts,\u0020and\u0020the\u0020rest\u0020are\u0020removed\nunless\u0020instructed\u0020otherwise.", + "url": "classes/voku-helper-ASCII.html#method_to_transliterate" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003Aget_language\u0028\u0029", + "name": "get_language", + "summary": "Get\u0020the\u0020language\u0020from\u0020a\u0020string.", + "url": "classes/voku-helper-ASCII.html#method_get_language" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AgetData\u0028\u0029", + "name": "getData", + "summary": "Get\u0020data\u0020from\u0020\u0022\/data\/\u002A.php\u0022.", + "url": "classes/voku-helper-ASCII.html#method_getData" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AgetDataIfExists\u0028\u0029", + "name": "getDataIfExists", + "summary": "Get\u0020data\u0020from\u0020\u0022\/data\/\u002A.php\u0022.", + "url": "classes/voku-helper-ASCII.html#method_getDataIfExists" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AprepareAsciiAndExtrasMaps\u0028\u0029", + "name": "prepareAsciiAndExtrasMaps", + "summary": "", + "url": "classes/voku-helper-ASCII.html#method_prepareAsciiAndExtrasMaps" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AprepareAsciiMaps\u0028\u0029", + "name": "prepareAsciiMaps", + "summary": "", + "url": "classes/voku-helper-ASCII.html#method_prepareAsciiMaps" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AprepareAsciiExtras\u0028\u0029", + "name": "prepareAsciiExtras", + "summary": "", + "url": "classes/voku-helper-ASCII.html#method_prepareAsciiExtras" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AUZBEK_LANGUAGE_CODE", + "name": "UZBEK_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_UZBEK_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ATURKMEN_LANGUAGE_CODE", + "name": "TURKMEN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_TURKMEN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ATHAI_LANGUAGE_CODE", + "name": "THAI_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_THAI_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003APASHTO_LANGUAGE_CODE", + "name": "PASHTO_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_PASHTO_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AORIYA_LANGUAGE_CODE", + "name": "ORIYA_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ORIYA_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AMONGOLIAN_LANGUAGE_CODE", + "name": "MONGOLIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_MONGOLIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AKOREAN_LANGUAGE_CODE", + "name": "KOREAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_KOREAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AKIRGHIZ_LANGUAGE_CODE", + "name": "KIRGHIZ_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_KIRGHIZ_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AARMENIAN_LANGUAGE_CODE", + "name": "ARMENIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ARMENIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ABENGALI_LANGUAGE_CODE", + "name": "BENGALI_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_BENGALI_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ABELARUSIAN_LANGUAGE_CODE", + "name": "BELARUSIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_BELARUSIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AAMHARIC_LANGUAGE_CODE", + "name": "AMHARIC_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_AMHARIC_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AJAPANESE_LANGUAGE_CODE", + "name": "JAPANESE_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_JAPANESE_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ACHINESE_LANGUAGE_CODE", + "name": "CHINESE_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_CHINESE_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ADUTCH_LANGUAGE_CODE", + "name": "DUTCH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_DUTCH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AITALIAN_LANGUAGE_CODE", + "name": "ITALIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ITALIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AMACEDONIAN_LANGUAGE_CODE", + "name": "MACEDONIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_MACEDONIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003APORTUGUESE_LANGUAGE_CODE", + "name": "PORTUGUESE_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_PORTUGUESE_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AGREEKLISH_LANGUAGE_CODE", + "name": "GREEKLISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_GREEKLISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AGREEK_LANGUAGE_CODE", + "name": "GREEK_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_GREEK_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AHINDI_LANGUAGE_CODE", + "name": "HINDI_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_HINDI_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ASWEDISH_LANGUAGE_CODE", + "name": "SWEDISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_SWEDISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ATURKISH_LANGUAGE_CODE", + "name": "TURKISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_TURKISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ABULGARIAN_LANGUAGE_CODE", + "name": "BULGARIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_BULGARIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AHUNGARIAN_LANGUAGE_CODE", + "name": "HUNGARIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_HUNGARIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AMYANMAR_LANGUAGE_CODE", + "name": "MYANMAR_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_MYANMAR_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ACROATIAN_LANGUAGE_CODE", + "name": "CROATIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_CROATIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AFINNISH_LANGUAGE_CODE", + "name": "FINNISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_FINNISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AGEORGIAN_LANGUAGE_CODE", + "name": "GEORGIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_GEORGIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ARUSSIAN_LANGUAGE_CODE", + "name": "RUSSIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_RUSSIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ARUSSIAN_PASSPORT_2013_LANGUAGE_CODE", + "name": "RUSSIAN_PASSPORT_2013_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_RUSSIAN_PASSPORT_2013_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ARUSSIAN_GOST_2000_B_LANGUAGE_CODE", + "name": "RUSSIAN_GOST_2000_B_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_RUSSIAN_GOST_2000_B_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AUKRAINIAN_LANGUAGE_CODE", + "name": "UKRAINIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_UKRAINIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AKAZAKH_LANGUAGE_CODE", + "name": "KAZAKH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_KAZAKH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ACZECH_LANGUAGE_CODE", + "name": "CZECH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_CZECH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ADANISH_LANGUAGE_CODE", + "name": "DANISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_DANISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003APOLISH_LANGUAGE_CODE", + "name": "POLISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_POLISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AROMANIAN_LANGUAGE_CODE", + "name": "ROMANIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ROMANIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AESPERANTO_LANGUAGE_CODE", + "name": "ESPERANTO_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ESPERANTO_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AESTONIAN_LANGUAGE_CODE", + "name": "ESTONIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ESTONIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ALATVIAN_LANGUAGE_CODE", + "name": "LATVIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_LATVIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ALITHUANIAN_LANGUAGE_CODE", + "name": "LITHUANIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_LITHUANIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ANORWEGIAN_LANGUAGE_CODE", + "name": "NORWEGIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_NORWEGIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AVIETNAMESE_LANGUAGE_CODE", + "name": "VIETNAMESE_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_VIETNAMESE_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AARABIC_LANGUAGE_CODE", + "name": "ARABIC_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ARABIC_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003APERSIAN_LANGUAGE_CODE", + "name": "PERSIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_PERSIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ASERBIAN_LANGUAGE_CODE", + "name": "SERBIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_SERBIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ASERBIAN_CYRILLIC_LANGUAGE_CODE", + "name": "SERBIAN_CYRILLIC_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_SERBIAN_CYRILLIC_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ASERBIAN_LATIN_LANGUAGE_CODE", + "name": "SERBIAN_LATIN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_SERBIAN_LATIN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AAZERBAIJANI_LANGUAGE_CODE", + "name": "AZERBAIJANI_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_AZERBAIJANI_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003ASLOVAK_LANGUAGE_CODE", + "name": "SLOVAK_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_SLOVAK_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AFRENCH_LANGUAGE_CODE", + "name": "FRENCH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_FRENCH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AFRENCH_AUSTRIAN_LANGUAGE_CODE", + "name": "FRENCH_AUSTRIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_FRENCH_AUSTRIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AFRENCH_SWITZERLAND_LANGUAGE_CODE", + "name": "FRENCH_SWITZERLAND_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_FRENCH_SWITZERLAND_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AGERMAN_LANGUAGE_CODE", + "name": "GERMAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_GERMAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AGERMAN_AUSTRIAN_LANGUAGE_CODE", + "name": "GERMAN_AUSTRIAN_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_GERMAN_AUSTRIAN_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AGERMAN_SWITZERLAND_LANGUAGE_CODE", + "name": "GERMAN_SWITZERLAND_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_GERMAN_SWITZERLAND_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AENGLISH_LANGUAGE_CODE", + "name": "ENGLISH_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_ENGLISH_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AEXTRA_LATIN_CHARS_LANGUAGE_CODE", + "name": "EXTRA_LATIN_CHARS_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_EXTRA_LATIN_CHARS_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AEXTRA_WHITESPACE_CHARS_LANGUAGE_CODE", + "name": "EXTRA_WHITESPACE_CHARS_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_EXTRA_WHITESPACE_CHARS_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003AEXTRA_MSWORD_CHARS_LANGUAGE_CODE", + "name": "EXTRA_MSWORD_CHARS_LANGUAGE_CODE", + "summary": "", + "url": "classes/voku-helper-ASCII.html#constant_EXTRA_MSWORD_CHARS_LANGUAGE_CODE" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024ASCII_MAPS", + "name": "ASCII_MAPS", + "summary": "", + "url": "classes/voku-helper-ASCII.html#property_ASCII_MAPS" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024ASCII_MAPS_AND_EXTRAS", + "name": "ASCII_MAPS_AND_EXTRAS", + "summary": "", + "url": "classes/voku-helper-ASCII.html#property_ASCII_MAPS_AND_EXTRAS" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024ASCII_EXTRAS", + "name": "ASCII_EXTRAS", + "summary": "", + "url": "classes/voku-helper-ASCII.html#property_ASCII_EXTRAS" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024ORD", + "name": "ORD", + "summary": "", + "url": "classes/voku-helper-ASCII.html#property_ORD" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024LANGUAGE_MAX_KEY", + "name": "LANGUAGE_MAX_KEY", + "summary": "", + "url": "classes/voku-helper-ASCII.html#property_LANGUAGE_MAX_KEY" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024REGEX_ASCII", + "name": "REGEX_ASCII", + "summary": "url\u003A\u0020https\u003A\/\/en.wikipedia.org\/wiki\/Wikipedia\u003AASCII\u0023ASCII_printable_characters", + "url": "classes/voku-helper-ASCII.html#property_REGEX_ASCII" + }, { + "fqsen": "\\voku\\helper\\ASCII\u003A\u003A\u0024BIDI_UNI_CODE_CONTROLS_TABLE", + "name": "BIDI_UNI_CODE_CONTROLS_TABLE", + "summary": "bidirectional\u0020text\u0020chars", + "url": "classes/voku-helper-ASCII.html#property_BIDI_UNI_CODE_CONTROLS_TABLE" + }, { + "fqsen": "\\", + "name": "\\", + "summary": "", + "url": "namespaces/default.html" + }, { + "fqsen": "\\App\\Controllers\\Auth", + "name": "Auth", + "summary": "", + "url": "namespaces/app-controllers-auth.html" + }, { + "fqsen": "\\App\\Controllers", + "name": "Controllers", + "summary": "", + "url": "namespaces/app-controllers.html" + }, { + "fqsen": "\\App", + "name": "App", + "summary": "", + "url": "namespaces/app.html" + }, { + "fqsen": "\\App\\Controllers\\Profile", + "name": "Profile", + "summary": "", + "url": "namespaces/app-controllers-profile.html" + }, { + "fqsen": "\\App\\Models", + "name": "Models", + "summary": "", + "url": "namespaces/app-models.html" + }, { + "fqsen": "\\Carbon\\Doctrine", + "name": "Doctrine", + "summary": "", + "url": "namespaces/carbon-doctrine.html" + }, { + "fqsen": "\\Composer\\Autoload", + "name": "Autoload", + "summary": "", + "url": "namespaces/composer-autoload.html" + }, { + "fqsen": "\\Composer", + "name": "Composer", + "summary": "", + "url": "namespaces/composer.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache", + "name": "Cache", + "summary": "", + "url": "namespaces/doctrine-common-cache.html" + }, { + "fqsen": "\\Doctrine\\Common\\Cache\\Psr6", + "name": "Psr6", + "summary": "", + "url": "namespaces/doctrine-common-cache-psr6.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameters\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/doctrine-dbal-arrayparameters-exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\ArrayParameters", + "name": "ArrayParameters", + "summary": "", + "url": "namespaces/doctrine-dbal-arrayparameters.html" + }, { + "fqsen": "\\Doctrine\\DBAL", + "name": "DBAL", + "summary": "", + "url": "namespaces/doctrine-dbal.html" + }, { + "fqsen": "\\Doctrine", + "name": "Doctrine", + "summary": "", + "url": "namespaces/doctrine.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Cache", + "name": "Cache", + "summary": "", + "url": "namespaces/doctrine-dbal-cache.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Connections", + "name": "Connections", + "summary": "", + "url": "namespaces/doctrine-dbal-connections.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver", + "name": "Driver", + "summary": "", + "url": "namespaces/doctrine-dbal-driver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractOracleDriver", + "name": "AbstractOracleDriver", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-abstractoracledriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver\\Middleware", + "name": "Middleware", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-abstractsqlitedriver-middleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\AbstractSQLiteDriver", + "name": "AbstractSQLiteDriver", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-abstractsqlitedriver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\API", + "name": "API", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-api.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\IBMDB2", + "name": "IBMDB2", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-ibmdb2.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Middleware", + "name": "Middleware", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-middleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli", + "name": "Mysqli", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-mysqli.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\Mysqli\\Initializer", + "name": "Initializer", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-mysqli-initializer.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8", + "name": "OCI8", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-oci8.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\OCI8\\Middleware", + "name": "Middleware", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-oci8-middleware.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO", + "name": "PDO", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pdo.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\MySQL", + "name": "MySQL", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pdo-mysql.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\OCI", + "name": "OCI", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pdo-oci.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\PgSQL", + "name": "PgSQL", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pdo-pgsql.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLite", + "name": "SQLite", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pdo-sqlite.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PDO\\SQLSrv", + "name": "SQLSrv", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pdo-sqlsrv.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL", + "name": "PgSQL", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pgsql.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\PgSQL\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-pgsql-exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLite3", + "name": "SQLite3", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-sqlite3.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Driver\\SQLSrv", + "name": "SQLSrv", + "summary": "", + "url": "namespaces/doctrine-dbal-driver-sqlsrv.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event", + "name": "Event", + "summary": "", + "url": "namespaces/doctrine-dbal-event.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Event\\Listeners", + "name": "Listeners", + "summary": "", + "url": "namespaces/doctrine-dbal-event-listeners.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/doctrine-dbal-exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Id", + "name": "Id", + "summary": "", + "url": "namespaces/doctrine-dbal-id.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Logging", + "name": "Logging", + "summary": "", + "url": "namespaces/doctrine-dbal-logging.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms", + "name": "Platforms", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\Keywords", + "name": "Keywords", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms-keywords.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\MySQL", + "name": "MySQL", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms-mysql.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLite", + "name": "SQLite", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms-sqlite.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer", + "name": "SQLServer", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms-sqlserver.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\SQL\\Builder", + "name": "Builder", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms-sqlserver-sql-builder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Platforms\\SQLServer\\SQL", + "name": "SQL", + "summary": "", + "url": "namespaces/doctrine-dbal-platforms-sqlserver-sql.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Portability", + "name": "Portability", + "summary": "", + "url": "namespaces/doctrine-dbal-portability.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\Expression", + "name": "Expression", + "summary": "", + "url": "namespaces/doctrine-dbal-query-expression.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query\\ForUpdate", + "name": "ForUpdate", + "summary": "", + "url": "namespaces/doctrine-dbal-query-forupdate.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Query", + "name": "Query", + "summary": "", + "url": "namespaces/doctrine-dbal-query.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema", + "name": "Schema", + "summary": "", + "url": "namespaces/doctrine-dbal-schema.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/doctrine-dbal-schema-exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Schema\\Visitor", + "name": "Visitor", + "summary": "", + "url": "namespaces/doctrine-dbal-schema-visitor.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Builder", + "name": "Builder", + "summary": "", + "url": "namespaces/doctrine-dbal-sql-builder.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Parser\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/doctrine-dbal-sql-parser-exception.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL\\Parser", + "name": "Parser", + "summary": "", + "url": "namespaces/doctrine-dbal-sql-parser.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\SQL", + "name": "SQL", + "summary": "", + "url": "namespaces/doctrine-dbal-sql.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/doctrine-dbal-tools-console-command.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console", + "name": "Console", + "summary": "", + "url": "namespaces/doctrine-dbal-tools-console.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools\\Console\\ConnectionProvider", + "name": "ConnectionProvider", + "summary": "", + "url": "namespaces/doctrine-dbal-tools-console-connectionprovider.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Tools", + "name": "Tools", + "summary": "", + "url": "namespaces/doctrine-dbal-tools.html" + }, { + "fqsen": "\\Doctrine\\DBAL\\Types", + "name": "Types", + "summary": "", + "url": "namespaces/doctrine-dbal-types.html" + }, { + "fqsen": "\\Doctrine\\Deprecations", + "name": "Deprecations", + "summary": "", + "url": "namespaces/doctrine-deprecations.html" + }, { + "fqsen": "\\Doctrine\\Deprecations\\PHPUnit", + "name": "PHPUnit", + "summary": "", + "url": "namespaces/doctrine-deprecations-phpunit.html" + }, { + "fqsen": "\\Doctrine\\Common", + "name": "Common", + "summary": "", + "url": "namespaces/doctrine-common.html" + }, { + "fqsen": "\\Doctrine\\Inflector", + "name": "Inflector", + "summary": "", + "url": "namespaces/doctrine-inflector.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\English", + "name": "English", + "summary": "", + "url": "namespaces/doctrine-inflector-rules-english.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\French", + "name": "French", + "summary": "", + "url": "namespaces/doctrine-inflector-rules-french.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\NorwegianBokmal", + "name": "NorwegianBokmal", + "summary": "", + "url": "namespaces/doctrine-inflector-rules-norwegianbokmal.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules", + "name": "Rules", + "summary": "", + "url": "namespaces/doctrine-inflector-rules.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Portuguese", + "name": "Portuguese", + "summary": "", + "url": "namespaces/doctrine-inflector-rules-portuguese.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Spanish", + "name": "Spanish", + "summary": "", + "url": "namespaces/doctrine-inflector-rules-spanish.html" + }, { + "fqsen": "\\Doctrine\\Inflector\\Rules\\Turkish", + "name": "Turkish", + "summary": "", + "url": "namespaces/doctrine-inflector-rules-turkish.html" + }, { + "fqsen": "\\Faker\\Calculator", + "name": "Calculator", + "summary": "", + "url": "namespaces/faker-calculator.html" + }, { + "fqsen": "\\Faker", + "name": "Faker", + "summary": "", + "url": "namespaces/faker.html" + }, { + "fqsen": "\\Faker\\Container", + "name": "Container", + "summary": "", + "url": "namespaces/faker-container.html" + }, { + "fqsen": "\\Faker\\Core", + "name": "Core", + "summary": "", + "url": "namespaces/faker-core.html" + }, { + "fqsen": "\\Faker\\Extension", + "name": "Extension", + "summary": "", + "url": "namespaces/faker-extension.html" + }, { + "fqsen": "\\Faker\\Guesser", + "name": "Guesser", + "summary": "", + "url": "namespaces/faker-guesser.html" + }, { + "fqsen": "\\Faker\\ORM\\CakePHP", + "name": "CakePHP", + "summary": "", + "url": "namespaces/faker-orm-cakephp.html" + }, { + "fqsen": "\\Faker\\ORM", + "name": "ORM", + "summary": "", + "url": "namespaces/faker-orm.html" + }, { + "fqsen": "\\Faker\\ORM\\Doctrine", + "name": "Doctrine", + "summary": "", + "url": "namespaces/faker-orm-doctrine.html" + }, { + "fqsen": "\\Faker\\ORM\\Mandango", + "name": "Mandango", + "summary": "", + "url": "namespaces/faker-orm-mandango.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel", + "name": "Propel", + "summary": "", + "url": "namespaces/faker-orm-propel.html" + }, { + "fqsen": "\\Faker\\ORM\\Propel2", + "name": "Propel2", + "summary": "", + "url": "namespaces/faker-orm-propel2.html" + }, { + "fqsen": "\\Faker\\ORM\\Spot", + "name": "Spot", + "summary": "", + "url": "namespaces/faker-orm-spot.html" + }, { + "fqsen": "\\Faker\\Provider", + "name": "Provider", + "summary": "", + "url": "namespaces/faker-provider.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_EG", + "name": "ar_EG", + "summary": "", + "url": "namespaces/faker-provider-ar-eg.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_JO", + "name": "ar_JO", + "summary": "", + "url": "namespaces/faker-provider-ar-jo.html" + }, { + "fqsen": "\\Faker\\Provider\\ar_SA", + "name": "ar_SA", + "summary": "", + "url": "namespaces/faker-provider-ar-sa.html" + }, { + "fqsen": "\\Faker\\Provider\\at_AT", + "name": "at_AT", + "summary": "", + "url": "namespaces/faker-provider-at-at.html" + }, { + "fqsen": "\\Faker\\Provider\\bg_BG", + "name": "bg_BG", + "summary": "", + "url": "namespaces/faker-provider-bg-bg.html" + }, { + "fqsen": "\\Faker\\Provider\\bn_BD", + "name": "bn_BD", + "summary": "", + "url": "namespaces/faker-provider-bn-bd.html" + }, { + "fqsen": "\\Faker\\Provider\\cs_CZ", + "name": "cs_CZ", + "summary": "", + "url": "namespaces/faker-provider-cs-cz.html" + }, { + "fqsen": "\\Faker\\Provider\\da_DK", + "name": "da_DK", + "summary": "", + "url": "namespaces/faker-provider-da-dk.html" + }, { + "fqsen": "\\Faker\\Provider\\de_AT", + "name": "de_AT", + "summary": "", + "url": "namespaces/faker-provider-de-at.html" + }, { + "fqsen": "\\Faker\\Provider\\de_CH", + "name": "de_CH", + "summary": "", + "url": "namespaces/faker-provider-de-ch.html" + }, { + "fqsen": "\\Faker\\Provider\\de_DE", + "name": "de_DE", + "summary": "", + "url": "namespaces/faker-provider-de-de.html" + }, { + "fqsen": "\\Faker\\Provider\\el_CY", + "name": "el_CY", + "summary": "", + "url": "namespaces/faker-provider-el-cy.html" + }, { + "fqsen": "\\Faker\\Provider\\el_GR", + "name": "el_GR", + "summary": "", + "url": "namespaces/faker-provider-el-gr.html" + }, { + "fqsen": "\\Faker\\Provider\\en_AU", + "name": "en_AU", + "summary": "", + "url": "namespaces/faker-provider-en-au.html" + }, { + "fqsen": "\\Faker\\Provider\\en_CA", + "name": "en_CA", + "summary": "", + "url": "namespaces/faker-provider-en-ca.html" + }, { + "fqsen": "\\Faker\\Provider\\en_GB", + "name": "en_GB", + "summary": "", + "url": "namespaces/faker-provider-en-gb.html" + }, { + "fqsen": "\\Faker\\Provider\\en_HK", + "name": "en_HK", + "summary": "", + "url": "namespaces/faker-provider-en-hk.html" + }, { + "fqsen": "\\Faker\\Provider\\en_IN", + "name": "en_IN", + "summary": "", + "url": "namespaces/faker-provider-en-in.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NG", + "name": "en_NG", + "summary": "", + "url": "namespaces/faker-provider-en-ng.html" + }, { + "fqsen": "\\Faker\\Provider\\en_NZ", + "name": "en_NZ", + "summary": "", + "url": "namespaces/faker-provider-en-nz.html" + }, { + "fqsen": "\\Faker\\Provider\\en_PH", + "name": "en_PH", + "summary": "", + "url": "namespaces/faker-provider-en-ph.html" + }, { + "fqsen": "\\Faker\\Provider\\en_SG", + "name": "en_SG", + "summary": "", + "url": "namespaces/faker-provider-en-sg.html" + }, { + "fqsen": "\\Faker\\Provider\\en_UG", + "name": "en_UG", + "summary": "", + "url": "namespaces/faker-provider-en-ug.html" + }, { + "fqsen": "\\Faker\\Provider\\en_US", + "name": "en_US", + "summary": "", + "url": "namespaces/faker-provider-en-us.html" + }, { + "fqsen": "\\Faker\\Provider\\en_ZA", + "name": "en_ZA", + "summary": "", + "url": "namespaces/faker-provider-en-za.html" + }, { + "fqsen": "\\Faker\\Provider\\es_AR", + "name": "es_AR", + "summary": "", + "url": "namespaces/faker-provider-es-ar.html" + }, { + "fqsen": "\\Faker\\Provider\\es_ES", + "name": "es_ES", + "summary": "", + "url": "namespaces/faker-provider-es-es.html" + }, { + "fqsen": "\\Faker\\Provider\\es_PE", + "name": "es_PE", + "summary": "", + "url": "namespaces/faker-provider-es-pe.html" + }, { + "fqsen": "\\Faker\\Provider\\es_VE", + "name": "es_VE", + "summary": "", + "url": "namespaces/faker-provider-es-ve.html" + }, { + "fqsen": "\\Faker\\Provider\\et_EE", + "name": "et_EE", + "summary": "", + "url": "namespaces/faker-provider-et-ee.html" + }, { + "fqsen": "\\Faker\\Provider\\fa_IR", + "name": "fa_IR", + "summary": "", + "url": "namespaces/faker-provider-fa-ir.html" + }, { + "fqsen": "\\Faker\\Provider\\fi_FI", + "name": "fi_FI", + "summary": "", + "url": "namespaces/faker-provider-fi-fi.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_BE", + "name": "fr_BE", + "summary": "", + "url": "namespaces/faker-provider-fr-be.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CA", + "name": "fr_CA", + "summary": "", + "url": "namespaces/faker-provider-fr-ca.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_CH", + "name": "fr_CH", + "summary": "", + "url": "namespaces/faker-provider-fr-ch.html" + }, { + "fqsen": "\\Faker\\Provider\\fr_FR", + "name": "fr_FR", + "summary": "", + "url": "namespaces/faker-provider-fr-fr.html" + }, { + "fqsen": "\\Faker\\Provider\\he_IL", + "name": "he_IL", + "summary": "", + "url": "namespaces/faker-provider-he-il.html" + }, { + "fqsen": "\\Faker\\Provider\\hr_HR", + "name": "hr_HR", + "summary": "", + "url": "namespaces/faker-provider-hr-hr.html" + }, { + "fqsen": "\\Faker\\Provider\\hu_HU", + "name": "hu_HU", + "summary": "", + "url": "namespaces/faker-provider-hu-hu.html" + }, { + "fqsen": "\\Faker\\Provider\\hy_AM", + "name": "hy_AM", + "summary": "", + "url": "namespaces/faker-provider-hy-am.html" + }, { + "fqsen": "\\Faker\\Provider\\id_ID", + "name": "id_ID", + "summary": "", + "url": "namespaces/faker-provider-id-id.html" + }, { + "fqsen": "\\Faker\\Provider\\is_IS", + "name": "is_IS", + "summary": "", + "url": "namespaces/faker-provider-is-is.html" + }, { + "fqsen": "\\Faker\\Provider\\it_CH", + "name": "it_CH", + "summary": "", + "url": "namespaces/faker-provider-it-ch.html" + }, { + "fqsen": "\\Faker\\Provider\\it_IT", + "name": "it_IT", + "summary": "", + "url": "namespaces/faker-provider-it-it.html" + }, { + "fqsen": "\\Faker\\Provider\\ja_JP", + "name": "ja_JP", + "summary": "", + "url": "namespaces/faker-provider-ja-jp.html" + }, { + "fqsen": "\\Faker\\Provider\\ka_GE", + "name": "ka_GE", + "summary": "", + "url": "namespaces/faker-provider-ka-ge.html" + }, { + "fqsen": "\\Faker\\Provider\\kk_KZ", + "name": "kk_KZ", + "summary": "", + "url": "namespaces/faker-provider-kk-kz.html" + }, { + "fqsen": "\\Faker\\Provider\\ko_KR", + "name": "ko_KR", + "summary": "", + "url": "namespaces/faker-provider-ko-kr.html" + }, { + "fqsen": "\\Faker\\Provider\\lt_LT", + "name": "lt_LT", + "summary": "", + "url": "namespaces/faker-provider-lt-lt.html" + }, { + "fqsen": "\\Faker\\Provider\\lv_LV", + "name": "lv_LV", + "summary": "", + "url": "namespaces/faker-provider-lv-lv.html" + }, { + "fqsen": "\\Faker\\Provider\\me_ME", + "name": "me_ME", + "summary": "", + "url": "namespaces/faker-provider-me-me.html" + }, { + "fqsen": "\\Faker\\Provider\\mn_MN", + "name": "mn_MN", + "summary": "", + "url": "namespaces/faker-provider-mn-mn.html" + }, { + "fqsen": "\\Faker\\Provider\\ms_MY", + "name": "ms_MY", + "summary": "", + "url": "namespaces/faker-provider-ms-my.html" + }, { + "fqsen": "\\Faker\\Provider\\nb_NO", + "name": "nb_NO", + "summary": "", + "url": "namespaces/faker-provider-nb-no.html" + }, { + "fqsen": "\\Faker\\Provider\\ne_NP", + "name": "ne_NP", + "summary": "", + "url": "namespaces/faker-provider-ne-np.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_BE", + "name": "nl_BE", + "summary": "", + "url": "namespaces/faker-provider-nl-be.html" + }, { + "fqsen": "\\Faker\\Provider\\nl_NL", + "name": "nl_NL", + "summary": "", + "url": "namespaces/faker-provider-nl-nl.html" + }, { + "fqsen": "\\Faker\\Provider\\pl_PL", + "name": "pl_PL", + "summary": "", + "url": "namespaces/faker-provider-pl-pl.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_BR", + "name": "pt_BR", + "summary": "", + "url": "namespaces/faker-provider-pt-br.html" + }, { + "fqsen": "\\Faker\\Provider\\pt_PT", + "name": "pt_PT", + "summary": "", + "url": "namespaces/faker-provider-pt-pt.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_MD", + "name": "ro_MD", + "summary": "", + "url": "namespaces/faker-provider-ro-md.html" + }, { + "fqsen": "\\Faker\\Provider\\ro_RO", + "name": "ro_RO", + "summary": "", + "url": "namespaces/faker-provider-ro-ro.html" + }, { + "fqsen": "\\Faker\\Provider\\ru_RU", + "name": "ru_RU", + "summary": "", + "url": "namespaces/faker-provider-ru-ru.html" + }, { + "fqsen": "\\Faker\\Provider\\sk_SK", + "name": "sk_SK", + "summary": "", + "url": "namespaces/faker-provider-sk-sk.html" + }, { + "fqsen": "\\Faker\\Provider\\sl_SI", + "name": "sl_SI", + "summary": "", + "url": "namespaces/faker-provider-sl-si.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Cyrl_RS", + "name": "sr_Cyrl_RS", + "summary": "", + "url": "namespaces/faker-provider-sr-cyrl-rs.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_Latn_RS", + "name": "sr_Latn_RS", + "summary": "", + "url": "namespaces/faker-provider-sr-latn-rs.html" + }, { + "fqsen": "\\Faker\\Provider\\sr_RS", + "name": "sr_RS", + "summary": "", + "url": "namespaces/faker-provider-sr-rs.html" + }, { + "fqsen": "\\Faker\\Provider\\sv_SE", + "name": "sv_SE", + "summary": "", + "url": "namespaces/faker-provider-sv-se.html" + }, { + "fqsen": "\\Faker\\Provider\\th_TH", + "name": "th_TH", + "summary": "", + "url": "namespaces/faker-provider-th-th.html" + }, { + "fqsen": "\\Faker\\Provider\\tr_TR", + "name": "tr_TR", + "summary": "", + "url": "namespaces/faker-provider-tr-tr.html" + }, { + "fqsen": "\\Faker\\Provider\\uk_UA", + "name": "uk_UA", + "summary": "", + "url": "namespaces/faker-provider-uk-ua.html" + }, { + "fqsen": "\\Faker\\Provider\\vi_VN", + "name": "vi_VN", + "summary": "", + "url": "namespaces/faker-provider-vi-vn.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_CN", + "name": "zh_CN", + "summary": "", + "url": "namespaces/faker-provider-zh-cn.html" + }, { + "fqsen": "\\Faker\\Provider\\zh_TW", + "name": "zh_TW", + "summary": "", + "url": "namespaces/faker-provider-zh-tw.html" + }, { + "fqsen": "\\Firebase\\JWT", + "name": "JWT", + "summary": "", + "url": "namespaces/firebase-jwt.html" + }, { + "fqsen": "\\Firebase", + "name": "Firebase", + "summary": "", + "url": "namespaces/firebase.html" + }, { + "fqsen": "\\GrahamCampbell\\ResultType", + "name": "ResultType", + "summary": "", + "url": "namespaces/grahamcampbell-resulttype.html" + }, { + "fqsen": "\\GrahamCampbell", + "name": "GrahamCampbell", + "summary": "", + "url": "namespaces/grahamcampbell.html" + }, { + "fqsen": "\\Illuminate\\Bus", + "name": "Bus", + "summary": "", + "url": "namespaces/illuminate-bus.html" + }, { + "fqsen": "\\Illuminate", + "name": "Illuminate", + "summary": "", + "url": "namespaces/illuminate.html" + }, { + "fqsen": "\\Illuminate\\Bus\\Events", + "name": "Events", + "summary": "", + "url": "namespaces/illuminate-bus-events.html" + }, { + "fqsen": "\\Illuminate\\Support", + "name": "Support", + "summary": "", + "url": "namespaces/illuminate-support.html" + }, { + "fqsen": "\\Illuminate\\Support\\Traits", + "name": "Traits", + "summary": "", + "url": "namespaces/illuminate-support-traits.html" + }, { + "fqsen": "\\Illuminate\\Container", + "name": "Container", + "summary": "", + "url": "namespaces/illuminate-container.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Access", + "name": "Access", + "summary": "", + "url": "namespaces/illuminate-contracts-auth-access.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth", + "name": "Auth", + "summary": "", + "url": "namespaces/illuminate-contracts-auth.html" + }, { + "fqsen": "\\Illuminate\\Contracts", + "name": "Contracts", + "summary": "", + "url": "namespaces/illuminate-contracts.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Auth\\Middleware", + "name": "Middleware", + "summary": "", + "url": "namespaces/illuminate-contracts-auth-middleware.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Broadcasting", + "name": "Broadcasting", + "summary": "", + "url": "namespaces/illuminate-contracts-broadcasting.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Bus", + "name": "Bus", + "summary": "", + "url": "namespaces/illuminate-contracts-bus.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cache", + "name": "Cache", + "summary": "", + "url": "namespaces/illuminate-contracts-cache.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Config", + "name": "Config", + "summary": "", + "url": "namespaces/illuminate-contracts-config.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Console", + "name": "Console", + "summary": "", + "url": "namespaces/illuminate-contracts-console.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Container", + "name": "Container", + "summary": "", + "url": "namespaces/illuminate-contracts-container.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Cookie", + "name": "Cookie", + "summary": "", + "url": "namespaces/illuminate-contracts-cookie.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Eloquent", + "name": "Eloquent", + "summary": "", + "url": "namespaces/illuminate-contracts-database-eloquent.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database\\Events", + "name": "Events", + "summary": "", + "url": "namespaces/illuminate-contracts-database-events.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Database", + "name": "Database", + "summary": "", + "url": "namespaces/illuminate-contracts-database.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Debug", + "name": "Debug", + "summary": "", + "url": "namespaces/illuminate-contracts-debug.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Encryption", + "name": "Encryption", + "summary": "", + "url": "namespaces/illuminate-contracts-encryption.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Events", + "name": "Events", + "summary": "", + "url": "namespaces/illuminate-contracts-events.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Filesystem", + "name": "Filesystem", + "summary": "", + "url": "namespaces/illuminate-contracts-filesystem.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Foundation", + "name": "Foundation", + "summary": "", + "url": "namespaces/illuminate-contracts-foundation.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Hashing", + "name": "Hashing", + "summary": "", + "url": "namespaces/illuminate-contracts-hashing.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Http", + "name": "Http", + "summary": "", + "url": "namespaces/illuminate-contracts-http.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Mail", + "name": "Mail", + "summary": "", + "url": "namespaces/illuminate-contracts-mail.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Notifications", + "name": "Notifications", + "summary": "", + "url": "namespaces/illuminate-contracts-notifications.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pagination", + "name": "Pagination", + "summary": "", + "url": "namespaces/illuminate-contracts-pagination.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Pipeline", + "name": "Pipeline", + "summary": "", + "url": "namespaces/illuminate-contracts-pipeline.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Queue", + "name": "Queue", + "summary": "", + "url": "namespaces/illuminate-contracts-queue.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Redis", + "name": "Redis", + "summary": "", + "url": "namespaces/illuminate-contracts-redis.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Routing", + "name": "Routing", + "summary": "", + "url": "namespaces/illuminate-contracts-routing.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Session", + "name": "Session", + "summary": "", + "url": "namespaces/illuminate-contracts-session.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Support", + "name": "Support", + "summary": "", + "url": "namespaces/illuminate-contracts-support.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Translation", + "name": "Translation", + "summary": "", + "url": "namespaces/illuminate-contracts-translation.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\Validation", + "name": "Validation", + "summary": "", + "url": "namespaces/illuminate-contracts-validation.html" + }, { + "fqsen": "\\Illuminate\\Contracts\\View", + "name": "View", + "summary": "", + "url": "namespaces/illuminate-contracts-view.html" + }, { + "fqsen": "\\Illuminate\\Database\\Capsule", + "name": "Capsule", + "summary": "", + "url": "namespaces/illuminate-database-capsule.html" + }, { + "fqsen": "\\Illuminate\\Database", + "name": "Database", + "summary": "", + "url": "namespaces/illuminate-database.html" + }, { + "fqsen": "\\Illuminate\\Database\\Concerns", + "name": "Concerns", + "summary": "", + "url": "namespaces/illuminate-database-concerns.html" + }, { + "fqsen": "\\Illuminate\\Database\\Connectors", + "name": "Connectors", + "summary": "", + "url": "namespaces/illuminate-database-connectors.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console", + "name": "Console", + "summary": "", + "url": "namespaces/illuminate-database-console.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Factories", + "name": "Factories", + "summary": "", + "url": "namespaces/illuminate-database-console-factories.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Migrations", + "name": "Migrations", + "summary": "", + "url": "namespaces/illuminate-database-console-migrations.html" + }, { + "fqsen": "\\Illuminate\\Database\\Console\\Seeds", + "name": "Seeds", + "summary": "", + "url": "namespaces/illuminate-database-console-seeds.html" + }, { + "fqsen": "\\Illuminate\\Database\\DBAL", + "name": "DBAL", + "summary": "", + "url": "namespaces/illuminate-database-dbal.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent", + "name": "Eloquent", + "summary": "", + "url": "namespaces/illuminate-database-eloquent.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Casts", + "name": "Casts", + "summary": "", + "url": "namespaces/illuminate-database-eloquent-casts.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Concerns", + "name": "Concerns", + "summary": "", + "url": "namespaces/illuminate-database-eloquent-concerns.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Factories", + "name": "Factories", + "summary": "", + "url": "namespaces/illuminate-database-eloquent-factories.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations", + "name": "Relations", + "summary": "", + "url": "namespaces/illuminate-database-eloquent-relations.html" + }, { + "fqsen": "\\Illuminate\\Database\\Eloquent\\Relations\\Concerns", + "name": "Concerns", + "summary": "", + "url": "namespaces/illuminate-database-eloquent-relations-concerns.html" + }, { + "fqsen": "\\Illuminate\\Database\\Events", + "name": "Events", + "summary": "", + "url": "namespaces/illuminate-database-events.html" + }, { + "fqsen": "\\Illuminate\\Database\\Migrations", + "name": "Migrations", + "summary": "", + "url": "namespaces/illuminate-database-migrations.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO\\Concerns", + "name": "Concerns", + "summary": "", + "url": "namespaces/illuminate-database-pdo-concerns.html" + }, { + "fqsen": "\\Illuminate\\Database\\PDO", + "name": "PDO", + "summary": "", + "url": "namespaces/illuminate-database-pdo.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query", + "name": "Query", + "summary": "", + "url": "namespaces/illuminate-database-query.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Grammars", + "name": "Grammars", + "summary": "", + "url": "namespaces/illuminate-database-query-grammars.html" + }, { + "fqsen": "\\Illuminate\\Database\\Query\\Processors", + "name": "Processors", + "summary": "", + "url": "namespaces/illuminate-database-query-processors.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema", + "name": "Schema", + "summary": "", + "url": "namespaces/illuminate-database-schema.html" + }, { + "fqsen": "\\Illuminate\\Database\\Schema\\Grammars", + "name": "Grammars", + "summary": "", + "url": "namespaces/illuminate-database-schema-grammars.html" + }, { + "fqsen": "\\Illuminate\\Events", + "name": "Events", + "summary": "", + "url": "namespaces/illuminate-events.html" + }, { + "fqsen": "\\Illuminate\\Filesystem", + "name": "Filesystem", + "summary": "", + "url": "namespaces/illuminate-filesystem.html" + }, { + "fqsen": "\\Illuminate\\Pipeline", + "name": "Pipeline", + "summary": "", + "url": "namespaces/illuminate-pipeline.html" + }, { + "fqsen": "\\Illuminate\\Support\\Facades", + "name": "Facades", + "summary": "", + "url": "namespaces/illuminate-support-facades.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing\\Fakes", + "name": "Fakes", + "summary": "", + "url": "namespaces/illuminate-support-testing-fakes.html" + }, { + "fqsen": "\\Illuminate\\Support\\Testing", + "name": "Testing", + "summary": "", + "url": "namespaces/illuminate-support-testing.html" + }, { + "fqsen": "\\Illuminate\\View", + "name": "View", + "summary": "", + "url": "namespaces/illuminate-view.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers", + "name": "Compilers", + "summary": "", + "url": "namespaces/illuminate-view-compilers.html" + }, { + "fqsen": "\\Illuminate\\View\\Compilers\\Concerns", + "name": "Concerns", + "summary": "", + "url": "namespaces/illuminate-view-compilers-concerns.html" + }, { + "fqsen": "\\Illuminate\\View\\Concerns", + "name": "Concerns", + "summary": "", + "url": "namespaces/illuminate-view-concerns.html" + }, { + "fqsen": "\\Illuminate\\View\\Engines", + "name": "Engines", + "summary": "", + "url": "namespaces/illuminate-view-engines.html" + }, { + "fqsen": "\\Illuminate\\View\\Middleware", + "name": "Middleware", + "summary": "", + "url": "namespaces/illuminate-view-middleware.html" + }, { + "fqsen": "\\Jenssegers\\Blade", + "name": "Blade", + "summary": "", + "url": "namespaces/jenssegers-blade.html" + }, { + "fqsen": "\\Jenssegers", + "name": "Jenssegers", + "summary": "", + "url": "namespaces/jenssegers.html" + }, { + "fqsen": "\\Leaf\\Alchemy\\Commands", + "name": "Commands", + "summary": "", + "url": "namespaces/leaf-alchemy-commands.html" + }, { + "fqsen": "\\Leaf\\Alchemy", + "name": "Alchemy", + "summary": "", + "url": "namespaces/leaf-alchemy.html" + }, { + "fqsen": "\\Leaf\\Console\\Utils", + "name": "Utils", + "summary": "", + "url": "namespaces/leaf-console-utils.html" + }, { + "fqsen": "\\Aloe\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/aloe-command.html" + }, { + "fqsen": "\\Leaf\\Console", + "name": "Console", + "summary": "", + "url": "namespaces/leaf-console.html" + }, { + "fqsen": "\\App\\Mailers", + "name": "Mailers", + "summary": "", + "url": "namespaces/app-mailers.html" + }, { + "fqsen": "\\Aloe", + "name": "Aloe", + "summary": "", + "url": "namespaces/aloe.html" + }, { + "fqsen": "\\Leaf", + "name": "Leaf", + "summary": "", + "url": "namespaces/leaf.html" + }, { + "fqsen": "\\Leaf\\Auth", + "name": "Auth", + "summary": "", + "url": "namespaces/leaf-auth.html" + }, { + "fqsen": "\\Leaf\\Http", + "name": "Http", + "summary": "", + "url": "namespaces/leaf-http.html" + }, { + "fqsen": "\\Leaf\\Anchor", + "name": "Anchor", + "summary": "", + "url": "namespaces/leaf-anchor.html" + }, { + "fqsen": "\\Leaf\\Db", + "name": "Db", + "summary": "", + "url": "namespaces/leaf-db.html" + }, { + "fqsen": "\\Leaf\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/leaf-exception.html" + }, { + "fqsen": "\\Leaf\\Exception\\Handler", + "name": "Handler", + "summary": "", + "url": "namespaces/leaf-exception-handler.html" + }, { + "fqsen": "\\Leaf\\Exception\\Util", + "name": "Util", + "summary": "", + "url": "namespaces/leaf-exception-util.html" + }, { + "fqsen": "\\Leaf\\Exceptions", + "name": "Exceptions", + "summary": "", + "url": "namespaces/leaf-exceptions.html" + }, { + "fqsen": "\\Leaf\\FS", + "name": "FS", + "summary": "", + "url": "namespaces/leaf-fs.html" + }, { + "fqsen": "\\Leaf\\Inertia\\Ssr", + "name": "Ssr", + "summary": "", + "url": "namespaces/leaf-inertia-ssr.html" + }, { + "fqsen": "\\Leaf\\Inertia", + "name": "Inertia", + "summary": "", + "url": "namespaces/leaf-inertia.html" + }, { + "fqsen": "\\Leaf\\Mail", + "name": "Mail", + "summary": "", + "url": "namespaces/leaf-mail.html" + }, { + "fqsen": "\\Leaf\\Helpers", + "name": "Helpers", + "summary": "", + "url": "namespaces/leaf-helpers.html" + }, { + "fqsen": "\\Leaf\\Queue\\Adapters", + "name": "Adapters", + "summary": "", + "url": "namespaces/leaf-queue-adapters.html" + }, { + "fqsen": "\\Leaf\\Queue\\Commands", + "name": "Commands", + "summary": "", + "url": "namespaces/leaf-queue-commands.html" + }, { + "fqsen": "\\Leaf\\Queue", + "name": "Queue", + "summary": "", + "url": "namespaces/leaf-queue.html" + }, { + "fqsen": "\\Leaf\\Redis\\Commands", + "name": "Commands", + "summary": "", + "url": "namespaces/leaf-redis-commands.html" + }, { + "fqsen": "\\Leaf\\Redis", + "name": "Redis", + "summary": "", + "url": "namespaces/leaf-redis.html" + }, { + "fqsen": "\\Carbon\\MessageFormatter", + "name": "MessageFormatter", + "summary": "", + "url": "namespaces/carbon-messageformatter.html" + }, { + "fqsen": "\\Carbon\\PHPStan", + "name": "PHPStan", + "summary": "", + "url": "namespaces/carbon-phpstan.html" + }, { + "fqsen": "\\Carbon", + "name": "Carbon", + "summary": "", + "url": "namespaces/carbon.html" + }, { + "fqsen": "\\Carbon\\Cli", + "name": "Cli", + "summary": "", + "url": "namespaces/carbon-cli.html" + }, { + "fqsen": "\\Carbon\\Exceptions", + "name": "Exceptions", + "summary": "", + "url": "namespaces/carbon-exceptions.html" + }, { + "fqsen": "\\Carbon\\Laravel", + "name": "Laravel", + "summary": "", + "url": "namespaces/carbon-laravel.html" + }, { + "fqsen": "\\Carbon\\Traits", + "name": "Traits", + "summary": "", + "url": "namespaces/carbon-traits.html" + }, { + "fqsen": "\\PhpParser\\Builder", + "name": "Builder", + "summary": "", + "url": "namespaces/phpparser-builder.html" + }, { + "fqsen": "\\PhpParser", + "name": "PhpParser", + "summary": "", + "url": "namespaces/phpparser.html" + }, { + "fqsen": "\\PhpParser\\Comment", + "name": "Comment", + "summary": "", + "url": "namespaces/phpparser-comment.html" + }, { + "fqsen": "\\PhpParser\\ErrorHandler", + "name": "ErrorHandler", + "summary": "", + "url": "namespaces/phpparser-errorhandler.html" + }, { + "fqsen": "\\PhpParser\\Lexer", + "name": "Lexer", + "summary": "", + "url": "namespaces/phpparser-lexer.html" + }, { + "fqsen": "\\PhpParser\\Lexer\\TokenEmulator", + "name": "TokenEmulator", + "summary": "", + "url": "namespaces/phpparser-lexer-tokenemulator.html" + }, { + "fqsen": "\\PhpParser\\Node", + "name": "Node", + "summary": "", + "url": "namespaces/phpparser-node.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr", + "name": "Expr", + "summary": "", + "url": "namespaces/phpparser-node-expr.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\AssignOp", + "name": "AssignOp", + "summary": "", + "url": "namespaces/phpparser-node-expr-assignop.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\BinaryOp", + "name": "BinaryOp", + "summary": "", + "url": "namespaces/phpparser-node-expr-binaryop.html" + }, { + "fqsen": "\\PhpParser\\Node\\Expr\\Cast", + "name": "Cast", + "summary": "", + "url": "namespaces/phpparser-node-expr-cast.html" + }, { + "fqsen": "\\PhpParser\\Node\\Name", + "name": "Name", + "summary": "", + "url": "namespaces/phpparser-node-name.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar", + "name": "Scalar", + "summary": "", + "url": "namespaces/phpparser-node-scalar.html" + }, { + "fqsen": "\\PhpParser\\Node\\Scalar\\MagicConst", + "name": "MagicConst", + "summary": "", + "url": "namespaces/phpparser-node-scalar-magicconst.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt", + "name": "Stmt", + "summary": "", + "url": "namespaces/phpparser-node-stmt.html" + }, { + "fqsen": "\\PhpParser\\Node\\Stmt\\TraitUseAdaptation", + "name": "TraitUseAdaptation", + "summary": "", + "url": "namespaces/phpparser-node-stmt-traituseadaptation.html" + }, { + "fqsen": "\\PhpParser\\NodeVisitor", + "name": "NodeVisitor", + "summary": "", + "url": "namespaces/phpparser-nodevisitor.html" + }, { + "fqsen": "\\PhpParser\\Parser", + "name": "Parser", + "summary": "", + "url": "namespaces/phpparser-parser.html" + }, { + "fqsen": "\\PhpParser\\PrettyPrinter", + "name": "PrettyPrinter", + "summary": "", + "url": "namespaces/phpparser-prettyprinter.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Config", + "name": "Config", + "summary": "", + "url": "namespaces/phario-composerdistributor-config.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor", + "name": "ComposerDistributor", + "summary": "", + "url": "namespaces/phario-composerdistributor.html" + }, { + "fqsen": "\\PharIo", + "name": "PharIo", + "summary": "", + "url": "namespaces/phario.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributor\\Service", + "name": "Service", + "summary": "", + "url": "namespaces/phario-composerdistributor-service.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest", + "name": "ComposerDistributorTest", + "summary": "", + "url": "namespaces/phario-composerdistributortest.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Config", + "name": "Config", + "summary": "", + "url": "namespaces/phario-composerdistributortest-config.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\unit\\Service", + "name": "Service", + "summary": "", + "url": "namespaces/phario-composerdistributortest-unit-service.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\unit", + "name": "unit", + "summary": "", + "url": "namespaces/phario-composerdistributortest-unit.html" + }, { + "fqsen": "\\PharIo\\ComposerDistributorTest\\Service", + "name": "Service", + "summary": "", + "url": "namespaces/phario-composerdistributortest-service.html" + }, { + "fqsen": "\\PharIo\\CSFixer", + "name": "CSFixer", + "summary": "", + "url": "namespaces/phario-csfixer.html" + }, { + "fqsen": "\\PharIo\\Executor", + "name": "Executor", + "summary": "", + "url": "namespaces/phario-executor.html" + }, { + "fqsen": "\\PharIo\\FileSystem", + "name": "FileSystem", + "summary": "", + "url": "namespaces/phario-filesystem.html" + }, { + "fqsen": "\\PharIo\\GnuPG", + "name": "GnuPG", + "summary": "", + "url": "namespaces/phario-gnupg.html" + }, { + "fqsen": "\\phpDocumentor", + "name": "phpDocumentor", + "summary": "", + "url": "namespaces/phpdocumentor.html" + }, { + "fqsen": "\\PHPMailer\\PHPMailer", + "name": "PHPMailer", + "summary": "", + "url": "namespaces/phpmailer-phpmailer.html" + }, { + "fqsen": "\\PHPMailer", + "name": "PHPMailer", + "summary": "", + "url": "namespaces/phpmailer.html" + }, { + "fqsen": "\\PhpOption", + "name": "PhpOption", + "summary": "", + "url": "namespaces/phpoption.html" + }, { + "fqsen": "\\Psr\\Cache", + "name": "Cache", + "summary": "", + "url": "namespaces/psr-cache.html" + }, { + "fqsen": "\\Psr", + "name": "Psr", + "summary": "", + "url": "namespaces/psr.html" + }, { + "fqsen": "\\Psr\\Clock", + "name": "Clock", + "summary": "", + "url": "namespaces/psr-clock.html" + }, { + "fqsen": "\\Psr\\Container", + "name": "Container", + "summary": "", + "url": "namespaces/psr-container.html" + }, { + "fqsen": "\\Psr\\Log", + "name": "Log", + "summary": "", + "url": "namespaces/psr-log.html" + }, { + "fqsen": "\\Psr\\SimpleCache", + "name": "SimpleCache", + "summary": "", + "url": "namespaces/psr-simplecache.html" + }, { + "fqsen": "\\Psy\\CodeCleaner", + "name": "CodeCleaner", + "summary": "", + "url": "namespaces/psy-codecleaner.html" + }, { + "fqsen": "\\Psy", + "name": "Psy", + "summary": "", + "url": "namespaces/psy.html" + }, { + "fqsen": "\\Psy\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/psy-command.html" + }, { + "fqsen": "\\Psy\\Command\\ListCommand", + "name": "ListCommand", + "summary": "", + "url": "namespaces/psy-command-listcommand.html" + }, { + "fqsen": "\\Psy\\Command\\TimeitCommand", + "name": "TimeitCommand", + "summary": "", + "url": "namespaces/psy-command-timeitcommand.html" + }, { + "fqsen": "\\Psy\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/psy-exception.html" + }, { + "fqsen": "\\Psy\\ExecutionLoop", + "name": "ExecutionLoop", + "summary": "", + "url": "namespaces/psy-executionloop.html" + }, { + "fqsen": "\\Psy\\Formatter", + "name": "Formatter", + "summary": "", + "url": "namespaces/psy-formatter.html" + }, { + "fqsen": "\\Psy\\Input", + "name": "Input", + "summary": "", + "url": "namespaces/psy-input.html" + }, { + "fqsen": "\\Psy\\Output", + "name": "Output", + "summary": "", + "url": "namespaces/psy-output.html" + }, { + "fqsen": "\\Psy\\Readline", + "name": "Readline", + "summary": "", + "url": "namespaces/psy-readline.html" + }, { + "fqsen": "\\Psy\\Readline\\Hoa", + "name": "Hoa", + "summary": "", + "url": "namespaces/psy-readline-hoa.html" + }, { + "fqsen": "\\Psy\\Reflection", + "name": "Reflection", + "summary": "", + "url": "namespaces/psy-reflection.html" + }, { + "fqsen": "\\Psy\\Sudo", + "name": "Sudo", + "summary": "", + "url": "namespaces/psy-sudo.html" + }, { + "fqsen": "\\Psy\\TabCompletion", + "name": "TabCompletion", + "summary": "", + "url": "namespaces/psy-tabcompletion.html" + }, { + "fqsen": "\\Psy\\TabCompletion\\Matcher", + "name": "Matcher", + "summary": "", + "url": "namespaces/psy-tabcompletion-matcher.html" + }, { + "fqsen": "\\Psy\\Util", + "name": "Util", + "summary": "", + "url": "namespaces/psy-util.html" + }, { + "fqsen": "\\Psy\\VarDumper", + "name": "VarDumper", + "summary": "", + "url": "namespaces/psy-vardumper.html" + }, { + "fqsen": "\\Psy\\VersionUpdater", + "name": "VersionUpdater", + "summary": "", + "url": "namespaces/psy-versionupdater.html" + }, { + "fqsen": "\\Psy\\VersionUpdater\\Downloader", + "name": "Downloader", + "summary": "", + "url": "namespaces/psy-versionupdater-downloader.html" + }, { + "fqsen": "\\Symfony\\Component\\Console", + "name": "Console", + "summary": "", + "url": "namespaces/symfony-component-console.html" + }, { + "fqsen": "\\Symfony\\Component", + "name": "Component", + "summary": "", + "url": "namespaces/symfony-component.html" + }, { + "fqsen": "\\Symfony", + "name": "Symfony", + "summary": "", + "url": "namespaces/symfony.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Attribute", + "name": "Attribute", + "summary": "", + "url": "namespaces/symfony-component-console-attribute.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CI", + "name": "CI", + "summary": "", + "url": "namespaces/symfony-component-console-ci.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/symfony-component-console-command.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\CommandLoader", + "name": "CommandLoader", + "summary": "", + "url": "namespaces/symfony-component-console-commandloader.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion", + "name": "Completion", + "summary": "", + "url": "namespaces/symfony-component-console-completion.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Completion\\Output", + "name": "Output", + "summary": "", + "url": "namespaces/symfony-component-console-completion-output.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\DependencyInjection", + "name": "DependencyInjection", + "summary": "", + "url": "namespaces/symfony-component-console-dependencyinjection.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Descriptor", + "name": "Descriptor", + "summary": "", + "url": "namespaces/symfony-component-console-descriptor.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Event", + "name": "Event", + "summary": "", + "url": "namespaces/symfony-component-console-event.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\EventListener", + "name": "EventListener", + "summary": "", + "url": "namespaces/symfony-component-console-eventlistener.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-console-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Formatter", + "name": "Formatter", + "summary": "", + "url": "namespaces/symfony-component-console-formatter.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Helper", + "name": "Helper", + "summary": "", + "url": "namespaces/symfony-component-console-helper.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Input", + "name": "Input", + "summary": "", + "url": "namespaces/symfony-component-console-input.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Logger", + "name": "Logger", + "summary": "", + "url": "namespaces/symfony-component-console-logger.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Output", + "name": "Output", + "summary": "", + "url": "namespaces/symfony-component-console-output.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Question", + "name": "Question", + "summary": "", + "url": "namespaces/symfony-component-console-question.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\SignalRegistry", + "name": "SignalRegistry", + "summary": "", + "url": "namespaces/symfony-component-console-signalregistry.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Style", + "name": "Style", + "summary": "", + "url": "namespaces/symfony-component-console-style.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester", + "name": "Tester", + "summary": "", + "url": "namespaces/symfony-component-console-tester.html" + }, { + "fqsen": "\\Symfony\\Component\\Console\\Tester\\Constraint", + "name": "Constraint", + "summary": "", + "url": "namespaces/symfony-component-console-tester-constraint.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Comparator", + "name": "Comparator", + "summary": "", + "url": "namespaces/symfony-component-finder-comparator.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-finder-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder", + "name": "Finder", + "summary": "", + "url": "namespaces/symfony-component-finder.html" + }, { + "fqsen": "\\Symfony\\Component\\Finder\\Iterator", + "name": "Iterator", + "summary": "", + "url": "namespaces/symfony-component-finder-iterator.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-process-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\Process", + "name": "Process", + "summary": "", + "url": "namespaces/symfony-component-process.html" + }, { + "fqsen": "\\Symfony\\Component\\Process\\Messenger", + "name": "Messenger", + "summary": "", + "url": "namespaces/symfony-component-process-messenger.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Attribute", + "name": "Attribute", + "summary": "", + "url": "namespaces/symfony-contracts-service-attribute.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service", + "name": "Service", + "summary": "", + "url": "namespaces/symfony-contracts-service.html" + }, { + "fqsen": "\\Symfony\\Contracts", + "name": "Contracts", + "summary": "", + "url": "namespaces/symfony-contracts.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Service\\Test", + "name": "Test", + "summary": "", + "url": "namespaces/symfony-contracts-service-test.html" + }, { + "fqsen": "\\Symfony\\Component\\String", + "name": "String", + "summary": "", + "url": "namespaces/symfony-component-string.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-string-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Inflector", + "name": "Inflector", + "summary": "", + "url": "namespaces/symfony-component-string-inflector.html" + }, { + "fqsen": "\\Symfony\\Component\\String\\Slugger", + "name": "Slugger", + "summary": "", + "url": "namespaces/symfony-component-string-slugger.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Catalogue", + "name": "Catalogue", + "summary": "", + "url": "namespaces/symfony-component-translation-catalogue.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation", + "name": "Translation", + "summary": "", + "url": "namespaces/symfony-component-translation.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/symfony-component-translation-command.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DataCollector", + "name": "DataCollector", + "summary": "", + "url": "namespaces/symfony-component-translation-datacollector.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\DependencyInjection", + "name": "DependencyInjection", + "summary": "", + "url": "namespaces/symfony-component-translation-dependencyinjection.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Dumper", + "name": "Dumper", + "summary": "", + "url": "namespaces/symfony-component-translation-dumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-translation-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor", + "name": "Extractor", + "summary": "", + "url": "namespaces/symfony-component-translation-extractor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Extractor\\Visitor", + "name": "Visitor", + "summary": "", + "url": "namespaces/symfony-component-translation-extractor-visitor.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Formatter", + "name": "Formatter", + "summary": "", + "url": "namespaces/symfony-component-translation-formatter.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Loader", + "name": "Loader", + "summary": "", + "url": "namespaces/symfony-component-translation-loader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Provider", + "name": "Provider", + "summary": "", + "url": "namespaces/symfony-component-translation-provider.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Reader", + "name": "Reader", + "summary": "", + "url": "namespaces/symfony-component-translation-reader.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Test", + "name": "Test", + "summary": "", + "url": "namespaces/symfony-component-translation-test.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Util", + "name": "Util", + "summary": "", + "url": "namespaces/symfony-component-translation-util.html" + }, { + "fqsen": "\\Symfony\\Component\\Translation\\Writer", + "name": "Writer", + "summary": "", + "url": "namespaces/symfony-component-translation-writer.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation", + "name": "Translation", + "summary": "", + "url": "namespaces/symfony-contracts-translation.html" + }, { + "fqsen": "\\Symfony\\Contracts\\Translation\\Test", + "name": "Test", + "summary": "", + "url": "namespaces/symfony-contracts-translation-test.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Caster", + "name": "Caster", + "summary": "", + "url": "namespaces/symfony-component-vardumper-caster.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Cloner", + "name": "Cloner", + "summary": "", + "url": "namespaces/symfony-component-vardumper-cloner.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command\\Descriptor", + "name": "Descriptor", + "summary": "", + "url": "namespaces/symfony-component-vardumper-command-descriptor.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/symfony-component-vardumper-command.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper", + "name": "Dumper", + "summary": "", + "url": "namespaces/symfony-component-vardumper-dumper.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Dumper\\ContextProvider", + "name": "ContextProvider", + "summary": "", + "url": "namespaces/symfony-component-vardumper-dumper-contextprovider.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-vardumper-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Server", + "name": "Server", + "summary": "", + "url": "namespaces/symfony-component-vardumper-server.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper\\Test", + "name": "Test", + "summary": "", + "url": "namespaces/symfony-component-vardumper-test.html" + }, { + "fqsen": "\\Symfony\\Component\\VarDumper", + "name": "VarDumper", + "summary": "", + "url": "namespaces/symfony-component-vardumper.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Command", + "name": "Command", + "summary": "", + "url": "namespaces/symfony-component-yaml-command.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml", + "name": "Yaml", + "summary": "", + "url": "namespaces/symfony-component-yaml.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/symfony-component-yaml-exception.html" + }, { + "fqsen": "\\Symfony\\Component\\Yaml\\Tag", + "name": "Tag", + "summary": "", + "url": "namespaces/symfony-component-yaml-tag.html" + }, { + "fqsen": "\\Dotenv", + "name": "Dotenv", + "summary": "", + "url": "namespaces/dotenv.html" + }, { + "fqsen": "\\Dotenv\\Exception", + "name": "Exception", + "summary": "", + "url": "namespaces/dotenv-exception.html" + }, { + "fqsen": "\\Dotenv\\Loader", + "name": "Loader", + "summary": "", + "url": "namespaces/dotenv-loader.html" + }, { + "fqsen": "\\Dotenv\\Parser", + "name": "Parser", + "summary": "", + "url": "namespaces/dotenv-parser.html" + }, { + "fqsen": "\\Dotenv\\Repository\\Adapter", + "name": "Adapter", + "summary": "", + "url": "namespaces/dotenv-repository-adapter.html" + }, { + "fqsen": "\\Dotenv\\Repository", + "name": "Repository", + "summary": "", + "url": "namespaces/dotenv-repository.html" + }, { + "fqsen": "\\Dotenv\\Store", + "name": "Store", + "summary": "", + "url": "namespaces/dotenv-store.html" + }, { + "fqsen": "\\voku\\helper", + "name": "helper", + "summary": "", + "url": "namespaces/voku-helper.html" + }, { + "fqsen": "\\voku", + "name": "voku", + "summary": "", + "url": "namespaces/voku.html" + } ] +); diff --git a/src/public/api/js/template.js b/src/public/api/js/template.js new file mode 100644 index 00000000..83931d2e --- /dev/null +++ b/src/public/api/js/template.js @@ -0,0 +1,34 @@ +(function(){ + window.addEventListener('load', () => { + const el = document.querySelector('.phpdocumentor-on-this-page__content') + if (!el) { + return; + } + + const observer = new IntersectionObserver( + ([e]) => { + e.target.classList.toggle("-stuck", e.intersectionRatio < 1); + }, + {threshold: [1]} + ); + + observer.observe(el); + }) +})(); +function openSvg(svg) { + // convert to a valid XML source + const as_text = new XMLSerializer().serializeToString(svg); + // store in a Blob + const blob = new Blob([as_text], { type: "image/svg+xml" }); + // create an URI pointing to that blob + const url = URL.createObjectURL(blob); + const win = open(url); + // so the Garbage Collector can collect the blob + win.onload = (evt) => URL.revokeObjectURL(url); +}; + + +var svgs = document.querySelectorAll(".phpdocumentor-uml-diagram svg"); +for( var i=0,il = svgs.length; i< il; i ++ ) { + svgs[i].onclick = (evt) => openSvg(evt.target); +} \ No newline at end of file diff --git a/src/public/api/namespaces/aloe-command.html b/src/public/api/namespaces/aloe-command.html new file mode 100644 index 00000000..64ec3dee --- /dev/null +++ b/src/public/api/namespaces/aloe-command.html @@ -0,0 +1,332 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Command

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AppDownCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AppUpCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConfigLibCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConfigPublishCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DatabaseMigrationCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DatabaseResetCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DatabaseRollbackCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DatabaseSeedCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DeleteConsoleCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DeleteControllerCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DeleteModelCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DevToolsCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EnvGenerateCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateConsoleCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateControllerCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateHelperCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateMailerCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateMiddlewareCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateModelCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateSchemaCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GenerateTemplateCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InteractCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            KeyGenerateCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LinkCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ScaffoldAuthCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ScaffoldMailCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ServeCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ViewBuildCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ViewDevCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ViewInstallCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/namespaces/aloe.html b/src/public/api/namespaces/aloe.html new file mode 100644 index 00000000..9dbfdf73 --- /dev/null +++ b/src/public/api/namespaces/aloe.html @@ -0,0 +1,784 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Aloe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Command
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Command
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Console
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Aloe CLI +----- +Smart and interactive console/generator +for your leaf MVC applications
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Installer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Aloe Installer +----------------- +Quickly install directories and files in +a leaf workspace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Package +---- +Meta info on aloe cli
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/namespaces/app-controllers-auth.html b/src/public/api/namespaces/app-controllers-auth.html new file mode 100644 index 00000000..039bdd0c --- /dev/null +++ b/src/public/api/namespaces/app-controllers-auth.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Auth

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DashboardController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                LoginController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/namespaces/app-controllers-profile.html b/src/public/api/namespaces/app-controllers-profile.html new file mode 100644 index 00000000..59be3ea8 --- /dev/null +++ b/src/public/api/namespaces/app-controllers-profile.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Profile

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AccountController
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This is a base controller for the auth namespace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/namespaces/app-controllers.html b/src/public/api/namespaces/app-controllers.html new file mode 100644 index 00000000..272b1f29 --- /dev/null +++ b/src/public/api/namespaces/app-controllers.html @@ -0,0 +1,778 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Controllers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Auth
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Profile
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    This is the base controller for your Leaf MVC Project.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/namespaces/app-mailers.html b/src/public/api/namespaces/app-mailers.html new file mode 100644 index 00000000..25f26e45 --- /dev/null +++ b/src/public/api/namespaces/app-mailers.html @@ -0,0 +1,769 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Mailers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ExampleMailer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/namespaces/app-models.html b/src/public/api/namespaces/app-models.html new file mode 100644 index 00000000..9f44335d --- /dev/null +++ b/src/public/api/namespaces/app-models.html @@ -0,0 +1,775 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Models

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Model
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Base Model +--- +The base model provides a space to set attributes +that are common to all models
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        User
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Base Model +--- +The base model provides a space to set attributes +that are common to all models
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/namespaces/app.html b/src/public/api/namespaces/app.html new file mode 100644 index 00000000..51086449 --- /dev/null +++ b/src/public/api/namespaces/app.html @@ -0,0 +1,770 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          App

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Controllers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Models
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Mailers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/namespaces/leaf-alchemy-commands.html b/src/public/api/namespaces/leaf-alchemy-commands.html new file mode 100644 index 00000000..50275074 --- /dev/null +++ b/src/public/api/namespaces/leaf-alchemy-commands.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Commands

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EjectCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InstallCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SetupCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/namespaces/leaf-alchemy.html b/src/public/api/namespaces/leaf-alchemy.html new file mode 100644 index 00000000..4ef1dde0 --- /dev/null +++ b/src/public/api/namespaces/leaf-alchemy.html @@ -0,0 +1,340 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alchemy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Commands
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Container for Alchemy config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/namespaces/leaf-anchor.html b/src/public/api/namespaces/leaf-anchor.html new file mode 100644 index 00000000..3c37915e --- /dev/null +++ b/src/public/api/namespaces/leaf-anchor.html @@ -0,0 +1,334 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Anchor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CSRF
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf CSRF Module +---------------- +Add CSRF protection to your app
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/namespaces/leaf-auth.html b/src/public/api/namespaces/leaf-auth.html new file mode 100644 index 00000000..00212e42 --- /dev/null +++ b/src/public/api/namespaces/leaf-auth.html @@ -0,0 +1,349 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Auth

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config for Leaf Auth +-------- +Set/Get config to match your app
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Model
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Auth User Model +---- +Tiny model class for the user. Provides bare minimum +functionality for user and user data manipulation.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  User
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Auth User +---- +Class representing a user
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Traits + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UsesRoles
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Functionality for user permissions +---- +Addition to user class
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/namespaces/leaf-console-utils.html b/src/public/api/namespaces/leaf-console-utils.html new file mode 100644 index 00000000..c856ccc2 --- /dev/null +++ b/src/public/api/namespaces/leaf-console-utils.html @@ -0,0 +1,335 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Package +---- +Meta info on leaf cli
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/namespaces/leaf-console.html b/src/public/api/namespaces/leaf-console.html new file mode 100644 index 00000000..eb621cea --- /dev/null +++ b/src/public/api/namespaces/leaf-console.html @@ -0,0 +1,340 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Console

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Utils
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InstallCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Base class for all commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/namespaces/leaf-db.html b/src/public/api/namespaces/leaf-db.html new file mode 100644 index 00000000..5a52d84e --- /dev/null +++ b/src/public/api/namespaces/leaf-db.html @@ -0,0 +1,338 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Db

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Builder
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Db Query Builder +------------------------- +Functionality of leaf query builder.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Db [Core] +------------------------- +Core functionality of leaf db.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Utils
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Db Utils +------------------------- +Core utilities for leaf db.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/namespaces/leaf-exception-handler.html b/src/public/api/namespaces/leaf-exception-handler.html new file mode 100644 index 00000000..c3bad506 --- /dev/null +++ b/src/public/api/namespaces/leaf-exception-handler.html @@ -0,0 +1,349 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Handler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          HandlerInterface
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CallbackHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Wrapper for Closures passed as handlers. Can be used +directly, or will be instantiated automagically by Whoops\Run +if passed to Run::pushHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CustomHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Abstract implementation of a Handler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Abstract implementation of a Handler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          JsonResponseHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Catches an exception and converts it to a JSON +response. Additionally can also return exception +frames for consumption by an API.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PlainTextHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Handler outputing plaintext error messages. Can be used +directly, or will be instantiated automagically by Whoops\Run +if passed to Run::pushHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PrettyPageHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Abstract implementation of a Handler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          XmlResponseHandler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Catches an exception and converts it to an XML +response. Additionally can also return exception +frames for consumption by an API.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/namespaces/leaf-exception-util.html b/src/public/api/namespaces/leaf-exception-util.html new file mode 100644 index 00000000..e205b08f --- /dev/null +++ b/src/public/api/namespaces/leaf-exception-util.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Util

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            HtmlDumperOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Used as output callable for Symfony\Component\VarDumper\Dumper\HtmlDumper::dump()
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Misc
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SystemFacade
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TemplateHelper
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Exposes useful tools for working with/in templates
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/namespaces/leaf-exception.html b/src/public/api/namespaces/leaf-exception.html new file mode 100644 index 00000000..18bc8ca0 --- /dev/null +++ b/src/public/api/namespaces/leaf-exception.html @@ -0,0 +1,349 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exception

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Util
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RunInterface
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              General
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stop Exception
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/namespaces/leaf-exceptions.html b/src/public/api/namespaces/leaf-exceptions.html new file mode 100644 index 00000000..1c0a737f --- /dev/null +++ b/src/public/api/namespaces/leaf-exceptions.html @@ -0,0 +1,334 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Exceptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ErrorException
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wraps ErrorException; mostly used for typing (at least now) +to easily cleanup the stack trace of redundant info.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Formatter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Frame
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                FrameCollection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Exposes a fluent interface for dealing with an ordered list +of stack-trace frames.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Inspector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/namespaces/leaf-fs.html b/src/public/api/namespaces/leaf-fs.html new file mode 100644 index 00000000..d4baa8b5 --- /dev/null +++ b/src/public/api/namespaces/leaf-fs.html @@ -0,0 +1,336 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  FS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Directory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Directory operations +---- +This class provides a set of methods for local directory operations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  File
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  File operations +---- +This class provides a set of methods for local file operations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Path
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Storage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/namespaces/leaf-helpers.html b/src/public/api/namespaces/leaf-helpers.html new file mode 100644 index 00000000..2c5bbb35 --- /dev/null +++ b/src/public/api/namespaces/leaf-helpers.html @@ -0,0 +1,334 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Helpers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Password
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf Password Helper +--------------------------------------------- +Work easier and faster with passwords
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/namespaces/leaf-http.html b/src/public/api/namespaces/leaf-http.html new file mode 100644 index 00000000..da49bf3f --- /dev/null +++ b/src/public/api/namespaces/leaf-http.html @@ -0,0 +1,345 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Http

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cors
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf CORS Module +------- +CORS simplified. Enable CORS with various options.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cache
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf Http Caching +------------------------------------ +HTTP Caching made simple with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Headers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      HTTP Headers +--------------------- +Response header management made simple with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Request
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf HTTP Request +--------
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Response
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf HTTP Response +----------- +This is a simple abstraction over top an HTTP response. This +provides methods to set the HTTP status, the HTTP headers, +and the HTTP body.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Status
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf Status Code Helper
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Session
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf Session +---------------- +App session management made simple with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/namespaces/leaf-inertia-ssr.html b/src/public/api/namespaces/leaf-inertia-ssr.html new file mode 100644 index 00000000..94858304 --- /dev/null +++ b/src/public/api/namespaces/leaf-inertia-ssr.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Ssr

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BundleDetector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Gateway
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Response
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/api/namespaces/leaf-inertia.html b/src/public/api/namespaces/leaf-inertia.html new file mode 100644 index 00000000..eca33f2f --- /dev/null +++ b/src/public/api/namespaces/leaf-inertia.html @@ -0,0 +1,332 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Inertia

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ssr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + diff --git a/src/public/api/namespaces/leaf-mail.html b/src/public/api/namespaces/leaf-mail.html new file mode 100644 index 00000000..98690488 --- /dev/null +++ b/src/public/api/namespaces/leaf-mail.html @@ -0,0 +1,332 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mail

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mailer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + diff --git a/src/public/api/namespaces/leaf-queue-adapters.html b/src/public/api/namespaces/leaf-queue-adapters.html new file mode 100644 index 00000000..0ffb9dd4 --- /dev/null +++ b/src/public/api/namespaces/leaf-queue-adapters.html @@ -0,0 +1,347 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adapters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adapter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Database adapter +----- +Db adapter for the worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Database
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Database adapter +----- +Db adapter for the worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Redis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Redis adapter +----- +Redis adapter for the worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + diff --git a/src/public/api/namespaces/leaf-queue-commands.html b/src/public/api/namespaces/leaf-queue-commands.html new file mode 100644 index 00000000..1b7c5492 --- /dev/null +++ b/src/public/api/namespaces/leaf-queue-commands.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Commands

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DeleteJobCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GenerateJobCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                QueueWorkCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + diff --git a/src/public/api/namespaces/leaf-queue.html b/src/public/api/namespaces/leaf-queue.html new file mode 100644 index 00000000..c437bb76 --- /dev/null +++ b/src/public/api/namespaces/leaf-queue.html @@ -0,0 +1,349 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Queue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Adapters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Commands
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Dispatchable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Contract for dispatchable classes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  COnfig for queue and worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + diff --git a/src/public/api/namespaces/leaf-redis-commands.html b/src/public/api/namespaces/leaf-redis-commands.html new file mode 100644 index 00000000..78991208 --- /dev/null +++ b/src/public/api/namespaces/leaf-redis-commands.html @@ -0,0 +1,333 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Commands

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ServeCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Base class for Aloe Commands.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + diff --git a/src/public/api/namespaces/leaf-redis.html b/src/public/api/namespaces/leaf-redis.html new file mode 100644 index 00000000..9acea63d --- /dev/null +++ b/src/public/api/namespaces/leaf-redis.html @@ -0,0 +1,354 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Redis

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Commands
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Interfaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Adapter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Redis Adapter +------------- +Contract for redis adapters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Native
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Native Redis Adapter +------------- +Redis adapter for the native PHP Redis extension
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Predis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Predis Redis Adapter +------------- +Redis adapter for the Predis composer package
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + On this page + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + diff --git a/src/public/api/namespaces/leaf.html b/src/public/api/namespaces/leaf.html new file mode 100644 index 00000000..6a8273aa --- /dev/null +++ b/src/public/api/namespaces/leaf.html @@ -0,0 +1,386 @@ + + + + + Leaf PHP + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Table of Contents + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Namespaces + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alchemy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Console
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Auth
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Http
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Anchor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Db
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Exception
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Exceptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FS
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Inertia
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mail
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Helpers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Queue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Redis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + Classes + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Anchor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Security Module +--------------------------------- +Simple to use security based utility methods
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Auth
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Simple Auth +------------------------- +Simple, lightweight authentication.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        BareUI
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Bare UI +------------ +Leaf templating language focused on speed, speed and more speed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Blade
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Date
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Date +---------------------- +Quick date/time manipulation with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Db
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Db +----- +Simple database interactions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Fetch
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Fetch +--------- +Plain simple PHP http client.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Form
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Form +---- +Leaf's form validation library
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Inertia
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Inertia Adapter for Leaf +---- +This adapter allows you to use InertiaJS with Leaf.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        App
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf PHP Framework +-------- +The easiest way to build simple but powerful apps and APIs quickly.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Config +------------- +Configure your leaf app
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Router
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Router +--------------- +Super simple and powerful routing with Leaf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Log
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Log
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        LogWriter
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Log Writer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Mail
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Controller
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf base controller +----------------- +Base controller for Leaf PHP Framework
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Core
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf MVC Core +---------- +Base class for configuring core methods
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Database
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Database Config +--- +This class is used to configure the database connection for models.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Middleware
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Middleware
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Model
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Schema
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf DB Schema [WIP] +--- +One file to rule them all.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Job
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Queue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Worker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Redis
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf + Redis [BETA] +---------- +Redis made crazy simple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Flash
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Leaf Flash +----- +Simple flash messages for your leaf apps
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Vite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + On this page + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Table Of Contents
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Search results

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          + + + + + + + + diff --git a/src/public/global.css b/src/public/global.css index 35125188..7c75b2ad 100644 --- a/src/public/global.css +++ b/src/public/global.css @@ -49,11 +49,14 @@ font-size: 16px !important; } -.vt-doc [class*='language-'] pre, .vt-doc [class*='language-'] code span, .editor-container * { +.vt-doc [class*='language-'] pre, +.vt-doc [class*='language-'] code span, +.editor-container * { font-family: DM Mono !important; } -.dark .cm-variable-2, .dark .cm-atom { +.dark .cm-variable-2, +.dark .cm-atom { color: #fff !important; } @@ -78,7 +81,10 @@ border: none !important; } -.vue-repl .tab-buttons, .vue-repl .file-selector, .vue-repl .left, .vue-repl { +.vue-repl .tab-buttons, +.vue-repl .file-selector, +.vue-repl .left, +.vue-repl { border: none !important; } diff --git a/src/public/images/illustrations/Feature-Flags-5.svg b/src/public/images/illustrations/Feature-Flags-5.svg new file mode 100644 index 00000000..0fc11e8f --- /dev/null +++ b/src/public/images/illustrations/Feature-Flags-5.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/public/images/illustrations/Heading-2.svg b/src/public/images/illustrations/Heading-2.svg new file mode 100644 index 00000000..6a3ccd6c --- /dev/null +++ b/src/public/images/illustrations/Heading-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/public/images/illustrations/Stats-2.svg b/src/public/images/illustrations/Stats-2.svg new file mode 100644 index 00000000..363aadaa --- /dev/null +++ b/src/public/images/illustrations/Stats-2.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/public/images/illustrations/Structure-List-2.svg b/src/public/images/illustrations/Structure-List-2.svg new file mode 100644 index 00000000..1cf685be --- /dev/null +++ b/src/public/images/illustrations/Structure-List-2.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/support.md b/src/support.md index 21823aa0..1d912872 100644 --- a/src/support.md +++ b/src/support.md @@ -16,8 +16,6 @@ import SponsorGroup from '@theme/components/shared/SponsorGroup.vue' -Leaf began in 2019 as a boilerplate to supercharge API development but has since expanded into a full framework with libraries like [Hanabira](https://hana.leafphp.dev). - We're committed to keeping Leaf free, but as the project grows, so do the costs. Maintaining and building new features now takes significant time and resources, mostly covered by our team. To keep Leaf thriving, we need your support for our maintainers 💚 ## How to Sponsor diff --git a/src/tutorial/src/step-1/description.md b/src/tutorial/src/step-1/description.md index 8ace7445..cca0ac76 100644 --- a/src/tutorial/src/step-1/description.md +++ b/src/tutorial/src/step-1/description.md @@ -36,4 +36,4 @@ Leaf offers two API styles: functional mode and class mode. This tutorial is des ::: --> -Ready to begin your journey? Click **"Next"** to get started. +Ready to begin your journey? Click **"->"** to get started. diff --git a/src/tutorial/src/step-15/description.md b/src/tutorial/src/step-15/description.md index 49bee214..915d1819 100644 --- a/src/tutorial/src/step-15/description.md +++ b/src/tutorial/src/step-15/description.md @@ -4,11 +4,11 @@ You've learnt how to create routes, handle requests, and responses, and even how As a next step, you can: -- Set up a real project on your system by following the [installation docs](/docs/installation). +- Set up a real project on your system by following the [installation docs](/docs/#creating-a-new-app). - Every feature you need is available as a module, so be sure to checkout the [modules documentation](/docs/modules). -- Join the [Leaf Discord server](https://discord.gg/SpmNs4S) to ask questions, share what you're building, and get help from the community. +- Join the [Leaf Discord server](https://discord.gg/Pkrm9NJPE3) to ask questions, share what you're building, and get help from the community. - Follow Leaf on [Twitter](https://twitter.com/leafphp) to stay up-to-date with the news and updates. diff --git a/src/tutorial/src/step-8/_hint/index/functionalMode.php b/src/tutorial/src/step-8/_hint/index/functionalMode.php index 79631dcf..55e17918 100644 --- a/src/tutorial/src/step-8/_hint/index/functionalMode.php +++ b/src/tutorial/src/step-8/_hint/index/functionalMode.php @@ -3,15 +3,15 @@ require __DIR__ . '/vendor/autoload.php'; app()->get('/', function () { - $isValid = form()->validate([ - 'name' => 'text', - 'country' => ['required', 'text'], - 'city' => 'required', + $validatedData = request()->validate([ + 'name' => 'string', + 'country' => ['string', 'min:2'], + 'city' => 'string', 'email' => 'email', ]); response()->json( - $isValid ? 'success' : form()->errors() + $validatedData ?: request()->errors() ); }); diff --git a/src/tutorial/src/step-8/description.md b/src/tutorial/src/step-8/description.md index 21cb4fdb..6e2bd99a 100644 --- a/src/tutorial/src/step-8/description.md +++ b/src/tutorial/src/step-8/description.md @@ -6,19 +6,36 @@ A golden rule in web development is to never trust user input. Users will always These are the rules Leaf provides out-of-the-box for validating data: -| Validation rule | Purpose | -|:--------------------|:---------------------------------------------| -| required | field is required | -| number | must only contain numbers | -| text | must only contain text and spaces | -| textOnly | should be text only, no spaces allowed | -| validUsername | must only contain characters 0-9, A-Z and _ | -| username | alias for validUsername | -| email | must be a valid email | -| noSpaces | can't contain any spaces | -| max | max length of a string (requires arguments) | -| min | min length of a string (requires arguments) | -| date | string should be a valid date | +| Rule | Description | +| --- | --- | +| `email` | The field under validation must be formatted as an e-mail address. | +| `string` | The field under validation must contain only alphabetic characters and spaces. | +| `text` | The field under validation must contain only alphabetic characters and spaces. | +| `textOnly` | The field under validation must contain only alphabetic characters (no-spaces). | +| `alpha` | The field under validation must contain only alphabetic characters. | +| `alphaNum` | The field under validation must contain only alpha-numeric characters. | +| `alphaDash` | The field under validation must contain only alpha-numeric characters, underscores, and dashes. | +| `username` | The field under validation must contain only alpha-numeric characters and underscores. | +| `number` | The field under validation must contain only numeric characters. | +| `float` | The field under validation must contain only float values. | +| `date` | The field under validation must be a valid date. | +| `min` | The field under validation must have a minimum value. | +| `max` | The field under validation must have a maximum value. | +| `between` | The field under validation must be between two values in length. | +| `match` | The field under validation must match a value. | +| `contains` | The field under validation must contain a value. | +| `in` | The field under validation must be included in a given list of values. | +| `ip` | The field under validation must be a valid IP address. | +| `ipv4` | The field under validation must be a valid IPv4 address. | +| `ipv6` | The field under validation must be a valid IPv6 address. | +| `url` | The field under validation must be a valid URL. | +| `domain` | The field under validation must be a valid domain. | +| `creditCard` | The field under validation must be a valid credit card number. | +| `phone` | The field under validation must be a valid phone number. | +| `uuid` | The field under validation must be a valid UUID. | +| `slug` | The field under validation must be a valid slug. | +| `json` | The field under validation must be a valid JSON string. | +| `regex` | The field under validation must match a given regular expression. | ::: tip Note These rules are **NOT** case-sensitive, so you can type them anyway you prefer, as long as the spelling is the same. @@ -48,13 +65,15 @@ This is the data we're passing into our app. require __DIR__ . '/vendor/autoload.php'; app()->get('/', function () { - $isValid = request()->validate([ + $validatedData = request()->validate([ 'email' => 'email', - 'name' => 'text', + 'name' => 'string', + 'city' => 'string', + 'country' => 'string', ]); response()->json( - $isValid ? 'success' : request()->errors() + $validatedData ?: request()->errors() ); }); @@ -63,32 +82,40 @@ app()->run(); -The array tells the `validate()` function what rule(s) to run against what data. The `email` rule is run against the email field we passed to make sure it's a valid email. In the same way, we're running the `text` method against the name field to make sure that it only contains text and spaces. You can try this out in the editor. +The array tells the `validate()` function what rule(s) to run against what data. The `email` rule is run against the email field we passed to make sure it's a valid email. It works the same for all other fields, but there are a few things to note about Leaf's validation. -If you want the validation to fail, you can edit the `data` in the `request.json` file with invalid data. Try passing a number into the email field and see what happens. +1. The `validate()` method will only return the fields that were validated. If there are fields that weren't validated, they won't be returned. *You can try this by removing the `name` field from the `validate()` method and see what happens.* +2. The `validate()` method will return the validated data if the validation passes. If the validation fails, it will return `false`. *You can try this by passing an invalid email address and see what happens.* +3. Leaf's validation assumes that every field is required. If you want to make a field optional, you can use the `optional` rule. ## Multiple validation rules So far, we've only looked at validating data against a single rule. But what if we want to validate data against multiple rules? We can do this by passing an array of rules into the `validate` function. For example, we can validate the email field against the `email` and `required` rules. ```php -'email' => ['required', 'email'], +'email' => ['string', 'email'], ``` -You can add as many rules as you want to the array, in the order you want to validate the data. The only rule here is to make sure your validation rules don't fight each other. For example, if you use the `textOnly` rule and the `number` rule together, the validation will always fail because the `textOnly` rule will always fail the `number` rule. +You can also use a string with rules separated by a pipe `|`. + +```php +'email' => 'string|email', +``` + +You can add as many rules as you want, in the order you want to validate the data. The only rule here is to make sure your validation rules don't fight each other. For example, if you use the `textOnly` rule and the `number` rule together, the validation will always fail because the `textOnly` rule will always fail the `number` rule and vice versa. ## Getting validation errors When validation fails, Leaf automatically stores the errors in the request object and returns `false`. You can get these errors by calling the `errors()` method on the request object. This method returns an array of errors. You can output these errors to the user or use them in any way you want. ```php -$isValid = request()->validate([ - 'email' => ['required', 'email'], - 'name' => ['required', 'text'], +$validatedData = request()->validate([ + 'email' => 'email', + 'name' => 'string', ]); response()->json( - $isValid ? 'success' : request()->errors() + $validatedData ?: request()->errors() ); ```